source: util.c @ d387e0d

release-1.10release-1.9
Last change on this file since d387e0d was 6646fdb, checked in by David Benjamin <davidben@mit.edu>, 13 years ago
Restore correct semantics of message 'time' attribute This rewrites part of 4ebbfbc5360fa004637dd101f5a0c833cdccd60a. We can't replace every instance of ctime with a user-formatted time, as the time attribute is not user-formatted. It is (unfortunately) the API for perl to override the timestamp and owl_perlconfig_hashref2message expects a particular format for strptime. We should not then flip the values around once they reach C. (Especially not a locale-dependent one.) Rename *_to_timestr functions to owl_util_format_* so it is clear the function should only be used for user-formatted times.
  • Property mode set to 100644
File size: 21.6 KB
RevLine 
[7d4fbcd]1#include "owl.h"
[f36222f]2#include <pwd.h>
[435001d]3#include <sys/stat.h>
[f47696f]4#include <stdarg.h>
[950e2da]5#include <glib/gstdio.h>
[05ca0d8]6#include <glib-object.h>
7
[e19eb97]8const char *skiptokens(const char *buff, int n) {
[e30ed92]9  /* skips n tokens and returns where that would be. */
10  char quote = 0;
[7d4fbcd]11  while (*buff && n>0) {
12      while (*buff == ' ') buff++;
[e30ed92]13      while (*buff && (quote || *buff != ' ')) {
14        if(quote) {
15          if(*buff == quote) quote = 0;
16        } else if(*buff == '"' || *buff == '\'') {
17          quote = *buff;
18        }
19        buff++;
[7d4fbcd]20      }
21      while (*buff == ' ') buff++;
22      n--;
23  }
24  return buff;
25}
26
[8219374]27CALLER_OWN char *owl_util_homedir_for_user(const char *name)
28{
29  int err;
30  struct passwd pw_buf;
31  struct passwd *pw;
32
33  char *pw_strbuf, *ret;
34  long pw_strbuf_len = sysconf(_SC_GETPW_R_SIZE_MAX);
35  if (pw_strbuf_len < 0) {
36    /* If we really hate ourselves, we can be fancy and loop until we stop
37     * getting ERANGE. For now just pick a random number. */
38    owl_function_error("owl_util_homedir_for_user: Could not get _SC_GETPW_R_SIZE_MAX");
39    pw_strbuf_len = 16384;
40  }
41  pw_strbuf = g_new0(char, pw_strbuf_len);
42  err = getpwnam_r(name, &pw_buf, pw_strbuf, pw_strbuf_len, &pw);
43  if (err) {
44    owl_function_error("getpwuid_r: %s", strerror(err));
45    /* Fall through; pw will be NULL. */
46  }
47  ret = pw ? g_strdup(pw->pw_dir) : NULL;
48  g_free(pw_strbuf);
49  return ret;
50}
51
[f36222f]52/* Return a "nice" version of the path.  Tilde expansion is done, and
53 * duplicate slashes are removed.  Caller must free the return.
54 */
[6829afc]55CALLER_OWN char *owl_util_makepath(const char *in)
[f36222f]56{
[c0c48d14]57  char *out;
58  int i, j;
59  if (in[0] == '~') {
60    /* Attempt tilde-expansion of the first component. Get the
61       tilde-prefix, which goes up to the next slash. */
62    const char *end = strchr(in + 1, '/');
63    if (end == NULL)
64      end = in + strlen(in);
[f36222f]65
[396505be]66    /* Patch together a new path. Replace the ~ and tilde-prefix with
67       the homedir, if available. */
[c0c48d14]68    if (end == in + 1) {
[396505be]69      /* My home directory. Use the one in owl_global for consistency with
70       * owl_zephyr_dotfile. */
71      out = g_strconcat(owl_global_get_homedir(&g), end, NULL);
[f36222f]72    } else {
[c0c48d14]73      /* Someone else's home directory. */
74      char *user = g_strndup(in + 1, end - (in + 1));
[8219374]75      char *home = owl_util_homedir_for_user(user);
76      if (home) {
77        out = g_strconcat(home, end, NULL);
[396505be]78      } else {
79        out = g_strdup(in);
80      }
[8219374]81      g_free(home);
82      g_free(user);
[c0c48d14]83    }
84  } else {
[396505be]85    out = g_strdup(in);
[c0c48d14]86  }
87
88  /* And a quick pass to remove duplicate slashes. */
89  for (i = j = 0; out[i] != '\0'; i++) {
90    if (out[i] != '/' || i == 0 || out[i-1] != '/')
91      out[j++] = out[i];
[f36222f]92  }
[c0c48d14]93  out[j] = '\0';
94  return out;
[f36222f]95}
96
[3cdd6d2]97void owl_ptr_array_free(GPtrArray *array, GDestroyNotify element_free_func)
98{
99  /* TODO: when we move to requiring glib 2.22+, use
100   * g_ptr_array_new_with_free_func instead. */
101  if (element_free_func)
102    g_ptr_array_foreach(array, (GFunc)element_free_func, NULL);
103  g_ptr_array_free(array, true);
104}
105
[e56303f]106/* Break a command line up into argv, argc.  The caller must free
107   the returned values with g_strfreev.  If there is an error argc will be set
108   to -1, argv will be NULL and the caller does not need to free anything. The
109   returned vector is NULL-terminated. */
[6829afc]110CALLER_OWN char **owl_parseline(const char *line, int *argc)
[e4eebe8]111{
[65c753e]112  GPtrArray *argv;
[7d4fbcd]113  int i, len, between=1;
[0290b2a]114  GString *curarg;
[7d4fbcd]115  char quote;
116
[6965867]117  argv = g_ptr_array_new();
[7d4fbcd]118  len=strlen(line);
[0290b2a]119  curarg = g_string_new("");
[7d4fbcd]120  quote='\0';
[e56303f]121  if (argc) *argc=0;
[7d4fbcd]122  for (i=0; i<len+1; i++) {
123    /* find the first real character */
124    if (between) {
125      if (line[i]==' ' || line[i]=='\t' || line[i]=='\0') {
126        continue;
127      } else {
128        between=0;
129        i--;
130        continue;
131      }
132    }
133
134    /* deal with a quote character */
135    if (line[i]=='"' || line[i]=="'"[0]) {
136      /* if this type of quote is open, close it */
137      if (quote==line[i]) {
138        quote='\0';
139        continue;
140      }
141
142      /* if no quoting is open then open with this */
143      if (quote=='\0') {
144        quote=line[i];
145        continue;
146      }
147
148      /* if another type of quote is open then treat this as a literal */
[0290b2a]149      g_string_append_c(curarg, line[i]);
[7d4fbcd]150      continue;
151    }
152
153    /* if it's not a space or end of command, then use it */
154    if (line[i]!=' ' && line[i]!='\t' && line[i]!='\n' && line[i]!='\0') {
[0290b2a]155      g_string_append_c(curarg, line[i]);
[7d4fbcd]156      continue;
157    }
158
159    /* otherwise, if we're not in quotes, add the whole argument */
160    if (quote=='\0') {
161      /* add the argument */
[0290b2a]162      g_ptr_array_add(argv, g_string_free(curarg, false));
163      curarg = g_string_new("");
[7d4fbcd]164      between=1;
165      continue;
166    }
167
168    /* if it is a space and we're in quotes, then use it */
[0290b2a]169    g_string_append_c(curarg, line[i]);
[7d4fbcd]170  }
171
[e56303f]172  if (argc) *argc = argv->len;
[65c753e]173  g_ptr_array_add(argv, NULL);
[0290b2a]174  g_string_free(curarg, true);
[95caa16]175
[7d4fbcd]176  /* check for unbalanced quotes */
177  if (quote!='\0') {
[3cdd6d2]178    owl_ptr_array_free(argv, g_free);
[e56303f]179    if (argc) *argc = -1;
[7d4fbcd]180    return(NULL);
181  }
182
[65c753e]183  return (char**)g_ptr_array_free(argv, false);
[7d4fbcd]184}
185
[2bc6ad35]186/* Appends a quoted version of arg suitable for placing in a
187 * command-line to a GString. Does not append a space. */
188void owl_string_append_quoted_arg(GString *buf, const char *arg)
189{
190  const char *argp;
191  if (arg[0] == '\0') {
192    /* Quote the empty string. */
193    g_string_append(buf, "''");
194  } else if (arg[strcspn(arg, "'\" \n\t")] == '\0') {
195    /* If there are no nasty characters, return as-is. */
196    g_string_append(buf, arg);
197  } else if (!strchr(arg, '\'')) {
198    /* Single-quote if possible. */
199    g_string_append_c(buf, '\'');
200    g_string_append(buf, arg);
201    g_string_append_c(buf, '\'');
202  } else {
203    /* Nasty case: double-quote, but change all internal "s to "'"'"
204     * so that they are single-quoted because we're too cool for
205     * backslashes.
206     */
207    g_string_append_c(buf, '"');
208    for (argp = arg; *argp; argp++) {
209      if (*argp == '"')
210        g_string_append(buf, "\"'\"'\"");
211      else
212        g_string_append_c(buf, *argp);
213    }
214    g_string_append_c(buf, '"');
215  }
216}
217
[f47696f]218/*
219 * Appends 'tmpl' to 'buf', replacing any instances of '%q' with arguments from
[b8a3e00]220 * the varargs provided, quoting them to be safe for placing in a BarnOwl
[f47696f]221 * command line.
222 */
223void owl_string_appendf_quoted(GString *buf, const char *tmpl, ...)
224{
225  va_list ap;
226  va_start(ap, tmpl);
227  owl_string_vappendf_quoted(buf, tmpl, ap);
228  va_end(ap);
229}
230
231void owl_string_vappendf_quoted(GString *buf, const char *tmpl, va_list ap)
232{
233  const char *p = tmpl, *last = tmpl;
234  while (true) {
235    p = strchr(p, '%');
236    if (p == NULL) break;
237    if (*(p+1) != 'q') {
238      p++;
239      if (*p) p++;
240      continue;
241    }
242    g_string_append_len(buf, last, p - last);
243    owl_string_append_quoted_arg(buf, va_arg(ap, char *));
244    p += 2; last = p;
245  }
246
247  g_string_append(buf, last);
248}
249
[6829afc]250CALLER_OWN char *owl_string_build_quoted(const char *tmpl, ...)
[f47696f]251{
252  GString *buf = g_string_new("");
253  va_list ap;
254  va_start(ap, tmpl);
255  owl_string_vappendf_quoted(buf, tmpl, ap);
256  va_end(ap);
257  return g_string_free(buf, false); 
258}
259
[2bc6ad35]260/* Returns a quoted version of arg suitable for placing in a
[ddbbcffa]261 * command-line. Result should be freed with g_free. */
[6829afc]262CALLER_OWN char *owl_arg_quote(const char *arg)
[2bc6ad35]263{
264  GString *buf = g_string_new("");;
265  owl_string_append_quoted_arg(buf, arg);
266  return g_string_free(buf, false);
267}
268
[de03334]269/* caller must free the return */
[6646fdb]270CALLER_OWN char *owl_util_format_minutes(int in)
[de03334]271{
[f1e629d]272  int days, hours;
[de03334]273  long run;
274  char *out;
275
[5b85d19]276  run=in;
[de03334]277
[5b85d19]278  days=run/1440;
279  run-=days*1440;
280  hours=run/60;
281  run-=hours*60;
[de03334]282
283  if (days>0) {
[3472845]284    out=g_strdup_printf("%i d %2.2i:%2.2li", days, hours, run);
[de03334]285  } else {
[3472845]286    out=g_strdup_printf("    %2.2i:%2.2li", hours, run);
[de03334]287  }
288  return(out);
289}
290
[6646fdb]291CALLER_OWN char *owl_util_format_time(const struct tm *time)
[4ebbfbc]292{
293  /* 32 chosen for first attempt because timestr will end up being
294   * something like "Www Mmm dd hh:mm:ss AM yyyy UTC\0" */ 
295  size_t timestr_size = 16;
296  char *timestr = NULL;
297  do {
298    timestr_size *= 2;
299    timestr = g_renew(char, timestr, timestr_size);
300  } while (strftime(timestr, timestr_size, "%c", time) == 0);
301  return timestr;
302}
303
[a3e61a2]304/* These are in order of their value in owl.h */
305static const struct {
306  int number;
307  const char *name;
308} color_map[] = {
309  {OWL_COLOR_INVALID, "invalid"},
310  {OWL_COLOR_DEFAULT, "default"},
311  {OWL_COLOR_BLACK, "black"},
312  {OWL_COLOR_RED, "red"},
313  {OWL_COLOR_GREEN, "green"},
314  {OWL_COLOR_YELLOW,"yellow"},
315  {OWL_COLOR_BLUE, "blue"},
316  {OWL_COLOR_MAGENTA, "magenta"},
317  {OWL_COLOR_CYAN, "cyan"},
318  {OWL_COLOR_WHITE, "white"},
319};
[28ee32b]320
[12c35df]321/* Return the owl color associated with the named color.  Return -1
322 * if the named color is not available
323 */
[e19eb97]324int owl_util_string_to_color(const char *color)
[e4eebe8]325{
[a3e61a2]326  int c, i;
[1b9d3cc]327  char *p;
[a3e61a2]328
329  for (i = 0; i < (sizeof(color_map)/sizeof(color_map[0])); i++)
330    if (strcasecmp(color, color_map[i].name) == 0)
331      return color_map[i].number;
332
[1b9d3cc]333  c = strtol(color, &p, 10);
334  if (p != color && c >= -1 && c < COLORS) {
[c2c5c77]335    return(c);
336  }
[601733d]337  return(OWL_COLOR_INVALID);
[7d4fbcd]338}
339
[e4eebe8]340/* Return a string name of the given owl color */
[e19eb97]341const char *owl_util_color_to_string(int color)
[e4eebe8]342{
[a3e61a2]343  if (color >= OWL_COLOR_INVALID && color <= OWL_COLOR_WHITE)
344    return color_map[color - OWL_COLOR_INVALID].name;
[7d4fbcd]345  return("Unknown color");
346}
[e1c4636]347
[e4eebe8]348/* Get the default tty name.  Caller must free the return */
[6829afc]349CALLER_OWN char *owl_util_get_default_tty(void)
[e4eebe8]350{
[e19eb97]351  const char *tmp;
[65b2173]352  char *out;
[61e79a9]353
354  if (getenv("DISPLAY")) {
[d4927a7]355    out=g_strdup(getenv("DISPLAY"));
[5145235]356  } else if ((tmp=ttyname(fileno(stdout)))!=NULL) {
[d4927a7]357    out=g_strdup(tmp);
[61e79a9]358    if (!strncmp(out, "/dev/", 5)) {
[ddbbcffa]359      g_free(out);
[d4927a7]360      out=g_strdup(tmp+5);
[61e79a9]361    }
362  } else {
[d4927a7]363    out=g_strdup("unknown");
[61e79a9]364  }
365  return(out);
366}
367
[e4eebe8]368/* strip leading and trailing new lines.  Caller must free the
369 * return.
370 */
[6829afc]371CALLER_OWN char *owl_util_stripnewlines(const char *in)
[e4eebe8]372{
[7e3e00a]373 
374  char  *tmp, *ptr1, *ptr2, *out;
375
[d4927a7]376  ptr1=tmp=g_strdup(in);
[7e3e00a]377  while (ptr1[0]=='\n') {
378    ptr1++;
379  }
380  ptr2=ptr1+strlen(ptr1)-1;
[1bb1e67]381  while (ptr2>ptr1 && ptr2[0]=='\n') {
[7e3e00a]382    ptr2[0]='\0';
383    ptr2--;
384  }
385
[d4927a7]386  out=g_strdup(ptr1);
[ddbbcffa]387  g_free(tmp);
[7e3e00a]388  return(out);
389}
390
[950e2da]391
392/* If filename is a link, recursively resolve symlinks.  Otherwise, return the filename
393 * unchanged.  On error, call owl_function_error and return NULL.
394 *
395 * This function assumes that filename eventually resolves to an acutal file.
396 * If you want to check this, you should stat() the file first.
397 *
398 * The caller of this function is responsible for freeing the return value.
399 *
400 * Error conditions are the same as g_file_read_link.
401 */
[6829afc]402CALLER_OWN gchar *owl_util_recursive_resolve_link(const char *filename)
[950e2da]403{
[fa90c34]404  gchar *last_path = g_strdup(filename);
[950e2da]405  GError *err = NULL;
[fa90c34]406
407  while (g_file_test(last_path, G_FILE_TEST_IS_SYMLINK)) {
408    gchar *link_path = g_file_read_link(last_path, &err);
409    if (link_path == NULL) {
410      owl_function_error("Cannot resolve symlink %s: %s",
411                         last_path, err->message);
412      g_error_free(err);
413      g_free(last_path);
414      return NULL;
415    }
416
417    /* Deal with obnoxious relative paths. If we really care, all this
418     * is racy. Whatever. */
419    if (!g_path_is_absolute(link_path)) {
420      char *last_dir = g_path_get_dirname(last_path);
[dde1b4d]421      char *tmp = g_build_filename(last_dir, link_path, NULL);
[fa90c34]422      g_free(last_dir);
423      g_free(link_path);
424      link_path = tmp;
425    }
426
427    g_free(last_path);
428    last_path = link_path;
[950e2da]429  }
[fa90c34]430  return last_path;
[950e2da]431}
432
[946058b]433/* Delete all lines matching "line" from the named file.  If no such
434 * line is found the file is left intact.  If backup==1 then leave a
435 * backup file containing the original contents.  The match is
436 * case-insensitive.
[da60ba9]437 *
[5fca55f]438 * Returns the number of lines removed on success.  Returns -1 on failure.
[38cf544c]439 */
[da60ba9]440int owl_util_file_deleteline(const char *filename, const char *line, int backup)
[38cf544c]441{
[946058b]442  char *backupfile, *newfile, *buf = NULL;
[950e2da]443  gchar *actual_filename; /* gchar; we need to g_free it */
[946058b]444  FILE *old, *new;
445  struct stat st;
[da60ba9]446  int numremoved = 0;
[38cf544c]447
[946058b]448  if ((old = fopen(filename, "r")) == NULL) {
449    owl_function_error("Cannot open %s (for reading): %s",
450                       filename, strerror(errno));
[5fca55f]451    return -1;
[38cf544c]452  }
[e6449bc]453
[946058b]454  if (fstat(fileno(old), &st) != 0) {
455    owl_function_error("Cannot stat %s: %s", filename, strerror(errno));
[5fca55f]456    return -1;
[38cf544c]457  }
458
[950e2da]459  /* resolve symlinks, because link() fails on symlinks, at least on AFS */
460  actual_filename = owl_util_recursive_resolve_link(filename);
461  if (actual_filename == NULL)
462    return -1; /* resolving the symlink failed, but we already logged this error */
463
[3472845]464  newfile = g_strdup_printf("%s.new", actual_filename);
[946058b]465  if ((new = fopen(newfile, "w")) == NULL) {
466    owl_function_error("Cannot open %s (for writing): %s",
[950e2da]467                       actual_filename, strerror(errno));
[ddbbcffa]468    g_free(newfile);
[946058b]469    fclose(old);
[83a4af3]470    g_free(actual_filename);
[5fca55f]471    return -1;
[946058b]472  }
473
474  if (fchmod(fileno(new), st.st_mode & 0777) != 0) {
475    owl_function_error("Cannot set permissions on %s: %s",
[950e2da]476                       actual_filename, strerror(errno));
[946058b]477    unlink(newfile);
478    fclose(new);
[ddbbcffa]479    g_free(newfile);
[946058b]480    fclose(old);
[83a4af3]481    g_free(actual_filename);
[5fca55f]482    return -1;
[946058b]483  }
484
485  while (owl_getline_chomp(&buf, old))
486    if (strcasecmp(buf, line) != 0)
487      fprintf(new, "%s\n", buf);
488    else
[da60ba9]489      numremoved++;
[ddbbcffa]490  g_free(buf);
[38cf544c]491
[946058b]492  fclose(new);
493  fclose(old);
494
495  if (backup) {
[3472845]496    backupfile = g_strdup_printf("%s.backup", actual_filename);
[946058b]497    unlink(backupfile);
[950e2da]498    if (link(actual_filename, backupfile) != 0) {
[946058b]499      owl_function_error("Cannot link %s: %s", backupfile, strerror(errno));
[ddbbcffa]500      g_free(backupfile);
[946058b]501      unlink(newfile);
[ddbbcffa]502      g_free(newfile);
[5fca55f]503      return -1;
[6a50af2]504    }
[ddbbcffa]505    g_free(backupfile);
[38cf544c]506  }
507
[950e2da]508  if (rename(newfile, actual_filename) != 0) {
[946058b]509    owl_function_error("Cannot move %s to %s: %s",
[950e2da]510                       newfile, actual_filename, strerror(errno));
[5fca55f]511    numremoved = -1;
[38cf544c]512  }
513
[946058b]514  unlink(newfile);
[ddbbcffa]515  g_free(newfile);
[da60ba9]516
[950e2da]517  g_free(actual_filename);
518
[da60ba9]519  return numremoved;
[38cf544c]520}
521
[7a20e4c]522/* Return the base class or instance from a zephyr class, by removing
523   leading `un' or trailing `.d'.
[be5aa09]524   The caller is responsible for freeing the allocated string.
[7a20e4c]525*/
[6829afc]526CALLER_OWN char *owl_util_baseclass(const char *class)
[7a20e4c]527{
[59916e8]528  char *start, *end;
529
[fa4562c]530  while(!strncmp(class, "un", 2)) {
531    class += 2;
[7a20e4c]532  }
[f166580]533
[d4927a7]534  start = g_strdup(class);
[59916e8]535  end = start + strlen(start) - 1;
[04166e9]536  while(end > start && *end == 'd' && *(end-1) == '.') {
[7a20e4c]537    end -= 2;
538  }
539  *(end + 1) = 0;
[59916e8]540
[f166580]541  return start;
[7a20e4c]542}
543
[c79a047]544const char * owl_get_datadir(void)
[5376a95]545{
[e19eb97]546  const char * datadir = getenv("BARNOWL_DATA_DIR");
[5376a95]547  if(datadir != NULL)
[7bf51d5]548    return datadir;
[5376a95]549  return DATADIR;
550}
551
[9a7b4f2]552const char * owl_get_bindir(void)
553{
554  const char * bindir = getenv("BARNOWL_BIN_DIR");
555  if(bindir != NULL)
556    return bindir;
557  return BINDIR;
558}
559
[5376a95]560/* Strips format characters from a valid utf-8 string. Returns the
[d427f08]561   empty string if 'in' does not validate.  Caller must free the return. */
[6829afc]562CALLER_OWN char *owl_strip_format_chars(const char *in)
[5376a95]563{
564  char *r;
565  if (g_utf8_validate(in, -1, NULL)) {
[7f6a8a2]566    const char *s, *p;
[96828e4]567    r = g_new(char, strlen(in)+1);
[5376a95]568    r[0] = '\0';
569    s = in;
570    p = strchr(s, OWL_FMTEXT_UC_STARTBYTE_UTF8);
571    while(p) {
572      /* If it's a format character, copy up to it, and skip all
573         immediately following format characters. */
[c1522ec]574      if (owl_fmtext_is_format_char(g_utf8_get_char(p))) {
[5376a95]575        strncat(r, s, p-s);
576        p = g_utf8_next_char(p);
[f119757]577        while (owl_fmtext_is_format_char(g_utf8_get_char(p))) {
[5376a95]578          p = g_utf8_next_char(p);
579        }
580        s = p;
581        p = strchr(s, OWL_FMTEXT_UC_STARTBYTE_UTF8);
582      }
583      else {
584        p = strchr(p+1, OWL_FMTEXT_UC_STARTBYTE_UTF8);
585      }
586    }
587    if (s) strcat(r,s);
588  }
589  else {
[d4927a7]590    r = g_strdup("");
[5376a95]591  }
592  return r;
593}
594
595/* If in is not UTF-8, convert from ISO-8859-1. We may want to allow
596 * the caller to specify an alternative in the future. We also strip
597 * out characters in Unicode Plane 16, as we use that plane internally
598 * for formatting.
[d427f08]599 * Caller must free the return.
[5376a95]600 */
[6829afc]601CALLER_OWN char *owl_validate_or_convert(const char *in)
[5376a95]602{
[6201646]603  if (g_utf8_validate(in, -1, NULL)) {
[5376a95]604    return owl_strip_format_chars(in);
605  }
606  else {
[6201646]607    return g_convert(in, -1,
[5376a95]608                     "UTF-8", "ISO-8859-1",
609                     NULL, NULL, NULL);
610  }
[89f5338]611}
[4b17a6c]612/*
613 * Validate 'in' as UTF-8, and either return a copy of it, or an empty
614 * string if it is invalid utf-8.
[d427f08]615 * Caller must free the return.
[7b1d048]616 */
[6829afc]617CALLER_OWN char *owl_validate_utf8(const char *in)
[7b1d048]618{
619  char *out;
620  if (g_utf8_validate(in, -1, NULL)) {
[d4927a7]621    out = g_strdup(in);
[4b17a6c]622  } else {
[d4927a7]623    out = g_strdup("");
[7b1d048]624  }
625  return out;
626}
[89f5338]627
[84027015]628/* This is based on _extract() and _isCJ() from perl's Text::WrapI18N */
629int owl_util_can_break_after(gunichar c)
630{
631 
632  if (c == ' ') return 1;
633  if (c >= 0x3000 && c <= 0x312f) {
634    /* CJK punctuations, Hiragana, Katakana, Bopomofo */
635    if (c == 0x300a || c == 0x300c || c == 0x300e ||
636        c == 0x3010 || c == 0x3014 || c == 0x3016 ||
637        c == 0x3018 || c == 0x301a)
638      return 0;
639    return 1;
640  }
641  if (c >= 0x31a0 && c <= 0x31bf) {return 1;}  /* Bopomofo */
642  if (c >= 0x31f0 && c <= 0x31ff) {return 1;}  /* Katakana extension */
643  if (c >= 0x3400 && c <= 0x9fff) {return 1;}  /* Han Ideogram */
644  if (c >= 0xf900 && c <= 0xfaff) {return 1;}  /* Han Ideogram */
645  if (c >= 0x20000 && c <= 0x2ffff) {return 1;}  /* Han Ideogram */
646  return 0;
647}
[eea72a13]648
[d427f08]649/* caller must free the return */
[6829afc]650CALLER_OWN char *owl_escape_highbit(const char *str)
[eea72a13]651{
652  GString *out = g_string_new("");
653  unsigned char c;
654  while((c = (*str++))) {
655    if(c == '\\') {
656      g_string_append(out, "\\\\");
657    } else if(c & 0x80) {
658      g_string_append_printf(out, "\\x%02x", (int)c);
659    } else {
660      g_string_append_c(out, c);
661    }
662  }
663  return g_string_free(out, 0);
664}
[6ace255]665
666/* innards of owl_getline{,_chomp} below */
667static int owl_getline_internal(char **s, FILE *fp, int newline)
668{
669  int size = 0;
670  int target = 0;
671  int count = 0;
672  int c;
673
674  while (1) {
675    c = getc(fp);
676    if ((target + 1) > size) {
677      size += BUFSIZ;
[35b6eb9]678      *s = g_renew(char, *s, size);
[6ace255]679    }
680    if (c == EOF)
681      break;
682    count++;
683    if (c != '\n' || newline)
684        (*s)[target++] = c;
685    if (c == '\n')
686      break;
687  }
688  (*s)[target] = 0;
689
690  return count;
691}
692
693/* Read a line from fp, allocating memory to hold it, returning the number of
694 * byte read.  *s should either be NULL or a pointer to memory allocated with
[35b6eb9]695 * g_malloc; it will be g_renew'd as appropriate.  The caller must
[6ace255]696 * eventually free it.  (This is roughly the interface of getline in the gnu
697 * libc).
698 *
699 * The final newline will be included if it's there.
700 */
701int owl_getline(char **s, FILE *fp)
702{
703  return owl_getline_internal(s, fp, 1);
704}
705
706/* As above, but omitting the final newline */
707int owl_getline_chomp(char **s, FILE *fp)
708{
709  return owl_getline_internal(s, fp, 0);
710}
711
712/* Read the rest of the input available in fp into a string. */
[6829afc]713CALLER_OWN char *owl_slurp(FILE *fp)
[6ace255]714{
715  char *buf = NULL;
716  char *p;
717  int size = 0;
718  int count;
719
720  while (1) {
[35b6eb9]721    buf = g_renew(char, buf, size + BUFSIZ);
[6ace255]722    p = &buf[size];
723    size += BUFSIZ;
724
725    if ((count = fread(p, 1, BUFSIZ, fp)) < BUFSIZ)
726      break;
727  }
728  p[count] = 0;
729
730  return buf;
731}
[05ca0d8]732
[9efa5bd]733int owl_util_get_colorpairs(void) {
734#ifndef NCURSES_EXT_COLORS
735  /* Without ext-color support (an ABI change), ncurses only supports 256
736   * different color pairs. However, it gives us a larger number even if your
737   * ncurses is compiled without ext-color. */
738  return MIN(COLOR_PAIRS, 256);
739#else
740  return COLOR_PAIRS;
741#endif
742}
743
[c1f1e1e]744gulong owl_dirty_window_on_signal(owl_window *w, gpointer sender, const gchar *detailed_signal)
745{
746  return owl_signal_connect_object(sender, detailed_signal, G_CALLBACK(owl_window_dirty), w, G_CONNECT_SWAPPED);
747}
748
[05ca0d8]749typedef struct { /*noproto*/
750  GObject  *sender;
751  gulong    signal_id;
752} SignalData;
753
754static void _closure_invalidated(gpointer data, GClosure *closure);
755
756/*
757 * GObject's g_signal_connect_object has a documented bug. This function is
758 * identical except it does not leak the signal handler.
759 */
760gulong owl_signal_connect_object(gpointer sender, const gchar *detailed_signal, GCallback c_handler, gpointer receiver, GConnectFlags connect_flags)
761{
762  g_return_val_if_fail (G_TYPE_CHECK_INSTANCE (sender), 0);
763  g_return_val_if_fail (detailed_signal != NULL, 0);
764  g_return_val_if_fail (c_handler != NULL, 0);
765
766  if (receiver) {
767    SignalData *sdata;
768    GClosure *closure;
769    gulong signal_id;
770
771    g_return_val_if_fail (G_IS_OBJECT (receiver), 0);
772
773    closure = ((connect_flags & G_CONNECT_SWAPPED) ? g_cclosure_new_object_swap : g_cclosure_new_object) (c_handler, receiver);
774    signal_id = g_signal_connect_closure (sender, detailed_signal, closure, connect_flags & G_CONNECT_AFTER);
775
776    /* Register the missing hooks */
777    sdata = g_slice_new0(SignalData);
778    sdata->sender = sender;
779    sdata->signal_id = signal_id;
780
781    g_closure_add_invalidate_notifier(closure, sdata, _closure_invalidated);
782
783    return signal_id;
784  } else {
785    return g_signal_connect_data(sender, detailed_signal, c_handler, NULL, NULL, connect_flags);
786  }
787}
788
789/*
790 * There are three ways the signal could come to an end:
791 *
792 * 1. The user explicitly disconnects it with the returned signal_id.
793 *    - In that case, the disconnection unref's the closure, causing it
794 *      to first be invalidated. The handler's already disconnected, so
795 *      we have no work to do.
796 * 2. The sender gets destroyed.
797 *    - GObject will disconnect each signal which then goes into the above
798 *      case. Our handler does no work.
799 * 3. The receiver gets destroyed.
800 *    - The GClosure was created by g_cclosure_new_object_{,swap} which gets
801 *      invalidated when the receiver is destroyed. We then follow through case 1
802 *      again, but *this* time, the handler has not been disconnected. We then
803 *      clean up ourselves.
804 *
805 * We can't actually hook into this process earlier with weakrefs as GObject
806 * will, on object dispose, first disconnect signals, then invalidate closures,
807 * and notify weakrefs last.
808 */
809static void _closure_invalidated(gpointer data, GClosure *closure)
810{
811  SignalData *sdata = data;
812  if (g_signal_handler_is_connected(sdata->sender, sdata->signal_id)) {
813    g_signal_handler_disconnect(sdata->sender, sdata->signal_id);
814  }
815  g_slice_free(SignalData, sdata);
816}
817
Note: See TracBrowser for help on using the repository browser.