source: global.c @ d39f68c

release-1.10release-1.7release-1.8release-1.9
Last change on this file since d39f68c was d39f68c, checked in by David Benjamin <davidben@mit.edu>, 14 years ago
Compute the terminal size in the screen's size callback We do some roundabout thing with clearing g->lines and g->cols to preserve the old logic of allowing us to force a value. (Not that it was every used. We also apparently flipped x and y.
  • Property mode set to 100644
File size: 22.1 KB
Line 
1#include <stdio.h>
2#include <unistd.h>
3#include <stdlib.h>
4#include <string.h>
5#include <netdb.h>
6#include <termios.h>
7#include <sys/ioctl.h>
8#include <time.h>
9#include "owl.h"
10
11#ifndef MAXHOSTNAMELEN
12#define MAXHOSTNAMELEN 256
13#endif
14
15void owl_global_init(owl_global *g) {
16  struct hostent *hent;
17  char hostname[MAXHOSTNAMELEN];
18  char *cd;
19
20  g->malloced=0;
21  g->freed=0;
22
23  gethostname(hostname, MAXHOSTNAMELEN);
24  hent=gethostbyname(hostname);
25  if (!hent) {
26    g->thishost=owl_strdup("localhost");
27  } else {
28    g->thishost=owl_strdup(hent->h_name);
29  }
30
31  g->context_stack = NULL;
32  owl_global_push_context(g, OWL_CTX_STARTUP, NULL, NULL);
33
34  g->curmsg=0;
35  g->topmsg=0;
36  g->markedmsgid=-1;
37  g->needrefresh=1;
38  g->startupargs=NULL;
39
40  owl_variable_dict_setup(&(g->vars));
41
42  g->lines=LINES;
43  g->cols=COLS;
44
45  g->rightshift=0;
46
47  g->tw = NULL;
48
49  owl_keyhandler_init(&g->kh);
50  owl_keys_setup_keymaps(&g->kh);
51
52  owl_dict_create(&(g->filters));
53  g->filterlist = NULL;
54  owl_list_create(&(g->puntlist));
55  g->messagequeue = g_queue_new();
56  owl_dict_create(&(g->styledict));
57  g->curmsg_vert_offset=0;
58  g->resizepending=0;
59  g->relayoutpending = 0;
60  g->direction=OWL_DIRECTION_DOWNWARDS;
61  g->zaway=0;
62  if (has_colors()) {
63    g->hascolors=1;
64  }
65  g->colorpairs=COLOR_PAIRS;
66  owl_fmtext_init_colorpair_mgr(&(g->cpmgr));
67  g->debug=OWL_DEBUG;
68  owl_regex_init(&g->search_re);
69  g->starttime=time(NULL); /* assumes we call init only a start time */
70  g->lastinputtime=g->starttime;
71  g->newmsgproc_pid=0;
72 
73  owl_global_set_config_format(g, 0);
74  owl_global_set_userclue(g, OWL_USERCLUE_NONE);
75  owl_global_set_no_have_config(g);
76  owl_history_init(&(g->msghist));
77  owl_history_init(&(g->cmdhist));
78  owl_history_set_norepeats(&(g->cmdhist));
79  g->nextmsgid=0;
80
81  _owl_global_setup_windows(g);
82
83  /* Fill in some variables which don't have constant defaults */
84  /* TODO: come back later and check passwd file first */
85  g->homedir=owl_strdup(getenv("HOME"));
86
87  g->confdir = NULL;
88  g->startupfile = NULL;
89  cd = owl_sprintf("%s/%s", g->homedir, OWL_CONFIG_DIR);
90  owl_global_set_confdir(g, cd);
91  owl_free(cd);
92
93  owl_messagelist_create(&(g->msglist));
94  owl_mainwin_init(&(g->mw));
95  owl_popwin_init(&(g->pw));
96
97  g->aim_screenname=NULL;
98  g->aim_screenname_for_filters=NULL;
99  g->aim_loggedin=0;
100  owl_buddylist_init(&(g->buddylist));
101
102  g->havezephyr=0;
103  g->haveaim=0;
104  g->ignoreaimlogin=0;
105  owl_global_set_no_doaimevents(g);
106
107  owl_errqueue_init(&(g->errqueue));
108  g->got_err_signal=0;
109
110  owl_zbuddylist_create(&(g->zbuddies));
111
112  g->zaldlist = NULL;
113  g->pseudologin_notify = 0;
114
115  owl_message_init_fmtext_cache();
116  owl_list_create(&(g->io_dispatch_list));
117  owl_list_create(&(g->psa_list));
118  g->timerlist = NULL;
119  g->interrupted = FALSE;
120
121  /* set up a pad for input */
122  g->input_pad = newpad(1, 1);
123  nodelay(g->input_pad, 1);
124  keypad(g->input_pad, 1);
125  meta(g->input_pad, 1);
126}
127
128/* Called once perl has been initialized */
129void owl_global_complete_setup(owl_global *g)
130{
131  owl_cmddict_setup(&(g->cmds));
132}
133
134/* If *pan does not exist, we create a new panel, otherwise we replace the
135   window in *pan with win.
136
137   libpanel PANEL objects cannot exist without owner a valid window. This
138   maintains the invariant for _owl_global_setup_windows. */
139void _owl_panel_set_window(PANEL **pan, WINDOW *win)
140{
141  WINDOW *oldwin;
142
143  if (win == NULL) {
144    owl_function_debugmsg("_owl_panel_set_window: passed NULL win (failed to allocate?)");
145    endwin();
146    exit(50);
147  }
148
149  if (*pan) {
150    oldwin = panel_window(*pan);
151    replace_panel(*pan, win);
152    delwin(oldwin);
153  } else {
154    *pan = new_panel(win);
155  }
156}
157
158void _owl_global_setup_windows(owl_global *g) {
159  int cols, typwin_lines;
160
161  cols=g->cols;
162  typwin_lines=owl_global_get_typwin_lines(g);
163
164  /* set the new window sizes */
165  g->recwinlines=g->lines-(typwin_lines+2);
166  if (g->recwinlines<0) {
167    /* gotta deal with this */
168    g->recwinlines=0;
169  }
170
171  /* create the new windows */
172  _owl_panel_set_window(&g->recpan, newwin(g->recwinlines, cols, 0, 0));
173  _owl_panel_set_window(&g->seppan, newwin(1, cols, g->recwinlines, 0));
174  _owl_panel_set_window(&g->msgpan, newwin(1, cols, g->recwinlines+1, 0));
175  _owl_panel_set_window(&g->typpan, newwin(typwin_lines, cols, g->recwinlines+2, 0));
176
177  if (g->tw)
178      owl_editwin_set_curswin(g->tw, owl_global_get_curs_typwin(g), typwin_lines, g->cols);
179
180  idlok(owl_global_get_curs_typwin(g), FALSE);
181  idlok(owl_global_get_curs_recwin(g), FALSE);
182  idlok(owl_global_get_curs_sepwin(g), FALSE);
183  idlok(owl_global_get_curs_msgwin(g), FALSE);
184
185  wmove(owl_global_get_curs_typwin(g), 0, 0);
186}
187
188owl_context *owl_global_get_context(owl_global *g) {
189  if (!g->context_stack)
190    return NULL;
191  return g->context_stack->data;
192}
193
194static void owl_global_lookup_keymap(owl_global *g) {
195  owl_context *c = owl_global_get_context(g);
196  if (!c || !c->keymap)
197    return;
198
199  if (!owl_keyhandler_activate(owl_global_get_keyhandler(g), c->keymap)) {
200    owl_function_error("Unable to activate keymap '%s'", c->keymap);
201  }
202}
203
204void owl_global_push_context(owl_global *g, int mode, void *data, const char *keymap) {
205  owl_context *c;
206  if (!(mode & OWL_CTX_MODE_BITS))
207    mode |= OWL_CTX_INTERACTIVE;
208  c = owl_malloc(sizeof *c);
209  c->mode = mode;
210  c->data = data;
211  c->keymap = owl_strdup(keymap);
212  g->context_stack = g_list_prepend(g->context_stack, c);
213  owl_global_lookup_keymap(g);
214}
215
216void owl_global_pop_context(owl_global *g) {
217  owl_context *c;
218  if (!g->context_stack)
219    return;
220  c = owl_global_get_context(g);
221  g->context_stack = g_list_delete_link(g->context_stack,
222                                        g->context_stack);
223  owl_free(c->keymap);
224  owl_free(c);
225  owl_global_lookup_keymap(g);
226}
227
228int owl_global_get_lines(const owl_global *g) {
229  return(g->lines);
230}
231
232int owl_global_get_cols(const owl_global *g) {
233  return(g->cols);
234}
235
236int owl_global_get_recwin_lines(const owl_global *g) {
237  return(g->recwinlines);
238}
239
240/* curmsg */
241
242int owl_global_get_curmsg(const owl_global *g) {
243  return(g->curmsg);
244}
245
246void owl_global_set_curmsg(owl_global *g, int i) {
247  g->curmsg=i;
248  /* we will reset the vertical offset from here */
249  /* we might want to move this out to the functions later */
250  owl_global_set_curmsg_vert_offset(g, 0);
251}
252
253/* topmsg */
254
255int owl_global_get_topmsg(const owl_global *g) {
256  return(g->topmsg);
257}
258
259void owl_global_set_topmsg(owl_global *g, int i) {
260  g->topmsg=i;
261}
262
263/* markedmsgid */
264
265int owl_global_get_markedmsgid(const owl_global *g) {
266  return(g->markedmsgid);
267}
268
269void owl_global_set_markedmsgid(owl_global *g, int i) {
270  g->markedmsgid=i;
271  /* i; index of message in the current view.
272  const owl_message *m;
273  owl_view *v;
274
275  v = owl_global_get_current_view(&g);
276  m = owl_view_get_element(v, i);
277  g->markedmsgid = m ? owl_message_get_id(m) : 0;
278  */
279}
280
281/* windows */
282
283owl_mainwin *owl_global_get_mainwin(owl_global *g) {
284  return(&(g->mw));
285}
286
287owl_popwin *owl_global_get_popwin(owl_global *g) {
288  return(&(g->pw));
289}
290
291/* msglist */
292
293owl_messagelist *owl_global_get_msglist(owl_global *g) {
294  return(&(g->msglist));
295}
296
297/* keyhandler */
298
299owl_keyhandler *owl_global_get_keyhandler(owl_global *g) {
300  return(&(g->kh));
301}
302
303/* curses windows */
304
305WINDOW *owl_global_get_curs_recwin(const owl_global *g) {
306  return panel_window(g->recpan);
307}
308
309WINDOW *owl_global_get_curs_sepwin(const owl_global *g) {
310  return panel_window(g->seppan);
311}
312
313WINDOW *owl_global_get_curs_msgwin(const owl_global *g) {
314  return panel_window(g->msgpan);
315}
316
317WINDOW *owl_global_get_curs_typwin(const owl_global *g) {
318  return panel_window(g->typpan);
319}
320
321/* typwin */
322
323owl_editwin *owl_global_get_typwin(const owl_global *g) {
324  return(g->tw);
325}
326
327/* refresh */
328
329int owl_global_is_needrefresh(const owl_global *g) {
330  if (g->needrefresh==1) return(1);
331  return(0);
332}
333
334void owl_global_set_needrefresh(owl_global *g) {
335  g->needrefresh=1;
336}
337
338void owl_global_set_noneedrefresh(owl_global *g) {
339  g->needrefresh=0;
340}
341
342/* variable dictionary */
343
344owl_vardict *owl_global_get_vardict(owl_global *g) {
345  return &(g->vars);
346}
347
348/* command dictionary */
349
350owl_cmddict *owl_global_get_cmddict(owl_global *g) {
351  return &(g->cmds);
352}
353
354/* rightshift */
355
356void owl_global_set_rightshift(owl_global *g, int i) {
357  g->rightshift=i;
358}
359
360int owl_global_get_rightshift(const owl_global *g) {
361  return(g->rightshift);
362}
363
364/* typwin */
365
366owl_editwin *owl_global_set_typwin_active(owl_global *g, int style, owl_history *hist) {
367  int d;
368  d = owl_global_get_typewindelta(g);
369  if (d > 0 && style == OWL_EDITWIN_STYLE_MULTILINE)
370      owl_function_resize_typwin(owl_global_get_typwin_lines(g) + d);
371
372  g->tw = owl_editwin_new(owl_global_get_curs_typwin(g),
373                          owl_global_get_typwin_lines(g),
374                          g->cols,
375                          style,
376                          hist);
377  return g->tw;
378}
379
380void owl_global_set_typwin_inactive(owl_global *g) {
381  int d = owl_global_get_typewindelta(g);
382  if (d > 0 && owl_editwin_get_style(g->tw) == OWL_EDITWIN_STYLE_MULTILINE)
383      owl_function_resize_typwin(owl_global_get_typwin_lines(g) - d);
384
385  werase(owl_global_get_curs_typwin(g));
386  g->tw = NULL;
387  owl_global_set_needrefresh(g);
388}
389
390/* resize */
391
392void owl_global_set_resize_pending(owl_global *g) {
393  g->resizepending=1;
394}
395
396void owl_global_set_relayout_pending(owl_global *g) {
397  g->relayoutpending = 1;
398}
399
400const char *owl_global_get_homedir(const owl_global *g) {
401  if (g->homedir) return(g->homedir);
402  return("/");
403}
404
405const char *owl_global_get_confdir(const owl_global *g) {
406  if (g->confdir) return(g->confdir);
407  return("/");
408}
409
410/*
411 * Setting this also sets startupfile to confdir/startup
412 */
413void owl_global_set_confdir(owl_global *g, const char *cd) {
414  owl_free(g->confdir);
415  g->confdir = owl_strdup(cd);
416  owl_free(g->startupfile);
417  g->startupfile = owl_sprintf("%s/startup", cd);
418}
419
420const char *owl_global_get_startupfile(const owl_global *g) {
421  if(g->startupfile) return(g->startupfile);
422  return("/");
423}
424
425int owl_global_get_direction(const owl_global *g) {
426  return(g->direction);
427}
428
429void owl_global_set_direction_downwards(owl_global *g) {
430  g->direction=OWL_DIRECTION_DOWNWARDS;
431}
432
433void owl_global_set_direction_upwards(owl_global *g) {
434  g->direction=OWL_DIRECTION_UPWARDS;
435}
436
437/* perl stuff */
438
439void owl_global_set_perlinterp(owl_global *g, void *p) {
440  g->perl=p;
441}
442
443void *owl_global_get_perlinterp(const owl_global *g) {
444  return(g->perl);
445}
446
447int owl_global_is_config_format(const owl_global *g) {
448  if (g->config_format) return(1);
449  return(0);
450}
451
452void owl_global_set_config_format(owl_global *g, int state) {
453  if (state==1) {
454    g->config_format=1;
455  } else {
456    g->config_format=0;
457  }
458}
459
460void owl_global_set_have_config(owl_global *g) {
461  g->haveconfig=1;
462}
463
464void owl_global_set_no_have_config(owl_global *g) {
465  g->haveconfig=0;
466}
467
468int owl_global_have_config(owl_global *g) {
469  if (g->haveconfig) return(1);
470  return(0);
471}
472
473/*
474 * Compute the size of the terminal. Try a ioctl, fallback to other stuff on
475 * fail.
476 */
477void owl_global_get_terminal_size(int *lines, int *cols) {
478  struct winsize size;
479  /* get the new size */
480  ioctl(STDIN_FILENO, TIOCGWINSZ, &size);
481  if (size.ws_row) {
482    *lines = size.ws_row;
483  } else {
484    *lines = LINES;
485  }
486
487  if (size.ws_col) {
488    *cols = size.ws_col;
489  } else {
490    *cols = COLS;
491  }
492}
493
494void owl_global_resize(owl_global *g, int lines, int cols) {
495  /* resize the screen.  If x or y is 0 use the terminal size */
496  if (!g->resizepending) return;
497  g->resizepending = 0;
498
499  g->lines = lines;
500  g->cols = cols;
501  owl_window_recompute_position(owl_window_get_screen());
502
503  owl_function_debugmsg("New size is %i lines, %i cols.", g->lines, g->cols);
504  owl_global_set_relayout_pending(g);
505}
506
507void owl_global_relayout(owl_global *g) {
508  if (!g->relayoutpending) return;
509  g->relayoutpending = 0;
510
511  owl_function_debugmsg("Relayouting...");
512
513  /* re-initialize the windows */
514  _owl_global_setup_windows(g);
515
516  /* in case any styles rely on the current width */
517  owl_messagelist_invalidate_formats(owl_global_get_msglist(g));
518
519  /* recalculate the topmsg to make sure the current message is on
520   * screen */
521  owl_function_calculate_topmsg(OWL_DIRECTION_NONE);
522
523  /* refresh stuff */
524  g->needrefresh=1;
525  owl_mainwin_redisplay(&(g->mw));
526  sepbar(NULL);
527  if (g->tw)
528      owl_editwin_redisplay(g->tw);
529  else
530    werase(owl_global_get_curs_typwin(g));
531
532  owl_function_full_redisplay();
533
534  owl_function_makemsg("");
535}
536
537/* debug */
538
539int owl_global_is_debug_fast(const owl_global *g) {
540  if (g->debug) return(1);
541  return(0);
542}
543
544/* starttime */
545
546time_t owl_global_get_starttime(const owl_global *g) {
547  return(g->starttime);
548}
549
550time_t owl_global_get_runtime(const owl_global *g) {
551  return(time(NULL)-g->starttime);
552}
553
554time_t owl_global_get_lastinputtime(const owl_global *g) {
555  return(g->lastinputtime);
556}
557
558void owl_global_set_lastinputtime(owl_global *g, time_t time) {
559  g->lastinputtime = time;
560}
561
562time_t owl_global_get_idletime(const owl_global *g) {
563  return(time(NULL)-g->lastinputtime);
564}
565
566const char *owl_global_get_hostname(const owl_global *g) {
567  if (g->thishost) return(g->thishost);
568  return("");
569}
570
571/* userclue */
572
573void owl_global_set_userclue(owl_global *g, int clue) {
574  g->userclue=clue;
575}
576
577void owl_global_add_userclue(owl_global *g, int clue) {
578  g->userclue|=clue;
579}
580
581int owl_global_get_userclue(const owl_global *g) {
582  return(g->userclue);
583}
584
585int owl_global_is_userclue(const owl_global *g, int clue) {
586  if (g->userclue & clue) return(1);
587  return(0);
588}
589
590/* viewwin */
591
592owl_viewwin *owl_global_get_viewwin(owl_global *g) {
593  return(&(g->vw));
594}
595
596
597/* vert offset */
598
599int owl_global_get_curmsg_vert_offset(const owl_global *g) {
600  return(g->curmsg_vert_offset);
601}
602
603void owl_global_set_curmsg_vert_offset(owl_global *g, int i) {
604  g->curmsg_vert_offset=i;
605}
606
607/* startup args */
608
609void owl_global_set_startupargs(owl_global *g, int argc, const char *const *argv) {
610  int i, len;
611
612  if (g->startupargs) owl_free(g->startupargs);
613 
614  len=0;
615  for (i=0; i<argc; i++) {
616    len+=strlen(argv[i])+5;
617  }
618  g->startupargs=owl_malloc(len+5);
619
620  strcpy(g->startupargs, "");
621  for (i=0; i<argc; i++) {
622    sprintf(g->startupargs + strlen(g->startupargs), "%s ", argv[i]);
623  }
624  g->startupargs[strlen(g->startupargs)-1]='\0';
625}
626
627const char *owl_global_get_startupargs(const owl_global *g) {
628  if (g->startupargs) return(g->startupargs);
629  return("");
630}
631
632/* history */
633
634owl_history *owl_global_get_msg_history(owl_global *g) {
635  return(&(g->msghist));
636}
637
638owl_history *owl_global_get_cmd_history(owl_global *g) {
639  return(&(g->cmdhist));
640}
641
642/* filterlist */
643typedef struct _owl_global_filter_ent {         /* noproto */
644  owl_global *g;
645  owl_filter *f;
646} owl_global_filter_ent;
647
648owl_filter *owl_global_get_filter(const owl_global *g, const char *name) {
649  owl_global_filter_ent *e = owl_dict_find_element(&(g->filters), name);
650  if (e) return e->f;
651  return NULL;
652}
653
654static void owl_global_delete_filter_ent(void *data)
655{
656  owl_global_filter_ent *e = data;
657  e->g->filterlist = g_list_remove(e->g->filterlist, e->f);
658  owl_filter_delete(e->f);
659  owl_free(e);
660}
661
662void owl_global_add_filter(owl_global *g, owl_filter *f) {
663  owl_global_filter_ent *e = owl_malloc(sizeof *e);
664  e->g = g;
665  e->f = f;
666
667  owl_dict_insert_element(&(g->filters), owl_filter_get_name(f),
668                          e, owl_global_delete_filter_ent);
669  g->filterlist = g_list_append(g->filterlist, f);
670}
671
672void owl_global_remove_filter(owl_global *g, const char *name) {
673  owl_global_filter_ent *e = owl_dict_remove_element(&(g->filters), name);
674  if (e)
675    owl_global_delete_filter_ent(e);
676}
677
678/* nextmsgid */
679
680int owl_global_get_nextmsgid(owl_global *g) {
681  return(g->nextmsgid++);
682}
683
684/* current view */
685
686owl_view *owl_global_get_current_view(owl_global *g) {
687  return(&(g->current_view));
688}
689
690/* has colors */
691
692int owl_global_get_hascolors(const owl_global *g) {
693  if (g->hascolors) return(1);
694  return(0);
695}
696
697/* color pairs */
698
699int owl_global_get_colorpairs(const owl_global *g) {
700  return(g->colorpairs);
701}
702
703owl_colorpair_mgr *owl_global_get_colorpair_mgr(owl_global *g) {
704  return(&(g->cpmgr));
705}
706
707/* puntlist */
708
709owl_list *owl_global_get_puntlist(owl_global *g) {
710  return(&(g->puntlist));
711}
712
713int owl_global_message_is_puntable(owl_global *g, const owl_message *m) {
714  const owl_list *pl;
715  int i, j;
716
717  pl=owl_global_get_puntlist(g);
718  j=owl_list_get_size(pl);
719  for (i=0; i<j; i++) {
720    if (owl_filter_message_match(owl_list_get_element(pl, i), m)) return(1);
721  }
722  return(0);
723}
724
725int owl_global_should_followlast(owl_global *g) {
726  const owl_view *v;
727 
728  if (!owl_global_is__followlast(g)) return(0);
729 
730  v=owl_global_get_current_view(g);
731 
732  if (owl_global_get_curmsg(g)==owl_view_get_size(v)-1) return(1);
733  return(0);
734}
735
736int owl_global_is_search_active(const owl_global *g) {
737  if (owl_regex_is_set(&g->search_re)) return(1);
738  return(0);
739}
740
741void owl_global_set_search_re(owl_global *g, const owl_regex *re) {
742  if (owl_regex_is_set(&g->search_re)) {
743    owl_regex_cleanup(&g->search_re);
744    owl_regex_init(&g->search_re);
745  }
746  if (re != NULL)
747    owl_regex_copy(re, &g->search_re);
748}
749
750const owl_regex *owl_global_get_search_re(const owl_global *g) {
751  return &g->search_re;
752}
753
754void owl_global_set_newmsgproc_pid(owl_global *g, pid_t i) {
755  g->newmsgproc_pid=i;
756}
757
758pid_t owl_global_get_newmsgproc_pid(const owl_global *g) {
759  return(g->newmsgproc_pid);
760}
761
762/* AIM stuff */
763
764int owl_global_is_aimloggedin(const owl_global *g)
765{
766  if (g->aim_loggedin) return(1);
767  return(0);
768}
769
770const char *owl_global_get_aim_screenname(const owl_global *g)
771{
772  if (owl_global_is_aimloggedin(g)) {
773    return (g->aim_screenname);
774  }
775  return("");
776}
777
778const char *owl_global_get_aim_screenname_for_filters(const owl_global *g)
779{
780  if (owl_global_is_aimloggedin(g)) {
781    return (g->aim_screenname_for_filters);
782  }
783  return("");
784}
785
786void owl_global_set_aimloggedin(owl_global *g, const char *screenname)
787{
788  char *sn_escaped;
789  const char *quote;
790  g->aim_loggedin=1;
791  if (g->aim_screenname) owl_free(g->aim_screenname);
792  if (g->aim_screenname_for_filters) owl_free(g->aim_screenname_for_filters);
793  g->aim_screenname=owl_strdup(screenname);
794  sn_escaped = owl_text_quote(screenname, OWL_REGEX_QUOTECHARS, OWL_REGEX_QUOTEWITH);
795  quote = owl_getquoting(sn_escaped);
796  g->aim_screenname_for_filters=owl_sprintf("%s%s%s", quote, sn_escaped, quote);
797  owl_free(sn_escaped);
798}
799
800void owl_global_set_aimnologgedin(owl_global *g)
801{
802  g->aim_loggedin=0;
803}
804
805int owl_global_is_doaimevents(const owl_global *g)
806{
807  if (g->aim_doprocessing) return(1);
808  return(0);
809}
810
811void owl_global_set_doaimevents(owl_global *g)
812{
813  g->aim_doprocessing=1;
814}
815
816void owl_global_set_no_doaimevents(owl_global *g)
817{
818  g->aim_doprocessing=0;
819}
820
821aim_session_t *owl_global_get_aimsess(owl_global *g)
822{
823  return(&(g->aimsess));
824}
825
826aim_conn_t *owl_global_get_bosconn(owl_global *g)
827{
828  return(&(g->bosconn));
829}
830
831void owl_global_set_bossconn(owl_global *g, aim_conn_t *conn)
832{
833  g->bosconn=*conn;
834}
835
836/* message queue */
837
838void owl_global_messagequeue_addmsg(owl_global *g, owl_message *m)
839{
840  g_queue_push_tail(g->messagequeue, m);
841}
842
843/* pop off the first message and return it.  Return NULL if the queue
844 * is empty.  The caller should free the message after using it, if
845 * necessary.
846 */
847owl_message *owl_global_messagequeue_popmsg(owl_global *g)
848{
849  owl_message *out;
850
851  if (g_queue_is_empty(g->messagequeue))
852    return NULL;
853  out = g_queue_pop_head(g->messagequeue);
854  return out;
855}
856
857int owl_global_messagequeue_pending(owl_global *g)
858{
859  return !g_queue_is_empty(g->messagequeue);
860}
861
862owl_buddylist *owl_global_get_buddylist(owl_global *g)
863{
864  return(&(g->buddylist));
865}
866 
867/* style */
868
869/* Return the style with name 'name'.  If it does not exist return
870 * NULL */
871const owl_style *owl_global_get_style_by_name(const owl_global *g, const char *name)
872{
873  return owl_dict_find_element(&(g->styledict), name);
874}
875
876/* creates a list and fills it in with keys.  duplicates the keys,
877 * so they will need to be freed by the caller. */
878int owl_global_get_style_names(const owl_global *g, owl_list *l) {
879  return owl_dict_get_keys(&(g->styledict), l);
880}
881
882void owl_global_add_style(owl_global *g, owl_style *s)
883{
884  /*
885   * If we're redefining the current style, make sure to update
886   * pointers to it.
887   */
888  if(g->current_view.style
889     && !strcmp(owl_style_get_name(g->current_view.style),
890                owl_style_get_name(s)))
891    g->current_view.style = s;
892  owl_dict_insert_element(&(g->styledict), owl_style_get_name(s),
893                          s, (void (*)(void *))owl_style_delete);
894}
895
896void owl_global_set_haveaim(owl_global *g)
897{
898  g->haveaim=1;
899}
900
901int owl_global_is_haveaim(const owl_global *g)
902{
903  if (g->haveaim) return(1);
904  return(0);
905}
906
907void owl_global_set_ignore_aimlogin(owl_global *g)
908{
909    g->ignoreaimlogin = 1;
910}
911
912void owl_global_unset_ignore_aimlogin(owl_global *g)
913{
914    g->ignoreaimlogin = 0;
915}
916
917int owl_global_is_ignore_aimlogin(const owl_global *g)
918{
919    return g->ignoreaimlogin;
920}
921
922void owl_global_set_havezephyr(owl_global *g)
923{
924  g->havezephyr=1;
925}
926
927int owl_global_is_havezephyr(const owl_global *g)
928{
929  if (g->havezephyr) return(1);
930  return(0);
931}
932
933owl_errqueue *owl_global_get_errqueue(owl_global *g)
934{
935  return(&(g->errqueue));
936}
937
938void owl_global_set_errsignal(owl_global *g, int signum, siginfo_t *siginfo)
939{
940  g->got_err_signal = signum;
941  if (siginfo) {
942    g->err_signal_info = *siginfo;
943  } else {
944    siginfo_t si;
945    memset(&si, 0, sizeof(si));
946    g->err_signal_info = si;
947  }
948}
949
950int owl_global_get_errsignal_and_clear(owl_global *g, siginfo_t *siginfo)
951{
952  int signum;
953  if (siginfo && g->got_err_signal) {
954    *siginfo = g->err_signal_info;
955  } 
956  signum = g->got_err_signal;
957  g->got_err_signal = 0;
958  return signum;
959}
960
961
962owl_zbuddylist *owl_global_get_zephyr_buddylist(owl_global *g)
963{
964  return(&(g->zbuddies));
965}
966
967GList **owl_global_get_zaldlist(owl_global *g)
968{
969  return &(g->zaldlist);
970}
971
972int owl_global_get_pseudologin_notify(owl_global *g)
973{
974  return g->pseudologin_notify;
975}
976
977void owl_global_set_pseudologin_notify(owl_global *g, int notify)
978{
979  g->pseudologin_notify = notify;
980}
981
982struct termios *owl_global_get_startup_tio(owl_global *g)
983{
984  return(&(g->startup_tio));
985}
986
987owl_list *owl_global_get_io_dispatch_list(owl_global *g)
988{
989  return &(g->io_dispatch_list);
990}
991
992owl_list *owl_global_get_psa_list(owl_global *g)
993{
994  return &(g->psa_list);
995}
996
997GList **owl_global_get_timerlist(owl_global *g)
998{
999  return &(g->timerlist);
1000}
1001
1002int owl_global_is_interrupted(const owl_global *g) {
1003  return g->interrupted;
1004}
1005
1006void owl_global_set_interrupted(owl_global *g) {
1007  g->interrupted = 1;
1008}
1009
1010void owl_global_unset_interrupted(owl_global *g) {
1011  g->interrupted = 0;
1012}
Note: See TracBrowser for help on using the repository browser.