source: util.c @ d9c6631

release-1.10release-1.9
Last change on this file since d9c6631 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
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/* caller must free the return */
270CALLER_OWN char *owl_util_format_minutes(int in)
271{
272  int days, hours;
273  long run;
274  char *out;
275
276  run=in;
277
278  days=run/1440;
279  run-=days*1440;
280  hours=run/60;
281  run-=hours*60;
282
283  if (days>0) {
284    out=g_strdup_printf("%i d %2.2i:%2.2li", days, hours, run);
285  } else {
286    out=g_strdup_printf("    %2.2i:%2.2li", hours, run);
287  }
288  return(out);
289}
290
291CALLER_OWN char *owl_util_format_time(const struct tm *time)
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
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};
320
321/* Return the owl color associated with the named color.  Return -1
322 * if the named color is not available
323 */
324int owl_util_string_to_color(const char *color)
325{
326  int c, i;
327  char *p;
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
333  c = strtol(color, &p, 10);
334  if (p != color && c >= -1 && c < COLORS) {
335    return(c);
336  }
337  return(OWL_COLOR_INVALID);
338}
339
340/* Return a string name of the given owl color */
341const char *owl_util_color_to_string(int color)
342{
343  if (color >= OWL_COLOR_INVALID && color <= OWL_COLOR_WHITE)
344    return color_map[color - OWL_COLOR_INVALID].name;
345  return("Unknown color");
346}
347
348/* Get the default tty name.  Caller must free the return */
349CALLER_OWN char *owl_util_get_default_tty(void)
350{
351  const char *tmp;
352  char *out;
353
354  if (getenv("DISPLAY")) {
355    out=g_strdup(getenv("DISPLAY"));
356  } else if ((tmp=ttyname(fileno(stdout)))!=NULL) {
357    out=g_strdup(tmp);
358    if (!strncmp(out, "/dev/", 5)) {
359      g_free(out);
360      out=g_strdup(tmp+5);
361    }
362  } else {
363    out=g_strdup("unknown");
364  }
365  return(out);
366}
367
368/* strip leading and trailing new lines.  Caller must free the
369 * return.
370 */
371CALLER_OWN char *owl_util_stripnewlines(const char *in)
372{
373 
374  char  *tmp, *ptr1, *ptr2, *out;
375
376  ptr1=tmp=g_strdup(in);
377  while (ptr1[0]=='\n') {
378    ptr1++;
379  }
380  ptr2=ptr1+strlen(ptr1)-1;
381  while (ptr2>ptr1 && ptr2[0]=='\n') {
382    ptr2[0]='\0';
383    ptr2--;
384  }
385
386  out=g_strdup(ptr1);
387  g_free(tmp);
388  return(out);
389}
390
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 */
402CALLER_OWN gchar *owl_util_recursive_resolve_link(const char *filename)
403{
404  gchar *last_path = g_strdup(filename);
405  GError *err = NULL;
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);
421      char *tmp = g_build_filename(last_dir, link_path, NULL);
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;
429  }
430  return last_path;
431}
432
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.
437 *
438 * Returns the number of lines removed on success.  Returns -1 on failure.
439 */
440int owl_util_file_deleteline(const char *filename, const char *line, int backup)
441{
442  char *backupfile, *newfile, *buf = NULL;
443  gchar *actual_filename; /* gchar; we need to g_free it */
444  FILE *old, *new;
445  struct stat st;
446  int numremoved = 0;
447
448  if ((old = fopen(filename, "r")) == NULL) {
449    owl_function_error("Cannot open %s (for reading): %s",
450                       filename, strerror(errno));
451    return -1;
452  }
453
454  if (fstat(fileno(old), &st) != 0) {
455    owl_function_error("Cannot stat %s: %s", filename, strerror(errno));
456    return -1;
457  }
458
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
464  newfile = g_strdup_printf("%s.new", actual_filename);
465  if ((new = fopen(newfile, "w")) == NULL) {
466    owl_function_error("Cannot open %s (for writing): %s",
467                       actual_filename, strerror(errno));
468    g_free(newfile);
469    fclose(old);
470    g_free(actual_filename);
471    return -1;
472  }
473
474  if (fchmod(fileno(new), st.st_mode & 0777) != 0) {
475    owl_function_error("Cannot set permissions on %s: %s",
476                       actual_filename, strerror(errno));
477    unlink(newfile);
478    fclose(new);
479    g_free(newfile);
480    fclose(old);
481    g_free(actual_filename);
482    return -1;
483  }
484
485  while (owl_getline_chomp(&buf, old))
486    if (strcasecmp(buf, line) != 0)
487      fprintf(new, "%s\n", buf);
488    else
489      numremoved++;
490  g_free(buf);
491
492  fclose(new);
493  fclose(old);
494
495  if (backup) {
496    backupfile = g_strdup_printf("%s.backup", actual_filename);
497    unlink(backupfile);
498    if (link(actual_filename, backupfile) != 0) {
499      owl_function_error("Cannot link %s: %s", backupfile, strerror(errno));
500      g_free(backupfile);
501      unlink(newfile);
502      g_free(newfile);
503      return -1;
504    }
505    g_free(backupfile);
506  }
507
508  if (rename(newfile, actual_filename) != 0) {
509    owl_function_error("Cannot move %s to %s: %s",
510                       newfile, actual_filename, strerror(errno));
511    numremoved = -1;
512  }
513
514  unlink(newfile);
515  g_free(newfile);
516
517  g_free(actual_filename);
518
519  return numremoved;
520}
521
522/* Return the base class or instance from a zephyr class, by removing
523   leading `un' or trailing `.d'.
524   The caller is responsible for freeing the allocated string.
525*/
526CALLER_OWN char *owl_util_baseclass(const char *class)
527{
528  char *start, *end;
529
530  while(!strncmp(class, "un", 2)) {
531    class += 2;
532  }
533
534  start = g_strdup(class);
535  end = start + strlen(start) - 1;
536  while(end > start && *end == 'd' && *(end-1) == '.') {
537    end -= 2;
538  }
539  *(end + 1) = 0;
540
541  return start;
542}
543
544const char * owl_get_datadir(void)
545{
546  const char * datadir = getenv("BARNOWL_DATA_DIR");
547  if(datadir != NULL)
548    return datadir;
549  return DATADIR;
550}
551
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
560/* Strips format characters from a valid utf-8 string. Returns the
561   empty string if 'in' does not validate.  Caller must free the return. */
562CALLER_OWN char *owl_strip_format_chars(const char *in)
563{
564  char *r;
565  if (g_utf8_validate(in, -1, NULL)) {
566    const char *s, *p;
567    r = g_new(char, strlen(in)+1);
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. */
574      if (owl_fmtext_is_format_char(g_utf8_get_char(p))) {
575        strncat(r, s, p-s);
576        p = g_utf8_next_char(p);
577        while (owl_fmtext_is_format_char(g_utf8_get_char(p))) {
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 {
590    r = g_strdup("");
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.
599 * Caller must free the return.
600 */
601CALLER_OWN char *owl_validate_or_convert(const char *in)
602{
603  if (g_utf8_validate(in, -1, NULL)) {
604    return owl_strip_format_chars(in);
605  }
606  else {
607    return g_convert(in, -1,
608                     "UTF-8", "ISO-8859-1",
609                     NULL, NULL, NULL);
610  }
611}
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.
615 * Caller must free the return.
616 */
617CALLER_OWN char *owl_validate_utf8(const char *in)
618{
619  char *out;
620  if (g_utf8_validate(in, -1, NULL)) {
621    out = g_strdup(in);
622  } else {
623    out = g_strdup("");
624  }
625  return out;
626}
627
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}
648
649/* caller must free the return */
650CALLER_OWN char *owl_escape_highbit(const char *str)
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}
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;
678      *s = g_renew(char, *s, size);
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
695 * g_malloc; it will be g_renew'd as appropriate.  The caller must
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. */
713CALLER_OWN char *owl_slurp(FILE *fp)
714{
715  char *buf = NULL;
716  char *p;
717  int size = 0;
718  int count;
719
720  while (1) {
721    buf = g_renew(char, buf, size + BUFSIZ);
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}
732
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
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
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.