[b03c714] | 1 | /* Copyright (c) 2006-2011 The BarnOwl Developers. All rights reserved. |
---|
[81001c0] | 2 | * Copyright (c) 2004 James Kretchmar. All rights reserved. |
---|
[7d4fbcd] | 3 | * |
---|
[81001c0] | 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. |
---|
[7d4fbcd] | 7 | */ |
---|
| 8 | |
---|
| 9 | #include <stdio.h> |
---|
| 10 | #include <unistd.h> |
---|
[f350fc3] | 11 | #include <getopt.h> |
---|
[7d4fbcd] | 12 | #include <stdlib.h> |
---|
| 13 | #include <string.h> |
---|
| 14 | #include <signal.h> |
---|
[5145235] | 15 | #include <time.h> |
---|
[7d4fbcd] | 16 | #include <sys/param.h> |
---|
[700c712] | 17 | #include <sys/types.h> |
---|
[9c7a701] | 18 | #include <sys/time.h> |
---|
[8232149] | 19 | #include <termios.h> |
---|
[38cf544c] | 20 | #include <sys/stat.h> |
---|
[34509d5] | 21 | #include <locale.h> |
---|
[7d4fbcd] | 22 | #include "owl.h" |
---|
| 23 | |
---|
[e8c6d8f] | 24 | |
---|
[2a2bb60] | 25 | #if OWL_STDERR_REDIR |
---|
[e8b95f8] | 26 | #ifdef HAVE_SYS_IOCTL_H |
---|
[2a2bb60] | 27 | #include <sys/ioctl.h> |
---|
[e8b95f8] | 28 | #endif |
---|
| 29 | #ifdef HAVE_SYS_FILIO_H |
---|
| 30 | #include <sys/filio.h> |
---|
| 31 | #endif |
---|
[2a2bb60] | 32 | int stderr_replace(void); |
---|
| 33 | #endif |
---|
| 34 | |
---|
[b2b0773] | 35 | owl_global g; |
---|
| 36 | |
---|
[4e4847c] | 37 | typedef struct _owl_options { |
---|
[799f36c] | 38 | bool load_initial_subs; |
---|
| 39 | char *configfile; |
---|
| 40 | char *tty; |
---|
| 41 | char *confdir; |
---|
| 42 | bool debug; |
---|
| 43 | bool rm_debug; |
---|
| 44 | } owl_options; |
---|
| 45 | |
---|
[c79a047] | 46 | void usage(void) |
---|
[4e4847c] | 47 | { |
---|
| 48 | fprintf(stderr, "Barnowl version %s\n", OWL_VERSION_STRING); |
---|
| 49 | fprintf(stderr, "Usage: barnowl [-n] [-d] [-D] [-v] [-h] [-c <configfile>] [-s <confdir>] [-t <ttyname>]\n"); |
---|
| 50 | fprintf(stderr, " -n,--no-subs don't load zephyr subscriptions\n"); |
---|
| 51 | fprintf(stderr, " -d,--debug enable debugging\n"); |
---|
| 52 | fprintf(stderr, " -D,--remove-debug enable debugging and delete previous debug file\n"); |
---|
| 53 | fprintf(stderr, " -v,--version print the Barnowl version number and exit\n"); |
---|
| 54 | fprintf(stderr, " -h,--help print this help message\n"); |
---|
| 55 | fprintf(stderr, " -c,--config-file specify an alternate config file\n"); |
---|
| 56 | fprintf(stderr, " -s,--config-dir specify an alternate config dir (default ~/.owl)\n"); |
---|
| 57 | fprintf(stderr, " -t,--tty set the tty name\n"); |
---|
| 58 | } |
---|
| 59 | |
---|
[799f36c] | 60 | /* TODO: free owl_options after init is done? */ |
---|
[4e4847c] | 61 | void owl_parse_options(int argc, char *argv[], owl_options *opts) { |
---|
[f350fc3] | 62 | static const struct option long_options[] = { |
---|
| 63 | { "no-subs", 0, 0, 'n' }, |
---|
| 64 | { "config-file", 1, 0, 'c' }, |
---|
| 65 | { "config-dir", 1, 0, 's' }, |
---|
| 66 | { "tty", 1, 0, 't' }, |
---|
| 67 | { "debug", 0, 0, 'd' }, |
---|
| 68 | { "remove-debug", 0, 0, 'D' }, |
---|
| 69 | { "version", 0, 0, 'v' }, |
---|
| 70 | { "help", 0, 0, 'h' }, |
---|
| 71 | { NULL, 0, NULL, 0} |
---|
| 72 | }; |
---|
[799f36c] | 73 | char c; |
---|
| 74 | |
---|
[f350fc3] | 75 | while((c = getopt_long(argc, argv, "nc:t:s:dDvh", |
---|
| 76 | long_options, NULL)) != -1) { |
---|
[799f36c] | 77 | switch(c) { |
---|
| 78 | case 'n': |
---|
| 79 | opts->load_initial_subs = 0; |
---|
| 80 | break; |
---|
| 81 | case 'c': |
---|
[d4927a7] | 82 | opts->configfile = g_strdup(optarg); |
---|
[799f36c] | 83 | break; |
---|
| 84 | case 's': |
---|
[d4927a7] | 85 | opts->confdir = g_strdup(optarg); |
---|
[799f36c] | 86 | break; |
---|
| 87 | case 't': |
---|
[d4927a7] | 88 | opts->tty = g_strdup(optarg); |
---|
[799f36c] | 89 | break; |
---|
| 90 | case 'D': |
---|
| 91 | opts->rm_debug = 1; |
---|
| 92 | /* fallthrough */ |
---|
| 93 | case 'd': |
---|
| 94 | opts->debug = 1; |
---|
| 95 | break; |
---|
| 96 | case 'v': |
---|
| 97 | printf("This is barnowl version %s\n", OWL_VERSION_STRING); |
---|
| 98 | exit(0); |
---|
| 99 | case 'h': |
---|
| 100 | default: |
---|
| 101 | usage(); |
---|
| 102 | exit(1); |
---|
| 103 | } |
---|
| 104 | } |
---|
| 105 | } |
---|
| 106 | |
---|
[4e4847c] | 107 | void owl_start_color(void) { |
---|
[7967433] | 108 | start_color(); |
---|
| 109 | #ifdef HAVE_USE_DEFAULT_COLORS |
---|
| 110 | use_default_colors(); |
---|
| 111 | #endif |
---|
| 112 | |
---|
| 113 | /* define simple color pairs */ |
---|
| 114 | if (has_colors() && COLOR_PAIRS>=8) { |
---|
| 115 | int bg = COLOR_BLACK; |
---|
| 116 | #ifdef HAVE_USE_DEFAULT_COLORS |
---|
| 117 | bg = -1; |
---|
| 118 | #endif |
---|
| 119 | init_pair(OWL_COLOR_BLACK, COLOR_BLACK, bg); |
---|
| 120 | init_pair(OWL_COLOR_RED, COLOR_RED, bg); |
---|
| 121 | init_pair(OWL_COLOR_GREEN, COLOR_GREEN, bg); |
---|
| 122 | init_pair(OWL_COLOR_YELLOW, COLOR_YELLOW, bg); |
---|
| 123 | init_pair(OWL_COLOR_BLUE, COLOR_BLUE, bg); |
---|
| 124 | init_pair(OWL_COLOR_MAGENTA, COLOR_MAGENTA, bg); |
---|
| 125 | init_pair(OWL_COLOR_CYAN, COLOR_CYAN, bg); |
---|
| 126 | init_pair(OWL_COLOR_WHITE, COLOR_WHITE, bg); |
---|
| 127 | } |
---|
| 128 | } |
---|
| 129 | |
---|
[4e4847c] | 130 | void owl_start_curses(void) { |
---|
[7967433] | 131 | struct termios tio; |
---|
| 132 | /* save initial terminal settings */ |
---|
[7488f27] | 133 | tcgetattr(STDIN_FILENO, owl_global_get_startup_tio(&g)); |
---|
[7967433] | 134 | |
---|
[7488f27] | 135 | tcgetattr(STDIN_FILENO, &tio); |
---|
[7967433] | 136 | tio.c_iflag &= ~(ISTRIP|IEXTEN); |
---|
[7488f27] | 137 | tio.c_cc[VQUIT] = fpathconf(STDIN_FILENO, _PC_VDISABLE); |
---|
| 138 | tio.c_cc[VSUSP] = fpathconf(STDIN_FILENO, _PC_VDISABLE); |
---|
[ab9bf01] | 139 | tio.c_cc[VSTART] = fpathconf(STDIN_FILENO, _PC_VDISABLE); |
---|
| 140 | tio.c_cc[VSTOP] = fpathconf(STDIN_FILENO, _PC_VDISABLE); |
---|
[7488f27] | 141 | tcsetattr(STDIN_FILENO, TCSAFLUSH, &tio); |
---|
[7967433] | 142 | |
---|
| 143 | /* screen init */ |
---|
| 144 | initscr(); |
---|
| 145 | cbreak(); |
---|
| 146 | noecho(); |
---|
| 147 | |
---|
| 148 | owl_start_color(); |
---|
| 149 | } |
---|
| 150 | |
---|
[de6f317] | 151 | void owl_shutdown_curses(void) { |
---|
| 152 | endwin(); |
---|
| 153 | /* restore terminal settings */ |
---|
[7488f27] | 154 | tcsetattr(STDIN_FILENO, TCSAFLUSH, owl_global_get_startup_tio(&g)); |
---|
[de6f317] | 155 | } |
---|
[7967433] | 156 | |
---|
[4e4847c] | 157 | /* |
---|
| 158 | * Process a new message passed to us on the message queue from some |
---|
| 159 | * protocol. This includes adding it to the message list, updating the |
---|
| 160 | * view and scrolling if appropriate, logging it, and so on. |
---|
| 161 | * |
---|
| 162 | * Either a pointer is kept to the message internally, or it is freed |
---|
| 163 | * if unneeded. The caller no longer ``owns'' the message's memory. |
---|
| 164 | * |
---|
| 165 | * Returns 1 if the message was added to the message list, and 0 if it |
---|
| 166 | * was ignored due to user settings or otherwise. |
---|
| 167 | */ |
---|
[6b4033f] | 168 | static int owl_process_message(owl_message *m) { |
---|
[4e4847c] | 169 | const owl_filter *f; |
---|
| 170 | /* if this message it on the puntlist, nuke it and continue */ |
---|
| 171 | if (owl_global_message_is_puntable(&g, m)) { |
---|
[91634ec] | 172 | owl_message_delete(m); |
---|
[4e4847c] | 173 | return 0; |
---|
| 174 | } |
---|
| 175 | |
---|
| 176 | /* login or logout that should be ignored? */ |
---|
| 177 | if (owl_global_is_ignorelogins(&g) |
---|
| 178 | && owl_message_is_loginout(m)) { |
---|
[91634ec] | 179 | owl_message_delete(m); |
---|
[4e4847c] | 180 | return 0; |
---|
| 181 | } |
---|
| 182 | |
---|
| 183 | if (!owl_global_is_displayoutgoing(&g) |
---|
| 184 | && owl_message_is_direction_out(m)) { |
---|
[91634ec] | 185 | owl_message_delete(m); |
---|
[4e4847c] | 186 | return 0; |
---|
| 187 | } |
---|
| 188 | |
---|
| 189 | /* add it to the global list */ |
---|
| 190 | owl_messagelist_append_element(owl_global_get_msglist(&g), m); |
---|
| 191 | /* add it to any necessary views; right now there's only the current view */ |
---|
| 192 | owl_view_consider_message(owl_global_get_current_view(&g), m); |
---|
| 193 | |
---|
| 194 | if(owl_message_is_direction_in(m)) { |
---|
| 195 | /* let perl know about it*/ |
---|
| 196 | owl_perlconfig_getmsg(m, NULL); |
---|
| 197 | |
---|
| 198 | /* do we need to autoreply? */ |
---|
| 199 | if (owl_global_is_zaway(&g) && !owl_message_get_attribute_value(m, "isauto")) { |
---|
| 200 | if (owl_message_is_type_zephyr(m)) { |
---|
| 201 | owl_zephyr_zaway(m); |
---|
| 202 | } else if (owl_message_is_type_aim(m)) { |
---|
| 203 | if (owl_message_is_private(m)) { |
---|
| 204 | owl_function_send_aimawymsg(owl_message_get_sender(m), owl_global_get_zaway_msg(&g)); |
---|
| 205 | } |
---|
| 206 | } |
---|
| 207 | } |
---|
| 208 | |
---|
| 209 | /* ring the bell if it's a personal */ |
---|
| 210 | if (!strcmp(owl_global_get_personalbell(&g), "on")) { |
---|
| 211 | if (!owl_message_is_loginout(m) && |
---|
| 212 | !owl_message_is_mail(m) && |
---|
| 213 | owl_message_is_personal(m)) { |
---|
| 214 | owl_function_beep(); |
---|
| 215 | } |
---|
| 216 | } else if (!strcmp(owl_global_get_personalbell(&g), "off")) { |
---|
| 217 | /* do nothing */ |
---|
| 218 | } else { |
---|
| 219 | f=owl_global_get_filter(&g, owl_global_get_personalbell(&g)); |
---|
| 220 | if (f && owl_filter_message_match(f, m)) { |
---|
| 221 | owl_function_beep(); |
---|
| 222 | } |
---|
| 223 | } |
---|
| 224 | |
---|
| 225 | /* if it matches the alert filter, do the alert action */ |
---|
| 226 | f=owl_global_get_filter(&g, owl_global_get_alert_filter(&g)); |
---|
| 227 | if (f && owl_filter_message_match(f, m)) { |
---|
[c809f5e] | 228 | owl_function_command_norv(owl_global_get_alert_action(&g)); |
---|
[4e4847c] | 229 | } |
---|
| 230 | |
---|
| 231 | /* if it's a zephyr login or logout, update the zbuddylist */ |
---|
| 232 | if (owl_message_is_type_zephyr(m) && owl_message_is_loginout(m)) { |
---|
| 233 | if (owl_message_is_login(m)) { |
---|
| 234 | owl_zbuddylist_adduser(owl_global_get_zephyr_buddylist(&g), owl_message_get_sender(m)); |
---|
| 235 | } else if (owl_message_is_logout(m)) { |
---|
| 236 | owl_zbuddylist_deluser(owl_global_get_zephyr_buddylist(&g), owl_message_get_sender(m)); |
---|
| 237 | } else { |
---|
| 238 | owl_function_error("Internal error: received login notice that is neither login nor logout"); |
---|
| 239 | } |
---|
| 240 | } |
---|
| 241 | } |
---|
| 242 | |
---|
| 243 | /* let perl know about it */ |
---|
| 244 | owl_perlconfig_newmsg(m, NULL); |
---|
| 245 | /* log the message if we need to */ |
---|
| 246 | owl_log_message(m); |
---|
[044f19f] | 247 | /* redraw the sepbar; TODO: don't violate layering */ |
---|
| 248 | owl_global_sepbar_dirty(&g); |
---|
[4e4847c] | 249 | |
---|
| 250 | return 1; |
---|
| 251 | } |
---|
| 252 | |
---|
[6b4033f] | 253 | static gboolean owl_process_messages_prepare(GSource *source, int *timeout) { |
---|
| 254 | *timeout = -1; |
---|
| 255 | return owl_global_messagequeue_pending(&g); |
---|
| 256 | } |
---|
| 257 | |
---|
| 258 | static gboolean owl_process_messages_check(GSource *source) { |
---|
| 259 | return owl_global_messagequeue_pending(&g); |
---|
| 260 | } |
---|
| 261 | |
---|
[26255f0] | 262 | /* |
---|
| 263 | * Process any new messages we have waiting in the message queue. |
---|
| 264 | */ |
---|
[6b4033f] | 265 | static gboolean owl_process_messages_dispatch(GSource *source, GSourceFunc callback, gpointer user_data) { |
---|
[26255f0] | 266 | int newmsgs=0; |
---|
[6c81223] | 267 | int followlast = owl_global_should_followlast(&g); |
---|
[26255f0] | 268 | owl_message *m; |
---|
| 269 | |
---|
| 270 | /* Grab incoming messages. */ |
---|
| 271 | while (owl_global_messagequeue_pending(&g)) { |
---|
| 272 | m = owl_global_messagequeue_popmsg(&g); |
---|
| 273 | if (owl_process_message(m)) |
---|
| 274 | newmsgs = 1; |
---|
| 275 | } |
---|
| 276 | |
---|
| 277 | if (newmsgs) { |
---|
| 278 | /* follow the last message if we're supposed to */ |
---|
[6c81223] | 279 | if (followlast) |
---|
[26255f0] | 280 | owl_function_lastmsg_noredisplay(); |
---|
| 281 | |
---|
| 282 | /* do the newmsgproc thing */ |
---|
| 283 | owl_function_do_newmsgproc(); |
---|
| 284 | |
---|
| 285 | /* redisplay if necessary */ |
---|
| 286 | /* this should be optimized to not run if the new messages won't be displayed */ |
---|
| 287 | owl_mainwin_redisplay(owl_global_get_mainwin(&g)); |
---|
| 288 | } |
---|
[6b4033f] | 289 | return TRUE; |
---|
[26255f0] | 290 | } |
---|
| 291 | |
---|
[6b4033f] | 292 | static GSourceFuncs owl_process_messages_funcs = { |
---|
| 293 | owl_process_messages_prepare, |
---|
| 294 | owl_process_messages_check, |
---|
| 295 | owl_process_messages_dispatch, |
---|
| 296 | NULL |
---|
| 297 | }; |
---|
| 298 | |
---|
[117b2ba] | 299 | void owl_process_input_char(owl_input j) |
---|
| 300 | { |
---|
| 301 | int ret; |
---|
| 302 | |
---|
| 303 | owl_global_set_lastinputtime(&g, time(NULL)); |
---|
| 304 | ret = owl_keyhandler_process(owl_global_get_keyhandler(&g), j); |
---|
| 305 | if (ret!=0 && ret!=1) { |
---|
| 306 | owl_function_makemsg("Unable to handle keypress"); |
---|
| 307 | } |
---|
| 308 | } |
---|
| 309 | |
---|
[18fdd5f9] | 310 | void owl_process_input(const owl_io_dispatch *d, void *data) |
---|
[4e4847c] | 311 | { |
---|
| 312 | owl_input j; |
---|
| 313 | |
---|
| 314 | while (1) { |
---|
[0881cdd] | 315 | j.ch = wgetch(g.input_pad); |
---|
[4e4847c] | 316 | if (j.ch == ERR) return; |
---|
| 317 | |
---|
| 318 | j.uch = '\0'; |
---|
| 319 | if (j.ch >= KEY_MIN && j.ch <= KEY_MAX) { |
---|
| 320 | /* This is a curses control character. */ |
---|
| 321 | } |
---|
| 322 | else if (j.ch > 0x7f && j.ch < 0xfe) { |
---|
| 323 | /* Pull in a full utf-8 character. */ |
---|
| 324 | int bytes, i; |
---|
| 325 | char utf8buf[7]; |
---|
| 326 | memset(utf8buf, '\0', 7); |
---|
| 327 | |
---|
| 328 | utf8buf[0] = j.ch; |
---|
| 329 | |
---|
| 330 | if ((j.ch & 0xc0) && (~j.ch & 0x20)) bytes = 2; |
---|
| 331 | else if ((j.ch & 0xe0) && (~j.ch & 0x10)) bytes = 3; |
---|
| 332 | else if ((j.ch & 0xf0) && (~j.ch & 0x08)) bytes = 4; |
---|
| 333 | else if ((j.ch & 0xf8) && (~j.ch & 0x04)) bytes = 5; |
---|
| 334 | else if ((j.ch & 0xfc) && (~j.ch & 0x02)) bytes = 6; |
---|
| 335 | else bytes = 1; |
---|
| 336 | |
---|
| 337 | for (i = 1; i < bytes; i++) { |
---|
[0881cdd] | 338 | int tmp = wgetch(g.input_pad); |
---|
[4e4847c] | 339 | /* If what we got was not a byte, or not a continuation byte */ |
---|
| 340 | if (tmp > 0xff || !(tmp & 0x80 && ~tmp & 0x40)) { |
---|
| 341 | /* ill-formed UTF-8 code unit subsequence, put back the |
---|
| 342 | char we just got. */ |
---|
| 343 | ungetch(tmp); |
---|
| 344 | j.ch = ERR; |
---|
| 345 | break; |
---|
| 346 | } |
---|
| 347 | utf8buf[i] = tmp; |
---|
| 348 | } |
---|
| 349 | |
---|
| 350 | if (j.ch != ERR) { |
---|
| 351 | if (g_utf8_validate(utf8buf, -1, NULL)) { |
---|
| 352 | j.uch = g_utf8_get_char(utf8buf); |
---|
| 353 | } |
---|
| 354 | else { |
---|
| 355 | j.ch = ERR; |
---|
| 356 | } |
---|
| 357 | } |
---|
| 358 | } |
---|
| 359 | else if (j.ch <= 0x7f) { |
---|
| 360 | j.uch = j.ch; |
---|
| 361 | } |
---|
| 362 | |
---|
| 363 | owl_process_input_char(j); |
---|
| 364 | } |
---|
| 365 | } |
---|
| 366 | |
---|
[ba12b44] | 367 | static void sig_handler_main_thread(void *data) { |
---|
[81db142] | 368 | int sig = GPOINTER_TO_INT(data); |
---|
| 369 | |
---|
[3535a6e] | 370 | owl_function_debugmsg("Got signal %d", sig); |
---|
| 371 | if (sig == SIGWINCH) { |
---|
[4e4847c] | 372 | owl_function_resize(); |
---|
[3535a6e] | 373 | } else if (sig == SIGTERM || sig == SIGHUP) { |
---|
[4e4847c] | 374 | owl_function_quit(); |
---|
[47128d9] | 375 | } else if (sig == SIGINT && owl_global_take_interrupt(&g)) { |
---|
[3535a6e] | 376 | owl_input in; |
---|
| 377 | in.ch = in.uch = owl_global_get_startup_tio(&g)->c_cc[VINTR]; |
---|
| 378 | owl_process_input_char(in); |
---|
[4e4847c] | 379 | } |
---|
[81db142] | 380 | } |
---|
| 381 | |
---|
[1d21d9f] | 382 | static void sig_handler(const siginfo_t *siginfo, void *data) { |
---|
[47128d9] | 383 | /* If it was an interrupt, set a flag so we can handle it earlier if |
---|
| 384 | * needbe. sig_handler_main_thread will check the flag to make sure |
---|
| 385 | * no one else took it. */ |
---|
[1d21d9f] | 386 | if (siginfo->si_signo == SIGINT) { |
---|
[47128d9] | 387 | owl_global_add_interrupt(&g); |
---|
| 388 | } |
---|
[81db142] | 389 | /* Send a message to the main thread. */ |
---|
[1d21d9f] | 390 | owl_select_post_task(sig_handler_main_thread, |
---|
| 391 | GINT_TO_POINTER(siginfo->si_signo), NULL); |
---|
[4e4847c] | 392 | } |
---|
| 393 | |
---|
[6bd485e] | 394 | #define CHECK_RESULT(s, syscall) \ |
---|
| 395 | G_STMT_START { \ |
---|
| 396 | if ((syscall) != 0) { \ |
---|
| 397 | perror((s)); \ |
---|
| 398 | exit(1); \ |
---|
| 399 | } \ |
---|
| 400 | } G_STMT_END |
---|
| 401 | |
---|
[3535a6e] | 402 | void owl_register_signal_handlers(void) { |
---|
[6bd485e] | 403 | struct sigaction sig_ignore = { .sa_handler = SIG_IGN }; |
---|
| 404 | struct sigaction sig_default = { .sa_handler = SIG_DFL }; |
---|
[3535a6e] | 405 | sigset_t sigset; |
---|
[6bd485e] | 406 | int ret, i; |
---|
| 407 | const int signals[] = { SIGABRT, SIGBUS, SIGCHLD, SIGFPE, SIGHUP, SIGILL, |
---|
| 408 | SIGINT, SIGQUIT, SIGSEGV, SIGTERM, SIGWINCH }; |
---|
| 409 | |
---|
| 410 | /* Sanitize our signals; the mask and dispositions from our parent |
---|
| 411 | * aren't really useful. Signal list taken from equivalent code in |
---|
| 412 | * Chromium. */ |
---|
| 413 | CHECK_RESULT("sigemptyset", sigemptyset(&sigset)); |
---|
| 414 | if ((ret = pthread_sigmask(SIG_SETMASK, &sigset, NULL)) != 0) { |
---|
| 415 | errno = ret; |
---|
| 416 | perror("pthread_sigmask"); |
---|
| 417 | } |
---|
| 418 | for (i = 0; i < G_N_ELEMENTS(signals); i++) { |
---|
| 419 | CHECK_RESULT("sigaction", sigaction(signals[i], &sig_default, NULL)); |
---|
| 420 | } |
---|
[4e4847c] | 421 | |
---|
[e2cc848] | 422 | /* Turn off SIGPIPE; we check the return value of write. */ |
---|
[6bd485e] | 423 | CHECK_RESULT("sigaction", sigaction(SIGPIPE, &sig_ignore, NULL)); |
---|
[e2cc848] | 424 | |
---|
| 425 | /* Register some signals with the signal thread. */ |
---|
[6bd485e] | 426 | CHECK_RESULT("sigaddset", sigaddset(&sigset, SIGWINCH)); |
---|
| 427 | CHECK_RESULT("sigaddset", sigaddset(&sigset, SIGTERM)); |
---|
| 428 | CHECK_RESULT("sigaddset", sigaddset(&sigset, SIGHUP)); |
---|
| 429 | CHECK_RESULT("sigaddset", sigaddset(&sigset, SIGINT)); |
---|
[ba12b44] | 430 | owl_signal_init(&sigset, sig_handler, NULL); |
---|
[4e4847c] | 431 | } |
---|
| 432 | |
---|
| 433 | #if OWL_STDERR_REDIR |
---|
| 434 | |
---|
| 435 | /* Replaces stderr with a pipe so that we can read from it. |
---|
| 436 | * Returns the fd of the pipe from which stderr can be read. */ |
---|
| 437 | int stderr_replace(void) |
---|
| 438 | { |
---|
| 439 | int pipefds[2]; |
---|
| 440 | if (0 != pipe(pipefds)) { |
---|
| 441 | perror("pipe"); |
---|
| 442 | owl_function_debugmsg("stderr_replace: pipe FAILED\n"); |
---|
| 443 | return -1; |
---|
| 444 | } |
---|
| 445 | owl_function_debugmsg("stderr_replace: pipe: %d,%d\n", pipefds[0], pipefds[1]); |
---|
| 446 | if (-1 == dup2(pipefds[1], 2 /*stderr*/)) { |
---|
| 447 | owl_function_debugmsg("stderr_replace: dup2 FAILED (%s)\n", strerror(errno)); |
---|
| 448 | perror("dup2"); |
---|
| 449 | return -1; |
---|
| 450 | } |
---|
| 451 | return pipefds[0]; |
---|
| 452 | } |
---|
| 453 | |
---|
| 454 | /* Sends stderr (read from rfd) messages to the error console */ |
---|
[18fdd5f9] | 455 | void stderr_redirect_handler(const owl_io_dispatch *d, void *data) |
---|
[4e4847c] | 456 | { |
---|
| 457 | int navail, bread; |
---|
| 458 | char buf[4096]; |
---|
| 459 | int rfd = d->fd; |
---|
| 460 | char *err; |
---|
| 461 | |
---|
| 462 | if (rfd<0) return; |
---|
| 463 | if (-1 == ioctl(rfd, FIONREAD, &navail)) { |
---|
| 464 | return; |
---|
| 465 | } |
---|
| 466 | /*owl_function_debugmsg("stderr_redirect: navail = %d\n", navail);*/ |
---|
| 467 | if (navail <= 0) return; |
---|
| 468 | if (navail > sizeof(buf)-1) { |
---|
| 469 | navail = sizeof(buf)-1; |
---|
| 470 | } |
---|
| 471 | bread = read(rfd, buf, navail); |
---|
| 472 | if (buf[navail-1] != '\0') { |
---|
| 473 | buf[navail] = '\0'; |
---|
| 474 | } |
---|
| 475 | |
---|
[3472845] | 476 | err = g_strdup_printf("[stderr]\n%s", buf); |
---|
[4e4847c] | 477 | |
---|
| 478 | owl_function_log_err(err); |
---|
[ddbbcffa] | 479 | g_free(err); |
---|
[4e4847c] | 480 | } |
---|
| 481 | |
---|
| 482 | #endif /* OWL_STDERR_REDIR */ |
---|
| 483 | |
---|
[de22c3d] | 484 | int main(int argc, char **argv, char **env) |
---|
| 485 | { |
---|
[d3941a0] | 486 | int argc_copy; |
---|
| 487 | char **argv_copy; |
---|
[65b2173] | 488 | char *perlout, *perlerr; |
---|
[1fdab04] | 489 | const owl_style *s; |
---|
[e19eb97] | 490 | const char *dir; |
---|
[799f36c] | 491 | owl_options opts; |
---|
[4cc49bc] | 492 | GSource *source; |
---|
[cf0cc64] | 493 | |
---|
[c60ade2] | 494 | if (!GLIB_CHECK_VERSION (2, 12, 0)) |
---|
| 495 | g_error ("GLib version 2.12.0 or above is needed."); |
---|
[7d4fbcd] | 496 | |
---|
[d3941a0] | 497 | argc_copy = argc; |
---|
| 498 | argv_copy = g_strdupv(argv); |
---|
[34509d5] | 499 | |
---|
| 500 | setlocale(LC_ALL, ""); |
---|
[799f36c] | 501 | |
---|
| 502 | memset(&opts, 0, sizeof opts); |
---|
| 503 | opts.load_initial_subs = 1; |
---|
| 504 | owl_parse_options(argc, argv, &opts); |
---|
| 505 | g.load_initial_subs = opts.load_initial_subs; |
---|
[7d4fbcd] | 506 | |
---|
[7967433] | 507 | owl_start_curses(); |
---|
[38cf544c] | 508 | |
---|
[bd3f232] | 509 | /* owl global init */ |
---|
[7d4fbcd] | 510 | owl_global_init(&g); |
---|
[799f36c] | 511 | if (opts.rm_debug) unlink(OWL_DEBUG_FILE); |
---|
| 512 | if (opts.debug) owl_global_set_debug_on(&g); |
---|
| 513 | if (opts.confdir) owl_global_set_confdir(&g, opts.confdir); |
---|
[b20de4f] | 514 | owl_function_debugmsg("startup: first available debugging message"); |
---|
[d3941a0] | 515 | owl_global_set_startupargs(&g, argc_copy, argv_copy); |
---|
| 516 | g_strfreev(argv_copy); |
---|
[09489b89] | 517 | owl_global_set_haveaim(&g); |
---|
[2a2bb60] | 518 | |
---|
[3535a6e] | 519 | owl_register_signal_handlers(); |
---|
| 520 | |
---|
[18fdd5f9] | 521 | /* register STDIN dispatch; throw away return, we won't need it */ |
---|
[7488f27] | 522 | owl_select_add_io_dispatch(STDIN_FILENO, OWL_IO_READ, &owl_process_input, NULL, NULL); |
---|
[52a0f14] | 523 | owl_zephyr_initialize(); |
---|
[596c22df] | 524 | |
---|
[2a2bb60] | 525 | #if OWL_STDERR_REDIR |
---|
[a0a5179] | 526 | /* Do this only after we've started curses up... */ |
---|
[18fdd5f9] | 527 | owl_function_debugmsg("startup: doing stderr redirection"); |
---|
| 528 | owl_select_add_io_dispatch(stderr_replace(), OWL_IO_READ, &stderr_redirect_handler, NULL, NULL); |
---|
[cf0cc64] | 529 | #endif |
---|
[2a2bb60] | 530 | |
---|
[38cf544c] | 531 | /* create the owl directory, in case it does not exist */ |
---|
[a0a5179] | 532 | owl_function_debugmsg("startup: creating owl directory, if not present"); |
---|
[b363d83] | 533 | dir=owl_global_get_confdir(&g); |
---|
[38cf544c] | 534 | mkdir(dir, S_IRWXU); |
---|
[5145235] | 535 | |
---|
[ced25d1] | 536 | /* set the tty, either from the command line, or by figuring it out */ |
---|
[a0a5179] | 537 | owl_function_debugmsg("startup: setting tty name"); |
---|
[799f36c] | 538 | if (opts.tty) { |
---|
| 539 | owl_global_set_tty(&g, opts.tty); |
---|
[61e79a9] | 540 | } else { |
---|
[1915073] | 541 | char *tty = owl_util_get_default_tty(); |
---|
| 542 | owl_global_set_tty(&g, tty); |
---|
[ddbbcffa] | 543 | g_free(tty); |
---|
[61e79a9] | 544 | } |
---|
[7d4fbcd] | 545 | |
---|
[b6c067a] | 546 | /* Initialize perl */ |
---|
| 547 | owl_function_debugmsg("startup: processing config file"); |
---|
[2a17b63] | 548 | |
---|
| 549 | owl_global_pop_context(&g); |
---|
[07b59ea] | 550 | owl_global_push_context(&g, OWL_CTX_READCONFIG, NULL, NULL, NULL); |
---|
[2a17b63] | 551 | |
---|
[799f36c] | 552 | perlerr=owl_perlconfig_initperl(opts.configfile, &argc, &argv, &env); |
---|
[b6c067a] | 553 | if (perlerr) { |
---|
| 554 | endwin(); |
---|
| 555 | fprintf(stderr, "Internal perl error: %s\n", perlerr); |
---|
| 556 | fflush(stderr); |
---|
| 557 | printf("Internal perl error: %s\n", perlerr); |
---|
| 558 | fflush(stdout); |
---|
| 559 | exit(1); |
---|
| 560 | } |
---|
| 561 | |
---|
[eb6cedc] | 562 | owl_global_complete_setup(&g); |
---|
| 563 | |
---|
[04b16f8] | 564 | owl_global_setup_default_filters(&g); |
---|
[7d4fbcd] | 565 | |
---|
| 566 | /* set the current view */ |
---|
[a0a5179] | 567 | owl_function_debugmsg("startup: setting the current view"); |
---|
[7967433] | 568 | owl_view_create(owl_global_get_current_view(&g), "main", |
---|
| 569 | owl_global_get_filter(&g, "all"), |
---|
| 570 | owl_global_get_style_by_name(&g, "default")); |
---|
[7d4fbcd] | 571 | |
---|
[96f8e5b] | 572 | /* AIM init */ |
---|
[a0a5179] | 573 | owl_function_debugmsg("startup: doing AIM initialization"); |
---|
[96f8e5b] | 574 | owl_aim_init(); |
---|
| 575 | |
---|
[ced25d1] | 576 | /* execute the startup function in the configfile */ |
---|
[a0a5179] | 577 | owl_function_debugmsg("startup: executing perl startup, if applicable"); |
---|
[0337203] | 578 | perlout = owl_perlconfig_execute("BarnOwl::Hooks::_startup();"); |
---|
[ddbbcffa] | 579 | if (perlout) g_free(perlout); |
---|
[212764e] | 580 | |
---|
[252a5c2] | 581 | /* welcome message */ |
---|
[a0a5179] | 582 | owl_function_debugmsg("startup: creating splash message"); |
---|
[28fa23c] | 583 | owl_function_adminmsg("", |
---|
| 584 | "-----------------------------------------------------------------------\n" |
---|
[ca6a47e] | 585 | "Welcome to barnowl version " OWL_VERSION_STRING ".\n" |
---|
[28fa23c] | 586 | "To see a quick introduction, type ':show quickstart'. \n" |
---|
[ca6a47e] | 587 | "Press 'h' for on-line help. \n" |
---|
[28fa23c] | 588 | " \n" |
---|
| 589 | "BarnOwl is free software. Type ':show license' for more \n" |
---|
| 590 | "information. ^ ^ \n" |
---|
| 591 | " OvO \n" |
---|
| 592 | "Please report any bugs or suggestions to bug-barnowl@mit.edu ( ) \n" |
---|
| 593 | "-----------------------------------------------------------------m-m---\n" |
---|
| 594 | ); |
---|
[252a5c2] | 595 | |
---|
[687c674] | 596 | /* process the startup file */ |
---|
| 597 | owl_function_debugmsg("startup: processing startup file"); |
---|
| 598 | owl_function_source(NULL); |
---|
| 599 | |
---|
[39dc159] | 600 | owl_function_debugmsg("startup: set style for the view: %s", owl_global_get_default_style(&g)); |
---|
[72c210f] | 601 | s = owl_global_get_style_by_name(&g, owl_global_get_default_style(&g)); |
---|
| 602 | if(s) |
---|
| 603 | owl_view_set_style(owl_global_get_current_view(&g), s); |
---|
| 604 | else |
---|
| 605 | owl_function_error("No such style: %s", owl_global_get_default_style(&g)); |
---|
[a0a5179] | 606 | |
---|
| 607 | owl_function_debugmsg("startup: setting context interactive"); |
---|
[2a17b63] | 608 | |
---|
| 609 | owl_global_pop_context(&g); |
---|
[9c678a5] | 610 | owl_global_push_context(&g, OWL_CTX_INTERACTIVE|OWL_CTX_RECV, NULL, "recv", NULL); |
---|
[7d4fbcd] | 611 | |
---|
[4cc49bc] | 612 | source = owl_window_redraw_source_new(); |
---|
| 613 | g_source_attach(source, NULL); |
---|
| 614 | g_source_unref(source); |
---|
| 615 | |
---|
[6b4033f] | 616 | source = g_source_new(&owl_process_messages_funcs, sizeof(GSource)); |
---|
| 617 | g_source_attach(source, NULL); |
---|
| 618 | g_source_unref(source); |
---|
| 619 | |
---|
[a0a5179] | 620 | owl_function_debugmsg("startup: entering main loop"); |
---|
[3ecd78b] | 621 | owl_select_run_loop(); |
---|
[de6f317] | 622 | |
---|
| 623 | /* Shut down everything. */ |
---|
| 624 | owl_zephyr_shutdown(); |
---|
[08e9842] | 625 | owl_signal_shutdown(); |
---|
[de6f317] | 626 | owl_shutdown_curses(); |
---|
[3ecd78b] | 627 | return 0; |
---|
[7d4fbcd] | 628 | } |
---|