source: global.c @ 0d53dfb

release-1.10
Last change on this file since 0d53dfb was 7dcef03, checked in by Anders Kaseorg <andersk@mit.edu>, 10 years ago
Use the Glib slice allocator for fixed-size objects The slice allocator, available since GLib 2.10, is more space-efficient than [g_]malloc. Since BarnOwl is obviously at the leading edge of space-efficient technology, this seems like a natural fit. Use it for every fixed-size object except owl_viewwin_search_data (which would need an extra destroy_cbdata function to g_slice_free it). Signed-off-by: Anders Kaseorg <andersk@mit.edu>
  • Property mode set to 100644
File size: 21.6 KB
Line 
1#include "owl.h"
2#include <stdio.h>
3#include <sys/ioctl.h>
4
5static void _owl_global_init_windows(owl_global *g);
6
7void owl_global_init(owl_global *g) {
8  char *cd;
9  const char *homedir;
10
11#if !GLIB_CHECK_VERSION(2, 35, 0)
12  g_type_init();
13#endif
14#if !GLIB_CHECK_VERSION(2, 31, 0)
15  g_thread_init(NULL);
16#endif
17
18  owl_select_init();
19
20  g->lines=LINES;
21  g->cols=COLS;
22  /* We shouldn't need this if we initialize lines and cols before the first
23   * owl_window_get_screen, but to be safe, we synchronize. */
24  owl_window_resize(owl_window_get_screen(), g->lines, g->cols);
25
26  g->context_stack = NULL;
27  owl_global_push_context(g, OWL_CTX_STARTUP, NULL, NULL, NULL);
28
29  g->curmsg=0;
30  g->topmsg=0;
31  g->markedmsgid=-1;
32  g->startupargs=NULL;
33
34  owl_variable_dict_setup(&(g->vars));
35
36  g->rightshift=0;
37
38  g->pw = NULL;
39  g->vw = NULL;
40  g->tw = NULL;
41
42  owl_keyhandler_init(&g->kh);
43  owl_keys_setup_keymaps(&g->kh);
44
45  owl_dict_create(&(g->filters));
46  g->filterlist = NULL;
47  g->puntlist = g_ptr_array_new();
48  g->messagequeue = g_queue_new();
49  owl_dict_create(&(g->styledict));
50  g->curmsg_vert_offset=0;
51  g->resizepending=0;
52  g->direction=OWL_DIRECTION_DOWNWARDS;
53  owl_fmtext_init_colorpair_mgr(&(g->cpmgr));
54  g->debug=OWL_DEBUG;
55  owl_regex_init(&g->search_re);
56  g->starttime=time(NULL); /* assumes we call init only a start time */
57  g->lastinputtime=g->starttime;
58  g->last_wakeup_time = g->starttime;
59  g->newmsgproc_pid=0;
60 
61  owl_global_set_config_format(g, 0);
62  owl_global_set_no_have_config(g);
63  owl_history_init(&(g->msghist));
64  owl_history_init(&(g->cmdhist));
65  g->nextmsgid=0;
66
67  /* Fill in some variables which don't have constant defaults */
68
69  /* glib's g_get_home_dir prefers passwd entries to $HOME, so we
70   * explicitly check getenv first. */
71  homedir = getenv("HOME");
72  if (!homedir)
73    homedir = g_get_home_dir();
74  g->homedir = g_strdup(homedir);
75
76  g->confdir = NULL;
77  g->startupfile = NULL;
78  cd = g_build_filename(g->homedir, OWL_CONFIG_DIR, NULL);
79  owl_global_set_confdir(g, cd);
80  g_free(cd);
81
82  g->msglist = owl_messagelist_new();
83
84  _owl_global_init_windows(g);
85
86  g->aim_screenname=NULL;
87  g->aim_screenname_for_filters=NULL;
88  g->aim_loggedin=0;
89  owl_buddylist_init(&(g->buddylist));
90
91  g->havezephyr=0;
92  g->haveaim=0;
93  g->ignoreaimlogin=0;
94  owl_global_set_no_doaimevents(g);
95
96  owl_errqueue_init(&(g->errqueue));
97
98  owl_zbuddylist_create(&(g->zbuddies));
99
100  g->zaldlist = NULL;
101  g->pseudologin_notify = 0;
102
103  owl_message_init_fmtext_cache();
104  g->kill_buffer = NULL;
105
106  g->interrupt_count = 0;
107#if GLIB_CHECK_VERSION(2, 31, 0)
108  g_mutex_init(&g->interrupt_lock);
109#else
110  g->interrupt_lock = g_mutex_new();
111#endif
112}
113
114static void _owl_global_init_windows(owl_global *g)
115{
116  /* Create the main window */
117  owl_mainpanel_init(&(g->mainpanel));
118
119  /* Create the widgets */
120  g->mw = owl_mainwin_new(g->mainpanel.recwin);
121  owl_msgwin_init(&(g->msgwin), g->mainpanel.msgwin);
122  owl_sepbar_init(g->mainpanel.sepwin);
123
124  owl_window_set_default_cursor(g->mainpanel.sepwin);
125
126  /* set up a pad for input */
127  g->input_pad = newpad(1, 1);
128  nodelay(g->input_pad, 1);
129  keypad(g->input_pad, 1);
130  meta(g->input_pad, 1);
131}
132
133void owl_global_sepbar_dirty(owl_global *g)
134{
135  owl_window_dirty(g->mainpanel.sepwin);
136}
137
138/* Called once perl has been initialized */
139void owl_global_complete_setup(owl_global *g)
140{
141  owl_cmddict_setup(&(g->cmds));
142}
143
144owl_context *owl_global_get_context(const owl_global *g) {
145  if (!g->context_stack)
146    return NULL;
147  return g->context_stack->data;
148}
149
150static void owl_global_activate_context(owl_global *g, owl_context *c) {
151  if (!c)
152    return;
153
154  if (c->keymap) {
155    if (!owl_keyhandler_activate(owl_global_get_keyhandler(g), c->keymap)) {
156      owl_function_error("Unable to activate keymap '%s'", c->keymap);
157    }
158  }
159  owl_window_set_cursor(c->cursor);
160}
161
162void owl_global_push_context(owl_global *g, int mode, void *data, const char *keymap, owl_window *cursor) {
163  owl_context *c;
164  c = owl_context_new(mode, data, keymap, cursor);
165  owl_global_push_context_obj(g, c);
166}
167
168void owl_global_push_context_obj(owl_global *g, owl_context *c)
169{
170  g->context_stack = g_list_prepend(g->context_stack, c);
171  owl_global_activate_context(g, owl_global_get_context(g));
172}
173
174/* Pops the current context from the context stack and returns it. Caller is
175 * responsible for freeing. */
176CALLER_OWN owl_context *owl_global_pop_context_no_delete(owl_global *g)
177{
178  owl_context *c;
179  if (!g->context_stack)
180    return NULL;
181  c = owl_global_get_context(g);
182  owl_context_deactivate(c);
183  g->context_stack = g_list_delete_link(g->context_stack,
184                                        g->context_stack);
185  owl_global_activate_context(g, owl_global_get_context(g));
186  return c;
187}
188
189/* Pops the current context from the context stack and deletes it. */
190void owl_global_pop_context(owl_global *g) {
191  owl_context *c;
192  c = owl_global_pop_context_no_delete(g);
193  if (c)
194    owl_context_delete(c);
195}
196
197int owl_global_get_lines(const owl_global *g) {
198  return(g->lines);
199}
200
201int owl_global_get_cols(const owl_global *g) {
202  return(g->cols);
203}
204
205int owl_global_get_recwin_lines(const owl_global *g) {
206  return g->mainpanel.recwinlines;
207}
208
209/* curmsg */
210
211int owl_global_get_curmsg(const owl_global *g) {
212  return(g->curmsg);
213}
214
215void owl_global_set_curmsg(owl_global *g, int i) {
216  g->curmsg=i;
217  /* we will reset the vertical offset from here */
218  /* we might want to move this out to the functions later */
219  owl_global_set_curmsg_vert_offset(g, 0);
220}
221
222/* topmsg */
223
224int owl_global_get_topmsg(const owl_global *g) {
225  return(g->topmsg);
226}
227
228void owl_global_set_topmsg(owl_global *g, int i) {
229  g->topmsg=i;
230}
231
232/* markedmsgid */
233
234int owl_global_get_markedmsgid(const owl_global *g) {
235  return(g->markedmsgid);
236}
237
238void owl_global_set_markedmsgid(owl_global *g, int i) {
239  g->markedmsgid=i;
240  /* i; index of message in the current view.
241  const owl_message *m;
242  owl_view *v;
243
244  v = owl_global_get_current_view(&g);
245  m = owl_view_get_element(v, i);
246  g->markedmsgid = m ? owl_message_get_id(m) : 0;
247  */
248}
249
250/* windows */
251
252owl_mainwin *owl_global_get_mainwin(owl_global *g)
253{
254  return g->mw;
255}
256
257owl_popwin *owl_global_get_popwin(owl_global *g) {
258  return g->pw;
259}
260
261void owl_global_set_popwin(owl_global *g, owl_popwin *pw) {
262  g->pw = pw;
263}
264
265/* msglist */
266
267owl_messagelist *owl_global_get_msglist(owl_global *g) {
268  return g->msglist;
269}
270
271/* keyhandler */
272
273owl_keyhandler *owl_global_get_keyhandler(owl_global *g) {
274  return(&(g->kh));
275}
276
277/* Gets the currently active typwin out of the current context. */
278owl_editwin *owl_global_current_typwin(const owl_global *g) {
279  owl_context *ctx = owl_global_get_context(g);
280  return owl_editcontext_get_editwin(ctx);
281}
282
283/* variable dictionary */
284
285owl_vardict *owl_global_get_vardict(owl_global *g) {
286  return &(g->vars);
287}
288
289/* command dictionary */
290
291owl_cmddict *owl_global_get_cmddict(owl_global *g) {
292  return &(g->cmds);
293}
294
295/* rightshift */
296
297void owl_global_set_rightshift(owl_global *g, int i) {
298  g->rightshift = i;
299  owl_mainwin_redisplay(owl_global_get_mainwin(g));
300}
301
302int owl_global_get_rightshift(const owl_global *g) {
303  return(g->rightshift);
304}
305
306/* typwin */
307
308owl_editwin *owl_global_set_typwin_active(owl_global *g, int style, owl_history *hist) {
309  int d;
310  d = owl_global_get_typewindelta(g);
311  if (d > 0 && style == OWL_EDITWIN_STYLE_MULTILINE)
312      owl_function_resize_typwin(owl_global_get_typwin_lines(g) + d);
313
314  if (g->typwin_erase_id) {
315    g_signal_handler_disconnect(g->mainpanel.typwin, g->typwin_erase_id);
316    g->typwin_erase_id = 0;
317  }
318
319  g->tw = owl_editwin_new(g->mainpanel.typwin,
320                          owl_global_get_typwin_lines(g),
321                          g->cols,
322                          style,
323                          hist);
324  return g->tw;
325}
326
327void owl_global_deactivate_editcontext(owl_context *ctx) {
328  owl_global *g = ctx->cbdata;
329  owl_global_set_typwin_inactive(g);
330}
331
332void owl_global_set_typwin_inactive(owl_global *g) {
333  int d = owl_global_get_typewindelta(g);
334  if (d > 0 && owl_editwin_get_style(g->tw) == OWL_EDITWIN_STYLE_MULTILINE)
335      owl_function_resize_typwin(owl_global_get_typwin_lines(g) - d);
336
337  if (!g->typwin_erase_id) {
338    g->typwin_erase_id =
339      g_signal_connect(g->mainpanel.typwin, "redraw", G_CALLBACK(owl_window_erase_cb), NULL);
340  }
341  owl_window_dirty(g->mainpanel.typwin);
342
343  owl_editwin_unref(g->tw);
344  g->tw = NULL;
345}
346
347/* resize */
348
349void owl_global_set_resize_pending(owl_global *g) {
350  g->resizepending = true;
351}
352
353const char *owl_global_get_homedir(const owl_global *g) {
354  if (g->homedir) return(g->homedir);
355  return("/");
356}
357
358const char *owl_global_get_confdir(const owl_global *g) {
359  if (g->confdir) return(g->confdir);
360  return("/");
361}
362
363/*
364 * Setting this also sets startupfile to confdir/startup
365 */
366void owl_global_set_confdir(owl_global *g, const char *cd) {
367  g_free(g->confdir);
368  g->confdir = g_strdup(cd);
369  g_free(g->startupfile);
370  g->startupfile = g_build_filename(cd, "startup", NULL);
371}
372
373const char *owl_global_get_startupfile(const owl_global *g) {
374  if(g->startupfile) return(g->startupfile);
375  return("/");
376}
377
378int owl_global_get_direction(const owl_global *g) {
379  return(g->direction);
380}
381
382void owl_global_set_direction_downwards(owl_global *g) {
383  g->direction=OWL_DIRECTION_DOWNWARDS;
384}
385
386void owl_global_set_direction_upwards(owl_global *g) {
387  g->direction=OWL_DIRECTION_UPWARDS;
388}
389
390/* perl stuff */
391
392void owl_global_set_perlinterp(owl_global *g, void *p) {
393  g->perl=p;
394}
395
396void *owl_global_get_perlinterp(const owl_global *g) {
397  return(g->perl);
398}
399
400int owl_global_is_config_format(const owl_global *g) {
401  if (g->config_format) return(1);
402  return(0);
403}
404
405void owl_global_set_config_format(owl_global *g, int state) {
406  if (state==1) {
407    g->config_format=1;
408  } else {
409    g->config_format=0;
410  }
411}
412
413void owl_global_set_have_config(owl_global *g) {
414  g->haveconfig=1;
415}
416
417void owl_global_set_no_have_config(owl_global *g) {
418  g->haveconfig=0;
419}
420
421int owl_global_have_config(owl_global *g) {
422  if (g->haveconfig) return(1);
423  return(0);
424}
425
426/*
427 * Compute the size of the terminal. Try a ioctl, fallback to other stuff on
428 * fail.
429 */
430void owl_global_get_terminal_size(int *lines, int *cols) {
431  struct winsize size;
432  /* get the new size */
433  ioctl(STDIN_FILENO, TIOCGWINSZ, &size);
434  if (size.ws_row) {
435    *lines = size.ws_row;
436  } else {
437    *lines = LINES;
438  }
439
440  if (size.ws_col) {
441    *cols = size.ws_col;
442  } else {
443    *cols = COLS;
444  }
445}
446
447void owl_global_check_resize(owl_global *g) {
448  /* resize the screen.  If lines or cols is 0 use the terminal size */
449  if (!g->resizepending) return;
450  g->resizepending = false;
451
452  owl_global_get_terminal_size(&g->lines, &g->cols);
453  owl_window_resize(owl_window_get_screen(), g->lines, g->cols);
454
455  owl_function_debugmsg("New size is %i lines, %i cols.", g->lines, g->cols);
456}
457
458/* debug */
459
460int owl_global_is_debug_fast(const owl_global *g) {
461  if (g->debug) return(1);
462  return(0);
463}
464
465/* starttime */
466
467time_t owl_global_get_starttime(const owl_global *g) {
468  return(g->starttime);
469}
470
471time_t owl_global_get_runtime(const owl_global *g) {
472  return(time(NULL)-g->starttime);
473}
474
475time_t owl_global_get_lastinputtime(const owl_global *g) {
476  return(g->lastinputtime);
477}
478
479void owl_global_set_lastinputtime(owl_global *g, time_t time) {
480  g->lastinputtime = time;
481}
482
483time_t owl_global_get_idletime(const owl_global *g) {
484  return(time(NULL)-g->lastinputtime);
485}
486
487void owl_global_wakeup(owl_global *g)
488{
489  if (time(NULL) - g->last_wakeup_time >= 1) {
490    g_free(owl_perlconfig_execute("BarnOwl::Hooks::_wakeup()"));
491    g->last_wakeup_time = time(NULL);
492  }
493}
494
495/* viewwin */
496
497owl_viewwin *owl_global_get_viewwin(owl_global *g) {
498  return g->vw;
499}
500
501void owl_global_set_viewwin(owl_global *g, owl_viewwin *vw) {
502  g->vw = vw;
503}
504
505
506/* vert offset */
507
508int owl_global_get_curmsg_vert_offset(const owl_global *g) {
509  return(g->curmsg_vert_offset);
510}
511
512void owl_global_set_curmsg_vert_offset(owl_global *g, int i) {
513  g->curmsg_vert_offset = i;
514}
515
516/* startup args */
517
518void owl_global_set_startupargs(owl_global *g, int argc, char **argv) {
519  g_free(g->startupargs);
520  g->startupargs = g_strjoinv(" ", argv);
521}
522
523const char *owl_global_get_startupargs(const owl_global *g) {
524  if (g->startupargs) return(g->startupargs);
525  return("");
526}
527
528/* history */
529
530owl_history *owl_global_get_msg_history(owl_global *g) {
531  return(&(g->msghist));
532}
533
534owl_history *owl_global_get_cmd_history(owl_global *g) {
535  return(&(g->cmdhist));
536}
537
538/* filterlist */
539typedef struct _owl_global_filter_ent {         /* noproto */
540  owl_global *g;
541  owl_filter *f;
542} owl_global_filter_ent;
543
544owl_filter *owl_global_get_filter(const owl_global *g, const char *name) {
545  owl_global_filter_ent *e = owl_dict_find_element(&(g->filters), name);
546  if (e) return e->f;
547  return NULL;
548}
549
550static void owl_global_delete_filter_ent(void *data)
551{
552  owl_global_filter_ent *e = data;
553  e->g->filterlist = g_list_remove(e->g->filterlist, e->f);
554  owl_filter_delete(e->f);
555  g_slice_free(owl_global_filter_ent, e);
556}
557
558void owl_global_add_filter(owl_global *g, owl_filter *f) {
559  owl_global_filter_ent *e = g_slice_new(owl_global_filter_ent);
560  e->g = g;
561  e->f = f;
562
563  owl_dict_insert_element(&(g->filters), owl_filter_get_name(f),
564                          e, owl_global_delete_filter_ent);
565  g->filterlist = g_list_append(g->filterlist, f);
566}
567
568void owl_global_remove_filter(owl_global *g, const char *name) {
569  owl_global_filter_ent *e = owl_dict_remove_element(&(g->filters), name);
570  if (e)
571    owl_global_delete_filter_ent(e);
572}
573
574/* nextmsgid */
575
576int owl_global_get_nextmsgid(owl_global *g) {
577  return(g->nextmsgid++);
578}
579
580/* current view */
581
582owl_view *owl_global_get_current_view(owl_global *g) {
583  return(&(g->current_view));
584}
585
586owl_colorpair_mgr *owl_global_get_colorpair_mgr(owl_global *g) {
587  return(&(g->cpmgr));
588}
589
590/* puntlist */
591
592GPtrArray *owl_global_get_puntlist(owl_global *g) {
593  return g->puntlist;
594}
595
596int owl_global_message_is_puntable(owl_global *g, const owl_message *m) {
597  const GPtrArray *pl;
598  int i;
599
600  pl = owl_global_get_puntlist(g);
601  for (i = 0; i < pl->len; i++) {
602    if (owl_filter_message_match(pl->pdata[i], m)) return 1;
603  }
604  return 0;
605}
606
607int owl_global_should_followlast(owl_global *g) {
608  const owl_view *v;
609 
610  if (!owl_global_is__followlast(g)) return(0);
611 
612  v=owl_global_get_current_view(g);
613 
614  if (owl_global_get_curmsg(g)==owl_view_get_size(v)-1) return(1);
615  return(0);
616}
617
618int owl_global_is_search_active(const owl_global *g) {
619  if (owl_regex_is_set(&g->search_re)) return(1);
620  return(0);
621}
622
623void owl_global_set_search_re(owl_global *g, const owl_regex *re) {
624  if (owl_regex_is_set(&g->search_re)) {
625    owl_regex_cleanup(&g->search_re);
626    owl_regex_init(&g->search_re);
627  }
628  if (re != NULL)
629    owl_regex_copy(re, &g->search_re);
630  /* TODO: Emit a signal so we don't depend on the viewwin and mainwin */
631  if (owl_global_get_viewwin(g))
632    owl_viewwin_dirty(owl_global_get_viewwin(g));
633  owl_mainwin_redisplay(owl_global_get_mainwin(g));
634}
635
636const owl_regex *owl_global_get_search_re(const owl_global *g) {
637  return &g->search_re;
638}
639
640void owl_global_set_newmsgproc_pid(owl_global *g, pid_t i) {
641  g->newmsgproc_pid=i;
642}
643
644pid_t owl_global_get_newmsgproc_pid(const owl_global *g) {
645  return(g->newmsgproc_pid);
646}
647
648/* AIM stuff */
649
650int owl_global_is_aimloggedin(const owl_global *g)
651{
652  if (g->aim_loggedin) return(1);
653  return(0);
654}
655
656const char *owl_global_get_aim_screenname(const owl_global *g)
657{
658  if (owl_global_is_aimloggedin(g)) {
659    return (g->aim_screenname);
660  }
661  return("");
662}
663
664const char *owl_global_get_aim_screenname_for_filters(const owl_global *g)
665{
666  if (owl_global_is_aimloggedin(g)) {
667    return (g->aim_screenname_for_filters);
668  }
669  return("");
670}
671
672void owl_global_set_aimloggedin(owl_global *g, const char *screenname)
673{
674  char *sn_escaped;
675  g->aim_loggedin=1;
676  if (g->aim_screenname) g_free(g->aim_screenname);
677  if (g->aim_screenname_for_filters) g_free(g->aim_screenname_for_filters);
678  g->aim_screenname=g_strdup(screenname);
679  sn_escaped = owl_text_quote(screenname, OWL_REGEX_QUOTECHARS, OWL_REGEX_QUOTEWITH);
680  g->aim_screenname_for_filters = owl_arg_quote(sn_escaped);
681  g_free(sn_escaped);
682}
683
684void owl_global_set_aimnologgedin(owl_global *g)
685{
686  g->aim_loggedin=0;
687}
688
689bool owl_global_is_doaimevents(const owl_global *g)
690{
691  return g->aim_event_source != NULL;
692}
693
694void owl_global_set_doaimevents(owl_global *g)
695{
696  if (g->aim_event_source)
697    return;
698  g->aim_event_source = owl_aim_event_source_new(owl_global_get_aimsess(g));
699  g_source_attach(g->aim_event_source, NULL);
700}
701
702void owl_global_set_no_doaimevents(owl_global *g)
703{
704  if (!g->aim_event_source)
705    return;
706  g_source_destroy(g->aim_event_source);
707  g_source_unref(g->aim_event_source);
708  g->aim_event_source = NULL;
709}
710
711aim_session_t *owl_global_get_aimsess(owl_global *g)
712{
713  return(&(g->aimsess));
714}
715
716aim_conn_t *owl_global_get_bosconn(owl_global *g)
717{
718  return(&(g->bosconn));
719}
720
721void owl_global_set_bossconn(owl_global *g, aim_conn_t *conn)
722{
723  g->bosconn=*conn;
724}
725
726/* message queue */
727
728void owl_global_messagequeue_addmsg(owl_global *g, owl_message *m)
729{
730  g_queue_push_tail(g->messagequeue, m);
731}
732
733/* pop off the first message and return it.  Return NULL if the queue
734 * is empty.  The caller should free the message after using it, if
735 * necessary.
736 */
737CALLER_OWN owl_message *owl_global_messagequeue_popmsg(owl_global *g)
738{
739  owl_message *out;
740
741  if (g_queue_is_empty(g->messagequeue))
742    return NULL;
743  out = g_queue_pop_head(g->messagequeue);
744  return out;
745}
746
747int owl_global_messagequeue_pending(owl_global *g)
748{
749  return !g_queue_is_empty(g->messagequeue);
750}
751
752owl_buddylist *owl_global_get_buddylist(owl_global *g)
753{
754  return(&(g->buddylist));
755}
756 
757/* style */
758
759/* Return the style with name 'name'.  If it does not exist return
760 * NULL */
761const owl_style *owl_global_get_style_by_name(const owl_global *g, const char *name)
762{
763  return owl_dict_find_element(&(g->styledict), name);
764}
765
766CALLER_OWN GPtrArray *owl_global_get_style_names(const owl_global *g)
767{
768  return owl_dict_get_keys(&g->styledict);
769}
770
771void owl_global_add_style(owl_global *g, owl_style *s)
772{
773  /*
774   * If we're redefining the current style, make sure to update
775   * pointers to it.
776   */
777  if(g->current_view.style
778     && !strcmp(owl_style_get_name(g->current_view.style),
779                owl_style_get_name(s)))
780    g->current_view.style = s;
781  owl_dict_insert_element(&(g->styledict), owl_style_get_name(s),
782                          s, (void (*)(void *))owl_style_delete);
783}
784
785void owl_global_set_haveaim(owl_global *g)
786{
787  g->haveaim=1;
788}
789
790int owl_global_is_haveaim(const owl_global *g)
791{
792  if (g->haveaim) return(1);
793  return(0);
794}
795
796void owl_global_set_ignore_aimlogin(owl_global *g)
797{
798    g->ignoreaimlogin = 1;
799}
800
801void owl_global_unset_ignore_aimlogin(owl_global *g)
802{
803    g->ignoreaimlogin = 0;
804}
805
806int owl_global_is_ignore_aimlogin(const owl_global *g)
807{
808    return g->ignoreaimlogin;
809}
810
811void owl_global_set_havezephyr(owl_global *g)
812{
813  g->havezephyr=1;
814}
815
816int owl_global_is_havezephyr(const owl_global *g)
817{
818  if (g->havezephyr) return(1);
819  return(0);
820}
821
822owl_errqueue *owl_global_get_errqueue(owl_global *g)
823{
824  return(&(g->errqueue));
825}
826
827owl_zbuddylist *owl_global_get_zephyr_buddylist(owl_global *g)
828{
829  return(&(g->zbuddies));
830}
831
832GList **owl_global_get_zaldlist(owl_global *g)
833{
834  return &(g->zaldlist);
835}
836
837int owl_global_get_pseudologin_notify(owl_global *g)
838{
839  return g->pseudologin_notify;
840}
841
842void owl_global_set_pseudologin_notify(owl_global *g, int notify)
843{
844  g->pseudologin_notify = notify;
845}
846
847struct termios *owl_global_get_startup_tio(owl_global *g)
848{
849  return(&(g->startup_tio));
850}
851
852void owl_global_setup_default_filters(owl_global *g)
853{
854  int i;
855  static const struct {
856    const char *name;
857    const char *desc;
858  } filters[] = {
859    { "personal",
860      "isprivate ^true$ and ( not type ^zephyr$ or ( class ^message$ ) )" },
861    { "trash",
862      "class ^mail$ or opcode ^ping$ or type ^admin$ or ( not login ^none$ )" },
863    { "wordwrap", "not ( type ^admin$ or type ^zephyr$ )" },
864    { "ping", "opcode ^ping$" },
865    { "auto", "opcode ^auto$" },
866    { "login", "not login ^none$" },
867    { "reply-lockout", "class ^mail$ or class ^filsrv$" },
868    { "out", "direction ^out$" },
869    { "aim", "type ^aim$" },
870    { "zephyr", "type ^zephyr$" },
871    { "none", "false" },
872    { "all", "true" },
873    { NULL, NULL }
874  };
875
876  owl_function_debugmsg("startup: creating default filters");
877
878  for (i = 0; filters[i].name != NULL; i++)
879    owl_global_add_filter(g, owl_filter_new_fromstring(filters[i].name,
880                                                       filters[i].desc));
881}
882
883FILE *owl_global_get_debug_file_handle(owl_global *g) {
884  static char *open_file = NULL;
885  const char *filename = owl_global_get_debug_file(g);
886  if (g->debug_file == NULL ||
887      (open_file && strcmp(filename, open_file) != 0)) {
888    char *path;
889    int fd;
890
891    if (g->debug_file)
892      fclose(g->debug_file);
893
894    g->debug_file = NULL;
895
896    path = g_strdup_printf("%s.%d", filename, getpid());
897    fd = open(path, O_CREAT|O_WRONLY|O_EXCL, 0600);
898    g_free(path);
899
900    if (fd >= 0)
901      g->debug_file = fdopen(fd, "a");
902
903    g_free(open_file);
904    open_file = g_strdup(filename);
905  }
906  return g->debug_file;
907}
908
909const char *owl_global_get_kill_buffer(owl_global *g) {
910  return g->kill_buffer;
911}
912
913void owl_global_set_kill_buffer(owl_global *g, const char *kill, int len) {
914  g_free(g->kill_buffer);
915  g->kill_buffer = g_strndup(kill, len);
916}
917
918static GMutex *owl_global_get_interrupt_lock(owl_global *g)
919{
920#if GLIB_CHECK_VERSION(2, 31, 0)
921  return &g->interrupt_lock;
922#else
923  return g->interrupt_lock;
924#endif
925}
926
927void owl_global_add_interrupt(owl_global *g) {
928  /* TODO: This can almost certainly be done with atomic
929   * operations. Whatever. */
930  g_mutex_lock(owl_global_get_interrupt_lock(g));
931  g->interrupt_count++;
932  g_mutex_unlock(owl_global_get_interrupt_lock(g));
933}
934
935bool owl_global_take_interrupt(owl_global *g) {
936  bool ans = false;
937  g_mutex_lock(owl_global_get_interrupt_lock(g));
938  if (g->interrupt_count > 0) {
939    ans = true;
940    g->interrupt_count--;
941  }
942  g_mutex_unlock(owl_global_get_interrupt_lock(g));
943  return ans;
944}
Note: See TracBrowser for help on using the repository browser.