source: util.c @ b61ad80

release-1.10
Last change on this file since b61ad80 was cba6b9c, checked in by Anders Kaseorg <andersk@mit.edu>, 10 years ago
owl_util_file_deleteline: Prevent FD leak in error paths Found by Coverity Scan service. Signed-off-by: Anders Kaseorg <andersk@mit.edu>
  • Property mode set to 100644
File size: 22.0 KB
Line 
1#include "owl.h"
2#include <pwd.h>
3#include <sys/stat.h>
4#include <stdarg.h>
5#include <glib/gstdio.h>
6#include <glib-object.h>
7
8const char *skiptokens(const char *buff, int n) {
9  /* skips n tokens and returns where that would be. */
10  char quote = 0;
11  while (*buff && n>0) {
12      while (*buff == ' ') buff++;
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++;
20      }
21      while (*buff == ' ') buff++;
22      n--;
23  }
24  return buff;
25}
26
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
52/* Return a "nice" version of the path.  Tilde expansion is done, and
53 * duplicate slashes are removed.  Caller must free the return.
54 */
55CALLER_OWN char *owl_util_makepath(const char *in)
56{
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);
65
66    /* Patch together a new path. Replace the ~ and tilde-prefix with
67       the homedir, if available. */
68    if (end == in + 1) {
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);
72    } else {
73      /* Someone else's home directory. */
74      char *user = g_strndup(in + 1, end - (in + 1));
75      char *home = owl_util_homedir_for_user(user);
76      if (home) {
77        out = g_strconcat(home, end, NULL);
78      } else {
79        out = g_strdup(in);
80      }
81      g_free(home);
82      g_free(user);
83    }
84  } else {
85    out = g_strdup(in);
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];
92  }
93  out[j] = '\0';
94  return out;
95}
96
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
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. */
110CALLER_OWN char **owl_parseline(const char *line, int *argc)
111{
112  GPtrArray *argv;
113  int i, len, between=1;
114  GString *curarg;
115  char quote;
116
117  argv = g_ptr_array_new();
118  len=strlen(line);
119  curarg = g_string_new("");
120  quote='\0';
121  if (argc) *argc=0;
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 */
149      g_string_append_c(curarg, line[i]);
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') {
155      g_string_append_c(curarg, line[i]);
156      continue;
157    }
158
159    /* otherwise, if we're not in quotes, add the whole argument */
160    if (quote=='\0') {
161      /* add the argument */
162      g_ptr_array_add(argv, g_string_free(curarg, false));
163      curarg = g_string_new("");
164      between=1;
165      continue;
166    }
167
168    /* if it is a space and we're in quotes, then use it */
169    g_string_append_c(curarg, line[i]);
170  }
171
172  if (argc) *argc = argv->len;
173  g_ptr_array_add(argv, NULL);
174  g_string_free(curarg, true);
175
176  /* check for unbalanced quotes */
177  if (quote!='\0') {
178    owl_ptr_array_free(argv, g_free);
179    if (argc) *argc = -1;
180    return(NULL);
181  }
182
183  return (char**)g_ptr_array_free(argv, false);
184}
185
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
218/*
219 * Appends 'tmpl' to 'buf', replacing any instances of '%q' with arguments from
220 * the varargs provided, quoting them to be safe for placing in a BarnOwl
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
250CALLER_OWN char *owl_string_build_quoted(const char *tmpl, ...)
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
260/* Returns a quoted version of arg suitable for placing in a
261 * command-line. Result should be freed with g_free. */
262CALLER_OWN char *owl_arg_quote(const char *arg)
263{
264  GString *buf = g_string_new("");
265  owl_string_append_quoted_arg(buf, arg);
266  return g_string_free(buf, false);
267}
268
269/* Returns a quoted version of argv. owl_parseline on the result should give
270 * back the input. */
271CALLER_OWN char *owl_argv_quote(int argc, const char *const *argv)
272{
273  int i;
274  GString *buf = g_string_new("");
275  for (i = 0; i < argc; i++) {
276    if (i > 0)
277      g_string_append_c(buf, ' ');
278    owl_string_append_quoted_arg(buf, argv[i]);
279  }
280  return g_string_free(buf, false);
281}
282
283/* caller must free the return */
284CALLER_OWN char *owl_util_format_minutes(int in)
285{
286  int days, hours;
287  long run;
288  char *out;
289
290  run=in;
291
292  days=run/1440;
293  run-=days*1440;
294  hours=run/60;
295  run-=hours*60;
296
297  if (days>0) {
298    out=g_strdup_printf("%i d %2.2i:%2.2li", days, hours, run);
299  } else {
300    out=g_strdup_printf("    %2.2i:%2.2li", hours, run);
301  }
302  return(out);
303}
304
305CALLER_OWN char *owl_util_format_time(const struct tm *time)
306{
307  /* 32 chosen for first attempt because timestr will end up being
308   * something like "Www Mmm dd hh:mm:ss AM yyyy UTC\0" */ 
309  size_t timestr_size = 16;
310  char *timestr = NULL;
311  do {
312    timestr_size *= 2;
313    timestr = g_renew(char, timestr, timestr_size);
314  } while (strftime(timestr, timestr_size, "%c", time) == 0);
315  return timestr;
316}
317
318/* These are in order of their value in owl.h */
319static const struct {
320  int number;
321  const char *name;
322} color_map[] = {
323  {OWL_COLOR_INVALID, "invalid"},
324  {OWL_COLOR_DEFAULT, "default"},
325  {OWL_COLOR_BLACK, "black"},
326  {OWL_COLOR_RED, "red"},
327  {OWL_COLOR_GREEN, "green"},
328  {OWL_COLOR_YELLOW,"yellow"},
329  {OWL_COLOR_BLUE, "blue"},
330  {OWL_COLOR_MAGENTA, "magenta"},
331  {OWL_COLOR_CYAN, "cyan"},
332  {OWL_COLOR_WHITE, "white"},
333};
334
335/* Return the owl color associated with the named color.  Return -1
336 * if the named color is not available
337 */
338int owl_util_string_to_color(const char *color)
339{
340  int c, i;
341  char *p;
342
343  for (i = 0; i < (sizeof(color_map)/sizeof(color_map[0])); i++)
344    if (strcasecmp(color, color_map[i].name) == 0)
345      return color_map[i].number;
346
347  c = strtol(color, &p, 10);
348  if (p != color && c >= -1 && c < COLORS) {
349    return(c);
350  }
351  return(OWL_COLOR_INVALID);
352}
353
354/* Return a string name of the given owl color */
355const char *owl_util_color_to_string(int color)
356{
357  if (color >= OWL_COLOR_INVALID && color <= OWL_COLOR_WHITE)
358    return color_map[color - OWL_COLOR_INVALID].name;
359  return("Unknown color");
360}
361
362/* Get the default tty name.  Caller must free the return */
363CALLER_OWN char *owl_util_get_default_tty(void)
364{
365  const char *tmp;
366  char *out;
367
368  if (getenv("DISPLAY")) {
369    out=g_strdup(getenv("DISPLAY"));
370  } else if ((tmp=ttyname(fileno(stdout)))!=NULL) {
371    out=g_strdup(tmp);
372    if (!strncmp(out, "/dev/", 5)) {
373      g_free(out);
374      out=g_strdup(tmp+5);
375    }
376  } else {
377    out=g_strdup("unknown");
378  }
379  return(out);
380}
381
382/* strip leading and trailing new lines.  Caller must free the
383 * return.
384 */
385CALLER_OWN char *owl_util_stripnewlines(const char *in)
386{
387 
388  char  *tmp, *ptr1, *ptr2, *out;
389
390  ptr1=tmp=g_strdup(in);
391  while (ptr1[0]=='\n') {
392    ptr1++;
393  }
394  ptr2=ptr1+strlen(ptr1)-1;
395  while (ptr2>ptr1 && ptr2[0]=='\n') {
396    ptr2[0]='\0';
397    ptr2--;
398  }
399
400  out=g_strdup(ptr1);
401  g_free(tmp);
402  return(out);
403}
404
405
406/* If filename is a link, recursively resolve symlinks.  Otherwise, return the filename
407 * unchanged.  On error, call owl_function_error and return NULL.
408 *
409 * This function assumes that filename eventually resolves to an acutal file.
410 * If you want to check this, you should stat() the file first.
411 *
412 * The caller of this function is responsible for freeing the return value.
413 *
414 * Error conditions are the same as g_file_read_link.
415 */
416CALLER_OWN gchar *owl_util_recursive_resolve_link(const char *filename)
417{
418  gchar *last_path = g_strdup(filename);
419  GError *err = NULL;
420
421  while (g_file_test(last_path, G_FILE_TEST_IS_SYMLINK)) {
422    gchar *link_path = g_file_read_link(last_path, &err);
423    if (link_path == NULL) {
424      owl_function_error("Cannot resolve symlink %s: %s",
425                         last_path, err->message);
426      g_error_free(err);
427      g_free(last_path);
428      return NULL;
429    }
430
431    /* Deal with obnoxious relative paths. If we really care, all this
432     * is racy. Whatever. */
433    if (!g_path_is_absolute(link_path)) {
434      char *last_dir = g_path_get_dirname(last_path);
435      char *tmp = g_build_filename(last_dir, link_path, NULL);
436      g_free(last_dir);
437      g_free(link_path);
438      link_path = tmp;
439    }
440
441    g_free(last_path);
442    last_path = link_path;
443  }
444  return last_path;
445}
446
447/* Delete all lines matching "line" from the named file.  If no such
448 * line is found the file is left intact.  If backup==1 then leave a
449 * backup file containing the original contents.  The match is
450 * case-insensitive.
451 *
452 * Returns the number of lines removed on success.  Returns -1 on failure.
453 */
454int owl_util_file_deleteline(const char *filename, const char *line, int backup)
455{
456  char *backupfile, *newfile, *buf = NULL;
457  gchar *actual_filename; /* gchar; we need to g_free it */
458  FILE *old, *new;
459  struct stat st;
460  int numremoved = 0;
461
462  if ((old = fopen(filename, "r")) == NULL) {
463    owl_function_error("Cannot open %s (for reading): %s",
464                       filename, strerror(errno));
465    return -1;
466  }
467
468  if (fstat(fileno(old), &st) != 0) {
469    owl_function_error("Cannot stat %s: %s", filename, strerror(errno));
470    fclose(old);
471    return -1;
472  }
473
474  /* resolve symlinks, because link() fails on symlinks, at least on AFS */
475  actual_filename = owl_util_recursive_resolve_link(filename);
476  if (actual_filename == NULL) {
477    fclose(old);
478    return -1; /* resolving the symlink failed, but we already logged this error */
479  }
480
481  newfile = g_strdup_printf("%s.new", actual_filename);
482  if ((new = fopen(newfile, "w")) == NULL) {
483    owl_function_error("Cannot open %s (for writing): %s",
484                       actual_filename, strerror(errno));
485    g_free(newfile);
486    fclose(old);
487    g_free(actual_filename);
488    return -1;
489  }
490
491  if (fchmod(fileno(new), st.st_mode & 0777) != 0) {
492    owl_function_error("Cannot set permissions on %s: %s",
493                       actual_filename, strerror(errno));
494    unlink(newfile);
495    fclose(new);
496    g_free(newfile);
497    fclose(old);
498    g_free(actual_filename);
499    return -1;
500  }
501
502  while (owl_getline_chomp(&buf, old))
503    if (strcasecmp(buf, line) != 0)
504      fprintf(new, "%s\n", buf);
505    else
506      numremoved++;
507  g_free(buf);
508
509  fclose(new);
510  fclose(old);
511
512  if (backup) {
513    backupfile = g_strdup_printf("%s.backup", actual_filename);
514    unlink(backupfile);
515    if (link(actual_filename, backupfile) != 0) {
516      owl_function_error("Cannot link %s: %s", backupfile, strerror(errno));
517      g_free(backupfile);
518      unlink(newfile);
519      g_free(newfile);
520      return -1;
521    }
522    g_free(backupfile);
523  }
524
525  if (rename(newfile, actual_filename) != 0) {
526    owl_function_error("Cannot move %s to %s: %s",
527                       newfile, actual_filename, strerror(errno));
528    numremoved = -1;
529  }
530
531  unlink(newfile);
532  g_free(newfile);
533
534  g_free(actual_filename);
535
536  return numremoved;
537}
538
539/* Return the base class or instance from a zephyr class, by removing
540   leading `un' or trailing `.d'.
541   The caller is responsible for freeing the allocated string.
542*/
543CALLER_OWN char *owl_util_baseclass(const char *class)
544{
545  char *start, *end;
546
547  while(!strncmp(class, "un", 2)) {
548    class += 2;
549  }
550
551  start = g_strdup(class);
552  end = start + strlen(start) - 1;
553  while(end > start && *end == 'd' && *(end-1) == '.') {
554    end -= 2;
555  }
556  *(end + 1) = 0;
557
558  return start;
559}
560
561const char * owl_get_datadir(void)
562{
563  const char * datadir = getenv("BARNOWL_DATA_DIR");
564  if(datadir != NULL)
565    return datadir;
566  return DATADIR;
567}
568
569const char * owl_get_bindir(void)
570{
571  const char * bindir = getenv("BARNOWL_BIN_DIR");
572  if(bindir != NULL)
573    return bindir;
574  return BINDIR;
575}
576
577/* Strips format characters from a valid utf-8 string. Returns the
578   empty string if 'in' does not validate.  Caller must free the return. */
579CALLER_OWN char *owl_strip_format_chars(const char *in)
580{
581  char *r;
582  if (g_utf8_validate(in, -1, NULL)) {
583    const char *s, *p;
584    r = g_new(char, strlen(in)+1);
585    r[0] = '\0';
586    s = in;
587    p = strchr(s, OWL_FMTEXT_UC_STARTBYTE_UTF8);
588    while(p) {
589      /* If it's a format character, copy up to it, and skip all
590         immediately following format characters. */
591      if (owl_fmtext_is_format_char(g_utf8_get_char(p))) {
592        strncat(r, s, p-s);
593        p = g_utf8_next_char(p);
594        while (owl_fmtext_is_format_char(g_utf8_get_char(p))) {
595          p = g_utf8_next_char(p);
596        }
597        s = p;
598        p = strchr(s, OWL_FMTEXT_UC_STARTBYTE_UTF8);
599      }
600      else {
601        p = strchr(p+1, OWL_FMTEXT_UC_STARTBYTE_UTF8);
602      }
603    }
604    if (s) strcat(r,s);
605  }
606  else {
607    r = g_strdup("");
608  }
609  return r;
610}
611
612/* If in is not UTF-8, convert from ISO-8859-1. We may want to allow
613 * the caller to specify an alternative in the future. We also strip
614 * out characters in Unicode Plane 16, as we use that plane internally
615 * for formatting.
616 * Caller must free the return.
617 */
618CALLER_OWN char *owl_validate_or_convert(const char *in)
619{
620  if (g_utf8_validate(in, -1, NULL)) {
621    return owl_strip_format_chars(in);
622  }
623  else {
624    return g_convert(in, -1,
625                     "UTF-8", "ISO-8859-1",
626                     NULL, NULL, NULL);
627  }
628}
629/*
630 * Validate 'in' as UTF-8, and either return a copy of it, or an empty
631 * string if it is invalid utf-8.
632 * Caller must free the return.
633 */
634CALLER_OWN char *owl_validate_utf8(const char *in)
635{
636  char *out;
637  if (g_utf8_validate(in, -1, NULL)) {
638    out = g_strdup(in);
639  } else {
640    out = g_strdup("");
641  }
642  return out;
643}
644
645/* This is based on _extract() and _isCJ() from perl's Text::WrapI18N */
646int owl_util_can_break_after(gunichar c)
647{
648 
649  if (c == ' ') return 1;
650  if (c >= 0x3000 && c <= 0x312f) {
651    /* CJK punctuations, Hiragana, Katakana, Bopomofo */
652    if (c == 0x300a || c == 0x300c || c == 0x300e ||
653        c == 0x3010 || c == 0x3014 || c == 0x3016 ||
654        c == 0x3018 || c == 0x301a)
655      return 0;
656    return 1;
657  }
658  if (c >= 0x31a0 && c <= 0x31bf) {return 1;}  /* Bopomofo */
659  if (c >= 0x31f0 && c <= 0x31ff) {return 1;}  /* Katakana extension */
660  if (c >= 0x3400 && c <= 0x9fff) {return 1;}  /* Han Ideogram */
661  if (c >= 0xf900 && c <= 0xfaff) {return 1;}  /* Han Ideogram */
662  if (c >= 0x20000 && c <= 0x2ffff) {return 1;}  /* Han Ideogram */
663  return 0;
664}
665
666/* caller must free the return */
667CALLER_OWN char *owl_escape_highbit(const char *str)
668{
669  GString *out = g_string_new("");
670  unsigned char c;
671  while((c = (*str++))) {
672    if(c == '\\') {
673      g_string_append(out, "\\\\");
674    } else if(c & 0x80) {
675      g_string_append_printf(out, "\\x%02x", (int)c);
676    } else {
677      g_string_append_c(out, c);
678    }
679  }
680  return g_string_free(out, 0);
681}
682
683/* innards of owl_getline{,_chomp} below */
684static int owl_getline_internal(char **s, FILE *fp, int newline)
685{
686  int size = 0;
687  int target = 0;
688  int count = 0;
689  int c;
690
691  while (1) {
692    c = getc(fp);
693    if ((target + 1) > size) {
694      size += BUFSIZ;
695      *s = g_renew(char, *s, size);
696    }
697    if (c == EOF)
698      break;
699    count++;
700    if (c != '\n' || newline)
701        (*s)[target++] = c;
702    if (c == '\n')
703      break;
704  }
705  (*s)[target] = 0;
706
707  return count;
708}
709
710/* Read a line from fp, allocating memory to hold it, returning the number of
711 * byte read.  *s should either be NULL or a pointer to memory allocated with
712 * g_malloc; it will be g_renew'd as appropriate.  The caller must
713 * eventually free it.  (This is roughly the interface of getline in the gnu
714 * libc).
715 *
716 * The final newline will be included if it's there.
717 */
718int owl_getline(char **s, FILE *fp)
719{
720  return owl_getline_internal(s, fp, 1);
721}
722
723/* As above, but omitting the final newline */
724int owl_getline_chomp(char **s, FILE *fp)
725{
726  return owl_getline_internal(s, fp, 0);
727}
728
729/* Read the rest of the input available in fp into a string. */
730CALLER_OWN char *owl_slurp(FILE *fp)
731{
732  char *buf = NULL;
733  char *p;
734  int size = 0;
735  int count;
736
737  while (1) {
738    buf = g_renew(char, buf, size + BUFSIZ);
739    p = &buf[size];
740    size += BUFSIZ;
741
742    if ((count = fread(p, 1, BUFSIZ, fp)) < BUFSIZ)
743      break;
744  }
745  p[count] = 0;
746
747  return buf;
748}
749
750int owl_util_get_colorpairs(void) {
751#ifndef NCURSES_EXT_COLORS
752  /* Without ext-color support (an ABI change), ncurses only supports 256
753   * different color pairs. However, it gives us a larger number even if your
754   * ncurses is compiled without ext-color. */
755  return MIN(COLOR_PAIRS, 256);
756#else
757  return COLOR_PAIRS;
758#endif
759}
760
761gulong owl_dirty_window_on_signal(owl_window *w, gpointer sender, const gchar *detailed_signal)
762{
763  return owl_signal_connect_object(sender, detailed_signal, G_CALLBACK(owl_window_dirty), w, G_CONNECT_SWAPPED);
764}
765
766typedef struct { /*noproto*/
767  GObject  *sender;
768  gulong    signal_id;
769} SignalData;
770
771static void _closure_invalidated(gpointer data, GClosure *closure);
772
773/*
774 * GObject's g_signal_connect_object has a documented bug. This function is
775 * identical except it does not leak the signal handler.
776 */
777gulong owl_signal_connect_object(gpointer sender, const gchar *detailed_signal, GCallback c_handler, gpointer receiver, GConnectFlags connect_flags)
778{
779  g_return_val_if_fail (G_TYPE_CHECK_INSTANCE (sender), 0);
780  g_return_val_if_fail (detailed_signal != NULL, 0);
781  g_return_val_if_fail (c_handler != NULL, 0);
782
783  if (receiver) {
784    SignalData *sdata;
785    GClosure *closure;
786    gulong signal_id;
787
788    g_return_val_if_fail (G_IS_OBJECT (receiver), 0);
789
790    closure = ((connect_flags & G_CONNECT_SWAPPED) ? g_cclosure_new_object_swap : g_cclosure_new_object) (c_handler, receiver);
791    signal_id = g_signal_connect_closure (sender, detailed_signal, closure, connect_flags & G_CONNECT_AFTER);
792
793    /* Register the missing hooks */
794    sdata = g_slice_new0(SignalData);
795    sdata->sender = sender;
796    sdata->signal_id = signal_id;
797
798    g_closure_add_invalidate_notifier(closure, sdata, _closure_invalidated);
799
800    return signal_id;
801  } else {
802    return g_signal_connect_data(sender, detailed_signal, c_handler, NULL, NULL, connect_flags);
803  }
804}
805
806/*
807 * There are three ways the signal could come to an end:
808 *
809 * 1. The user explicitly disconnects it with the returned signal_id.
810 *    - In that case, the disconnection unref's the closure, causing it
811 *      to first be invalidated. The handler's already disconnected, so
812 *      we have no work to do.
813 * 2. The sender gets destroyed.
814 *    - GObject will disconnect each signal which then goes into the above
815 *      case. Our handler does no work.
816 * 3. The receiver gets destroyed.
817 *    - The GClosure was created by g_cclosure_new_object_{,swap} which gets
818 *      invalidated when the receiver is destroyed. We then follow through case 1
819 *      again, but *this* time, the handler has not been disconnected. We then
820 *      clean up ourselves.
821 *
822 * We can't actually hook into this process earlier with weakrefs as GObject
823 * will, on object dispose, first disconnect signals, then invalidate closures,
824 * and notify weakrefs last.
825 */
826static void _closure_invalidated(gpointer data, GClosure *closure)
827{
828  SignalData *sdata = data;
829  if (g_signal_handler_is_connected(sdata->sender, sdata->signal_id)) {
830    g_signal_handler_disconnect(sdata->sender, sdata->signal_id);
831  }
832  g_slice_free(SignalData, sdata);
833}
834
Note: See TracBrowser for help on using the repository browser.