source: owl.c @ 7967433

release-1.10release-1.4release-1.5release-1.6release-1.7release-1.8release-1.9
Last change on this file since 7967433 was 7967433, checked in by Nelson Elhage <nelhage@mit.edu>, 15 years ago
Refactor startup into functions, and some clean up.
  • Property mode set to 100644
File size: 21.3 KB
Line 
1/*  Copyright (c) 2006-2009 The BarnOwl Developers. All rights reserved.
2 *  Copyright (c) 2004 James Kretchmar. All rights reserved.
3 *
4 *  This program is free software. You can redistribute it and/or
5 *  modify under the terms of the Sleepycat License. See the COPYING
6 *  file included with the distribution for more information.
7 */
8
9#include <stdio.h>
10#include <unistd.h>
11#include <stdlib.h>
12#include <string.h>
13#include <signal.h>
14#include <time.h>
15#include <sys/param.h>
16#include <sys/types.h>
17#include <sys/time.h>
18#include <termios.h>
19#include <sys/stat.h>
20#include <locale.h>
21#include "owl.h"
22
23
24#if OWL_STDERR_REDIR
25#ifdef HAVE_SYS_IOCTL_H
26#include <sys/ioctl.h>
27#endif
28#ifdef HAVE_SYS_FILIO_H
29#include <sys/filio.h>
30#endif
31int stderr_replace(void);
32#endif
33
34#define STDIN 0
35
36owl_global g;
37
38void owl_register_signal_handlers(void) /* noproto */ {
39  struct sigaction sigact;
40
41  /* signal handler */
42  /*sigact.sa_handler=sig_handler;*/
43  sigact.sa_sigaction=sig_handler;
44  sigemptyset(&sigact.sa_mask);
45  sigact.sa_flags=SA_SIGINFO;
46  sigaction(SIGWINCH, &sigact, NULL);
47  sigaction(SIGALRM, &sigact, NULL);
48  sigaction(SIGPIPE, &sigact, NULL);
49  sigaction(SIGTERM, &sigact, NULL);
50  sigaction(SIGHUP, &sigact, NULL);
51
52  sigact.sa_sigaction=sigint_handler;
53  sigaction(SIGINT, &sigact, NULL);
54
55}
56
57void owl_start_color(void) /* noproto */ {
58  start_color();
59#ifdef HAVE_USE_DEFAULT_COLORS
60  use_default_colors();
61#endif
62
63  /* define simple color pairs */
64  if (has_colors() && COLOR_PAIRS>=8) {
65    int bg = COLOR_BLACK;
66#ifdef HAVE_USE_DEFAULT_COLORS
67    bg = -1;
68#endif
69    init_pair(OWL_COLOR_BLACK,   COLOR_BLACK,   bg);
70    init_pair(OWL_COLOR_RED,     COLOR_RED,     bg);
71    init_pair(OWL_COLOR_GREEN,   COLOR_GREEN,   bg);
72    init_pair(OWL_COLOR_YELLOW,  COLOR_YELLOW,  bg);
73    init_pair(OWL_COLOR_BLUE,    COLOR_BLUE,    bg);
74    init_pair(OWL_COLOR_MAGENTA, COLOR_MAGENTA, bg);
75    init_pair(OWL_COLOR_CYAN,    COLOR_CYAN,    bg);
76    init_pair(OWL_COLOR_WHITE,   COLOR_WHITE,   bg);
77  }
78}
79
80void owl_start_curses(void) /* noproto */ {
81  struct termios tio;
82  /* save initial terminal settings */
83  tcgetattr(0, owl_global_get_startup_tio(&g));
84
85  /* turn ISTRIP off */
86  tcgetattr(0, &tio);
87  tio.c_iflag &= ~(ISTRIP|IEXTEN);
88  tio.c_cc[VQUIT] = 0;
89  tcsetattr(0, TCSAFLUSH, &tio);
90
91  /* screen init */
92  initscr();
93  cbreak();
94  noecho();
95
96  owl_start_color();
97}
98
99void owl_setup_default_filters(void) /* noproto */ {
100  owl_filter *f;
101
102  owl_function_debugmsg("startup: creating default filters");
103  f=owl_malloc(sizeof(owl_filter));
104  owl_filter_init_fromstring(f, "personal", "isprivate ^true$ and ( not type ^zephyr$"
105                             " or ( class ^message  ) )");
106  owl_list_append_element(owl_global_get_filterlist(&g), f);
107
108  f=owl_malloc(sizeof(owl_filter));
109  owl_filter_init_fromstring(f, "wordwrap", "not ( type ^admin$ or type ^zephyr$ ) ");
110  owl_list_append_element(owl_global_get_filterlist(&g), f);
111
112  f=owl_malloc(sizeof(owl_filter));
113  owl_filter_init_fromstring(f, "trash", "class ^mail$ or opcode ^ping$ or type ^admin$ or ( not login ^none$ )");
114  owl_list_append_element(owl_global_get_filterlist(&g), f);
115
116  f=owl_malloc(sizeof(owl_filter));
117  owl_filter_init_fromstring(f, "ping", "opcode ^ping$");
118  owl_list_append_element(owl_global_get_filterlist(&g), f);
119
120  f=owl_malloc(sizeof(owl_filter));
121  owl_filter_init_fromstring(f, "auto", "opcode ^auto$");
122  owl_list_append_element(owl_global_get_filterlist(&g), f);
123
124  f=owl_malloc(sizeof(owl_filter));
125  owl_filter_init_fromstring(f, "login", "not login ^none$");
126  owl_list_append_element(owl_global_get_filterlist(&g), f);
127
128  f=owl_malloc(sizeof(owl_filter));
129  owl_filter_init_fromstring(f, "reply-lockout", "class ^noc or class ^mail$");
130  owl_list_append_element(owl_global_get_filterlist(&g), f);
131
132  f=owl_malloc(sizeof(owl_filter));
133  owl_filter_init_fromstring(f, "out", "direction ^out$");
134  owl_list_append_element(owl_global_get_filterlist(&g), f);
135
136  f=owl_malloc(sizeof(owl_filter));
137  owl_filter_init_fromstring(f, "aim", "type ^aim$");
138  owl_list_append_element(owl_global_get_filterlist(&g), f);
139
140  f=owl_malloc(sizeof(owl_filter));
141  owl_filter_init_fromstring(f, "zephyr", "type ^zephyr$");
142  owl_list_append_element(owl_global_get_filterlist(&g), f);
143
144  f=owl_malloc(sizeof(owl_filter));
145  owl_filter_init_fromstring(f, "none", "false");
146  owl_list_append_element(owl_global_get_filterlist(&g), f);
147
148  f=owl_malloc(sizeof(owl_filter));
149  owl_filter_init_fromstring(f, "all", "true");
150  owl_list_append_element(owl_global_get_filterlist(&g), f);
151}
152
153int main(int argc, char **argv, char **env)
154{
155  WINDOW *recwin, *sepwin, *typwin, *msgwin;
156  owl_editwin *tw;
157  owl_popwin *pw;
158  int debug, argcsave, followlast;
159  int newmsgs, nexttimediff;
160  const char *configfile, *tty, *const *argvsave;
161  char *perlout, *perlerr;
162  const char *confdir;
163  const owl_style *s;
164  time_t nexttime, now;
165  struct tm *today;
166  const char *dir;
167  owl_message *m;
168
169  if (!GLIB_CHECK_VERSION (2, 12, 0))
170    g_error ("GLib version 2.12.0 or above is needed.");
171
172  argcsave=argc;
173  argvsave=strs(argv);
174  configfile=NULL;
175  confdir = NULL;
176  tty=NULL;
177  debug=0;
178  g.load_initial_subs = 1;
179
180  setlocale(LC_ALL, "");
181 
182  if (argc>0) {
183    argv++;
184    argc--;
185  }
186  while (argc>0) {
187    if (!strcmp(argv[0], "-n")) {
188      g.load_initial_subs = 0;
189      argv++;
190      argc--;
191    } else if (!strcmp(argv[0], "-c")) {
192      if (argc<2) {
193        fprintf(stderr, "Too few arguments to -c\n");
194        usage();
195        exit(1);
196      }
197      configfile=argv[1];
198      argv+=2;
199      argc-=2;
200    } else if (!strcmp(argv[0], "-t")) {
201      if (argc<2) {
202        fprintf(stderr, "Too few arguments to -t\n");
203        usage();
204        exit(1);
205      }
206      tty=argv[1];
207      argv+=2;
208      argc-=2;
209    } else if (!strcmp(argv[0], "-s")){
210      if (argc<2) {
211        fprintf(stderr, "Too few arguments to -s\n");
212        usage();
213        exit(1);
214      }
215      confdir = argv[1];
216      argv+=2;
217      argc-=2;
218    } else if (!strcmp(argv[0], "-d")) {
219      debug=1;
220      argv++;
221      argc--;
222    } else if (!strcmp(argv[0], "-D")) {
223      debug=1;
224      unlink(OWL_DEBUG_FILE);
225      argv++;
226      argc--;
227    } else if (!strcmp(argv[0], "-v")) {
228      printf("This is barnowl version %s\n", OWL_VERSION_STRING);
229      exit(0);
230    } else {
231      fprintf(stderr, "Unknown argument\n");
232      usage();       
233      exit(1);
234    }
235  }
236
237  owl_function_debugmsg("startup: Finished parsing arguments");
238
239  owl_register_signal_handlers();
240  owl_start_curses();
241
242  /* owl global init */
243  owl_global_init(&g);
244  if (debug) owl_global_set_debug_on(&g);
245  if (confdir) owl_global_set_confdir(&g, confdir);
246  owl_function_debugmsg("startup: first available debugging message");
247  owl_global_set_startupargs(&g, argcsave, argvsave);
248  owl_global_set_haveaim(&g);
249
250  /* prepare stdin dispatch */
251  {
252    owl_dispatch *d = owl_malloc(sizeof(owl_dispatch));
253    d->fd = STDIN;
254    d->cfunc = &owl_process_input;
255    d->destroy = NULL;
256    owl_select_add_dispatch(d);
257  }
258
259  owl_zephyr_initialize();
260
261#if OWL_STDERR_REDIR
262  /* Do this only after we've started curses up... */
263  {
264    owl_dispatch *d = owl_malloc(sizeof(owl_dispatch));
265    owl_function_debugmsg("startup: doing stderr redirection");
266    d->fd = stderr_replace();
267    d->cfunc = stderr_redirect_handler;
268    d->destroy = NULL;
269    owl_select_add_dispatch(d);
270  }
271#endif
272
273  /* create the owl directory, in case it does not exist */
274  owl_function_debugmsg("startup: creating owl directory, if not present");
275  dir=owl_global_get_confdir(&g);
276  mkdir(dir, S_IRWXU);
277
278  /* set the tty, either from the command line, or by figuring it out */
279  owl_function_debugmsg("startup: setting tty name");
280  if (tty) {
281    owl_global_set_tty(&g, tty);
282  } else {
283    owl_global_set_tty(&g, owl_util_get_default_tty());
284  }
285
286  /* Initialize perl */
287  owl_function_debugmsg("startup: processing config file");
288  owl_context_set_readconfig(owl_global_get_context(&g));
289  perlerr=owl_perlconfig_initperl(configfile, &argc, &argv, &env);
290  if (perlerr) {
291    endwin();
292    fprintf(stderr, "Internal perl error: %s\n", perlerr);
293    fflush(stderr);
294    printf("Internal perl error: %s\n", perlerr);
295    fflush(stdout);
296    exit(1);
297  }
298
299  owl_global_complete_setup(&g);
300
301  owl_setup_default_filters();
302
303  /* set the current view */
304  owl_function_debugmsg("startup: setting the current view");
305  owl_view_create(owl_global_get_current_view(&g), "main",
306                  owl_global_get_filter(&g, "all"),
307                  owl_global_get_style_by_name(&g, "default"));
308
309  /* AIM init */
310  owl_function_debugmsg("startup: doing AIM initialization");
311  owl_aim_init();
312
313  /* execute the startup function in the configfile */
314  owl_function_debugmsg("startup: executing perl startup, if applicable");
315  perlout = owl_perlconfig_execute("BarnOwl::Hooks::_startup();");
316  if (perlout) owl_free(perlout);
317
318  /* hold on to the window names for convenience */
319  msgwin=owl_global_get_curs_msgwin(&g);
320  recwin=owl_global_get_curs_recwin(&g);
321  sepwin=owl_global_get_curs_sepwin(&g);
322  typwin=owl_global_get_curs_typwin(&g);
323  tw=owl_global_get_typwin(&g);
324
325  /* welcome message */
326  owl_function_debugmsg("startup: creating splash message");
327  owl_function_adminmsg("",
328    "-----------------------------------------------------------------------\n"
329    "Welcome to barnowl version " OWL_VERSION_STRING ".  Press 'h' for on-line help.\n"
330    "To see a quick introduction, type ':show quickstart'.                  \n"
331    "                                                                       \n"
332    "BarnOwl is free software. Type ':show license' for more                \n"
333    "information.                                                     ^ ^   \n"
334    "                                                                 OvO   \n"
335    "Please report any bugs or suggestions to bug-barnowl@mit.edu    (   )  \n"
336    "-----------------------------------------------------------------m-m---\n"
337  );
338  sepbar(NULL);
339
340  /* process the startup file */
341  owl_function_debugmsg("startup: processing startup file");
342  owl_function_source(NULL);
343
344  wrefresh(sepwin);
345
346  /* Set the default style */
347  owl_function_debugmsg("startup: setting startup and default style");
348  if (0 != strcmp(owl_global_get_default_style(&g), "__unspecified__")) {
349    /* the style was set by the user: leave it alone */
350  } else {
351    owl_global_set_default_style(&g, "default");
352  }
353
354  owl_function_debugmsg("startup: set style for the view: %s", owl_global_get_default_style(&g));
355  s = owl_global_get_style_by_name(&g, owl_global_get_default_style(&g));
356  if(s)
357      owl_view_set_style(owl_global_get_current_view(&g), s);
358  else
359      owl_function_error("No such style: %s", owl_global_get_default_style(&g));
360
361  owl_function_debugmsg("startup: setting context interactive");
362  owl_context_set_interactive(owl_global_get_context(&g));
363
364  nexttimediff=10;
365  nexttime=time(NULL);
366
367  owl_select_add_timer(180, 180, owl_zephyr_buddycheck_timer, NULL, NULL);
368
369  /* If we ever deprecate the mainloop hook, remove this. */
370  owl_select_add_timer(0, 1, owl_perlconfig_mainloop, NULL, NULL);
371
372
373  owl_function_debugmsg("startup: entering main loop");
374  /* main loop */
375  while (1) {
376
377    /* if a resize has been scheduled, deal with it */
378    owl_global_resize(&g, 0, 0);
379
380    /* these are here in case a resize changes the windows */
381    msgwin=owl_global_get_curs_msgwin(&g);
382    recwin=owl_global_get_curs_recwin(&g);
383    sepwin=owl_global_get_curs_sepwin(&g);
384    typwin=owl_global_get_curs_typwin(&g);
385
386    followlast=owl_global_should_followlast(&g);
387
388    /* little hack */
389    now=time(NULL);
390    today=localtime(&now);
391    if (today->tm_mon==9 && today->tm_mday==31 && owl_global_get_runtime(&g)<600) {
392      if (time(NULL)>nexttime) {
393        if (nexttimediff==1) {
394          nexttimediff=10;
395        } else {
396          nexttimediff=1;
397        }
398        nexttime+=nexttimediff;
399        owl_hack_animate();
400      }
401    }
402
403    /* Grab incoming messages. */
404    newmsgs=0;
405    while(owl_global_messagequeue_pending(&g)) {
406
407      m = owl_global_messagequeue_popmsg(&g);
408
409      if(owl_process_message(m))
410        newmsgs = 1;
411    }
412
413    /* follow the last message if we're supposed to */
414    if (newmsgs && followlast) {
415      owl_function_lastmsg_noredisplay();
416    }
417
418    /* do the newmsgproc thing */
419    if (newmsgs) {
420      owl_function_do_newmsgproc();
421    }
422   
423    /* redisplay if necessary */
424    /* this should be optimized to not run if the new messages won't be displayed */
425    if (newmsgs) {
426      owl_mainwin_redisplay(owl_global_get_mainwin(&g));
427      sepbar(NULL);
428      if (owl_popwin_is_active(owl_global_get_popwin(&g))) {
429        owl_popwin_refresh(owl_global_get_popwin(&g));
430        /* TODO: this is a broken kludge */
431        if (owl_global_get_viewwin(&g)) {
432          owl_viewwin_redisplay(owl_global_get_viewwin(&g), 0);
433        }
434      }
435      owl_global_set_needrefresh(&g);
436    }
437
438    /* if a popwin just came up, refresh it */
439    pw=owl_global_get_popwin(&g);
440    if (owl_popwin_is_active(pw) && owl_popwin_needs_first_refresh(pw)) {
441      owl_popwin_refresh(pw);
442      owl_popwin_no_needs_first_refresh(pw);
443      owl_global_set_needrefresh(&g);
444      /* TODO: this is a broken kludge */
445      if (owl_global_get_viewwin(&g)) {
446        owl_viewwin_redisplay(owl_global_get_viewwin(&g), 0);
447      }
448    }
449
450    /* update the terminal if we need to */
451    if (owl_global_is_needrefresh(&g)) {
452      /* leave the cursor in the appropriate window */
453      if (owl_global_is_typwin_active(&g)) {
454        owl_function_set_cursor(typwin);
455      } else {
456        owl_function_set_cursor(sepwin);
457      }
458      doupdate();
459      owl_global_set_noneedrefresh(&g);
460    }
461
462    /* Some calls into libzephyr call Z_WaitForNotice(), which has its
463     * own select loop and may leave zephyrs on the queue. Check for
464     * them now, and process any we find. */
465    owl_zephyr_process_events(NULL);
466
467    /* select on FDs we know about. */
468    owl_select();
469
470    /* Log any error signals */
471    {
472      siginfo_t si;
473      int signum;
474      if ((signum = owl_global_get_errsignal_and_clear(&g, &si)) > 0) {
475        owl_function_error("Got unexpected signal: %d %s  (code: %d band: %ld  errno: %d)",
476                           signum, signum==SIGPIPE?"SIGPIPE":"SIG????",
477                           si.si_code, si.si_band, si.si_errno);
478      }
479    }
480
481  }
482}
483
484/*
485 * Process a new message passed to us on the message queue from some
486 * protocol. This includes adding it to the message list, updating the
487 * view and scrolling if appropriate, logging it, and so on.
488 *
489 * Either a pointer is kept to the message internally, or it is freed
490 * if unneeded. The caller no longer ``owns'' the message's memory.
491 *
492 * Returns 1 if the message was added to the message list, and 0 if it
493 * was ignored due to user settings or otherwise.
494 */
495int owl_process_message(owl_message *m) {
496  const owl_filter *f;
497  /* if this message it on the puntlist, nuke it and continue */
498  if (owl_global_message_is_puntable(&g, m)) {
499    owl_message_free(m);
500    return 0;
501  }
502
503  /*  login or logout that should be ignored? */
504  if (owl_global_is_ignorelogins(&g)
505      && owl_message_is_loginout(m)) {
506    owl_message_free(m);
507    return 0;
508  }
509
510  if (!owl_global_is_displayoutgoing(&g)
511      && owl_message_is_direction_out(m)) {
512    owl_message_free(m);
513    return 0;
514  }
515
516  /* add it to the global list */
517  owl_messagelist_append_element(owl_global_get_msglist(&g), m);
518  /* add it to any necessary views; right now there's only the current view */
519  owl_view_consider_message(owl_global_get_current_view(&g), m);
520
521  if(owl_message_is_direction_in(m)) {
522    /* let perl know about it*/
523    owl_perlconfig_getmsg(m, NULL);
524
525    /* do we need to autoreply? */
526    if (owl_global_is_zaway(&g) && !owl_message_get_attribute_value(m, "isauto")) {
527      if (owl_message_is_type_zephyr(m)) {
528        owl_zephyr_zaway(m);
529      } else if (owl_message_is_type_aim(m)) {
530        if (owl_message_is_private(m)) {
531          owl_function_send_aimawymsg(owl_message_get_sender(m), owl_global_get_zaway_msg(&g));
532        }
533      }
534    }
535
536    /* ring the bell if it's a personal */
537    if (!strcmp(owl_global_get_personalbell(&g), "on")) {
538      if (!owl_message_is_loginout(m) &&
539          !owl_message_is_mail(m) &&
540          owl_message_is_personal(m)) {
541        owl_function_beep();
542      }
543    } else if (!strcmp(owl_global_get_personalbell(&g), "off")) {
544      /* do nothing */
545    } else {
546      f=owl_global_get_filter(&g, owl_global_get_personalbell(&g));
547      if (f && owl_filter_message_match(f, m)) {
548        owl_function_beep();
549      }
550    }
551
552    /* if it matches the alert filter, do the alert action */
553    f=owl_global_get_filter(&g, owl_global_get_alert_filter(&g));
554    if (f && owl_filter_message_match(f, m)) {
555      owl_function_command(owl_global_get_alert_action(&g));
556    }
557
558    /* if it's a zephyr login or logout, update the zbuddylist */
559    if (owl_message_is_type_zephyr(m) && owl_message_is_loginout(m)) {
560      if (owl_message_is_login(m)) {
561        owl_zbuddylist_adduser(owl_global_get_zephyr_buddylist(&g), owl_message_get_sender(m));
562      } else if (owl_message_is_logout(m)) {
563        owl_zbuddylist_deluser(owl_global_get_zephyr_buddylist(&g), owl_message_get_sender(m));
564      } else {
565        owl_function_error("Internal error: received login notice that is neither login nor logout");
566      }
567    }
568  }
569
570  /* let perl know about it */
571  owl_perlconfig_newmsg(m, NULL);
572  /* log the message if we need to */
573  owl_log_message(m);
574
575  return 1;
576}
577
578void owl_process_input(owl_dispatch *d)
579{
580  owl_input j;
581  WINDOW *typwin;
582
583  typwin = owl_global_get_curs_typwin(&g);
584
585  while (1) {
586    j.ch = wgetch(typwin);
587    if (j.ch == ERR) return;
588
589    j.uch = '\0';
590    if (j.ch >= KEY_MIN && j.ch <= KEY_MAX) {
591      /* This is a curses control character. */
592    }
593    else if (j.ch > 0x7f && j.ch < 0xfe) {
594      /* Pull in a full utf-8 character. */
595      int bytes, i;
596      char utf8buf[7];
597      memset(utf8buf, '\0', 7);
598     
599      utf8buf[0] = j.ch;
600     
601      if ((j.ch & 0xc0) && (~j.ch & 0x20)) bytes = 2;
602      else if ((j.ch & 0xe0) && (~j.ch & 0x10)) bytes = 3;
603      else if ((j.ch & 0xf0) && (~j.ch & 0x08)) bytes = 4;
604      else if ((j.ch & 0xf8) && (~j.ch & 0x04)) bytes = 5;
605      else if ((j.ch & 0xfc) && (~j.ch & 0x02)) bytes = 6;
606      else bytes = 1;
607     
608      for (i = 1; i < bytes; i++) {
609        int tmp =  wgetch(typwin);
610        /* If what we got was not a byte, or not a continuation byte */
611        if (tmp > 0xff || !(tmp & 0x80 && ~tmp & 0x40)) {
612          /* ill-formed UTF-8 code unit subsequence, put back the
613             char we just got. */
614          ungetch(tmp);
615          j.ch = ERR;
616          break;
617        }
618        utf8buf[i] = tmp;
619      }
620     
621      if (j.ch != ERR) {
622        if (g_utf8_validate(utf8buf, -1, NULL)) {
623          j.uch = g_utf8_get_char(utf8buf);
624        }
625        else {
626          j.ch = ERR;
627        }
628      }
629    }
630    else if (j.ch <= 0x7f) {
631      j.uch = j.ch;
632    }
633
634    owl_process_input_char(j);
635  }
636}
637
638void sig_handler(int sig, siginfo_t *si, void *data)
639{
640  if (sig==SIGWINCH) {
641    /* we can't inturrupt a malloc here, so it just sets a flag
642     * schedulding a resize for later
643     */
644    owl_function_resize();
645  } else if (sig==SIGPIPE || sig==SIGCHLD) {
646    /* Set a flag and some info that we got the sigpipe
647     * so we can record that we got it and why... */
648    owl_global_set_errsignal(&g, sig, si);
649  } else if (sig==SIGTERM || sig==SIGHUP) {
650    owl_function_quit();
651  }
652}
653
654void sigint_handler(int sig, siginfo_t *si, void *data)
655{
656  owl_global_set_interrupted(&g);
657}
658
659void usage()
660{
661  fprintf(stderr, "Barnowl version %s\n", OWL_VERSION_STRING);
662  fprintf(stderr, "Usage: barnowl [-n] [-d] [-D] [-v] [-h] [-c <configfile>] [-s <confdir>] [-t <ttyname>]\n");
663  fprintf(stderr, "  -n      don't load zephyr subscriptions\n");
664  fprintf(stderr, "  -d      enable debugging\n");
665  fprintf(stderr, "  -D      enable debugging and delete previous debug file\n");
666  fprintf(stderr, "  -v      print the Barnowl version number and exit\n");
667  fprintf(stderr, "  -h      print this help message\n");
668  fprintf(stderr, "  -c      specify an alternate config file\n");
669  fprintf(stderr, "  -s      specify an alternate config dir (default ~/.owl)\n");
670  fprintf(stderr, "  -t      set the tty name\n");
671}
672
673#if OWL_STDERR_REDIR
674
675/* Replaces stderr with a pipe so that we can read from it.
676 * Returns the fd of the pipe from which stderr can be read. */
677int stderr_replace(void)
678{
679  int pipefds[2];
680  if (0 != pipe(pipefds)) {
681    perror("pipe");
682    owl_function_debugmsg("stderr_replace: pipe FAILED\n");
683    return -1;
684  }
685    owl_function_debugmsg("stderr_replace: pipe: %d,%d\n", pipefds[0], pipefds[1]);
686  if (-1 == dup2(pipefds[1], 2 /*stderr*/)) {
687    owl_function_debugmsg("stderr_replace: dup2 FAILED (%s)\n", strerror(errno));
688    perror("dup2");
689    return -1;
690  }
691  return pipefds[0];
692}
693
694/* Sends stderr (read from rfd) messages to the error console */
695void stderr_redirect_handler(owl_dispatch *d)
696{
697  int navail, bread;
698  char buf[4096];
699  int rfd = d->fd;
700  char *err;
701
702  if (rfd<0) return;
703  if (-1 == ioctl(rfd, FIONREAD, &navail)) {
704    return;
705  }
706  /*owl_function_debugmsg("stderr_redirect: navail = %d\n", navail);*/
707  if (navail <= 0) return;
708  if (navail > sizeof(buf)-1) {
709    navail = sizeof(buf)-1;
710  }
711  bread = read(rfd, buf, navail);
712  if (buf[navail-1] != '\0') {
713    buf[navail] = '\0';
714  }
715
716  err = owl_sprintf("[stderr]\n%s", buf);
717
718  owl_function_log_err(err);
719  owl_free(err);
720}
721
722#endif /* OWL_STDERR_REDIR */
723
724void owl_zephyr_buddycheck_timer(owl_timer *t, void *data)
725{
726  if (owl_global_is_pseudologins(&g)) {
727    owl_function_debugmsg("Doing zephyr buddy check");
728    owl_function_zephyr_buddy_check(1);
729  }
730}
Note: See TracBrowser for help on using the repository browser.