source: owl.c @ cde4a71

barnowl_perlaimdebianrelease-1.10release-1.4release-1.5release-1.6release-1.7release-1.8release-1.9
Last change on this file since cde4a71 was cde4a71, checked in by Alejandro R. Sedeño <asedeno@mit.edu>, 16 years ago
* drop unused struct member * char * != char This fixes unicode input, which was broken as of r811.
  • Property mode set to 100644
File size: 26.0 KB
Line 
1/*  Copyright (c) 2004 James Kretchmar. All rights reserved.
2 *
3 *  Redistribution and use in source and binary forms, with or without
4 *  modification, are permitted provided that the following conditions are
5 *  met:
6 * 
7 *    * Redistributions of source code must retain the above copyright
8 *      notice, this list of conditions and the following disclaimer.
9 * 
10 *    * Redistributions in binary form must reproduce the above copyright
11 *      notice, this list of conditions and the following disclaimer in
12 *      the documentation and/or other materials provided with the
13 *      distribution.
14 * 
15 *    * Redistributions in any form must be accompanied by information on
16 *      how to obtain complete source code for the Owl software and any
17 *      accompanying software that uses the Owl software. The source code
18 *      must either be included in the distribution or be available for no
19 *      more than the cost of distribution plus a nominal fee, and must be
20 *      freely redistributable under reasonable conditions. For an
21 *      executable file, complete source code means the source code for
22 *      all modules it contains. It does not include source code for
23 *      modules or files that typically accompany the major components of
24 *      the operating system on which the executable file runs.
25 * 
26 *
27 *  THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
28 *  IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
29 *  WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR
30 *  NON-INFRINGEMENT, ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE
31 *  LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
32 *  CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
33 *  SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
34 *  BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
35 *  WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
36 *  OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
37 *  IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
38 */
39
40#include <stdio.h>
41#include <unistd.h>
42#include <stdlib.h>
43#include <string.h>
44#include <signal.h>
45#include <time.h>
46#include <sys/param.h>
47#include <sys/types.h>
48#include <termios.h>
49#include <sys/stat.h>
50#include <locale.h>
51#include "owl.h"
52
53#if OWL_STDERR_REDIR
54#ifdef HAVE_SYS_IOCTL_H
55#include <sys/ioctl.h>
56#endif
57#ifdef HAVE_SYS_FILIO_H
58#include <sys/filio.h>
59#endif
60int stderr_replace(void);
61#endif
62
63static const char fileIdent[] = "$Id$";
64
65owl_global g;
66
67int main(int argc, char **argv, char **env)
68{
69  WINDOW *recwin, *sepwin, *typwin, *msgwin;
70  owl_editwin *tw;
71  owl_popwin *pw;
72  int ret, initialsubs, debug, argcsave, followlast;
73  owl_input j;
74  int newmsgs, nexttimediff;
75  struct sigaction sigact;
76  char *configfile, *tty, *perlout, *perlerr, **argvsave, buff[LINE], startupmsg[LINE];
77  char *confdir;
78  owl_filter *f;
79  owl_style *s;
80  time_t nexttime, now;
81  struct tm *today;
82  char *dir;
83  struct termios tio;
84  owl_message *m;
85#if OWL_STDERR_REDIR
86  int newstderr;
87#endif
88 
89  if (!GLIB_CHECK_VERSION (2, 12, 0))
90    g_error ("GLib version 2.12.0 or above is needed.");
91
92  argcsave=argc;
93  argvsave=argv;
94  configfile=NULL;
95  confdir = NULL;
96  tty=NULL;
97  debug=0;
98  initialsubs=1;
99
100  setlocale(LC_ALL, "");
101 
102  if (argc>0) {
103    argv++;
104    argc--;
105  }
106  while (argc>0) {
107    if (!strcmp(argv[0], "-n")) {
108      initialsubs=0;
109      argv++;
110      argc--;
111    } else if (!strcmp(argv[0], "-c")) {
112      if (argc<2) {
113        fprintf(stderr, "Too few arguments to -c\n");
114        usage();
115        exit(1);
116      }
117      configfile=argv[1];
118      argv+=2;
119      argc-=2;
120    } else if (!strcmp(argv[0], "-t")) {
121      if (argc<2) {
122        fprintf(stderr, "Too few arguments to -t\n");
123        usage();
124        exit(1);
125      }
126      tty=argv[1];
127      argv+=2;
128      argc-=2;
129    } else if (!strcmp(argv[0], "-s")){
130      if (argc<2) {
131        fprintf(stderr, "Too few arguments to -s\n");
132        usage();
133        exit(1);
134      }
135      confdir = argv[1];
136      argv+=2;
137      argc-=2;
138    } else if (!strcmp(argv[0], "-d")) {
139      debug=1;
140      argv++;
141      argc--;
142    } else if (!strcmp(argv[0], "-D")) {
143      debug=1;
144      unlink(OWL_DEBUG_FILE);
145      argv++;
146      argc--;
147    } else if (!strcmp(argv[0], "-v")) {
148      printf("This is barnowl version %s\n", OWL_VERSION_STRING);
149      exit(0);
150    } else {
151      fprintf(stderr, "Uknown argument\n");
152      usage();       
153      exit(1);
154    }
155  }
156
157  owl_function_debugmsg("startup: Finished parsing arguments");
158
159  /* signal handler */
160  /*sigact.sa_handler=sig_handler;*/
161  sigact.sa_sigaction=sig_handler;
162  sigemptyset(&sigact.sa_mask);
163  sigact.sa_flags=SA_SIGINFO;
164  sigaction(SIGWINCH, &sigact, NULL);
165  sigaction(SIGALRM, &sigact, NULL);
166  sigaction(SIGPIPE, &sigact, NULL);
167  sigaction(SIGTERM, &sigact, NULL);
168  sigaction(SIGHUP, &sigact, NULL);
169
170  /* save initial terminal settings */
171  tcgetattr(0, owl_global_get_startup_tio(&g));
172
173  /* turn ISTRIP off */
174  tcgetattr(0, &tio);
175  tio.c_iflag &= ~ISTRIP;
176  tcsetattr(0, TCSAFLUSH, &tio);
177
178  /* screen init */
179  if (!getenv("TERMINFO")) {
180    owl_function_debugmsg("startup: Not setting TERMINFO");
181  } else {
182    owl_function_debugmsg("startup: leaving TERMINFO as %s from envrionment", getenv("TERMINFO"));
183  }
184  initscr();
185  start_color();
186#ifdef HAVE_USE_DEFAULT_COLORS
187  use_default_colors();
188#endif
189  raw();
190  noecho();
191
192  /* define simple color pairs */
193  if (has_colors() && COLOR_PAIRS>=8) {
194    int bg = COLOR_BLACK;
195#ifdef HAVE_USE_DEFAULT_COLORS
196    bg = -1;
197#endif
198    init_pair(OWL_COLOR_BLACK,   COLOR_BLACK,   bg);
199    init_pair(OWL_COLOR_RED,     COLOR_RED,     bg);
200    init_pair(OWL_COLOR_GREEN,   COLOR_GREEN,   bg);
201    init_pair(OWL_COLOR_YELLOW,  COLOR_YELLOW,  bg);
202    init_pair(OWL_COLOR_BLUE,    COLOR_BLUE,    bg);
203    init_pair(OWL_COLOR_MAGENTA, COLOR_MAGENTA, bg);
204    init_pair(OWL_COLOR_CYAN,    COLOR_CYAN,    bg);
205    init_pair(OWL_COLOR_WHITE,   COLOR_WHITE,   bg);
206  }
207
208  /* owl global init */
209  owl_global_init(&g);
210  if (debug) owl_global_set_debug_on(&g);
211  if (confdir) owl_global_set_confdir(&g, confdir);
212  owl_function_debugmsg("startup: first available debugging message");
213  owl_global_set_startupargs(&g, argcsave, argvsave);
214  owl_global_set_haveaim(&g);
215
216#ifdef HAVE_LIBZEPHYR
217  /* zephyr init */
218  ret=owl_zephyr_initialize();
219  if (!ret)
220      owl_global_set_havezephyr(&g);
221#endif
222
223#if OWL_STDERR_REDIR
224  /* Do this only after we've started curses up... */
225  owl_function_debugmsg("startup: doing stderr redirection");
226  newstderr = stderr_replace();
227  owl_muxevents_add(owl_global_get_muxevents(&g), newstderr, OWL_MUX_READ,
228                    stderr_redirect_handler, NULL);
229#endif   
230
231  /* create the owl directory, in case it does not exist */
232  owl_function_debugmsg("startup: creating owl directory, if not present");
233  dir=owl_global_get_confdir(&g);
234  mkdir(dir, S_IRWXU);
235
236  /* set the tty, either from the command line, or by figuring it out */
237  owl_function_debugmsg("startup: setting tty name");
238  if (tty) {
239    owl_global_set_tty(&g, tty);
240  } else {
241    owl_global_set_tty(&g, owl_util_get_default_tty());
242  }
243
244  /* Initialize perl */
245  owl_function_debugmsg("startup: processing config file");
246  owl_context_set_readconfig(owl_global_get_context(&g));
247  perlerr=owl_perlconfig_initperl(configfile);
248  if (perlerr) {
249    endwin();
250    owl_function_error("Internal perl error: %s\n", perlerr);
251    fprintf(stderr, "Internal perl error: %s\n", perlerr);
252    fflush(stderr);
253    printf("Internal perl error: %s\n", perlerr);
254    fflush(stdout);
255    exit(1);
256  }
257
258  /* setup the built-in styles */
259  owl_function_debugmsg("startup: creating built-in styles");
260
261  s=owl_malloc(sizeof(owl_style));
262  owl_style_create_internal(s, "basic", &owl_stylefunc_basic, "Basic message formatting.");
263  owl_global_add_style(&g, s);
264#if 0
265  s=owl_malloc(sizeof(owl_style));
266  owl_style_create_internal(s, "vt", &owl_stylefunc_vt, "VT message formatting.");
267  owl_global_add_style(&g, s);
268#endif
269  s=owl_malloc(sizeof(owl_style));
270  owl_style_create_internal(s, "oneline", &owl_stylefunc_oneline, "Formats for one-line-per-message");
271  owl_global_add_style(&g, s);
272
273  /* setup the default filters */
274  /* the personal filter will need to change again when AIM chat's are
275   *  included.  Also, there should be an %aimme% */
276  owl_function_debugmsg("startup: creating default filters");
277  f=owl_malloc(sizeof(owl_filter));
278  owl_filter_init_fromstring(f, "personal", "isprivate ^true$ and ( not type ^zephyr$"
279                             " or ( class ^message and"
280                             " ( instance ^personal$ or instance ^urgent$ ) ) )");
281  owl_list_append_element(owl_global_get_filterlist(&g), f);
282
283  f=owl_malloc(sizeof(owl_filter));
284  owl_filter_init_fromstring(f, "wordwrap", "not ( type ^admin$ or type ^zephyr$ ) ");
285  owl_list_append_element(owl_global_get_filterlist(&g), f);
286
287  f=owl_malloc(sizeof(owl_filter));
288  owl_filter_init_fromstring(f, "trash", "class ^mail$ or opcode ^ping$ or type ^admin$ or ( not login ^none$ )");
289  owl_list_append_element(owl_global_get_filterlist(&g), f);
290
291  f=owl_malloc(sizeof(owl_filter));
292  owl_filter_init_fromstring(f, "ping", "opcode ^ping$");
293  owl_list_append_element(owl_global_get_filterlist(&g), f);
294
295  f=owl_malloc(sizeof(owl_filter));
296  owl_filter_init_fromstring(f, "auto", "opcode ^auto$");
297  owl_list_append_element(owl_global_get_filterlist(&g), f);
298
299  f=owl_malloc(sizeof(owl_filter));
300  owl_filter_init_fromstring(f, "login", "not login ^none$");
301  owl_list_append_element(owl_global_get_filterlist(&g), f);
302
303  f=owl_malloc(sizeof(owl_filter));
304  owl_filter_init_fromstring(f, "reply-lockout", "class ^noc or class ^mail$");
305  owl_list_append_element(owl_global_get_filterlist(&g), f);
306
307  f=owl_malloc(sizeof(owl_filter));
308  owl_filter_init_fromstring(f, "out", "direction ^out$");
309  owl_list_append_element(owl_global_get_filterlist(&g), f);
310
311  f=owl_malloc(sizeof(owl_filter));
312  owl_filter_init_fromstring(f, "aim", "type ^aim$");
313  owl_list_append_element(owl_global_get_filterlist(&g), f);
314
315  f=owl_malloc(sizeof(owl_filter));
316  owl_filter_init_fromstring(f, "zephyr", "type ^zephyr$");
317  owl_list_append_element(owl_global_get_filterlist(&g), f);
318
319  f=owl_malloc(sizeof(owl_filter));
320  owl_filter_init_fromstring(f, "none", "false");
321  owl_list_append_element(owl_global_get_filterlist(&g), f);
322
323  f=owl_malloc(sizeof(owl_filter));
324  owl_filter_init_fromstring(f, "all", "true");
325  owl_list_append_element(owl_global_get_filterlist(&g), f);
326
327  /* set the current view */
328  owl_function_debugmsg("startup: setting the current view");
329  owl_view_create(owl_global_get_current_view(&g), "main", f, owl_global_get_style_by_name(&g, "default"));
330
331  /* AIM init */
332  owl_function_debugmsg("startup: doing AIM initialization");
333  owl_aim_init();
334
335  /* execute the startup function in the configfile */
336  owl_function_debugmsg("startup: executing perl startup, if applicable");
337  perlout = owl_perlconfig_execute("BarnOwl::Hooks::_startup();");
338  if (perlout) owl_free(perlout);
339
340  /* hold on to the window names for convenience */
341  msgwin=owl_global_get_curs_msgwin(&g);
342  recwin=owl_global_get_curs_recwin(&g);
343  sepwin=owl_global_get_curs_sepwin(&g);
344  typwin=owl_global_get_curs_typwin(&g);
345  tw=owl_global_get_typwin(&g);
346
347  /* welcome message */
348  owl_function_debugmsg("startup: creating splash message");
349  strcpy(startupmsg, "-----------------------------------------------------------------------\n");
350  sprintf(buff,      "Welcome to barnowl version %s.  Press 'h' for on-line help.            \n", OWL_VERSION_STRING);
351  strcat(startupmsg, buff);
352  strcat(startupmsg, "                                                                       \n");
353  strcat(startupmsg, "This is a development build of barnowl. If you are using this          \n");
354  strcat(startupmsg, "build regularly, please add yourself to barnowl-users@mit.edu          \n");
355  strcat(startupmsg, "                                                                 ^ ^   \n");
356  strcat(startupmsg, "                                                                 OvO   \n");
357  strcat(startupmsg, "Please report any bugs to dirty-owl-hackers@mit.edu             (   )  \n");
358  strcat(startupmsg, "-----------------------------------------------------------------m-m---\n");
359  owl_function_adminmsg("", startupmsg);
360  sepbar(NULL);
361
362  /* process the startup file */
363  owl_function_debugmsg("startup: processing startup file");
364  owl_function_source(NULL);
365
366  wrefresh(sepwin);
367
368  /* load zephyr subs */
369  if (initialsubs) {
370    int ret2;
371    owl_function_debugmsg("startup: loading initial zephyr subs");
372
373    /* load default subscriptions */
374    ret=owl_zephyr_loaddefaultsubs();
375   
376    /* load subscriptions from subs file */
377    ret2=owl_zephyr_loadsubs(NULL, 0);
378
379    if (ret || ret2) {
380      owl_function_adminmsg("", "Error loading zephyr subscriptions");
381    } else if (ret2!=-1) {
382      owl_global_add_userclue(&g, OWL_USERCLUE_CLASSES);
383    }
384
385    /* load login subscriptions */
386    if (owl_global_is_loginsubs(&g)) {
387      owl_function_debugmsg("startup: loading login subs");
388      owl_function_loadloginsubs(NULL);
389    }
390  }
391
392  /* First buddy check to sync the list without notifications */
393  owl_function_debugmsg("startup: doing initial zephyr buddy check");
394  /* owl_function_zephyr_buddy_check(0); */
395
396  /* set the startup and default style, based on userclue and presence of a
397   * formatting function */
398  owl_function_debugmsg("startup: setting startup and default style");
399  if (0 != strcmp(owl_global_get_default_style(&g), "__unspecified__")) {
400    /* the style was set by the user: leave it alone */
401  } else if (owl_global_is_config_format(&g)) {
402    owl_global_set_default_style(&g, "perl");
403  } else if (owl_global_is_userclue(&g, OWL_USERCLUE_CLASSES)) {
404    owl_global_set_default_style(&g, "default");
405  } else {
406    owl_global_set_default_style(&g, "basic");
407  }
408
409  /* zlog in if we need to */
410  if (owl_global_is_startuplogin(&g)) {
411    owl_function_debugmsg("startup: doing zlog in");
412    owl_zephyr_zlog_in();
413  }
414
415  owl_function_debugmsg("startup: set style for the view: %s", owl_global_get_default_style(&g));
416  s = owl_global_get_style_by_name(&g, owl_global_get_default_style(&g));
417  if(s)
418      owl_view_set_style(owl_global_get_current_view(&g), s);
419  else
420      owl_function_error("No such style: %s", owl_global_get_default_style(&g));
421
422  owl_function_debugmsg("startup: setting context interactive");
423  owl_context_set_interactive(owl_global_get_context(&g));
424
425  nexttimediff=10;
426  nexttime=time(NULL);
427
428  owl_function_debugmsg("startup: entering main loop");
429  /* main loop */
430  while (1) {
431
432    /* if a resize has been scheduled, deal with it */
433    owl_global_resize(&g, 0, 0);
434
435    /* these are here in case a resize changes the windows */
436    msgwin=owl_global_get_curs_msgwin(&g);
437    recwin=owl_global_get_curs_recwin(&g);
438    sepwin=owl_global_get_curs_sepwin(&g);
439    typwin=owl_global_get_curs_typwin(&g);
440
441    followlast=owl_global_should_followlast(&g);
442   
443    /* Do AIM stuff */
444    if (owl_global_is_doaimevents(&g)) {
445      owl_aim_process_events();
446
447      if (owl_global_is_aimloggedin(&g)) {
448        if (owl_timer_is_expired(owl_global_get_aim_buddyinfo_timer(&g))) {
449          /* owl_buddylist_request_idletimes(owl_global_get_buddylist(&g)); */
450          owl_timer_reset(owl_global_get_aim_buddyinfo_timer(&g));
451        }
452      }
453    }
454
455    owl_perlconfig_mainloop();
456
457    /* little hack */
458    now=time(NULL);
459    today=localtime(&now);
460    if (today->tm_mon==9 && today->tm_mday==31 && owl_global_get_runtime(&g)<600) {
461      if (time(NULL)>nexttime) {
462        if (nexttimediff==1) {
463          nexttimediff=10;
464        } else {
465          nexttimediff=1;
466        }
467        nexttime+=nexttimediff;
468        owl_hack_animate();
469      }
470    }
471
472    owl_zephyr_process_events();
473   
474    /* Grab incoming messages. */
475    newmsgs=0;
476    while(owl_global_messagequeue_pending(&g)) {
477
478      m = owl_global_messagequeue_popmsg(&g);
479
480      if(owl_process_message(m))
481        newmsgs = 1;
482    }
483
484    /* is it time to check zbuddies? */
485    if (owl_global_is_pseudologins(&g)) {
486      if (owl_timer_is_expired(owl_global_get_zephyr_buddycheck_timer(&g))) {
487        owl_function_debugmsg("Doing zephyr buddy check");
488        owl_function_zephyr_buddy_check(1);
489        owl_timer_reset(owl_global_get_zephyr_buddycheck_timer(&g));
490      }
491    }
492
493    /* dispatch any muxevents */
494    owl_muxevents_dispatch(owl_global_get_muxevents(&g), 0);
495
496    /* follow the last message if we're supposed to */
497    if (newmsgs && followlast) {
498      owl_function_lastmsg_noredisplay();
499    }
500
501    /* do the newmsgproc thing */
502    if (newmsgs) {
503      owl_function_do_newmsgproc();
504    }
505   
506    /* redisplay if necessary */
507    /* this should be optimized to not run if the new messages won't be displayed */
508    if (newmsgs) {
509      owl_mainwin_redisplay(owl_global_get_mainwin(&g));
510      sepbar(NULL);
511      if (owl_popwin_is_active(owl_global_get_popwin(&g))) {
512        owl_popwin_refresh(owl_global_get_popwin(&g));
513        /* TODO: this is a broken kludge */
514        if (owl_global_get_viewwin(&g)) {
515          owl_viewwin_redisplay(owl_global_get_viewwin(&g), 0);
516        }
517      }
518      owl_global_set_needrefresh(&g);
519    }
520
521    /* if a popwin just came up, refresh it */
522    pw=owl_global_get_popwin(&g);
523    if (owl_popwin_is_active(pw) && owl_popwin_needs_first_refresh(pw)) {
524      owl_popwin_refresh(pw);
525      owl_popwin_no_needs_first_refresh(pw);
526      owl_global_set_needrefresh(&g);
527      /* TODO: this is a broken kludge */
528      if (owl_global_get_viewwin(&g)) {
529        owl_viewwin_redisplay(owl_global_get_viewwin(&g), 0);
530      }
531    }
532
533    /* update the terminal if we need to */
534    if (owl_global_is_needrefresh(&g)) {
535      /* leave the cursor in the appropriate window */
536      if (owl_global_is_typwin_active(&g)) {
537        owl_function_set_cursor(typwin);
538      } else {
539        owl_function_set_cursor(sepwin);
540      }
541      doupdate();
542      owl_global_set_noneedrefresh(&g);
543    }
544
545    /* Handle all keypresses.  If no key has been pressed, sleep for a
546     * little bit, but otherwise do not.  This lets input be grabbed
547     * as quickly as possbile */
548    j.ch = wgetch(typwin);
549    if (j.ch == ERR) {
550      usleep(10000);
551    } else {
552      j.uch = '\0';
553      if (j.ch >= KEY_MIN && j.ch <= KEY_MAX) {
554        /* This is a curses control character. */
555      }
556      else if (j.ch > 0x7f && j.ch < 0xfe) {
557        /* Pull in a full utf-8 character. */
558        int bytes, i;
559        char utf8buf[7];
560        memset(utf8buf, '\0', 7);
561
562        utf8buf[0] = j.ch;
563
564        if ((j.ch & 0xc0) && (~j.ch & 0x20)) bytes = 2;
565        else if ((j.ch & 0xe0) && (~j.ch & 0x10)) bytes = 3;
566        else if ((j.ch & 0xf0) && (~j.ch & 0x08)) bytes = 4;
567        else if ((j.ch & 0xf8) && (~j.ch & 0x04)) bytes = 5;
568        else if ((j.ch & 0xfc) && (~j.ch & 0x02)) bytes = 6;
569        else bytes = 1;
570       
571        for (i = 1; i < bytes; i++) {
572          utf8buf[i] = wgetch(typwin);
573        }
574        if (g_utf8_validate(utf8buf, -1, NULL)) {
575          j.uch = g_utf8_get_char(utf8buf);
576        }
577        else {
578          j.ch = ERR;
579        }
580      }
581      else if (j.ch <= 0x7f) {
582        j.uch = j.ch;
583      }
584     
585      owl_global_update_lastinputtime(&g);
586      /* find and activate the current keymap.
587       * TODO: this should really get fixed by activating
588       * keymaps as we switch between windows...
589       */
590      if (pw && owl_popwin_is_active(pw) && owl_global_get_viewwin(&g)) {
591        owl_context_set_popless(owl_global_get_context(&g), 
592                                owl_global_get_viewwin(&g));
593        owl_function_activate_keymap("popless");
594      } else if (owl_global_is_typwin_active(&g) 
595                 && owl_editwin_get_style(tw)==OWL_EDITWIN_STYLE_ONELINE) {
596        /*
597          owl_context_set_editline(owl_global_get_context(&g), tw);
598          owl_function_activate_keymap("editline");
599        */
600      } else if (owl_global_is_typwin_active(&g) 
601                 && owl_editwin_get_style(tw)==OWL_EDITWIN_STYLE_MULTILINE) {
602        owl_context_set_editmulti(owl_global_get_context(&g), tw);
603        owl_function_activate_keymap("editmulti");
604      } else {
605        owl_context_set_recv(owl_global_get_context(&g));
606        owl_function_activate_keymap("recv");
607      }
608      /* now actually handle the keypress */
609      ret = owl_keyhandler_process(owl_global_get_keyhandler(&g), j);
610      if (ret!=0 && ret!=1) {
611        owl_function_makemsg("Unable to handle keypress");
612      }
613    }
614
615    /* Log any error signals */
616    {
617      siginfo_t si;
618      int signum;
619      if ((signum = owl_global_get_errsignal_and_clear(&g, &si)) > 0) {
620        owl_function_error("Got unexpected signal: %d %s  (code: %d band: %d  errno: %d)", 
621                           signum, signum==SIGPIPE?"SIGPIPE":"SIG????",
622                           si.si_code, si.si_band, si.si_errno);
623      }
624    }
625
626  }
627}
628
629/*
630 * Process a new message passed to us on the message queue from some
631 * protocol. This includes adding it to the message list, updating the
632 * view and scrolling if appropriate, logging it, and so on.
633 *
634 * Either a pointer is kept to the message internally, or it is freed
635 * if unneeded. The caller no longer ``owns'' the message's memory.
636 *
637 * Returns 1 if the message was added to the message list, and 0 if it
638 * was ignored due to user settings or otherwise.
639 */
640int owl_process_message(owl_message *m) {
641  owl_filter *f;
642  /* if this message it on the puntlist, nuke it and continue */
643  if (owl_global_message_is_puntable(&g, m)) {
644    owl_message_free(m);
645    return 0;
646  }
647
648  /*  login or logout that should be ignored? */
649  if (owl_global_is_ignorelogins(&g)
650      && owl_message_is_loginout(m)) {
651    owl_message_free(m);
652    return 0;
653  }
654
655  if (!owl_global_is_displayoutgoing(&g)
656      && owl_message_is_direction_out(m)) {
657    owl_message_free(m);
658    return 0;
659  }
660
661  /* add it to the global list */
662  owl_messagelist_append_element(owl_global_get_msglist(&g), m);
663  /* add it to any necessary views; right now there's only the current view */
664  owl_view_consider_message(owl_global_get_current_view(&g), m);
665
666  if(owl_message_is_direction_in(m)) {
667    /* let perl know about it*/
668    owl_perlconfig_getmsg(m, 0, NULL);
669
670    /* do we need to autoreply? */
671    if (owl_global_is_zaway(&g) && !owl_message_get_attribute_value(m, "isauto")) {
672      if (owl_message_is_type_zephyr(m)) {
673        owl_zephyr_zaway(m);
674      } else if (owl_message_is_type_aim(m)) {
675        if (owl_message_is_private(m)) {
676          owl_function_send_aimawymsg(owl_message_get_sender(m), owl_global_get_zaway_msg(&g));
677        }
678      }
679    }
680
681    /* ring the bell if it's a personal */
682    if (!strcmp(owl_global_get_personalbell(&g), "on")) {
683      if (!owl_message_is_loginout(m) &&
684          !owl_message_is_mail(m) &&
685          owl_message_is_personal(m)) {
686        owl_function_beep();
687      }
688    } else if (!strcmp(owl_global_get_personalbell(&g), "off")) {
689      /* do nothing */
690    } else {
691      f=owl_global_get_filter(&g, owl_global_get_personalbell(&g));
692      if (f && owl_filter_message_match(f, m)) {
693        owl_function_beep();
694      }
695    }
696
697    /* if it matches the alert filter, do the alert action */
698    f=owl_global_get_filter(&g, owl_global_get_alert_filter(&g));
699    if (f && owl_filter_message_match(f, m)) {
700      owl_function_command(owl_global_get_alert_action(&g));
701    }
702
703    /* if it's a zephyr login or logout, update the zbuddylist */
704    if (owl_message_is_type_zephyr(m) && owl_message_is_loginout(m)) {
705      if (owl_message_is_login(m)) {
706        owl_zbuddylist_adduser(owl_global_get_zephyr_buddylist(&g), owl_message_get_sender(m));
707      } else if (owl_message_is_logout(m)) {
708        owl_zbuddylist_deluser(owl_global_get_zephyr_buddylist(&g), owl_message_get_sender(m));
709      } else {
710        owl_function_error("Internal error: received login notice that is neither login nor logout");
711      }
712    }
713
714    /* check for burning ears message */
715    /* this is an unsupported feature */
716    if (owl_global_is_burningears(&g) && owl_message_is_burningears(m)) {
717      char *buff;
718      buff = owl_sprintf("@i(Burning ears message on class %s)", owl_message_get_class(m));
719      owl_function_adminmsg(buff, "");
720      owl_free(buff);
721      owl_function_beep();
722    }
723  }
724
725  /* log the message if we need to */
726  owl_log_message(m);
727
728  return 1;
729}
730
731void sig_handler(int sig, siginfo_t *si, void *data)
732{
733  if (sig==SIGWINCH) {
734    /* we can't inturrupt a malloc here, so it just sets a flag
735     * schedulding a resize for later
736     */
737    owl_function_resize();
738  } else if (sig==SIGPIPE || sig==SIGCHLD) {
739    /* Set a flag and some info that we got the sigpipe
740     * so we can record that we got it and why... */
741    owl_global_set_errsignal(&g, sig, si);
742  } else if (sig==SIGTERM || sig==SIGHUP) {
743    owl_function_quit();
744  }
745
746}
747
748void usage()
749{
750  fprintf(stderr, "Barnowl version %s\n", OWL_VERSION_STRING);
751  fprintf(stderr, "Usage: barnowl [-n] [-d] [-D] [-v] [-h] [-c <configfile>] [-s <confdir>] [-t <ttyname>]\n");
752  fprintf(stderr, "  -n      don't load zephyr subscriptions\n");
753  fprintf(stderr, "  -d      enable debugging\n");
754  fprintf(stderr, "  -D      enable debugging and delete previous debug file\n");
755  fprintf(stderr, "  -v      print the Barnowl version number and exit\n");
756  fprintf(stderr, "  -h      print this help message\n");
757  fprintf(stderr, "  -c      specify an alternate config file\n");
758  fprintf(stderr, "  -s      specify an alternate config dir (default ~/.owl)\n");
759  fprintf(stderr, "  -t      set the tty name\n");
760}
761
762#if OWL_STDERR_REDIR
763
764/* Replaces stderr with a pipe so that we can read from it.
765 * Returns the fd of the pipe from which stderr can be read. */
766int stderr_replace(void)
767{
768  int pipefds[2];
769  if (0 != pipe(pipefds)) {
770    perror("pipe");
771    owl_function_debugmsg("stderr_replace: pipe FAILED\n");
772    return -1;
773  }
774    owl_function_debugmsg("stderr_replace: pipe: %d,%d\n", pipefds[0], pipefds[1]);
775  if (-1 == dup2(pipefds[1], 2 /*stderr*/)) {
776    owl_function_debugmsg("stderr_replace: dup2 FAILED (%s)\n", strerror(errno));
777    perror("dup2");
778    return -1;
779  }
780  return pipefds[0];
781}
782
783/* Sends stderr (read from rfd) messages to the error console */
784void stderr_redirect_handler(int handle, int rfd, int eventmask, void *data) 
785{
786  int navail, bread;
787  char *buf;
788  /*owl_function_debugmsg("stderr_redirect: called with rfd=%d\n", rfd);*/
789  if (rfd<0) return;
790  if (-1 == ioctl(rfd, FIONREAD, (void*)&navail)) {
791    return;
792  }
793  /*owl_function_debugmsg("stderr_redirect: navail = %d\n", navail);*/
794  if (navail<=0) return;
795  if (navail>256) { navail = 256; }
796  buf = owl_malloc(navail+1);
797  bread = read(rfd, buf, navail);
798  if (buf[navail-1] != '\0') {
799    buf[navail] = '\0';
800  }
801  owl_function_error("Err: %s", buf);
802  owl_free(buf);
803}
804
805#endif /* OWL_STDERR_REDIR */
Note: See TracBrowser for help on using the repository browser.