source: owl.c @ 23fddad

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