[7d4fbcd] | 1 | /* Written by James Kretchmar, MIT |
---|
| 2 | * |
---|
| 3 | * Copyright 2001 Massachusetts Institute of Technology |
---|
| 4 | * |
---|
| 5 | * Permission to use, copy, modify, and distribute this software and |
---|
| 6 | * its documentation for any purpose and without fee is hereby |
---|
| 7 | * granted, provided that the above copyright notice and this |
---|
| 8 | * permission notice appear in all copies and in supporting |
---|
| 9 | * documentation. No representation is made about the suitability of |
---|
| 10 | * this software for any purpose. It is provided "as is" without |
---|
| 11 | * express or implied warranty. |
---|
| 12 | */ |
---|
| 13 | |
---|
| 14 | #include <stdio.h> |
---|
| 15 | #include <unistd.h> |
---|
| 16 | #include <stdlib.h> |
---|
| 17 | #include <string.h> |
---|
| 18 | #include <zephyr/zephyr.h> |
---|
| 19 | #include <com_err.h> |
---|
| 20 | #include <signal.h> |
---|
[5145235] | 21 | #include <time.h> |
---|
[7d4fbcd] | 22 | #include <sys/param.h> |
---|
| 23 | #include "owl.h" |
---|
| 24 | |
---|
[1aee7d9] | 25 | static const char fileIdent[] = "$Id$"; |
---|
| 26 | |
---|
[7d4fbcd] | 27 | int main(int argc, char **argv, char **env) { |
---|
| 28 | WINDOW *recwin, *sepwin, *typwin, *msgwin; |
---|
| 29 | owl_editwin *tw; |
---|
| 30 | owl_popwin *pw; |
---|
| 31 | int j, ret, initialsubs, debug, newzephyrs, argcsave, followlast; |
---|
| 32 | struct sigaction sigact; |
---|
| 33 | char *configfile, *tty, *perlout; |
---|
| 34 | char buff[LINE], startupmsg[LINE]; |
---|
| 35 | char **argvsave; |
---|
| 36 | owl_filter *f; |
---|
[4b464a4] | 37 | time_t nexttime; |
---|
| 38 | int nexttimediff; |
---|
[7d4fbcd] | 39 | |
---|
| 40 | argcsave=argc; |
---|
| 41 | argvsave=argv; |
---|
| 42 | configfile=NULL; |
---|
| 43 | tty=NULL; |
---|
| 44 | debug=0; |
---|
| 45 | if (argc>0) { |
---|
| 46 | argv++; |
---|
| 47 | argc--; |
---|
| 48 | } |
---|
| 49 | while (argc>0) { |
---|
| 50 | if (!strcmp(argv[0], "-n")) { |
---|
| 51 | initialsubs=0; |
---|
| 52 | argv++; |
---|
| 53 | argc--; |
---|
| 54 | } else if (!strcmp(argv[0], "-c")) { |
---|
| 55 | if (argc<2) { |
---|
| 56 | fprintf(stderr, "Too few arguments to -c\n"); |
---|
| 57 | usage(); |
---|
| 58 | exit(1); |
---|
| 59 | } |
---|
| 60 | configfile=argv[1]; |
---|
| 61 | argv+=2; |
---|
| 62 | argc-=2; |
---|
| 63 | } else if (!strcmp(argv[0], "-t")) { |
---|
| 64 | if (argc<2) { |
---|
| 65 | fprintf(stderr, "Too few arguments to -t\n"); |
---|
| 66 | usage(); |
---|
| 67 | exit(1); |
---|
| 68 | } |
---|
| 69 | tty=argv[1]; |
---|
| 70 | argv+=2; |
---|
| 71 | argc-=2; |
---|
| 72 | } else if (!strcmp(argv[0], "-d")) { |
---|
| 73 | debug=1; |
---|
| 74 | argv++; |
---|
| 75 | argc--; |
---|
| 76 | } else if (!strcmp(argv[0], "-v")) { |
---|
| 77 | printf("This is owl version %s\n", OWL_VERSION_STRING); |
---|
| 78 | exit(0); |
---|
| 79 | } else { |
---|
| 80 | fprintf(stderr, "Uknown argument\n"); |
---|
| 81 | usage(); |
---|
| 82 | exit(1); |
---|
| 83 | } |
---|
| 84 | } |
---|
| 85 | |
---|
| 86 | /* zephyr init */ |
---|
| 87 | if ((ret = ZInitialize()) != ZERR_NONE) { |
---|
| 88 | com_err("owl",ret,"while initializing"); |
---|
| 89 | exit(1); |
---|
| 90 | } |
---|
| 91 | if ((ret = ZOpenPort(NULL)) != ZERR_NONE) { |
---|
| 92 | com_err("owl",ret,"while opening port"); |
---|
| 93 | exit(1); |
---|
| 94 | } |
---|
| 95 | |
---|
| 96 | /* signal handler */ |
---|
| 97 | sigact.sa_handler=sig_handler; |
---|
| 98 | sigemptyset(&sigact.sa_mask); |
---|
| 99 | sigact.sa_flags=0; |
---|
| 100 | sigaction(SIGWINCH, &sigact, NULL); |
---|
| 101 | sigaction(SIGALRM, &sigact, NULL); |
---|
| 102 | |
---|
| 103 | /* screen init */ |
---|
| 104 | sprintf(buff, "TERMINFO=%s", TERMINFO); |
---|
| 105 | putenv(buff); |
---|
| 106 | initscr(); |
---|
| 107 | start_color(); |
---|
| 108 | use_default_colors(); |
---|
| 109 | raw(); |
---|
| 110 | noecho(); |
---|
| 111 | |
---|
| 112 | /* define simple color pairs */ |
---|
| 113 | if (has_colors() && COLOR_PAIRS>=8) { |
---|
| 114 | init_pair(OWL_COLOR_BLACK, COLOR_BLACK, -1); |
---|
| 115 | init_pair(OWL_COLOR_RED, COLOR_RED, -1); |
---|
| 116 | init_pair(OWL_COLOR_GREEN, COLOR_GREEN, -1); |
---|
| 117 | init_pair(OWL_COLOR_YELLOW, COLOR_YELLOW, -1); |
---|
| 118 | init_pair(OWL_COLOR_BLUE, COLOR_BLUE, -1); |
---|
| 119 | init_pair(OWL_COLOR_MAGENTA, COLOR_MAGENTA, -1); |
---|
| 120 | init_pair(OWL_COLOR_CYAN, COLOR_CYAN, -1); |
---|
| 121 | init_pair(OWL_COLOR_WHITE, COLOR_WHITE, -1); |
---|
| 122 | } |
---|
| 123 | |
---|
| 124 | /* owl init */ |
---|
| 125 | owl_global_init(&g); |
---|
| 126 | if (debug) owl_global_set_debug_on(&g); |
---|
| 127 | owl_global_set_startupargs(&g, argcsave, argvsave); |
---|
| 128 | owl_context_set_readconfig(owl_global_get_context(&g)); |
---|
[5145235] | 129 | |
---|
[61e79a9] | 130 | if (tty) { |
---|
| 131 | owl_global_set_tty(&g, tty); |
---|
| 132 | } else { |
---|
| 133 | owl_global_set_tty(&g, owl_util_get_default_tty()); |
---|
| 134 | } |
---|
[7d4fbcd] | 135 | |
---|
| 136 | /* setup the default filters */ |
---|
| 137 | f=malloc(sizeof(owl_filter)); |
---|
[65fc0900] | 138 | owl_filter_init_fromstring(f, "personal", "class ^message$ and instance ^personal$ and ( recipient ^%me%$ or sender ^%me%$ )"); /* fix to use admintype */ |
---|
[7d4fbcd] | 139 | owl_list_append_element(owl_global_get_filterlist(&g), f); |
---|
| 140 | |
---|
| 141 | f=malloc(sizeof(owl_filter)); |
---|
| 142 | owl_filter_init_fromstring(f, "trash", "class ^mail$ or opcode ^ping$ or type ^admin$ or class ^login$"); |
---|
| 143 | owl_list_append_element(owl_global_get_filterlist(&g), f); |
---|
| 144 | |
---|
| 145 | f=malloc(sizeof(owl_filter)); |
---|
[0236842] | 146 | owl_filter_init_fromstring(f, "ping", "opcode ^ping$"); |
---|
| 147 | owl_list_append_element(owl_global_get_filterlist(&g), f); |
---|
| 148 | |
---|
| 149 | f=malloc(sizeof(owl_filter)); |
---|
| 150 | owl_filter_init_fromstring(f, "auto", "opcode ^auto$"); |
---|
| 151 | owl_list_append_element(owl_global_get_filterlist(&g), f); |
---|
| 152 | |
---|
| 153 | f=malloc(sizeof(owl_filter)); |
---|
| 154 | owl_filter_init_fromstring(f, "login", "class ^login$"); |
---|
| 155 | owl_list_append_element(owl_global_get_filterlist(&g), f); |
---|
| 156 | |
---|
| 157 | f=malloc(sizeof(owl_filter)); |
---|
[7d4fbcd] | 158 | owl_filter_init_fromstring(f, "reply-lockout", "class ^noc or class ^mail$"); |
---|
| 159 | owl_list_append_element(owl_global_get_filterlist(&g), f); |
---|
| 160 | |
---|
| 161 | f=malloc(sizeof(owl_filter)); |
---|
[5a6e6b9] | 162 | owl_filter_init_fromstring(f, "out", "direction ^out$"); |
---|
| 163 | owl_list_append_element(owl_global_get_filterlist(&g), f); |
---|
| 164 | |
---|
| 165 | f=malloc(sizeof(owl_filter)); |
---|
[7d4fbcd] | 166 | owl_filter_init_fromstring(f, "all", "class .*"); |
---|
| 167 | owl_list_append_element(owl_global_get_filterlist(&g), f); |
---|
| 168 | |
---|
| 169 | /* set the current view */ |
---|
| 170 | owl_view_create(owl_global_get_current_view(&g), f); |
---|
| 171 | |
---|
| 172 | /* read the config file */ |
---|
| 173 | ret=owl_readconfig(configfile); |
---|
| 174 | if (ret) { |
---|
| 175 | endwin(); |
---|
| 176 | printf("\nError parsing configfile\n"); |
---|
| 177 | exit(1); |
---|
| 178 | } |
---|
| 179 | perlout = owl_config_execute("owl::startup();"); |
---|
| 180 | if (perlout) owl_free(perlout); |
---|
| 181 | owl_function_debugmsg("-- Owl Startup --"); |
---|
| 182 | |
---|
| 183 | /* hold on to the window names for convenience */ |
---|
| 184 | msgwin=owl_global_get_curs_msgwin(&g); |
---|
| 185 | recwin=owl_global_get_curs_recwin(&g); |
---|
| 186 | sepwin=owl_global_get_curs_sepwin(&g); |
---|
| 187 | typwin=owl_global_get_curs_typwin(&g); |
---|
| 188 | |
---|
| 189 | tw=owl_global_get_typwin(&g); |
---|
| 190 | |
---|
| 191 | wrefresh(sepwin); |
---|
| 192 | |
---|
| 193 | /* load zephyr subs */ |
---|
| 194 | ret=owl_zephyr_loadsubs(NULL); |
---|
| 195 | if (ret!=-1) { |
---|
| 196 | owl_global_add_userclue(&g, OWL_USERCLUE_CLASSES); |
---|
| 197 | } |
---|
| 198 | |
---|
| 199 | /* load login subs */ |
---|
| 200 | if (owl_global_is_loginsubs(&g)) { |
---|
| 201 | loadloginsubs(NULL); |
---|
| 202 | } |
---|
| 203 | |
---|
| 204 | /* zlog in if we need to */ |
---|
| 205 | if (owl_global_is_startuplogin(&g)) { |
---|
| 206 | owl_function_zlog_in(); |
---|
| 207 | } |
---|
| 208 | |
---|
| 209 | /* welcome message */ |
---|
| 210 | sprintf(buff, "Welcome to owl version %s.\n", OWL_VERSION_STRING); |
---|
| 211 | strcpy(startupmsg, "-------------------------------------------------------------------------\n"); |
---|
| 212 | strcat(startupmsg, buff); |
---|
| 213 | strcat(startupmsg, "Press 'h' for on line help. ^ ^ \n"); |
---|
| 214 | strcat(startupmsg, " OvO \n"); |
---|
| 215 | strcat(startupmsg, "Please report any bugs or suggestions to bug-owl@mit.edu ( ) \n"); |
---|
| 216 | strcat(startupmsg, "--------------------------------------------------------------m-m--------\n"); |
---|
| 217 | |
---|
| 218 | owl_function_adminmsg("", startupmsg); |
---|
| 219 | /* owl_function_makemsg(buff); */ |
---|
| 220 | sepbar(NULL); |
---|
| 221 | |
---|
| 222 | owl_context_set_interactive(owl_global_get_context(&g)); |
---|
| 223 | |
---|
[4b464a4] | 224 | nexttimediff=20; |
---|
| 225 | nexttime=time(NULL); |
---|
| 226 | |
---|
[7d4fbcd] | 227 | /* main loop */ |
---|
| 228 | while (1) { |
---|
| 229 | |
---|
| 230 | /* if a resize has been scheduled, deal with it */ |
---|
| 231 | owl_global_resize(&g, 0, 0); |
---|
| 232 | |
---|
| 233 | /* these are here in case a resize changes the windows */ |
---|
| 234 | msgwin=owl_global_get_curs_msgwin(&g); |
---|
| 235 | recwin=owl_global_get_curs_recwin(&g); |
---|
| 236 | sepwin=owl_global_get_curs_sepwin(&g); |
---|
| 237 | typwin=owl_global_get_curs_typwin(&g); |
---|
| 238 | |
---|
| 239 | followlast=owl_global_should_followlast(&g); |
---|
| 240 | |
---|
[4b464a4] | 241 | /* little hack */ |
---|
| 242 | if (0 && owl_global_get_runtime(&g)<300) { |
---|
| 243 | if (time(NULL)>nexttime) { |
---|
| 244 | if (nexttimediff==1) { |
---|
| 245 | nexttimediff=20; |
---|
| 246 | } else { |
---|
| 247 | nexttimediff=1; |
---|
| 248 | } |
---|
| 249 | nexttime+=nexttimediff; |
---|
| 250 | owl_hack_animate(); |
---|
| 251 | } |
---|
| 252 | } |
---|
| 253 | |
---|
[7d4fbcd] | 254 | /* grab incoming zephyrs */ |
---|
| 255 | newzephyrs=0; |
---|
| 256 | while(ZPending()) { |
---|
| 257 | ZNotice_t notice; |
---|
| 258 | struct sockaddr_in from; |
---|
| 259 | owl_message *m; |
---|
| 260 | |
---|
| 261 | ZReceiveNotice(¬ice, &from); |
---|
| 262 | |
---|
| 263 | /* is this an ack from a zephyr we sent? */ |
---|
| 264 | if (owl_zephyr_notice_is_ack(¬ice)) { |
---|
| 265 | owl_zephyr_handle_ack(¬ice); |
---|
| 266 | continue; |
---|
| 267 | } |
---|
| 268 | |
---|
| 269 | /* if it's a ping and we're not viewing pings then skip it */ |
---|
| 270 | if (!owl_global_is_rxping(&g) && !strcasecmp(notice.z_opcode, "ping")) { |
---|
| 271 | continue; |
---|
| 272 | } |
---|
| 273 | |
---|
| 274 | /* create the new message */ |
---|
| 275 | m=owl_malloc(sizeof(owl_message)); |
---|
| 276 | owl_message_create_from_zephyr(m, ¬ice); |
---|
| 277 | |
---|
| 278 | /* if it's on the puntlist then, nuke it and continue */ |
---|
| 279 | if (owl_global_message_is_puntable(&g, m)) { |
---|
| 280 | owl_message_free(m); |
---|
| 281 | continue; |
---|
| 282 | } |
---|
| 283 | |
---|
| 284 | /* otherwise add it to the global list */ |
---|
| 285 | owl_messagelist_append_element(owl_global_get_msglist(&g), m); |
---|
| 286 | newzephyrs=1; |
---|
| 287 | |
---|
| 288 | /* let the config know the new message has been received */ |
---|
| 289 | owl_config_getmsg(m, 0); |
---|
| 290 | |
---|
| 291 | /* add it to any necessary views; right now there's only the current view */ |
---|
| 292 | owl_view_consider_message(owl_global_get_current_view(&g), m); |
---|
| 293 | |
---|
| 294 | /* do we need to autoreply? */ |
---|
| 295 | if (owl_global_is_zaway(&g)) { |
---|
| 296 | owl_zephyr_zaway(m); |
---|
| 297 | } |
---|
| 298 | |
---|
| 299 | /* ring the bell if it's a personal */ |
---|
| 300 | if (owl_global_is_personalbell(&g) && owl_message_is_personal(m)) { |
---|
| 301 | owl_function_beep(); |
---|
| 302 | owl_global_set_needrefresh(&g); |
---|
| 303 | } |
---|
| 304 | |
---|
| 305 | /* check for burning ears message */ |
---|
| 306 | /* this is an unsupported feature */ |
---|
| 307 | if (owl_global_is_burningears(&g) && owl_message_is_burningears(m)) { |
---|
[1c6c4d3] | 308 | char *buff; |
---|
| 309 | buff = owl_sprintf("@i(Burning ears message on class %s)", owl_message_get_class(m)); |
---|
[7d4fbcd] | 310 | /* owl_function_makemsg(buff); */ |
---|
| 311 | owl_function_adminmsg(buff, ""); |
---|
[1c6c4d3] | 312 | owl_free(buff); |
---|
[7d4fbcd] | 313 | owl_function_beep(); |
---|
| 314 | } |
---|
| 315 | |
---|
| 316 | /* log the zephyr if we need to */ |
---|
| 317 | if (owl_global_is_logging(&g) || owl_global_is_classlogging(&g)) { |
---|
| 318 | owl_log_incoming(m); |
---|
| 319 | } |
---|
| 320 | } |
---|
| 321 | |
---|
| 322 | /* follow the last message if we're supposed to */ |
---|
| 323 | if (newzephyrs && followlast) { |
---|
| 324 | owl_function_lastmsg_noredisplay(); |
---|
| 325 | } |
---|
| 326 | |
---|
| 327 | /* redisplay if necessary */ |
---|
| 328 | if (newzephyrs) { |
---|
| 329 | owl_mainwin_redisplay(owl_global_get_mainwin(&g)); |
---|
| 330 | sepbar(NULL); |
---|
| 331 | if (owl_popwin_is_active(owl_global_get_popwin(&g))) { |
---|
| 332 | owl_popwin_refresh(owl_global_get_popwin(&g)); |
---|
| 333 | /* TODO: this is a broken kludge */ |
---|
| 334 | if (owl_global_get_viewwin(&g)) { |
---|
| 335 | owl_viewwin_redisplay(owl_global_get_viewwin(&g), 0); |
---|
| 336 | } |
---|
| 337 | } |
---|
| 338 | owl_global_set_needrefresh(&g); |
---|
| 339 | } |
---|
| 340 | |
---|
| 341 | /* if a popwin just came up, refresh it */ |
---|
| 342 | pw=owl_global_get_popwin(&g); |
---|
| 343 | if (owl_popwin_is_active(pw) && owl_popwin_needs_first_refresh(pw)) { |
---|
| 344 | owl_popwin_refresh(pw); |
---|
| 345 | owl_popwin_no_needs_first_refresh(pw); |
---|
| 346 | owl_global_set_needrefresh(&g); |
---|
| 347 | /* TODO: this is a broken kludge */ |
---|
| 348 | if (owl_global_get_viewwin(&g)) { |
---|
| 349 | owl_viewwin_redisplay(owl_global_get_viewwin(&g), 0); |
---|
| 350 | } |
---|
| 351 | } |
---|
| 352 | |
---|
| 353 | /* update the terminal if we need to */ |
---|
| 354 | if (owl_global_is_needrefresh(&g)) { |
---|
| 355 | /* leave the cursor in the appropriate window */ |
---|
| 356 | if (owl_global_is_typwin_active(&g)) { |
---|
| 357 | owl_function_set_cursor(typwin); |
---|
| 358 | } else { |
---|
| 359 | owl_function_set_cursor(sepwin); |
---|
| 360 | } |
---|
| 361 | doupdate(); |
---|
| 362 | owl_global_set_noneedrefresh(&g); |
---|
| 363 | } |
---|
| 364 | |
---|
| 365 | /* handle all keypresses */ |
---|
| 366 | j=wgetch(typwin); |
---|
| 367 | if (j==ERR) { |
---|
| 368 | usleep(10); |
---|
| 369 | continue; |
---|
| 370 | } |
---|
| 371 | /* find and activate the current keymap. |
---|
| 372 | * TODO: this should really get fixed by activating |
---|
| 373 | * keymaps as we switch between windows... |
---|
| 374 | */ |
---|
| 375 | if (pw && owl_popwin_is_active(pw) && owl_global_get_viewwin(&g)) { |
---|
| 376 | owl_context_set_popless(owl_global_get_context(&g), |
---|
| 377 | owl_global_get_viewwin(&g)); |
---|
| 378 | owl_function_activate_keymap("popless"); |
---|
| 379 | } else if (owl_global_is_typwin_active(&g) |
---|
| 380 | && owl_editwin_get_style(tw)==OWL_EDITWIN_STYLE_ONELINE) { |
---|
| 381 | owl_context_set_editline(owl_global_get_context(&g), tw); |
---|
| 382 | owl_function_activate_keymap("editline"); |
---|
| 383 | } else if (owl_global_is_typwin_active(&g) |
---|
| 384 | && owl_editwin_get_style(tw)==OWL_EDITWIN_STYLE_MULTILINE) { |
---|
| 385 | owl_context_set_editmulti(owl_global_get_context(&g), tw); |
---|
| 386 | owl_function_activate_keymap("editmulti"); |
---|
| 387 | } else { |
---|
| 388 | owl_context_set_recv(owl_global_get_context(&g)); |
---|
| 389 | owl_function_activate_keymap("recv"); |
---|
| 390 | } |
---|
| 391 | /* now actually handle the keypress */ |
---|
| 392 | ret = owl_keyhandler_process(owl_global_get_keyhandler(&g), j); |
---|
| 393 | if (ret!=0 && ret!=1) { |
---|
| 394 | owl_function_makemsg("Unable to handle keypress"); |
---|
| 395 | } |
---|
| 396 | } |
---|
| 397 | |
---|
| 398 | } |
---|
| 399 | |
---|
| 400 | void sig_handler(int sig) { |
---|
| 401 | if (sig==SIGWINCH) { |
---|
| 402 | /* we can't inturrupt a malloc here, so it just sets a flag */ |
---|
| 403 | owl_function_resize(); |
---|
| 404 | } |
---|
| 405 | } |
---|
| 406 | |
---|
| 407 | void usage() { |
---|
| 408 | fprintf(stderr, "Usage: owl [-n] [-d] [-v] [-c <configfile>] [-t <ttyname>]\n"); |
---|
| 409 | } |
---|