Changeset f97c1a6
- Timestamp:
- May 23, 2011, 9:09:44 PM (12 years ago)
- Branches:
- master, release-1.10, release-1.8, release-1.9
- Children:
- 33b6431b
- Parents:
- 4c7c21f (diff), 1d21d9f (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent. - Files:
-
- 2 added
- 37 edited
Legend:
- Unmodified
- Added
- Removed
-
Makefile.am
rce35060 r3535a6e 45 45 aim.c buddy.c buddylist.c style.c errqueue.c \ 46 46 zbuddylist.c popexec.c select.c wcwidth.c \ 47 glib_compat.c mainpanel.c msgwin.c sepbar.c editcontext.c 47 glib_compat.c mainpanel.c msgwin.c sepbar.c editcontext.c signal.c 48 48 49 49 NORMAL_SRCS = filterproc.c window.c windowcb.c -
aim.c
r3472845 rdc1edbd 446 446 } 447 447 448 int owl_aim_process_events(void) 449 { 450 aim_session_t *aimsess; 448 int owl_aim_process_events(aim_session_t *aimsess) 449 { 451 450 aim_conn_t *waitingconn = NULL; 452 451 struct timeval tv; … … 454 453 struct owlfaim_priv *priv; 455 454 456 aimsess=owl_global_get_aimsess(&g);457 455 priv = aimsess->aux_data; 458 456 … … 1795 1793 } 1796 1794 1797 void owl_process_aim(void) 1798 { 1799 if (owl_global_is_doaimevents(&g)) { 1800 owl_aim_process_events(); 1801 } 1802 } 1795 typedef struct _owl_aim_event_source { /*noproto*/ 1796 GSource source; 1797 aim_session_t *sess; 1798 GPtrArray *fds; 1799 } owl_aim_event_source; 1800 1801 static void truncate_pollfd_list(owl_aim_event_source *event_source, int len) 1802 { 1803 GPollFD *fd; 1804 int i; 1805 if (len < event_source->fds->len) 1806 owl_function_debugmsg("Truncating AIM PollFDs to %d, was %d", len, event_source->fds->len); 1807 for (i = len; i < event_source->fds->len; i++) { 1808 fd = event_source->fds->pdata[i]; 1809 g_source_remove_poll(&event_source->source, fd); 1810 g_free(fd); 1811 } 1812 g_ptr_array_remove_range(event_source->fds, len, event_source->fds->len - len); 1813 } 1814 1815 static gboolean owl_aim_event_source_prepare(GSource *source, int *timeout) 1816 { 1817 owl_aim_event_source *event_source = (owl_aim_event_source*)source; 1818 aim_conn_t *cur; 1819 GPollFD *fd; 1820 int i; 1821 1822 /* AIM HACK: 1823 * 1824 * The problem - I'm not sure where to hook into the owl/faim 1825 * interface to keep track of when the AIM socket(s) open and 1826 * close. In particular, the bosconn thing throws me off. So, 1827 * rather than register particular dispatchers for AIM, I look up 1828 * the relevant FDs and add them to select's watch lists, then 1829 * check for them individually before moving on to the other 1830 * dispatchers. --asedeno 1831 */ 1832 i = 0; 1833 for (cur = event_source->sess->connlist; cur; cur = cur->next) { 1834 if (cur->fd != -1) { 1835 /* Add new GPollFDs as necessary. */ 1836 if (i == event_source->fds->len) { 1837 fd = g_new0(GPollFD, 1); 1838 g_ptr_array_add(event_source->fds, fd); 1839 g_source_add_poll(source, fd); 1840 owl_function_debugmsg("Allocated new AIM PollFD, len = %d", event_source->fds->len); 1841 } 1842 fd = event_source->fds->pdata[i]; 1843 fd->fd = cur->fd; 1844 fd->events |= G_IO_IN | G_IO_HUP | G_IO_ERR; 1845 if (cur->status & AIM_CONN_STATUS_INPROGRESS) { 1846 /* Yes, we're checking writable sockets here. Without it, AIM 1847 login is really slow. */ 1848 fd->events |= G_IO_OUT; 1849 } 1850 i++; 1851 } 1852 } 1853 /* If the number of GPollFDs went down, clean up. */ 1854 truncate_pollfd_list(event_source, i); 1855 1856 *timeout = -1; 1857 return FALSE; 1858 } 1859 1860 static gboolean owl_aim_event_source_check(GSource *source) 1861 { 1862 owl_aim_event_source *event_source = (owl_aim_event_source*)source; 1863 int i; 1864 1865 for (i = 0; i < event_source->fds->len; i++) { 1866 GPollFD *fd = event_source->fds->pdata[i]; 1867 if (fd->revents & fd->events) 1868 return TRUE; 1869 } 1870 return FALSE; 1871 } 1872 1873 static gboolean owl_aim_event_source_dispatch(GSource *source, GSourceFunc callback, gpointer user_data) 1874 { 1875 owl_aim_event_source *event_source = (owl_aim_event_source*)source; 1876 owl_aim_process_events(event_source->sess); 1877 return TRUE; 1878 } 1879 1880 static void owl_aim_event_source_finalize(GSource *source) 1881 { 1882 owl_aim_event_source *event_source = (owl_aim_event_source*)source; 1883 truncate_pollfd_list(event_source, 0); 1884 g_ptr_array_free(event_source->fds, TRUE); 1885 } 1886 1887 static GSourceFuncs aim_event_funcs = { 1888 owl_aim_event_source_prepare, 1889 owl_aim_event_source_check, 1890 owl_aim_event_source_dispatch, 1891 owl_aim_event_source_finalize, 1892 }; 1893 1894 GSource *owl_aim_event_source_new(aim_session_t *sess) 1895 { 1896 GSource *source; 1897 owl_aim_event_source *event_source; 1898 1899 source = g_source_new(&aim_event_funcs, sizeof(owl_aim_event_source)); 1900 event_source = (owl_aim_event_source *)source; 1901 event_source->sess = sess; 1902 /* TODO: When we depend on glib 2.22+, use g_ptr_array_new_with_free_func. */ 1903 event_source->fds = g_ptr_array_new(); 1904 return source; 1905 } -
configure.ac
r64c829a rf97c1a6 115 115 116 116 dnl Add CFLAGS and LIBS for glib-2.0 117 PKG_CHECK_MODULES(GLIB,[glib-2.0 >= 2.12 gobject-2.0 ])117 PKG_CHECK_MODULES(GLIB,[glib-2.0 >= 2.12 gobject-2.0 gthread-2.0]) 118 118 119 119 AC_MSG_NOTICE([Adding glib-2.0 CFLAGS ${GLIB_CFLAGS}]) -
filterproc.c
rd564c3d re2cc848 17 17 int err = 0; 18 18 struct pollfd fds[2]; 19 struct sigaction sig = {.sa_handler = SIG_IGN}, old;20 19 21 20 fcntl(rfd, F_SETFL, O_NONBLOCK | fcntl(rfd, F_GETFL)); … … 27 26 fds[1].events = POLLOUT; 28 27 29 sigaction(SIGPIPE, &sig, &old);30 31 28 while(1) { 32 29 if(out && *out) { … … 67 64 68 65 *in = g_string_free(str, err < 0); 69 sigaction(SIGPIPE, &old, NULL);70 66 return err; 71 67 } -
functions.c
r3b8a563 rf97c1a6 2991 2991 i--; 2992 2992 } 2993 owl_function_mask_sigint(NULL); 2994 if(owl_global_is_interrupted(&g)) { 2995 owl_global_unset_interrupted(&g); 2996 owl_function_unmask_sigint(NULL); 2993 if (owl_global_take_interrupt(&g)) { 2997 2994 owl_function_makemsg("Search interrupted!"); 2998 2995 owl_mainwin_redisplay(owl_global_get_mainwin(&g)); 2999 2996 return; 3000 2997 } 3001 owl_function_unmask_sigint(NULL);3002 2998 } 3003 2999 owl_mainwin_redisplay(owl_global_get_mainwin(&g)); … … 3082 3078 ret=ZLocateUser(zstr(user), &numlocs, ZAUTH); 3083 3079 3084 owl_function_mask_sigint(NULL); 3085 if(owl_global_is_interrupted(&g)) { 3080 if (owl_global_take_interrupt(&g)) { 3086 3081 interrupted = 1; 3087 owl_global_unset_interrupted(&g);3088 owl_function_unmask_sigint(NULL);3089 3082 owl_function_makemsg("Interrupted!"); 3090 3083 break; 3091 3084 } 3092 3093 owl_function_unmask_sigint(NULL);3094 3085 3095 3086 if (ret!=ZERR_NONE) { … … 3496 3487 } 3497 3488 3498 void owl_function_mask_sigint(sigset_t *oldmask) {3499 sigset_t intr;3500 3501 sigemptyset(&intr);3502 sigaddset(&intr, SIGINT);3503 sigprocmask(SIG_BLOCK, &intr, oldmask);3504 }3505 3506 void owl_function_unmask_sigint(sigset_t *oldmask) {3507 sigset_t intr;3508 3509 sigemptyset(&intr);3510 sigaddset(&intr, SIGINT);3511 sigprocmask(SIG_UNBLOCK, &intr, oldmask);3512 }3513 3514 3489 void _owl_function_mark_message(const owl_message *m) 3515 3490 { -
global.c
r351c535 rf97c1a6 16 16 17 17 g_type_init(); 18 g_thread_init(NULL); 19 20 owl_select_init(); 18 21 19 22 g->lines=LINES; … … 95 98 96 99 owl_errqueue_init(&(g->errqueue)); 97 g->got_err_signal=0;98 100 99 101 owl_zbuddylist_create(&(g->zbuddies)); … … 104 106 owl_message_init_fmtext_cache(); 105 107 owl_list_create(&(g->io_dispatch_list)); 106 owl_list_create(&(g->psa_list));107 108 g->timerlist = NULL; 108 g->interrupted = FALSE;109 109 g->kill_buffer = NULL; 110 111 g->interrupt_count = 0; 112 g->interrupt_lock = g_mutex_new(); 110 113 } 111 114 … … 344 347 345 348 void owl_global_set_resize_pending(owl_global *g) { 346 g->resizepending =1;349 g->resizepending = true; 347 350 } 348 351 … … 444 447 /* resize the screen. If lines or cols is 0 use the terminal size */ 445 448 if (!g->resizepending) return; 446 g->resizepending = 0;449 g->resizepending = false; 447 450 448 451 owl_global_get_terminal_size(&g->lines, &g->cols); … … 676 679 } 677 680 678 int owl_global_is_doaimevents(const owl_global *g) 679 { 680 if (g->aim_doprocessing) return(1); 681 return(0); 681 bool owl_global_is_doaimevents(const owl_global *g) 682 { 683 return g->aim_event_source != NULL; 682 684 } 683 685 684 686 void owl_global_set_doaimevents(owl_global *g) 685 687 { 686 g->aim_doprocessing=1; 688 if (g->aim_event_source) 689 return; 690 g->aim_event_source = owl_aim_event_source_new(owl_global_get_aimsess(g)); 691 g_source_attach(g->aim_event_source, NULL); 687 692 } 688 693 689 694 void owl_global_set_no_doaimevents(owl_global *g) 690 695 { 691 g->aim_doprocessing=0; 696 if (!g->aim_event_source) 697 return; 698 g_source_destroy(g->aim_event_source); 699 g_source_unref(g->aim_event_source); 700 g->aim_event_source = NULL; 692 701 } 693 702 … … 807 816 } 808 817 809 void owl_global_set_errsignal(owl_global *g, int signum, siginfo_t *siginfo)810 {811 g->got_err_signal = signum;812 if (siginfo) {813 g->err_signal_info = *siginfo;814 } else {815 siginfo_t si;816 memset(&si, 0, sizeof(si));817 g->err_signal_info = si;818 }819 }820 821 int owl_global_get_errsignal_and_clear(owl_global *g, siginfo_t *siginfo)822 {823 int signum;824 if (siginfo && g->got_err_signal) {825 *siginfo = g->err_signal_info;826 }827 signum = g->got_err_signal;828 g->got_err_signal = 0;829 return signum;830 }831 832 833 818 owl_zbuddylist *owl_global_get_zephyr_buddylist(owl_global *g) 834 819 { … … 861 846 } 862 847 863 owl_list *owl_global_get_psa_list(owl_global *g)864 {865 return &(g->psa_list);866 }867 868 848 GList **owl_global_get_timerlist(owl_global *g) 869 849 { 870 850 return &(g->timerlist); 871 }872 873 int owl_global_is_interrupted(const owl_global *g) {874 return g->interrupted;875 }876 877 void owl_global_set_interrupted(owl_global *g) {878 g->interrupted = 1;879 }880 881 void owl_global_unset_interrupted(owl_global *g) {882 g->interrupted = 0;883 851 } 884 852 … … 948 916 g->kill_buffer = g_strndup(kill, len); 949 917 } 918 919 void owl_global_add_interrupt(owl_global *g) { 920 /* TODO: This can almost certainly be done with atomic 921 * operations. Whatever. */ 922 g_mutex_lock(g->interrupt_lock); 923 g->interrupt_count++; 924 g_mutex_unlock(g->interrupt_lock); 925 } 926 927 bool owl_global_take_interrupt(owl_global *g) { 928 bool ans = false; 929 g_mutex_lock(g->interrupt_lock); 930 if (g->interrupt_count > 0) { 931 ans = true; 932 g->interrupt_count--; 933 } 934 g_mutex_unlock(g->interrupt_lock); 935 return ans; 936 } -
owl.c
r3b8a563 rf97c1a6 160 160 * was ignored due to user settings or otherwise. 161 161 */ 162 int owl_process_message(owl_message *m) {162 static int owl_process_message(owl_message *m) { 163 163 const owl_filter *f; 164 164 /* if this message it on the puntlist, nuke it and continue */ … … 245 245 } 246 246 247 static gboolean owl_process_messages_prepare(GSource *source, int *timeout) { 248 *timeout = -1; 249 return owl_global_messagequeue_pending(&g); 250 } 251 252 static gboolean owl_process_messages_check(GSource *source) { 253 return owl_global_messagequeue_pending(&g); 254 } 255 247 256 /* 248 257 * Process any new messages we have waiting in the message queue. 249 * Returns 1 if any messages were added to the message list, and 0 otherwise.250 258 */ 251 int owl_process_messages(owl_ps_action *d, void *p) 252 { 259 static gboolean owl_process_messages_dispatch(GSource *source, GSourceFunc callback, gpointer user_data) { 253 260 int newmsgs=0; 254 261 int followlast = owl_global_should_followlast(&g); … … 274 281 owl_mainwin_redisplay(owl_global_get_mainwin(&g)); 275 282 } 276 return newmsgs; 283 return TRUE; 284 } 285 286 static GSourceFuncs owl_process_messages_funcs = { 287 owl_process_messages_prepare, 288 owl_process_messages_check, 289 owl_process_messages_dispatch, 290 NULL 291 }; 292 293 void owl_process_input_char(owl_input j) 294 { 295 int ret; 296 297 owl_global_set_lastinputtime(&g, time(NULL)); 298 ret = owl_keyhandler_process(owl_global_get_keyhandler(&g), j); 299 if (ret!=0 && ret!=1) { 300 owl_function_makemsg("Unable to handle keypress"); 301 } 277 302 } 278 303 … … 334 359 } 335 360 336 void sig_handler(int sig, siginfo_t *si, void *data) 337 { 338 if (sig==SIGWINCH) { 339 /* we can't inturrupt a malloc here, so it just sets a flag 340 * schedulding a resize for later 341 */ 361 static void sig_handler_main_thread(void *data) { 362 int sig = GPOINTER_TO_INT(data); 363 364 owl_function_debugmsg("Got signal %d", sig); 365 if (sig == SIGWINCH) { 342 366 owl_function_resize(); 343 } else if (sig==SIGPIPE || sig==SIGCHLD) { 344 /* Set a flag and some info that we got the sigpipe 345 * so we can record that we got it and why... */ 346 owl_global_set_errsignal(&g, sig, si); 347 } else if (sig==SIGTERM || sig==SIGHUP) { 367 } else if (sig == SIGTERM || sig == SIGHUP) { 348 368 owl_function_quit(); 349 } 350 } 351 352 void sigint_handler(int sig, siginfo_t *si, void *data) 353 { 354 owl_global_set_interrupted(&g); 355 } 356 357 static int owl_errsignal_pre_select_action(owl_ps_action *a, void *data) 358 { 359 siginfo_t si; 360 int signum; 361 if ((signum = owl_global_get_errsignal_and_clear(&g, &si)) > 0) { 362 owl_function_error("Got unexpected signal: %d %s (code: %d band: %ld errno: %d)", 363 signum, signum==SIGPIPE?"SIGPIPE":"SIG????", 364 si.si_code, si.si_band, si.si_errno); 365 } 366 return 0; 367 } 369 } else if (sig == SIGINT && owl_global_take_interrupt(&g)) { 370 owl_input in; 371 in.ch = in.uch = owl_global_get_startup_tio(&g)->c_cc[VINTR]; 372 owl_process_input_char(in); 373 } 374 } 375 376 static void sig_handler(const siginfo_t *siginfo, void *data) { 377 /* If it was an interrupt, set a flag so we can handle it earlier if 378 * needbe. sig_handler_main_thread will check the flag to make sure 379 * no one else took it. */ 380 if (siginfo->si_signo == SIGINT) { 381 owl_global_add_interrupt(&g); 382 } 383 /* Send a message to the main thread. */ 384 owl_select_post_task(sig_handler_main_thread, 385 GINT_TO_POINTER(siginfo->si_signo), NULL); 386 } 387 388 #define CHECK_RESULT(s, syscall) \ 389 G_STMT_START { \ 390 if ((syscall) != 0) { \ 391 perror((s)); \ 392 exit(1); \ 393 } \ 394 } G_STMT_END 368 395 369 396 void owl_register_signal_handlers(void) { 370 struct sigaction sigact; 371 372 /* signal handler */ 373 /*sigact.sa_handler=sig_handler;*/ 374 sigact.sa_sigaction=sig_handler; 375 sigemptyset(&sigact.sa_mask); 376 sigact.sa_flags=SA_SIGINFO; 377 sigaction(SIGWINCH, &sigact, NULL); 378 sigaction(SIGALRM, &sigact, NULL); 379 sigaction(SIGPIPE, &sigact, NULL); 380 sigaction(SIGTERM, &sigact, NULL); 381 sigaction(SIGHUP, &sigact, NULL); 382 383 sigact.sa_sigaction=sigint_handler; 384 sigaction(SIGINT, &sigact, NULL); 397 struct sigaction sig_ignore = { .sa_handler = SIG_IGN }; 398 struct sigaction sig_default = { .sa_handler = SIG_DFL }; 399 sigset_t sigset; 400 int ret, i; 401 const int signals[] = { SIGABRT, SIGBUS, SIGCHLD, SIGFPE, SIGHUP, SIGILL, 402 SIGINT, SIGQUIT, SIGSEGV, SIGTERM, SIGWINCH }; 403 404 /* Sanitize our signals; the mask and dispositions from our parent 405 * aren't really useful. Signal list taken from equivalent code in 406 * Chromium. */ 407 CHECK_RESULT("sigemptyset", sigemptyset(&sigset)); 408 if ((ret = pthread_sigmask(SIG_SETMASK, &sigset, NULL)) != 0) { 409 errno = ret; 410 perror("pthread_sigmask"); 411 } 412 for (i = 0; i < G_N_ELEMENTS(signals); i++) { 413 CHECK_RESULT("sigaction", sigaction(signals[i], &sig_default, NULL)); 414 } 415 416 /* Turn off SIGPIPE; we check the return value of write. */ 417 CHECK_RESULT("sigaction", sigaction(SIGPIPE, &sig_ignore, NULL)); 418 419 /* Register some signals with the signal thread. */ 420 CHECK_RESULT("sigaddset", sigaddset(&sigset, SIGWINCH)); 421 CHECK_RESULT("sigaddset", sigaddset(&sigset, SIGTERM)); 422 CHECK_RESULT("sigaddset", sigaddset(&sigset, SIGHUP)); 423 CHECK_RESULT("sigaddset", sigaddset(&sigset, SIGINT)); 424 owl_signal_init(&sigset, sig_handler, NULL); 385 425 } 386 426 … … 436 476 #endif /* OWL_STDERR_REDIR */ 437 477 438 static int owl_refresh_pre_select_action(owl_ps_action *a, void *data)439 {440 owl_colorpair_mgr *cpmgr;441 442 /* if a resize has been scheduled, deal with it */443 owl_global_check_resize(&g);444 /* update the terminal if we need to */445 owl_window_redraw_scheduled();446 /* On colorpair shortage, reset and redraw /everything/. NOTE: if we447 * still overflow, this be useless work. With 8-colors, we get 64448 * pairs. With 256-colors, we get 32768 pairs with ext-colors449 * support and 256 otherwise. */450 cpmgr = owl_global_get_colorpair_mgr(&g);451 if (cpmgr->overflow) {452 owl_function_debugmsg("colorpairs: used all %d pairs; reset pairs and redraw.",453 owl_util_get_colorpairs());454 owl_fmtext_reset_colorpairs(cpmgr);455 owl_function_full_redisplay();456 owl_window_redraw_scheduled();457 }458 return 0;459 }460 461 462 478 int main(int argc, char **argv, char **env) 463 479 { … … 468 484 const char *dir; 469 485 owl_options opts; 486 GSource *source; 470 487 471 488 if (!GLIB_CHECK_VERSION (2, 12, 0)) … … 482 499 g.load_initial_subs = opts.load_initial_subs; 483 500 484 owl_register_signal_handlers();485 501 owl_start_curses(); 486 502 … … 493 509 g_strfreev(argv_copy); 494 510 owl_global_set_haveaim(&g); 511 512 owl_register_signal_handlers(); 495 513 496 514 /* register STDIN dispatch; throw away return, we won't need it */ … … 585 603 owl_global_push_context(&g, OWL_CTX_INTERACTIVE|OWL_CTX_RECV, NULL, "recv", NULL); 586 604 587 owl_select_add_pre_select_action(owl_refresh_pre_select_action, NULL, NULL); 588 owl_select_add_pre_select_action(owl_process_messages, NULL, NULL); 589 owl_select_add_pre_select_action(owl_errsignal_pre_select_action, NULL, NULL); 605 source = owl_window_redraw_source_new(); 606 g_source_attach(source, NULL); 607 g_source_unref(source); 608 609 source = g_source_new(&owl_process_messages_funcs, sizeof(GSource)); 610 g_source_attach(source, NULL); 611 g_source_unref(source); 590 612 591 613 owl_function_debugmsg("startup: entering main loop"); … … 594 616 /* Shut down everything. */ 595 617 owl_zephyr_shutdown(); 618 owl_signal_shutdown(); 596 619 owl_shutdown_curses(); 597 620 return 0; -
owl.h
rede073c rf97c1a6 552 552 void (*destroy)(const struct _owl_io_dispatch *); /* Destructor */ 553 553 void *data; 554 GPollFD pollfd; 554 555 } owl_io_dispatch; 555 556 typedef struct _owl_ps_action {557 int needs_gc;558 int (*callback)(struct _owl_ps_action *, void *);559 void (*destroy)(struct _owl_ps_action *);560 void *data;561 } owl_ps_action;562 556 563 557 typedef struct _owl_popexec { … … 568 562 const owl_io_dispatch *dispatch; 569 563 } owl_popexec; 570 571 typedef struct _OwlGlobalNotifier OwlGlobalNotifier;572 564 573 565 typedef struct _owl_global { … … 595 587 gulong typwin_erase_id; 596 588 int rightshift; 597 volatile sig_atomic_tresizepending;589 bool resizepending; 598 590 char *homedir; 599 591 char *confdir; … … 618 610 aim_conn_t bosconn; 619 611 int aim_loggedin; /* true if currently logged into AIM */ 620 int aim_doprocessing; /* true if we should process AIM events (like pending login)*/612 GSource *aim_event_source; /* where we get our AIM events from */ 621 613 char *aim_screenname; /* currently logged in AIM screen name */ 622 614 char *aim_screenname_for_filters; /* currently logged in AIM screen name */ … … 628 620 int haveaim; 629 621 int ignoreaimlogin; 630 volatile sig_atomic_t got_err_signal; /* 1 if we got an unexpected signal */631 volatile siginfo_t err_signal_info;632 622 owl_zbuddylist zbuddies; 633 623 GList *zaldlist; … … 635 625 struct termios startup_tio; 636 626 owl_list io_dispatch_list; 637 owl_list psa_list;638 627 GList *timerlist; 639 628 owl_timer *aim_nop_timer; 640 629 int load_initial_subs; 641 volatile sig_atomic_t interrupted;642 630 FILE *debug_file; 643 631 char *kill_buffer; 632 int interrupt_count; 633 GMutex *interrupt_lock; 644 634 } owl_global; 645 635 -
select.c
rfb96152 rf97c1a6 1 1 #include "owl.h" 2 #include <sys/stat.h> 3 2 3 static GMainLoop *loop = NULL; 4 static GMainContext *context; 4 5 static int dispatch_active = 0; 5 static int psa_active = 0; 6 static int loop_active = 0; 7 8 int _owl_select_timer_cmp(const owl_timer *t1, const owl_timer *t2) { 6 7 static GSource *owl_timer_source; 8 static GSource *owl_io_dispatch_source; 9 10 static int _owl_select_timer_cmp(const owl_timer *t1, const owl_timer *t2) { 9 11 return t1->time - t2->time; 10 }11 12 int _owl_select_timer_eq(const owl_timer *t1, const owl_timer *t2) {13 return t1 == t2;14 12 } 15 13 … … 44 42 } 45 43 46 void owl_select_process_timers(struct timespec *timeout) 47 { 48 time_t now = time(NULL); 49 GList **timers = owl_global_get_timerlist(&g); 50 44 static gboolean owl_timer_prepare(GSource *source, int *timeout) { 45 GList **timers = owl_global_get_timerlist(&g); 46 GTimeVal now; 47 48 /* TODO: In the far /far/ future, g_source_get_time is what the cool 49 * kids use to get system monotonic time. */ 50 g_source_get_current_time(source, &now); 51 52 /* FIXME: bother with millisecond accuracy now that we can? */ 53 if (*timers) { 54 owl_timer *t = (*timers)->data; 55 *timeout = t->time - now.tv_sec; 56 if (*timeout <= 0) { 57 *timeout = 0; 58 return TRUE; 59 } 60 if (*timeout > 60 * 1000) 61 *timeout = 60 * 1000; 62 } else { 63 *timeout = 60 * 1000; 64 } 65 return FALSE; 66 } 67 68 static gboolean owl_timer_check(GSource *source) { 69 GList **timers = owl_global_get_timerlist(&g); 70 GTimeVal now; 71 72 /* TODO: In the far /far/ future, g_source_get_time is what the cool 73 * kids use to get system monotonic time. */ 74 g_source_get_current_time(source, &now); 75 76 /* FIXME: bother with millisecond accuracy now that we can? */ 77 if (*timers) { 78 owl_timer *t = (*timers)->data; 79 return t->time >= now.tv_sec; 80 } 81 return FALSE; 82 } 83 84 85 static gboolean owl_timer_dispatch(GSource *source, GSourceFunc callback, gpointer user_data) { 86 GList **timers = owl_global_get_timerlist(&g); 87 GTimeVal now; 88 89 /* TODO: In the far /far/ future, g_source_get_time is what the cool 90 * kids use to get system monotonic time. */ 91 g_source_get_current_time(source, &now); 92 93 /* FIXME: bother with millisecond accuracy now that we can? */ 51 94 while(*timers) { 52 95 owl_timer *t = (*timers)->data; 53 96 int remove = 0; 54 97 55 if(t->time > now )98 if(t->time > now.tv_sec) 56 99 break; 57 100 58 101 /* Reschedule if appropriate */ 59 102 if(t->interval > 0) { 60 t->time = now + t->interval;103 t->time = now.tv_sec + t->interval; 61 104 *timers = g_list_remove(*timers, t); 62 105 *timers = g_list_insert_sorted(*timers, t, … … 72 115 } 73 116 } 74 75 if(*timers) { 76 owl_timer *t = (*timers)->data; 77 timeout->tv_sec = t->time - now; 78 if (timeout->tv_sec > 60) 79 timeout->tv_sec = 60; 80 } else { 81 timeout->tv_sec = 60; 82 } 83 84 timeout->tv_nsec = 0; 85 } 117 return TRUE; 118 } 119 120 static GSourceFuncs owl_timer_funcs = { 121 owl_timer_prepare, 122 owl_timer_check, 123 owl_timer_dispatch, 124 NULL 125 }; 126 86 127 87 128 static const owl_io_dispatch *owl_select_find_io_dispatch_by_fd(const int fd) … … 129 170 if (d->destroy) 130 171 d->destroy(d); 172 g_source_remove_poll(owl_io_dispatch_source, &d->pollfd); 131 173 g_free(d); 132 174 } … … 135 177 } 136 178 137 void owl_select_io_dispatch_gc(void)179 static void owl_select_io_dispatch_gc(void) 138 180 { 139 181 int i; … … 170 212 d->data = data; 171 213 214 /* TODO: Allow changing fd and mode in the middle? Probably don't care... */ 215 d->pollfd.fd = fd; 216 d->pollfd.events = 0; 217 if (d->mode & OWL_IO_READ) 218 d->pollfd.events |= G_IO_IN | G_IO_HUP | G_IO_ERR; 219 if (d->mode & OWL_IO_WRITE) 220 d->pollfd.events |= G_IO_OUT | G_IO_ERR; 221 if (d->mode & OWL_IO_EXCEPT) 222 d->pollfd.events |= G_IO_PRI | G_IO_ERR; 223 g_source_add_poll(owl_io_dispatch_source, &d->pollfd); 224 225 172 226 owl_select_remove_io_dispatch(owl_select_find_io_dispatch_by_fd(fd)); 173 227 owl_list_append_element(dl, d); … … 176 230 } 177 231 178 int owl_select_prepare_io_dispatch_fd_sets(fd_set *rfds, fd_set *wfds, fd_set *efds) { 179 int i, len, max_fd; 180 owl_io_dispatch *d; 181 owl_list *dl = owl_global_get_io_dispatch_list(&g); 182 183 max_fd = 0; 232 static gboolean owl_io_dispatch_prepare(GSource *source, int *timeout) { 233 *timeout = -1; 234 return FALSE; 235 } 236 237 static gboolean owl_io_dispatch_check(GSource *source) { 238 int i, len; 239 const owl_list *dl; 240 241 dl = owl_global_get_io_dispatch_list(&g); 242 len = owl_list_get_size(dl); 243 for(i = 0; i < len; i++) { 244 const owl_io_dispatch *d = owl_list_get_element(dl, i); 245 if (d->pollfd.revents & d->pollfd.events) 246 return TRUE; 247 } 248 return FALSE; 249 } 250 251 static gboolean owl_io_dispatch_dispatch(GSource *source, GSourceFunc callback, gpointer user_data) { 252 int i, len; 253 const owl_list *dl; 254 255 dispatch_active = 1; 256 dl = owl_global_get_io_dispatch_list(&g); 184 257 len = owl_list_get_size(dl); 185 258 for (i = 0; i < len; i++) { 186 d = owl_list_get_element(dl, i); 187 if (d->mode & (OWL_IO_READ | OWL_IO_WRITE | OWL_IO_EXCEPT)) { 188 if (max_fd < d->fd) max_fd = d->fd; 189 if (d->mode & OWL_IO_READ) FD_SET(d->fd, rfds); 190 if (d->mode & OWL_IO_WRITE) FD_SET(d->fd, wfds); 191 if (d->mode & OWL_IO_EXCEPT) FD_SET(d->fd, efds); 192 } 193 } 194 return max_fd + 1; 195 } 196 197 void owl_select_io_dispatch(const fd_set *rfds, const fd_set *wfds, const fd_set *efds, const int max_fd) 198 { 199 int i, len; 200 owl_io_dispatch *d; 201 owl_list *dl = owl_global_get_io_dispatch_list(&g); 202 203 dispatch_active = 1; 204 len = owl_list_get_size(dl); 205 for (i = 0; i < len; i++) { 206 d = owl_list_get_element(dl, i); 207 if (d->fd < max_fd && d->callback != NULL && 208 ((d->mode & OWL_IO_READ && FD_ISSET(d->fd, rfds)) || 209 (d->mode & OWL_IO_WRITE && FD_ISSET(d->fd, wfds)) || 210 (d->mode & OWL_IO_EXCEPT && FD_ISSET(d->fd, efds)))) { 259 owl_io_dispatch *d = owl_list_get_element(dl, i); 260 if ((d->pollfd.revents & d->pollfd.events) && d->callback != NULL) { 211 261 d->callback(d, d->data); 212 262 } … … 214 264 dispatch_active = 0; 215 265 owl_select_io_dispatch_gc(); 216 } 266 267 return TRUE; 268 } 269 270 static GSourceFuncs owl_io_dispatch_funcs = { 271 owl_io_dispatch_prepare, 272 owl_io_dispatch_check, 273 owl_io_dispatch_dispatch, 274 NULL 275 }; 217 276 218 277 int owl_select_add_perl_io_dispatch(int fd, int mode, SV *cb) … … 238 297 } 239 298 240 int owl_select_aim_hack(fd_set *rfds, fd_set *wfds) 241 { 242 aim_conn_t *cur; 243 aim_session_t *sess; 244 int max_fd; 245 246 max_fd = 0; 247 sess = owl_global_get_aimsess(&g); 248 for (cur = sess->connlist; cur; cur = cur->next) { 249 if (cur->fd != -1) { 250 FD_SET(cur->fd, rfds); 251 if (cur->status & AIM_CONN_STATUS_INPROGRESS) { 252 /* Yes, we're checking writable sockets here. Without it, AIM 253 login is really slow. */ 254 FD_SET(cur->fd, wfds); 255 } 256 257 if (cur->fd > max_fd) 258 max_fd = cur->fd; 259 } 260 } 261 return max_fd; 262 } 263 264 void owl_process_input_char(owl_input j) 265 { 266 int ret; 267 268 owl_global_set_lastinputtime(&g, time(NULL)); 269 ret = owl_keyhandler_process(owl_global_get_keyhandler(&g), j); 270 if (ret!=0 && ret!=1) { 271 owl_function_makemsg("Unable to handle keypress"); 272 } 273 } 274 275 void owl_select_mask_signals(sigset_t *oldmask) { 276 sigset_t set; 277 278 sigemptyset(&set); 279 sigaddset(&set, SIGWINCH); 280 sigaddset(&set, SIGALRM); 281 sigaddset(&set, SIGPIPE); 282 sigaddset(&set, SIGTERM); 283 sigaddset(&set, SIGHUP); 284 sigaddset(&set, SIGINT); 285 sigprocmask(SIG_BLOCK, &set, oldmask); 286 } 287 288 void owl_select_handle_intr(sigset_t *restore) 289 { 290 owl_input in; 291 292 owl_global_unset_interrupted(&g); 293 294 sigprocmask(SIG_SETMASK, restore, NULL); 295 296 in.ch = in.uch = owl_global_get_startup_tio(&g)->c_cc[VINTR]; 297 owl_process_input_char(in); 298 } 299 300 owl_ps_action *owl_select_add_pre_select_action(int (*cb)(owl_ps_action *, void *), void (*destroy)(owl_ps_action *), void *data) 301 { 302 owl_ps_action *a = g_new(owl_ps_action, 1); 303 owl_list *psa_list = owl_global_get_psa_list(&g); 304 a->needs_gc = 0; 305 a->callback = cb; 306 a->destroy = destroy; 307 a->data = data; 308 owl_list_append_element(psa_list, a); 309 return a; 310 } 311 312 void owl_select_psa_gc(void) 313 { 314 int i; 315 owl_list *psa_list; 316 owl_ps_action *a; 317 318 psa_list = owl_global_get_psa_list(&g); 319 for (i = owl_list_get_size(psa_list) - 1; i >= 0; i--) { 320 a = owl_list_get_element(psa_list, i); 321 if (a->needs_gc) { 322 owl_list_remove_element(psa_list, i); 323 if (a->destroy) { 324 a->destroy(a); 325 } 326 g_free(a); 327 } 328 } 329 } 330 331 void owl_select_remove_pre_select_action(owl_ps_action *a) 332 { 333 a->needs_gc = 1; 334 if (!psa_active) 335 owl_select_psa_gc(); 336 } 337 338 int owl_select_do_pre_select_actions(void) 339 { 340 int i, len, ret; 341 owl_list *psa_list; 342 343 psa_active = 1; 344 ret = 0; 345 psa_list = owl_global_get_psa_list(&g); 346 len = owl_list_get_size(psa_list); 347 for (i = 0; i < len; i++) { 348 owl_ps_action *a = owl_list_get_element(psa_list, i); 349 if (a->callback != NULL && a->callback(a, a->data)) { 350 ret = 1; 351 } 352 } 353 psa_active = 0; 354 owl_select_psa_gc(); 355 return ret; 356 } 357 299 void owl_select_init(void) 300 { 301 owl_timer_source = g_source_new(&owl_timer_funcs, sizeof(GSource)); 302 g_source_attach(owl_timer_source, NULL); 303 304 owl_io_dispatch_source = g_source_new(&owl_io_dispatch_funcs, sizeof(GSource)); 305 g_source_attach(owl_io_dispatch_source, NULL); 306 } 307 308 void owl_select_run_loop(void) 309 { 310 context = g_main_context_default(); 311 loop = g_main_loop_new(context, FALSE); 312 g_main_loop_run(loop); 313 } 314 315 void owl_select_quit_loop(void) 316 { 317 if (loop) { 318 g_main_loop_quit(loop); 319 loop = NULL; 320 } 321 } 322 323 #if 0 324 /* FIXME: Reimplement this check in the glib world. */ 358 325 static void owl_select_prune_bad_fds(void) { 359 326 owl_list *dl = owl_global_get_io_dispatch_list(&g); … … 372 339 owl_select_io_dispatch_gc(); 373 340 } 374 375 void owl_select(void) 376 { 377 int i, max_fd, max_fd2, aim_done, ret; 378 fd_set r; 379 fd_set w; 380 fd_set e; 381 fd_set aim_rfds, aim_wfds; 382 struct timespec timeout; 383 sigset_t mask; 384 385 owl_select_process_timers(&timeout); 386 387 owl_select_mask_signals(&mask); 388 389 if(owl_global_is_interrupted(&g)) { 390 owl_select_handle_intr(&mask); 391 return; 392 } 393 FD_ZERO(&r); 394 FD_ZERO(&w); 395 FD_ZERO(&e); 396 397 max_fd = owl_select_prepare_io_dispatch_fd_sets(&r, &w, &e); 398 399 /* AIM HACK: 400 * 401 * The problem - I'm not sure where to hook into the owl/faim 402 * interface to keep track of when the AIM socket(s) open and 403 * close. In particular, the bosconn thing throws me off. So, 404 * rather than register particular dispatchers for AIM, I look up 405 * the relevant FDs and add them to select's watch lists, then 406 * check for them individually before moving on to the other 407 * dispatchers. --asedeno 408 */ 409 aim_done = 1; 410 FD_ZERO(&aim_rfds); 411 FD_ZERO(&aim_wfds); 412 if (owl_global_is_doaimevents(&g)) { 413 aim_done = 0; 414 max_fd2 = owl_select_aim_hack(&aim_rfds, &aim_wfds); 415 if (max_fd < max_fd2) max_fd = max_fd2; 416 for(i = 0; i <= max_fd2; i++) { 417 if (FD_ISSET(i, &aim_rfds)) { 418 FD_SET(i, &r); 419 FD_SET(i, &e); 420 } 421 if (FD_ISSET(i, &aim_wfds)) { 422 FD_SET(i, &w); 423 FD_SET(i, &e); 424 } 425 } 426 } 427 /* END AIM HACK */ 428 429 if (owl_select_do_pre_select_actions()) { 430 timeout.tv_sec = 0; 431 timeout.tv_nsec = 0; 432 } 433 434 ret = pselect(max_fd+1, &r, &w, &e, &timeout, &mask); 435 436 if(ret < 0) { 437 if (errno == EINTR) { 438 if(owl_global_is_interrupted(&g)) { 439 owl_select_handle_intr(NULL); 440 } 441 } else if (errno == EBADF) { 442 /* Perl must have closed an fd on us without removing it first. */ 443 owl_select_prune_bad_fds(); 444 } 445 sigprocmask(SIG_SETMASK, &mask, NULL); 446 return; 447 } 448 449 sigprocmask(SIG_SETMASK, &mask, NULL); 450 451 if(ret > 0) { 452 /* AIM HACK: process all AIM events at once. */ 453 for(i = 0; !aim_done && i <= max_fd; i++) { 454 if (FD_ISSET(i, &r) || FD_ISSET(i, &w) || FD_ISSET(i, &e)) { 455 if (FD_ISSET(i, &aim_rfds) || FD_ISSET(i, &aim_wfds)) { 456 owl_process_aim(); 457 aim_done = 1; 458 } 459 } 460 } 461 owl_select_io_dispatch(&r, &w, &e, max_fd); 462 } 463 } 464 465 void owl_select_run_loop(void) 466 { 467 loop_active = 1; 468 while (loop_active) { 469 owl_select(); 470 } 471 } 472 473 void owl_select_quit_loop(void) 474 { 475 loop_active = 0; 476 } 341 #endif 342 343 typedef struct _owl_task { /*noproto*/ 344 void (*cb)(void *); 345 void *cbdata; 346 void (*destroy_cbdata)(void *); 347 } owl_task; 348 349 static gboolean _run_task(gpointer data) 350 { 351 owl_task *t = data; 352 if (t->cb) 353 t->cb(t->cbdata); 354 return FALSE; 355 } 356 357 static void _destroy_task(void *data) 358 { 359 owl_task *t = data; 360 if (t->destroy_cbdata) 361 t->destroy_cbdata(t->cbdata); 362 g_free(t); 363 } 364 365 void owl_select_post_task(void (*cb)(void*), void *cbdata, void (*destroy_cbdata)(void*)) 366 { 367 GSource *source = g_idle_source_new(); 368 owl_task *t = g_new0(owl_task, 1); 369 t->cb = cb; 370 t->cbdata = cbdata; 371 t->destroy_cbdata = destroy_cbdata; 372 g_source_set_priority(source, G_PRIORITY_DEFAULT); 373 g_source_set_callback(source, _run_task, t, _destroy_task); 374 g_source_attach(source, context); 375 g_source_unref(source); 376 } -
window.c
rb31f1c9 rf97c1a6 524 524 owl_window_set_position(w, nlines, ncols, w->begin_y, w->begin_x); 525 525 } 526 527 /** Redrawing main loop hooks **/ 528 529 static bool _owl_window_should_redraw(void) { 530 return g.resizepending || owl_window_get_screen()->dirty_subtree; 531 } 532 533 static gboolean _owl_window_redraw_prepare(GSource *source, int *timeout) { 534 *timeout = -1; 535 return _owl_window_should_redraw(); 536 } 537 538 static gboolean _owl_window_redraw_check(GSource *source) { 539 return _owl_window_should_redraw(); 540 } 541 542 static gboolean _owl_window_redraw_dispatch(GSource *source, GSourceFunc callback, gpointer user_data) { 543 owl_colorpair_mgr *cpmgr; 544 545 /* if a resize has been scheduled, deal with it */ 546 owl_global_check_resize(&g); 547 /* update the terminal if we need to */ 548 owl_window_redraw_scheduled(); 549 /* On colorpair shortage, reset and redraw /everything/. NOTE: if we 550 * still overflow, this be useless work. With 8-colors, we get 64 551 * pairs. With 256-colors, we get 32768 pairs with ext-colors 552 * support and 256 otherwise. */ 553 cpmgr = owl_global_get_colorpair_mgr(&g); 554 if (cpmgr->overflow) { 555 owl_function_debugmsg("colorpairs: used all %d pairs; reset pairs and redraw.", 556 owl_util_get_colorpairs()); 557 owl_fmtext_reset_colorpairs(cpmgr); 558 owl_function_full_redisplay(); 559 owl_window_redraw_scheduled(); 560 } 561 return TRUE; 562 } 563 564 static GSourceFuncs redraw_funcs = { 565 _owl_window_redraw_prepare, 566 _owl_window_redraw_check, 567 _owl_window_redraw_dispatch, 568 NULL 569 }; 570 571 GSource *owl_window_redraw_source_new(void) { 572 GSource *source; 573 source = g_source_new(&redraw_funcs, sizeof(GSource)); 574 /* TODO: priority?? */ 575 return source; 576 } -
window.h
r38e2250 r4cc49bc 72 72 void owl_window_resize(owl_window *w, int nlines, int ncols); 73 73 74 GSource *owl_window_redraw_source_new(void); 75 74 76 /* Standard callback functions in windowcb.c */ 75 77 -
zephyr.c
r3b8a563 rf97c1a6 7 7 #include "owl.h" 8 8 9 static GSource *owl_zephyr_event_source_new(int fd); 10 11 static gboolean owl_zephyr_event_prepare(GSource *source, int *timeout); 12 static gboolean owl_zephyr_event_check(GSource *source); 13 static gboolean owl_zephyr_event_dispatch(GSource *source, GSourceFunc callback, gpointer user_data); 14 9 15 #ifdef HAVE_LIBZEPHYR 10 16 static GList *deferred_subs = NULL; … … 16 22 17 23 Code_t ZResetAuthentication(void); 24 25 static GSourceFuncs zephyr_event_funcs = { 26 owl_zephyr_event_prepare, 27 owl_zephyr_event_check, 28 owl_zephyr_event_dispatch, 29 NULL 30 }; 18 31 #endif 19 32 … … 84 97 Code_t code; 85 98 char *perl; 99 GSource *event_source; 86 100 87 101 owl_select_remove_io_dispatch(d); … … 99 113 } 100 114 101 owl_select_add_io_dispatch(ZGetFD(), OWL_IO_READ|OWL_IO_EXCEPT, &owl_zephyr_process_events, NULL, NULL); 115 event_source = owl_zephyr_event_source_new(ZGetFD()); 116 g_source_attach(event_source, NULL); 117 g_source_unref(event_source); 102 118 103 119 owl_global_set_havezephyr(&g); … … 127 143 perl = owl_perlconfig_execute("BarnOwl::Zephyr::_zephyr_startup()"); 128 144 g_free(perl); 129 130 owl_select_add_pre_select_action(owl_zephyr_pre_select_action, NULL, NULL);131 145 } 132 146 … … 180 194 if((code = ZPending()) < 0) { 181 195 owl_function_debugmsg("Error (%s) in ZPending()\n", 196 error_message(code)); 197 return 0; 198 } 199 return code; 200 } 201 #endif 202 return 0; 203 } 204 205 int owl_zephyr_zqlength(void) 206 { 207 #ifdef HAVE_LIBZEPHYR 208 Code_t code; 209 if(owl_global_is_havezephyr(&g)) { 210 if((code = ZQLength()) < 0) { 211 owl_function_debugmsg("Error (%s) in ZQLength()\n", 182 212 error_message(code)); 183 213 return 0; … … 1469 1499 } 1470 1500 1471 void owl_zephyr_process_events(const owl_io_dispatch *d, void *data) 1472 { 1501 typedef struct { /*noproto*/ 1502 GSource source; 1503 GPollFD poll_fd; 1504 } owl_zephyr_event_source; 1505 1506 static GSource *owl_zephyr_event_source_new(int fd) { 1507 GSource *source; 1508 owl_zephyr_event_source *event_source; 1509 1510 source = g_source_new(&zephyr_event_funcs, sizeof(owl_zephyr_event_source)); 1511 event_source = (owl_zephyr_event_source*) source; 1512 event_source->poll_fd.fd = fd; 1513 event_source->poll_fd.events = G_IO_IN | G_IO_HUP | G_IO_PRI | G_IO_ERR; 1514 g_source_add_poll(source, &event_source->poll_fd); 1515 1516 return source; 1517 } 1518 1519 static gboolean owl_zephyr_event_prepare(GSource *source, int *timeout) { 1520 *timeout = -1; 1521 return owl_zephyr_zqlength() > 0; 1522 } 1523 1524 static gboolean owl_zephyr_event_check(GSource *source) { 1525 owl_zephyr_event_source *event_source = (owl_zephyr_event_source*)source; 1526 if (event_source->poll_fd.revents & event_source->poll_fd.events) 1527 return owl_zephyr_zpending() > 0; 1528 return FALSE; 1529 } 1530 1531 static gboolean owl_zephyr_event_dispatch(GSource *source, GSourceFunc callback, gpointer user_data) { 1473 1532 _owl_zephyr_process_events(); 1474 } 1475 1476 int owl_zephyr_pre_select_action(owl_ps_action *a, void *p) 1477 { 1478 return _owl_zephyr_process_events(); 1479 } 1533 return TRUE; 1534 } -
README
raeadc74 r13ee8f2 18 18 BarnOwl currently requires the following perl modules off of CPAN: 19 19 20 AnyEvent 20 21 PAR 21 22 Net::DNS … … 30 31 The IRC module requires: 31 32 32 Net::IRC33 AnyEvent::IRC 33 34 Class::Accessor 34 35 -
cmd.c
rf25df21 r4c7c21f 12 12 13 13 int owl_cmddict_setup(owl_cmddict *cd) { 14 if (0 != owl_cmddict_init(cd)) return(-1);14 owl_cmddict_init(cd); 15 15 if (0 != owl_cmddict_add_from_list(cd, commands_to_init)) return(-1); 16 16 return(0); 17 17 } 18 18 19 int owl_cmddict_init(owl_cmddict *cd) { 20 if (owl_dict_create(cd)) return(-1); 21 return(0); 19 void owl_cmddict_init(owl_cmddict *cd) { 20 owl_dict_create(cd); 22 21 } 23 22 … … 99 98 100 99 char *owl_cmddict_execute_argv(const owl_cmddict *cd, const owl_context *ctx, const char *const *argv, int argc) { 101 GString *buf = g_string_new(""); 102 int i; 103 char *retval; 104 105 /* We weren't given a command line, so fabricate a valid one. */ 106 for(i = 0; i < argc; i++) { 107 if (i != 0) 108 g_string_append_c(buf, ' '); 109 owl_string_append_quoted_arg(buf, argv[i]); 110 } 111 112 retval = _owl_cmddict_execute(cd, ctx, argv, argc, buf->str); 113 114 g_string_free(buf, true); 100 char *buff; 101 char *retval = NULL; 102 103 buff = g_strjoinv(" ", (char**)argv); 104 retval = _owl_cmddict_execute(cd, ctx, argv, argc, buff); 105 g_free(buff); 106 115 107 return retval; 116 108 } … … 142 134 void owl_cmd_cleanup(owl_cmd *cmd) 143 135 { 144 if (cmd->name)g_free(cmd->name);145 if (cmd->summary)g_free(cmd->summary);146 if (cmd->usage)g_free(cmd->usage);147 if (cmd->description)g_free(cmd->description);148 if (cmd->cmd_aliased_to)g_free(cmd->cmd_aliased_to);136 g_free(cmd->name); 137 g_free(cmd->summary); 138 g_free(cmd->usage); 139 g_free(cmd->description); 140 g_free(cmd->cmd_aliased_to); 149 141 if (cmd->cmd_perl) owl_perlconfig_cmd_cleanup(cmd); 150 142 } -
commands.c
rc809f5e r3b8a563 1288 1288 } 1289 1289 owl_function_nextmsg_full(filter, skip_deleted, last_if_none); 1290 if (filter)g_free(filter);1290 g_free(filter); 1291 1291 return(NULL); 1292 1292 } … … 1318 1318 } 1319 1319 owl_function_prevmsg_full(filter, skip_deleted, first_if_none); 1320 if (filter)g_free(filter);1320 g_free(filter); 1321 1321 return(NULL); 1322 1322 } … … 1691 1691 commands = g_strsplit_set(newbuff, ";", 0); 1692 1692 for (i = 0; commands[i] != NULL; i++) { 1693 if (lastrv) { 1694 g_free(lastrv); 1695 } 1693 g_free(lastrv); 1696 1694 lastrv = owl_function_command(commands[i]); 1697 1695 } -
dict.c
rf25df21 r4c7c21f 15 15 #define GROWBY 3 / 2 16 16 17 intowl_dict_create(owl_dict *d) {17 void owl_dict_create(owl_dict *d) { 18 18 d->size=0; 19 19 d->els=g_new(owl_dict_el, INITSIZE); 20 20 d->avail=INITSIZE; 21 if (d->els==NULL) return(-1);22 return(0);23 21 } 24 22 … … 60 58 /* Appends dictionary keys to a list. Duplicates the keys, 61 59 * so they will need to be freed by the caller. */ 62 intowl_dict_get_keys(const owl_dict *d, owl_list *l) {60 void owl_dict_get_keys(const owl_dict *d, owl_list *l) { 63 61 int i; 64 char *dupk;65 62 for (i=0; i<d->size; i++) { 66 if ((dupk = g_strdup(d->els[i].k)) == NULL) return(-1); 67 owl_list_append_element(l, dupk); 63 owl_list_append_element(l, g_strdup(d->els[i].k)); 68 64 } 69 return(0);70 65 } 71 66 … … 84 79 { 85 80 int pos, found; 86 char *dupk;87 81 found = _owl_dict_find_pos(d, k, &pos); 88 82 if (found && delete_on_replace) { … … 99 93 if (d->els==NULL) return(-1); 100 94 } 101 if ((dupk = g_strdup(k)) == NULL) return(-1);102 95 if (pos!=d->size) { 103 96 /* shift forward to leave us a slot */ … … 106 99 } 107 100 d->size++; 108 d->els[pos].k = dupk;101 d->els[pos].k = g_strdup(k); 109 102 d->els[pos].v = v; 110 103 return(0); -
editwin.c
r47e0a6a r3b8a563 317 317 } 318 318 319 if (locktext) 320 g_free(locktext); 319 g_free(locktext); 321 320 322 321 oe_set_index(e, lock); -
fmtext.c
r4479497 r7b4f3be 184 184 } 185 185 186 static void _owl_fmtext_update_colorpair(short fg, short bg, short *pair)187 {188 if (owl_global_get_hascolors(&g)) {189 *pair = owl_fmtext_get_colorpair(fg, bg);190 }191 }192 193 186 static void _owl_fmtext_wcolor_set(WINDOW *w, short pair) 194 187 { 195 if ( owl_global_get_hascolors(&g)) {188 if (has_colors()) { 196 189 wcolor_set(w,pair,NULL); 197 190 wbkgdset(w, COLOR_PAIR(pair)); … … 221 214 bg = default_bgcolor; 222 215 _owl_fmtext_wattrset(w, attr); 223 _owl_fmtext_update_colorpair(fg, bg, &pair);216 pair = owl_fmtext_get_colorpair(fg, bg); 224 217 _owl_fmtext_wcolor_set(w, pair); 225 218 … … 270 263 if (bg == OWL_COLOR_DEFAULT) bg = default_bgcolor; 271 264 _owl_fmtext_wattrset(w, attr); 272 _owl_fmtext_update_colorpair(fg, bg, &pair);265 pair = owl_fmtext_get_colorpair(fg, bg); 273 266 _owl_fmtext_wcolor_set(w, pair); 274 267 … … 662 655 continue */ 663 656 } else if (!strcasecmp(buff, "@color") 664 && owl_global_get_hascolors(&g)665 657 && owl_global_is_colorztext(&g)) { 666 658 g_free(buff); … … 820 812 } 821 813 } 822 if ( owl_global_get_hascolors(&g)) {814 if (has_colors()) { 823 815 for(i = 0; i < 8; i++) { 824 816 short fg, bg; … … 835 827 owl_colorpair_mgr *cpmgr; 836 828 short pair; 829 830 if (!has_colors()) 831 return 0; 837 832 838 833 /* Sanity (Bounds) Check */ … … 852 847 if (!(pair != -1 && pair < cpmgr->next)) { 853 848 /* If we didn't find a pair, search for a free one to assign. */ 854 pair = (cpmgr->next < COLOR_PAIRS) ? cpmgr->next : -1;849 pair = (cpmgr->next < owl_util_get_colorpairs()) ? cpmgr->next : -1; 855 850 if (pair != -1) { 856 851 /* We found a free pair, initialize it. */ -
keybinding.c
rd07af84 r3b8a563 69 69 void owl_keybinding_delete(owl_keybinding *kb) 70 70 { 71 if (kb->keys)g_free(kb->keys);72 if (kb->desc)g_free(kb->desc);73 if (kb->command)g_free(kb->command);71 g_free(kb->keys); 72 g_free(kb->desc); 73 g_free(kb->command); 74 74 g_free(kb); 75 75 } -
keymap.c
r47e0a6a r4c7c21f 9 9 { 10 10 if (!name || !desc) return(-1); 11 if ((km->name = g_strdup(name)) == NULL) return(-1);12 if ((km->desc = g_strdup(desc)) == NULL) return(-1);13 if (0 != owl_list_create(&km->bindings)) return(-1);11 km->name = g_strdup(name); 12 km->desc = g_strdup(desc); 13 owl_list_create(&km->bindings); 14 14 km->parent = NULL; 15 15 km->default_fn = default_fn; … … 179 179 /* NOTE: keyhandler has private access to the internals of keymap */ 180 180 181 intowl_keyhandler_init(owl_keyhandler *kh)182 { 183 if (0 != owl_dict_create(&kh->keymaps)) return(-1);181 void owl_keyhandler_init(owl_keyhandler *kh) 182 { 183 owl_dict_create(&kh->keymaps); 184 184 kh->active = NULL; 185 185 owl_keyhandler_reset(kh); 186 return(0);187 186 } 188 187 -
list.c
rddbbcffa rfda61d3 5 5 #define GROWBY 3 / 2 6 6 7 intowl_list_create(owl_list *l)7 void owl_list_create(owl_list *l) 8 8 { 9 9 l->size=0; 10 10 l->list=g_new(void *, INITSIZE); 11 11 l->avail=INITSIZE; 12 if (l->list==NULL) return(-1);13 return(0);14 12 } 15 13 -
logging.c
rfe3b017 r7865479 151 151 } else if (owl_message_is_type_jabber(m)) { 152 152 to = g_strdup_printf("jabber:%s", owl_message_get_recipient(m)); 153 owl_text_tr(to, '/', '_');153 g_strdelimit(to, "/", '_'); 154 154 } else if (owl_message_is_type_aim(m)) { 155 155 char *temp2; -
perl/lib/BarnOwl.pm
rb120bd3 rf2d71cfa 38 38 use BarnOwl::Completion; 39 39 use BarnOwl::Help; 40 use BarnOwl::AnyEvent; 41 42 unshift @AnyEvent::REGISTRY, [BarnOwl => BarnOwl::AnyEvent::]; 43 require AnyEvent; 40 44 41 45 use List::Util qw(max); -
perl/modules/IRC/lib/BarnOwl/Message/IRC.pm
re04b7a1 r60b49a7 66 66 sub action {shift->{action}} 67 67 sub reason {shift->{reason}} 68 sub old_nick {shift->{old_nick}}; 68 69 69 70 # display … … 80 81 } 81 82 82 sub login_extra { 83 sub login_extra { 83 84 my $self = shift; 84 85 if ($self->action eq "quit") { 85 86 return $self->reason; 87 } elsif ($self->action eq 'nick change') { 88 return "was: " . $self->old_nick; 86 89 } else { 87 90 return $self->channel; -
perl/modules/IRC/lib/BarnOwl/Module/IRC.pm
r9620c8d r5c6d661 20 20 use BarnOwl::Module::IRC::Completion; 21 21 22 use Net::IRC;22 use AnyEvent::IRC; 23 23 use Getopt::Long; 24 24 use Encode; … … 30 30 # Hash alias -> BarnOwl::Module::IRC::Connection object 31 31 our %ircnets; 32 our %channels;33 our %reconnect;34 32 35 33 sub startup { … … 70 68 71 69 register_commands(); 72 register_handlers();73 70 BarnOwl::filter(qw{irc type ^IRC$ or ( type ^admin$ and adminheader ^IRC$ )}); 74 71 } … … 76 73 sub shutdown { 77 74 for my $conn (values %ircnets) { 78 $conn->conn->disconnect( );75 $conn->conn->disconnect('Quitting'); 79 76 } 80 77 } … … 98 95 $list .= "\n"; 99 96 100 for my $chan (keys %channels) { 101 next unless grep $_ eq $conn, @{$channels{$chan}}; 97 for my $chan (keys %{$conn->conn->{channel_list}}) { 102 98 $list .= " $chan\n"; 103 99 } … … 105 101 106 102 return $list; 107 }108 109 #sub mainloop_hook {110 # return unless defined $irc;111 # eval {112 # $irc->do_one_loop();113 # };114 # return;115 #}116 117 sub OwlProcess {118 return unless defined $irc;119 eval {120 $irc->do_one_loop();121 };122 return;123 }124 125 126 sub register_handlers {127 if(!$irc) {128 $irc = Net::IRC->new;129 $irc->timeout(0);130 }131 103 } 132 104 … … 406 378 } 407 379 408 my $conn = BarnOwl::Module::IRC::Connection->new($irc, $alias, 409 Nick => $nick, 410 Server => $host, 411 Port => $port, 412 Username => $username, 413 Ircname => $ircname, 414 Port => $port, 415 Password => $password, 416 SSL => $ssl 417 ); 418 419 if ($conn->conn->connected) { 420 $conn->connected("Connected to $alias as $nick"); 421 } else { 422 die("IRC::Connection->connect failed: $!"); 423 } 424 380 my $conn = BarnOwl::Module::IRC::Connection->new($alias, $host, $port, { 381 nick => $nick, 382 user => $username, 383 real => $ircname, 384 password => $password, 385 SSL => $ssl, 386 timeout => sub {0} 387 }); 388 $ircnets{$alias} = $conn; 425 389 return; 426 390 } … … 429 393 my $cmd = shift; 430 394 my $conn = shift; 431 if ($conn->conn->connected) { 432 $conn->conn->disconnect; 433 } elsif ($reconnect{$conn->alias}) { 395 if ($conn->conn->{socket}) { 396 $conn->did_quit(1); 397 $conn->conn->disconnect("Goodbye!"); 398 } elsif ($conn->{reconnect_timer}) { 434 399 BarnOwl::admin_message('IRC', 435 400 "[" . $conn->alias . "] Reconnect cancelled"); 436 401 $conn->cancel_reconnect; 402 delete $ircnets{$conn->alias}; 437 403 } 438 404 } … … 463 429 for my $body (@msgs) { 464 430 if ($body =~ /^\/me (.*)/) { 465 $conn-> conn->me($to, Encode::encode('utf-8', $1));431 $conn->me($to, Encode::encode('utf-8', $1)); 466 432 $body = '* '.$conn->nick.' '.$1; 467 433 } else { 468 $conn->conn-> privmsg($to, Encode::encode('utf-8', $body));434 $conn->conn->send_msg('privmsg', $to, Encode::encode('utf-8', $body)); 469 435 } 470 436 my $msg = BarnOwl::Message->new( … … 491 457 my $target = shift; 492 458 $target ||= shift; 493 $conn->conn-> mode($target, @_);459 $conn->conn->send_msg(mode => $target, @_); 494 460 return; 495 461 } … … 499 465 my $conn = shift; 500 466 my $chan = shift or die("Usage: $cmd channel\n"); 501 $channels{$chan} ||= []; 502 push @{$channels{$chan}}, $conn; 503 $conn->conn->join($chan, @_); 467 $conn->conn->send_msg(join => $chan, @_); 504 468 return; 505 469 } … … 509 473 my $conn = shift; 510 474 my $chan = shift; 511 $channels{$chan} = [grep {$_ ne $conn} @{$channels{$chan} || []}]; 512 $conn->conn->part($chan); 475 $conn->conn->send_msg(part => $chan); 513 476 return; 514 477 } … … 518 481 my $conn = shift; 519 482 my $nick = shift or die("Usage: $cmd <new nick>\n"); 520 $conn->conn-> nick($nick);483 $conn->conn->send_msg(nick => $nick); 521 484 return; 522 485 } … … 527 490 my $chan = shift; 528 491 $conn->names_tmp([]); 529 $conn->conn-> names($chan);492 $conn->conn->send_msg(names => $chan); 530 493 return; 531 494 } … … 535 498 my $conn = shift; 536 499 my $who = shift || die("Usage: $cmd <user>\n"); 537 $conn->conn-> whois($who);500 $conn->conn->send_msg(whois => $who); 538 501 return; 539 502 } … … 542 505 my $cmd = shift; 543 506 my $conn = shift; 544 $conn->conn-> motd;507 $conn->conn->send_msg('motd'); 545 508 return; 546 509 } … … 560 523 my $conn = shift; 561 524 my $who = shift || die("Usage: $cmd <user>\n"); 562 BarnOwl::error("WHO $cmd $conn $who"); 563 $conn->conn->who($who); 525 $conn->conn->send_msg(who => $who); 564 526 return; 565 527 } … … 569 531 my $conn = shift; 570 532 my $type = shift || die("Usage: $cmd <chiklmouy> [server] \n"); 571 $conn->conn->s tats($type, @_);533 $conn->conn->send_msg(stats => $type, @_); 572 534 return; 573 535 } … … 577 539 my $conn = shift; 578 540 my $chan = shift; 579 $conn->conn-> topic($chan, @_ ? join(" ", @_) : undef);541 $conn->conn->send_msg(topic => $chan, @_ ? join(" ", @_) : undef); 580 542 return; 581 543 } … … 584 546 my $cmd = shift; 585 547 my $conn = shift; 586 $conn->conn->s l(join(" ", @_));548 $conn->conn->send_msg(@_); 587 549 return; 588 550 } … … 591 553 ########################### Utilities/Helpers ################################## 592 554 ################################################################################ 555 556 sub find_channel { 557 my $channel = shift; 558 my @found; 559 for my $conn (values %ircnets) { 560 if($conn->conn->{channel_list}{lc $channel}) { 561 push @found, $conn; 562 } 563 } 564 return $found[0] if(scalar @found == 1); 565 } 593 566 594 567 sub mk_irc_command { … … 614 587 $channel = $ARGV[0]; 615 588 if(defined($channel) && $channel =~ /^#/) { 616 if( $channels{$channel} && @{$channels{$channel}} == 1) {589 if(my $c = find_channel($channel)) { 617 590 shift @ARGV; 618 $conn = $channels{$channel}[0] unless $conn;591 $conn ||= $c; 619 592 } 620 593 } elsif ($m && $m->type eq 'IRC' && !$m->is_private) { … … 654 627 my $allow_disconnected = shift; 655 628 656 return $ircnets{$key} if exists $ircnets{$key}; 657 return $reconnect{$key} if $allow_disconnected && exists $reconnect{$key}; 658 die("No such ircnet: $key\n") 629 my $conn = $ircnets{$key}; 630 die("No such ircnet: $key\n") unless $conn; 631 if ($conn->conn->{registered} || $allow_disconnected) { 632 return $conn; 633 } 634 die("[@{[$conn->alias]}] Not currently connected."); 659 635 } 660 636 -
perl/modules/IRC/lib/BarnOwl/Module/IRC/Completion.pm
r955a36e rdace02a 11 11 sub complete_networks { keys %BarnOwl::Module::IRC::ircnets } 12 12 sub complete_dests { keys %users, complete_channels() } 13 sub complete_channels { keys %BarnOwl::Module::IRC::channels } 13 sub complete_channels { 14 my %channels; 15 for my $conn (values %BarnOwl::Module::IRC::ircnets) { 16 for my $chan (keys %{$conn->conn->{channel_list}}) { 17 $channels{$chan} = 1; 18 } 19 } 20 return keys %channels; 21 } 14 22 sub complete_nicks { keys %users } 15 23 sub complete_servers { keys %servers } -
perl/modules/IRC/lib/BarnOwl/Module/IRC/Connection.pm
rfb6e8e3 r13ee8f2 11 11 =head1 DESCRIPTION 12 12 13 This module is a wrapper around Net::IRC::Connectionfor BarnOwl's IRC13 This module is a wrapper around AnyEvent::IRC::Client for BarnOwl's IRC 14 14 support 15 15 16 16 =cut 17 17 18 use Net::IRC::Connection; 19 20 use base qw(Class::Accessor Exporter); 21 __PACKAGE__->mk_accessors(qw(conn alias channels motd names_tmp whois_tmp)); 22 our @EXPORT_OK = qw(&is_private); 18 use AnyEvent::IRC::Client; 19 use AnyEvent::IRC::Util qw(split_prefix prefix_nick encode_ctcp); 20 21 use base qw(Class::Accessor); 22 use Exporter 'import'; 23 __PACKAGE__->mk_accessors(qw(conn alias motd names_tmp whois_tmp 24 server autoconnect_channels 25 connect_args backoff did_quit)); 26 our @EXPORT_OK = qw(is_private); 23 27 24 28 use BarnOwl; 25 29 use Scalar::Util qw(weaken); 26 30 27 BEGIN {28 no strict 'refs';29 my @delegate = qw(nick server);30 for my $meth (@delegate) {31 *{"BarnOwl::Module::IRC::Connection::$meth"} = sub {32 shift->conn->$meth(@_);33 }34 }35 };36 37 31 sub new { 38 32 my $class = shift; 39 my $irc = shift;40 33 my $alias = shift; 41 my %args = (@_); 42 my $conn = Net::IRC::Connection->new($irc, %args); 34 my $host = shift; 35 my $port = shift; 36 my $args = shift; 37 my $nick = $args->{nick}; 38 my $conn = AnyEvent::IRC::Client->new(); 43 39 my $self = bless({}, $class); 44 40 $self->conn($conn); 41 $self->autoconnect_channels([]); 45 42 $self->alias($alias); 46 $self-> channels([]);43 $self->server($host); 47 44 $self->motd(""); 48 45 $self->names_tmp(0); 46 $self->backoff(0); 49 47 $self->whois_tmp(""); 50 51 $self->conn->add_default_handler(sub { shift; $self->on_event(@_) }); 52 $self->conn->add_handler(['msg', 'notice', 'public', 'caction'], 53 sub { shift; $self->on_msg(@_) }); 54 $self->conn->add_handler(['welcome', 'yourhost', 'created', 55 'luserclient', 'luserop', 'luserchannels', 'luserme', 56 'error'], 57 sub { shift; $self->on_admin_msg(@_) }); 58 $self->conn->add_handler(['myinfo', 'map', 'n_local', 'n_global', 59 'luserconns'], 60 sub { }); 61 $self->conn->add_handler(motdstart => sub { shift; $self->on_motdstart(@_) }); 62 $self->conn->add_handler(motd => sub { shift; $self->on_motd(@_) }); 63 $self->conn->add_handler(endofmotd => sub { shift; $self->on_endofmotd(@_) }); 64 $self->conn->add_handler(join => sub { shift; $self->on_join(@_) }); 65 $self->conn->add_handler(part => sub { shift; $self->on_part(@_) }); 66 $self->conn->add_handler(quit => sub { shift; $self->on_quit(@_) }); 67 $self->conn->add_handler(disconnect => sub { shift; $self->on_disconnect(@_) }); 68 $self->conn->add_handler(nicknameinuse => sub { shift; $self->on_nickinuse(@_) }); 69 $self->conn->add_handler(cping => sub { shift; $self->on_ping(@_) }); 70 $self->conn->add_handler(topic => sub { shift; $self->on_topic(@_) }); 71 $self->conn->add_handler(topicinfo => sub { shift; $self->on_topicinfo(@_) }); 72 $self->conn->add_handler(namreply => sub { shift; $self->on_namreply(@_) }); 73 $self->conn->add_handler(endofnames=> sub { shift; $self->on_endofnames(@_) }); 74 $self->conn->add_handler(endofwhois=> sub { shift; $self->on_endofwhois(@_) }); 75 $self->conn->add_handler(mode => sub { shift; $self->on_mode(@_) }); 76 $self->conn->add_handler(nosuchchannel => sub { shift; $self->on_nosuchchannel(@_) }); 48 $self->did_quit(0); 49 50 if(delete $args->{SSL}) { 51 $conn->enable_ssl; 52 } 53 $self->connect_args([$host, $port, $args]); 54 $conn->connect($host, $port, $args); 55 $conn->{heap}{parent} = $self; 56 weaken($conn->{heap}{parent}); 57 58 sub on { 59 my $meth = "on_" . shift; 60 return sub { 61 my $conn = shift; 62 return unless $conn->{heap}{parent}; 63 $conn->{heap}{parent}->$meth(@_); 64 } 65 } 66 67 # $self->conn->add_default_handler(sub { shift; $self->on_event(@_) }); 68 $self->conn->reg_cb(registered => on("connect"), 69 connfail => sub { BarnOwl::error("Connection to $host failed!") }, 70 disconnect => on("disconnect"), 71 publicmsg => on("msg"), 72 privatemsg => on("msg"), 73 irc_error => on("error")); 74 for my $m (qw(welcome yourhost created 75 luserclient luserop luserchannels luserme 76 error)) { 77 $self->conn->reg_cb("irc_$m" => on("admin_msg")); 78 } 79 $self->conn->reg_cb(irc_375 => on("motdstart"), 80 irc_372 => on("motd"), 81 irc_376 => on("endofmotd"), 82 irc_join => on("join"), 83 irc_part => on("part"), 84 irc_quit => on("quit"), 85 irc_433 => on("nickinuse"), 86 channel_topic => on("topic"), 87 irc_333 => on("topicinfo"), 88 irc_353 => on("namreply"), 89 irc_366 => on("endofnames"), 90 irc_311 => on("whois"), 91 irc_312 => on("whois"), 92 irc_319 => on("whois"), 93 irc_320 => on("whois"), 94 irc_318 => on("endofwhois"), 95 irc_mode => on("mode"), 96 irc_401 => on("nosuch"), 97 irc_402 => on("nosuch"), 98 irc_403 => on("nosuch"), 99 nick_change => on("nick"), 100 ctcp_action => on("ctcp_action"), 101 'irc_*' => sub { BarnOwl::debug("IRC: " . $_[1]->{command} . " " . 102 join(" ", @{$_[1]->{params}})) }); 77 103 78 104 return $self; 105 } 106 107 sub nick { 108 my $self = shift; 109 return $self->conn->nick; 79 110 } 80 111 … … 83 114 my $self = shift; 84 115 return $self->conn->socket; 116 } 117 118 sub me { 119 my ($self, $to, $msg) = @_; 120 $self->conn->send_msg('privmsg', $to, 121 encode_ctcp(['ACTION', $msg])) 85 122 } 86 123 … … 92 129 my $self = shift; 93 130 my $evt = shift; 94 return BarnOwl::Message->new(131 my %args = ( 95 132 type => 'IRC', 96 133 server => $self->server, 97 134 network => $self->alias, 98 sender => $evt->nick,99 hostname => $evt->host,100 from => $evt->from,101 135 @_ 102 136 ); 137 if ($evt) { 138 my ($nick, $user, $host) = split_prefix($evt); 139 $args{sender} ||= $nick; 140 $args{hostname} ||= $host if defined($host); 141 $args{from} ||= $evt->{prefix}; 142 $args{params} ||= join(' ', @{$evt->{params}}) 143 } 144 return BarnOwl::Message->new(%args); 103 145 } 104 146 105 147 sub on_msg { 106 my ($self, $evt) = @_; 107 my ($recipient) = $evt->to; 108 my $body = strip_irc_formatting([$evt->args]->[0]); 109 my $nick = $self->nick; 110 $body = '* '.$evt->nick.' '.$body if $evt->type eq 'caction'; 148 my ($self, $recipient, $evt) = @_; 149 my $body = strip_irc_formatting($evt->{params}->[1]); 150 $self->handle_message($recipient, $evt, $body); 151 } 152 153 sub on_ctcp_action { 154 my ($self, $src, $target, $msg) = @_; 155 my $body = strip_irc_formatting($msg); 156 my $evt = { 157 params => [$src], 158 type => 'privmsg', 159 prefix => $src 160 }; 161 $self->handle_message($target, $evt, "* $body"); 162 } 163 164 sub handle_message { 165 my ($self, $recipient, $evt, $body) = @_; 111 166 my $msg = $self->new_message($evt, 112 167 direction => 'in', 113 168 recipient => $recipient, 114 body => $body,115 $evt->typeeq 'notice' ?169 body => $body, 170 ($evt->{command}||'') eq 'notice' ? 116 171 (notice => 'true') : (), 117 172 is_private($recipient) ? 118 173 (private => 'true') : (channel => $recipient), 119 174 replycmd => BarnOwl::quote('irc-msg', '-a', $self->alias, 120 (is_private($recipient) ? $evt->nick: $recipient)),121 replysendercmd => BarnOwl::quote('irc-msg', '-a', $self->alias, $evt->nick),175 (is_private($recipient) ? prefix_nick($evt) : $recipient)), 176 replysendercmd => BarnOwl::quote('irc-msg', '-a', $self->alias, prefix_nick($evt)), 122 177 ); 123 178 … … 125 180 } 126 181 127 sub on_ping {128 my ($self, $evt) = @_;129 $self->conn->ctcp_reply($evt->nick, join (' ', ($evt->args)));130 }131 182 132 183 sub on_admin_msg { 133 184 my ($self, $evt) = @_; 134 return if BarnOwl::Module::IRC->skip_msg($evt-> type);135 BarnOwl::admin_message("IRC", 136 BarnOwl::Style::boldify('IRC ' . $evt-> type. ' message from '185 return if BarnOwl::Module::IRC->skip_msg($evt->{command}); 186 BarnOwl::admin_message("IRC", 187 BarnOwl::Style::boldify('IRC ' . $evt->{command} . ' message from ' 137 188 . $self->alias) . "\n" 138 . strip_irc_formatting(join ' ', cdr($evt-> args)));189 . strip_irc_formatting(join ' ', cdr($evt->{params}))); 139 190 } 140 191 141 192 sub on_motdstart { 142 193 my ($self, $evt) = @_; 143 $self->motd(join "\n", cdr( $evt->args));194 $self->motd(join "\n", cdr(@{$evt->{params}})); 144 195 } 145 196 146 197 sub on_motd { 147 198 my ($self, $evt) = @_; 148 $self->motd(join "\n", $self->motd, cdr( $evt->args));199 $self->motd(join "\n", $self->motd, cdr(@{$evt->{params}})); 149 200 } 150 201 151 202 sub on_endofmotd { 152 203 my ($self, $evt) = @_; 153 $self->motd(join "\n", $self->motd, cdr( $evt->args));204 $self->motd(join "\n", $self->motd, cdr(@{$evt->{params}})); 154 205 BarnOwl::admin_message("IRC", 155 206 BarnOwl::Style::boldify('MOTD for ' . $self->alias) . "\n" … … 159 210 sub on_join { 160 211 my ($self, $evt) = @_; 212 my $chan = $evt->{params}[0]; 161 213 my $msg = $self->new_message($evt, 162 214 loginout => 'login', 163 215 action => 'join', 164 channel => $ evt->to,165 replycmd => BarnOwl::quote('irc-msg', '-a', $self->alias, $ evt->to),166 replysendercmd => BarnOwl::quote('irc-msg', '-a', $self->alias, $evt->nick),216 channel => $chan, 217 replycmd => BarnOwl::quote('irc-msg', '-a', $self->alias, $chan), 218 replysendercmd => BarnOwl::quote('irc-msg', '-a', $self->alias, prefix_nick($evt)), 167 219 ); 168 220 BarnOwl::queue_message($msg); 169 push @{$self->channels}, $evt->to;170 221 } 171 222 172 223 sub on_part { 173 224 my ($self, $evt) = @_; 225 my $chan = $evt->{params}[0]; 174 226 my $msg = $self->new_message($evt, 175 227 loginout => 'logout', 176 228 action => 'part', 177 channel => $ evt->to,178 replycmd => BarnOwl::quote('irc-msg', '-a', $self->alias, $ evt->to),179 replysendercmd => BarnOwl::quote('irc-msg', '-a', $self->alias, $evt->nick),229 channel => $chan, 230 replycmd => BarnOwl::quote('irc-msg', '-a', $self->alias, $chan), 231 replysendercmd => BarnOwl::quote('irc-msg', '-a', $self->alias, prefix_nick($evt)), 180 232 ); 181 233 BarnOwl::queue_message($msg); 182 $self->channels([ grep {$_ ne $evt->to} @{$self->channels}]);183 234 } 184 235 … … 188 239 loginout => 'logout', 189 240 action => 'quit', 190 from => $evt-> to,191 reason => [$evt->args]->[0],192 replycmd => BarnOwl::quote('irc-msg', '-a', $self->alias, $evt->nick),193 replysendercmd => BarnOwl::quote('irc-msg', '-a', $self->alias, $evt->nick),241 from => $evt->{prefix}, 242 reason => $evt->{params}->[0], 243 replycmd => BarnOwl::quote('irc-msg', '-a', $self->alias, prefix_nick($evt)), 244 replysendercmd => BarnOwl::quote('irc-msg', '-a', $self->alias, prefix_nick($evt)), 194 245 ); 195 246 BarnOwl::queue_message($msg); … … 198 249 sub disconnect { 199 250 my $self = shift; 200 delete $BarnOwl::Module::IRC::ircnets{$self->alias}; 201 for my $k (keys %BarnOwl::Module::IRC::channels) { 202 my @conns = grep {$_ ne $self} @{$BarnOwl::Module::IRC::channels{$k}}; 203 if(@conns) { 204 $BarnOwl::Module::IRC::channels{$k} = \@conns; 205 } else { 206 delete $BarnOwl::Module::IRC::channels{$k}; 207 } 208 } 209 BarnOwl::remove_io_dispatch($self->{FD}); 251 $self->conn->disconnect; 252 } 253 254 sub on_disconnect { 255 my ($self, $why) = @_; 256 BarnOwl::admin_message('IRC', 257 "[" . $self->alias . "] Disconnected from server: $why"); 210 258 $self->motd(""); 211 } 212 213 sub on_disconnect { 214 my ($self, $evt) = @_; 215 $self->disconnect; 216 BarnOwl::admin_message('IRC', 217 "[" . $self->alias . "] Disconnected from server"); 218 if ($evt->format and $evt->format eq "error") { 259 if (!$self->did_quit) { 219 260 $self->schedule_reconnect; 220 261 } else { 221 $self->channels([]); 222 } 262 delete $BarnOwl::Module::IRC::ircnets{$self->alias}; 263 } 264 } 265 266 sub on_error { 267 my ($self, $evt) = @_; 268 BarnOwl::admin_message('IRC', 269 "[" . $self->alias . "] " . 270 "Error: " . join(" ", @{$evt->{params}})); 223 271 } 224 272 … … 227 275 BarnOwl::admin_message("IRC", 228 276 "[" . $self->alias . "] " . 229 [$evt->args]->[1] . ": Nick already in use"); 230 $self->disconnect unless $self->motd; 277 $evt->{params}->[1] . ": Nick already in use"); 278 } 279 280 sub on_nick { 281 my ($self, $old_nick, $new_nick, $is_me) = @_; 282 if ($is_me) { 283 BarnOwl::admin_message("IRC", 284 "[" . $self->alias . "] " . 285 "You are now known as $new_nick"); 286 } else { 287 my $msg = $self->new_message('', 288 loginout => 'login', 289 action => 'nick change', 290 from => $new_nick, 291 sender => $new_nick, 292 replycmd => BarnOwl::quote('irc-msg', '-a', $self->alias, 293 $new_nick), 294 replysendercmd => BarnOwl::quote('irc-msg', '-a', $self->alias, 295 $new_nick), 296 old_nick => $old_nick); 297 BarnOwl::queue_message($msg); 298 } 231 299 } 232 300 233 301 sub on_topic { 234 my ($self, $evt) = @_; 235 my @args = $evt->args; 236 if (scalar @args > 1) { 302 my ($self, $channel, $topic, $who) = @_; 303 if ($channel) { 237 304 BarnOwl::admin_message("IRC", 238 "Topic for $ args[1] on " . $self->alias . " is $args[2]");305 "Topic for $channel on " . $self->alias . " is $topic"); 239 306 } else { 240 307 BarnOwl::admin_message("IRC", 241 "Topic changed to $ args[0]");308 "Topic changed to $channel"); 242 309 } 243 310 } … … 245 312 sub on_topicinfo { 246 313 my ($self, $evt) = @_; 247 my @args = $evt->args;314 my @args = @{$evt->{params}}; 248 315 BarnOwl::admin_message("IRC", 249 316 "Topic for $args[1] set by $args[2] at " . localtime($args[3])); … … 257 324 my ($self, $evt) = @_; 258 325 return unless $self->names_tmp; 259 $self->names_tmp([@{$self->names_tmp}, split(' ', [$evt->args]->[3])]); 326 $self->names_tmp([@{$self->names_tmp}, 327 map {prefix_nick($_)} split(' ', $evt->{params}[3])]); 260 328 } 261 329 … … 272 340 my ($self, $evt) = @_; 273 341 return unless $self->names_tmp; 274 my $names = BarnOwl::Style::boldify("Members of " . [$evt->args]->[1] . ":\n");342 my $names = BarnOwl::Style::boldify("Members of " . $evt->{params}->[1] . ":\n"); 275 343 for my $name (sort {cmp_user($a, $b)} @{$self->names_tmp}) { 276 344 $names .= " $name\n"; … … 282 350 sub on_whois { 283 351 my ($self, $evt) = @_; 352 my %names = ( 353 311 => 'user', 354 312 => 'server', 355 319 => 'channels', 356 330 => 'whowas', 357 ); 284 358 $self->whois_tmp( 285 $self->whois_tmp . "\n" . $evt->type. ":\n " .286 join("\n ", cdr(cdr($evt->args))) . "\n"287 );359 $self->whois_tmp . "\n" . $names{$evt->{command}} . ":\n " . 360 join("\n ", cdr(cdr(@{$evt->{params}}))) . "\n" 361 ); 288 362 } 289 363 … … 291 365 my ($self, $evt) = @_; 292 366 BarnOwl::popless_ztext( 293 BarnOwl::Style::boldify("/whois for " . [$evt->args]->[1] . ":\n") .367 BarnOwl::Style::boldify("/whois for " . $evt->{params}->[1] . ":\n") . 294 368 $self->whois_tmp 295 369 ); … … 300 374 my ($self, $evt) = @_; 301 375 BarnOwl::admin_message("IRC", 302 "[" . $self->alias . "] User " . ( $evt->nick) . + " set mode " .303 join(" ", $evt->args) . "on " . $evt->to->[0]376 "[" . $self->alias . "] User " . (prefix_nick($evt)) . + " set mode " . 377 join(" ", cdr(@{$evt->{params}})) . " on " . $evt->{params}->[0] 304 378 ); 305 379 } 306 380 307 sub on_nosuchchannel { 308 my ($self, $evt) = @_; 381 sub on_nosuch { 382 my ($self, $evt) = @_; 383 my %things = (401 => 'nick', 402 => 'server', 403 => 'channel'); 309 384 BarnOwl::admin_message("IRC", 310 385 "[" . $self->alias . "] " . 311 "No such channel: " . [$evt->args]->[1])386 "No such @{[$things{$evt->{command}}]}: @{[$evt->{params}->[1]]}") 312 387 } 313 388 … … 323 398 sub schedule_reconnect { 324 399 my $self = shift; 325 my $interval = shift || 5; 326 delete $BarnOwl::Module::IRC::ircnets{$self->alias}; 327 $BarnOwl::Module::IRC::reconnect{$self->alias} = $self; 400 my $interval = $self->backoff; 401 if ($interval) { 402 $interval *= 2; 403 $interval = 60*5 if $interval > 60*5; 404 } else { 405 $interval = 5; 406 } 407 $self->backoff($interval); 408 328 409 my $weak = $self; 329 410 weaken($weak); … … 343 424 sub cancel_reconnect { 344 425 my $self = shift; 345 delete $BarnOwl::Module::IRC::reconnect{$self->alias}; 426 346 427 if (defined $self->{reconnect_timer}) { 347 428 $self->{reconnect_timer}->stop; 348 429 } 349 430 delete $self->{reconnect_timer}; 431 } 432 433 sub on_connect { 434 my $self = shift; 435 $self->connected("Connected to " . $self->alias . " as " . $self->nick) 350 436 } 351 437 … … 355 441 BarnOwl::admin_message("IRC", $msg); 356 442 $self->cancel_reconnect; 357 $BarnOwl::Module::IRC::ircnets{$self->alias} = $self; 358 my $fd = $self->getSocket()->fileno(); 359 BarnOwl::add_io_dispatch($fd, 'r', \&BarnOwl::Module::IRC::OwlProcess); 360 $self->{FD} = $fd; 443 if ($self->autoconnect_channels) { 444 for my $c (@{$self->autoconnect_channels}) { 445 $self->conn->send_msg(join => $c); 446 } 447 $self->autoconnect_channels([]); 448 } 449 $self->conn->enable_ping(60, sub { 450 $self->on_disconnect("Connection timed out."); 451 $self->schedule_reconnect; 452 }); 453 $self->backoff(0); 361 454 } 362 455 363 456 sub reconnect { 364 457 my $self = shift; 365 my $backoff = shift; 366 367 $self->conn->connect; 368 if ($self->conn->connected) { 369 $self->connected("Reconnected to ".$self->alias); 370 my @channels = @{$self->channels}; 371 $self->channels([]); 372 $self->conn->join($_) for @channels; 373 return; 374 } 375 376 $backoff *= 2; 377 $backoff = 60*5 if $backoff > 60*5; 378 $self->schedule_reconnect( $backoff ); 458 my $backoff = $self->backoff; 459 460 $self->autoconnect_channels([keys(%{$self->{channel_list}})]); 461 $self->conn->connect(@{$self->connect_args}); 379 462 } 380 463 -
perlconfig.c
rf25df21 r3b8a563 403 403 } 404 404 405 sv_setpv(get_sv("BarnOwl::VERSION", TRUE), OWL_VERSION_STRING); 406 405 407 /* Add the system lib path to @INC */ 406 408 inc = get_av("INC", 0); … … 465 467 :"BarnOwl::_receive_msg_legacy_wrap", m); 466 468 } 467 if (ptr)g_free(ptr);469 g_free(ptr); 468 470 } 469 471 … … 476 478 :"BarnOwl::Hooks::_new_msg", m); 477 479 } 478 if (ptr)g_free(ptr);480 g_free(ptr); 479 481 } 480 482 -
perlglue.xs
rf25df21 r3b8a563 43 43 rv = owl_function_command(cmd); 44 44 } else { 45 argv = g_new(const char *, items + 1); 45 /* Ensure this is NULL-terminated. */ 46 argv = g_new0(const char *, items + 1); 46 47 argv[0] = cmd; 47 48 for(i = 1; i < items; i++) { … … 56 57 RETVAL 57 58 CLEANUP: 58 if (rv)g_free(rv);59 g_free(rv); 59 60 60 61 SV * … … 113 114 RETVAL 114 115 CLEANUP: 115 if (rv)g_free(rv);116 g_free(rv); 116 117 117 118 const utf8 * … … 140 141 RETVAL 141 142 CLEANUP: 142 if (rv)g_free(rv);143 g_free(rv); 143 144 144 145 void … … 323 324 RETVAL 324 325 CLEANUP: 325 if (rv) 326 g_free(rv); 326 g_free(rv); 327 327 328 328 void -
tester.c
rf25df21 r4c7c21f 233 233 234 234 printf("# BEGIN testing owl_dict\n"); 235 FAIL_UNLESS("create", 0==owl_dict_create(&d));235 owl_dict_create(&d); 236 236 FAIL_UNLESS("insert b", 0==owl_dict_insert_element(&d, "b", bv, owl_dict_noop_delete)); 237 237 FAIL_UNLESS("insert d", 0==owl_dict_insert_element(&d, "d", dv, owl_dict_noop_delete)); … … 249 249 FAIL_UNLESS("get_size", 3==owl_dict_get_size(&d)); 250 250 owl_list_create(&l); 251 FAIL_UNLESS("get_keys", 0==owl_dict_get_keys(&d, &l));251 owl_dict_get_keys(&d, &l); 252 252 FAIL_UNLESS("get_keys result size", 3==owl_list_get_size(&l)); 253 253 -
text.c
r42ee1be r7865479 275 275 g_strfreev(split); 276 276 return out; 277 }278 279 /* replace all instances of character a in buff with the character280 * b. buff must be null terminated.281 */282 void owl_text_tr(char *buff, char a, char b)283 {284 int i;285 286 owl_function_debugmsg("In: %s", buff);287 for (i=0; buff[i]!='\0'; i++) {288 if (buff[i]==a) buff[i]=b;289 }290 owl_function_debugmsg("Out: %s", buff);291 277 } 292 278 -
util.c
re56303f r9efa5bd 715 715 } 716 716 717 int owl_util_get_colorpairs(void) { 718 #ifndef NCURSES_EXT_COLORS 719 /* Without ext-color support (an ABI change), ncurses only supports 256 720 * different color pairs. However, it gives us a larger number even if your 721 * ncurses is compiled without ext-color. */ 722 return MIN(COLOR_PAIRS, 256); 723 #else 724 return COLOR_PAIRS; 725 #endif 726 } 727 717 728 gulong owl_dirty_window_on_signal(owl_window *w, gpointer sender, const gchar *detailed_signal) 718 729 { -
variable.c
rf25df21 r4c7c21f 30 30 NULL, NULL, NULL, NULL, NULL, NULL } 31 31 32 #define OWLVAR_STRING_FULL(name,default, summary,description,validate,set,get) \33 { name, OWL_VARIABLE_STRING, default, 0, "<string>", summary,description, NULL, \32 #define OWLVAR_STRING_FULL(name,default,validset,summary,description,validate,set,get) \ 33 { name, OWL_VARIABLE_STRING, default, 0, validset, summary,description, NULL, \ 34 34 validate, set, NULL, get, NULL, NULL } 35 35 … … 266 266 "" ), 267 267 268 OWLVAR_STRING_FULL( "tty" /* %OwlVarStub */, "", " tty name for zephyr location", "",268 OWLVAR_STRING_FULL( "tty" /* %OwlVarStub */, "", "<string>", "tty name for zephyr location", "", 269 269 NULL, owl_variable_tty_set, NULL), 270 270 … … 370 370 "delete a message right as it came in.\n" ), 371 371 372 OWLVAR_STRING_FULL( "default_exposure" /* %OwlVarStub */, "", 373 "none,opstaff,realm-visible,realm-announced,net-visible,net-announced", 374 "controls the persistent value for exposure", 375 "The default exposure level corresponds to the Zephyr exposure value\n" 376 "in ~/.zephyr.vars. Defaults to realm-visible if there is no value in\n" 377 "~/.zephyr.vars.\n" 378 "See the description of exposure for the values this can be.", 379 NULL, owl_variable_default_exposure_set, owl_variable_default_exposure_get ), 380 381 OWLVAR_STRING_FULL( "exposure" /* %OwlVarStub */, "", 382 "none,opstaff,realm-visible,realm-announced,net-visible,net-announced", 383 "controls who can zlocate you", 384 "The exposure level, defaulting to the value of default_exposure,\n" 385 "can be one of the following (from least exposure to widest exposure,\n" 386 "as listed in zctl(1)):\n" 387 "\n" 388 " none - This completely disables Zephyr for the user. \n" 389 " The user is not registered with Zephyr. No user\n" 390 " location information is retained by Zephyr. No\n" 391 " login or logout announcements will be sent. No\n" 392 " subscriptions will be entered for the user, and\n" 393 " no notices will be displayed by zwgc(1).\n" 394 " opstaff - The user is registered with Zephyr. No login or\n" 395 " logout announcements will be sent, and location\n" 396 " information will only be visible to Operations\n" 397 " staff. Default subscriptions and any additional\n" 398 " personal subscriptions will be entered for the\n" 399 " user.\n" 400 " realm-visible - The user is registered with Zephyr. User\n" 401 " location information is retained by Zephyr and\n" 402 " made available only to users within the user’s\n" 403 " Kerberos realm. No login or logout\n" 404 " announcements will be sent. This is the system\n" 405 " default. Default subscriptions and any\n" 406 " additional personal subscriptions will be\n" 407 " entered for the user.\n" 408 " realm-announced - The user is registered with Zephyr. User\n" 409 " location information is retained by Zephyr and\n" 410 " made available only to users authenticated\n" 411 " within the user’s Kerberos realm. Login and\n" 412 " logout announcements will be sent, but only to\n" 413 " users within the user’s Kerberos realm who have\n" 414 " explicitly requested such via subscriptions. \n" 415 " Default subscriptions and any additional\n" 416 " personal subscriptions will be entered for the\n" 417 " user.\n" 418 " net-visible - The user is registered with Zephyr. User\n" 419 " location information is retained by Zephyr and\n" 420 " made available to any authenticated user who\n" 421 " requests such. Login and logout announcements\n" 422 " will be sent only to users within the user’s\n" 423 " Kerberos realm who have explicitly requested\n" 424 " such via subscriptions. Default subscriptions\n" 425 " and any additional personal subscriptions will\n" 426 " be entered for the user.\n" 427 " net-announced - The user is registered with Zephyr. User\n" 428 " location information is retained by Zephyr and\n" 429 " made available to any authenticated user who\n" 430 " requests such. Login and logout announcements\n" 431 " will be sent to any user has requested such. \n" 432 " Default subscriptions and any additional\n" 433 " personal subscriptions will be entered for the\n" 434 " user.\n", 435 NULL, owl_variable_exposure_set, NULL /* use default for get */ ), 436 372 437 /* This MUST be last... */ 373 438 { NULL, 0, NULL, 0, NULL, NULL, NULL, NULL, … … 470 535 } 471 536 537 int owl_variable_default_exposure_set(owl_variable *v, const void *newval) 538 { 539 return owl_zephyr_set_default_exposure(newval); 540 } 541 542 const void *owl_variable_default_exposure_get(const owl_variable *v) 543 { 544 return owl_zephyr_get_default_exposure(); 545 } 546 547 int owl_variable_exposure_set(owl_variable *v, const void *newval) 548 { 549 int ret = owl_zephyr_set_exposure(newval); 550 if (ret != 0) 551 return ret; 552 return owl_variable_string_set_default(v, owl_zephyr_normalize_exposure(newval)); 553 } 472 554 473 555 /**************************************************************************/ … … 477 559 int owl_variable_dict_setup(owl_vardict *vd) { 478 560 owl_variable *var, *cur; 479 if (owl_dict_create(vd)) return(-1);561 owl_dict_create(vd); 480 562 for (var = variables_to_init; var->name != NULL; var++) { 481 563 cur = g_new(owl_variable, 1); … … 559 641 560 642 void owl_variable_update(owl_variable *var, const char *summary, const char *desc) { 561 if(var->summary)g_free(var->summary);643 g_free(var->summary); 562 644 var->summary = g_strdup(summary); 563 if(var->description)g_free(var->description);645 g_free(var->description); 564 646 var->description = g_strdup(desc); 565 647 } … … 569 651 if(old) { 570 652 owl_variable_update(old, summ, desc); 571 if(old->pval_default)g_free(old->pval_default);653 g_free(old->pval_default); 572 654 old->pval_default = g_strdup(initval); 573 655 } else { … … 688 770 } 689 771 if (msg && v->get_tostring_fn) { 690 tostring = v->get_tostring_fn(v, v-> val);772 tostring = v->get_tostring_fn(v, v->get_fn(v)); 691 773 owl_function_makemsg("%s = '%s'", name, tostring); 692 774 g_free(tostring); … … 726 808 v = owl_dict_find_element(d, name); 727 809 if (v == NULL || !v->get_tostring_fn) return NULL; 728 return v->get_tostring_fn(v, v-> val);810 return v->get_tostring_fn(v, v->get_fn(v)); 729 811 } 730 812 … … 862 944 void owl_variable_delete_default(owl_variable *v) 863 945 { 864 if (v->val)g_free(v->val);946 g_free(v->val); 865 947 } 866 948 … … 994 1076 if (!v->validate_fn(v, newval)) return(-1); 995 1077 } 996 if (v->val)g_free(v->val);1078 g_free(v->val); 997 1079 v->val = g_strdup(newval); 998 1080 return(0); -
view.c
rd4927a7 r3b8a563 160 160 { 161 161 owl_list_cleanup(&v->ml.list, NULL); 162 if (v->name)g_free(v->name);162 g_free(v->name); 163 163 } -
viewwin.c
r237d02c r4fd211f 150 150 151 151 if (!owl_viewwin_search(v, owl_global_get_search_re(&g), consider_current, direction)) 152 owl_function_ error("No more matches");152 owl_function_makemsg("No more matches"); 153 153 return NULL; 154 154 } … … 172 172 if (!owl_viewwin_search(data->v, owl_global_get_search_re(&g), 173 173 consider_current, data->direction)) 174 owl_function_ error("No matches");174 owl_function_makemsg("No matches"); 175 175 } 176 176 -
zcrypt.c
r1dd285b r3b8a563 476 476 477 477 for(i = 0; i < MAX_SEARCH; i++) { 478 if(varname[i] != NULL) { 479 g_free(varname[i]); 480 } 481 } 482 483 if(filename != NULL) { 484 g_free(filename); 485 } 478 g_free(varname[i]); 479 } 480 481 g_free(filename); 486 482 487 483 return keyfile; … … 773 769 err = call_filter("gpg", argv, in, &out, &status); 774 770 if(err || status) { 775 if(out)g_free(out);771 g_free(out); 776 772 return FALSE; 777 773 } … … 856 852 err = call_filter("gpg", argv, in, &out, &status); 857 853 if(err || status) { 858 if(out)g_free(out);854 g_free(out); 859 855 return FALSE; 860 856 } -
zwrite.c
r3f52e14 r3b8a563 185 185 void owl_zwrite_set_message_raw(owl_zwrite *z, const char *msg) 186 186 { 187 if (z->message)g_free(z->message);187 g_free(z->message); 188 188 z->message = owl_validate_utf8(msg); 189 189 } … … 195 195 char *tmp = NULL, *tmp2; 196 196 197 if (z->message)g_free(z->message);197 g_free(z->message); 198 198 199 199 j=owl_list_get_size(&(z->recips)); … … 289 289 void owl_zwrite_set_opcode(owl_zwrite *z, const char *opcode) 290 290 { 291 if (z->opcode)g_free(z->opcode);291 g_free(z->opcode); 292 292 z->opcode=owl_validate_utf8(opcode); 293 293 } … … 306 306 void owl_zwrite_set_zsig(owl_zwrite *z, const char *zsig) 307 307 { 308 if(z->zsig)g_free(z->zsig);308 g_free(z->zsig); 309 309 z->zsig = g_strdup(zsig); 310 310 } … … 353 353 { 354 354 owl_list_cleanup(&(z->recips), &g_free); 355 if (z->cmd)g_free(z->cmd);356 if (z->zwriteline)g_free(z->zwriteline);357 if (z->class)g_free(z->class);358 if (z->inst)g_free(z->inst);359 if (z->opcode)g_free(z->opcode);360 if (z->realm)g_free(z->realm);361 if (z->message)g_free(z->message);362 if (z->zsig)g_free(z->zsig);355 g_free(z->cmd); 356 g_free(z->zwriteline); 357 g_free(z->class); 358 g_free(z->inst); 359 g_free(z->opcode); 360 g_free(z->realm); 361 g_free(z->message); 362 g_free(z->zsig); 363 363 } 364 364
Note: See TracChangeset
for help on using the changeset viewer.