source: owl.h @ 61abb18

barnowl_perlaim
Last change on this file since 61abb18 was 61abb18, checked in by Geoffrey Thomas <geofft@mit.edu>, 16 years ago
Now it compiles. Highly likely to leak or crash, although it seems to work for me...
  • Property mode set to 100644
File size: 16.6 KB
Line 
1/*  Copyright (c) 2006-2008 The BarnOwl Developers. All rights reserved.
2 *  Copyright (c) 2004 James Kretchmar. All rights reserved.
3 *
4 *  This program is free software. You can redistribute it and/or
5 *  modify under the terms of the Sleepycat License. See the COPYING
6 *  file included with the distribution for more information.
7 */
8
9#ifndef INC_OWL_H
10#define INC_OWL_H
11
12#ifndef OWL_PERL
13#include <curses.h>
14#endif
15#include <sys/param.h>
16#include <EXTERN.h>
17#include <netdb.h>
18#include <regex.h>
19#include <time.h>
20#include <signal.h>
21#include <termios.h>
22#include <wchar.h>
23#include <unistd.h>
24#include <string.h>
25#include <errno.h>
26#include "config.h"
27#include "glib.h"
28#ifdef HAVE_LIBZEPHYR
29#include <zephyr/zephyr.h>
30#endif
31#ifdef HAVE_COM_ERR_H
32#include <com_err.h>
33#endif
34
35/* Perl and curses don't play nice. */
36#ifdef OWL_PERL
37typedef void WINDOW;
38/* logout is defined in FreeBSD. */
39#define logout logout_
40#include <perl.h>
41#include "owl_perl.h"
42#undef logout
43#include "XSUB.h"
44#else
45typedef void SV;
46#endif
47
48static const char owl_h_fileIdent[] = "$Id$";
49
50#define BARNOWL_STRINGIFY(x) _STRINGIFY(x)
51#define _STRINGIFY(x) #x
52
53#ifndef OWL_SVN_REVNO
54#define OWL_SVN_REVNO ????
55#endif
56
57#ifndef OWL_VERSION_STRING
58#define OWL_VERSION_STRING "1.0.1-perlaim-r" BARNOWL_STRINGIFY(OWL_SVN_REVNO)
59#endif
60
61/* Feature that is being tested to redirect stderr through a pipe.
62 * There may still be some portability problems with this. */
63#define OWL_STDERR_REDIR 1
64
65#define OWL_DEBUG 0
66#define OWL_DEBUG_FILE "/var/tmp/owldebug"
67
68#define OWL_CONFIG_DIR "/.owl"             /* this is relative to the user's home directory */
69#define OWL_STARTUP_FILE "/.owl/startup"   /* this is relative to the user's home directory */
70
71#define OWL_FMTEXT_ATTR_NONE      0
72#define OWL_FMTEXT_ATTR_BOLD      1
73#define OWL_FMTEXT_ATTR_REVERSE   2
74#define OWL_FMTEXT_ATTR_UNDERLINE 4
75
76#define OWL_FMTEXT_UC_BASE 0x100000 /* Unicode Plane 16 - Supplementary Private Use Area-B*/
77#define OWL_FMTEXT_UC_ATTR ( OWL_FMTEXT_UC_BASE | 0x800 )
78#define OWL_FMTEXT_UC_ATTR_MASK 0x7
79#define OWL_FMTEXT_UC_COLOR_BASE ( OWL_FMTEXT_UC_BASE | 0x400 )
80#define OWL_FMTEXT_UC_FGCOLOR OWL_FMTEXT_UC_COLOR_BASE
81#define OWL_FMTEXT_UC_BGCOLOR ( OWL_FMTEXT_UC_COLOR_BASE | 0x200 )
82#define OWL_FMTEXT_UC_DEFAULT_COLOR 0x100
83#define OWL_FMTEXT_UC_FGDEFAULT ( OWL_FMTEXT_UC_FGCOLOR | OWL_FMTEXT_UC_DEFAULT_COLOR )
84#define OWL_FMTEXT_UC_BGDEFAULT ( OWL_FMTEXT_UC_BGCOLOR | OWL_FMTEXT_UC_DEFAULT_COLOR )
85#define OWL_FMTEXT_UC_COLOR_MASK 0xFF
86#define OWL_FMTEXT_UC_ALLCOLOR_MASK ( OWL_FMTEXT_UC_COLOR_MASK | OWL_FMTEXT_UC_DEFAULT_COLOR | 0x200)
87#define OWL_FMTEXT_UC_STARTBYTE_UTF8 '\xf4'
88
89#define OWL_FMTEXT_UTF8_ATTR_NONE "\xf4\x80\xa0\x80"
90#define OWL_FMTEXT_UTF8_FGDEFAULT "\xf4\x80\x94\x80"
91#define OWL_FMTEXT_UTF8_BGDEFAULT "\xf4\x80\x9C\x80"
92
93#define OWL_COLOR_BLACK     0
94#define OWL_COLOR_RED       1
95#define OWL_COLOR_GREEN     2
96#define OWL_COLOR_YELLOW    3
97#define OWL_COLOR_BLUE      4
98#define OWL_COLOR_MAGENTA   5
99#define OWL_COLOR_CYAN      6
100#define OWL_COLOR_WHITE     7
101#define OWL_COLOR_DEFAULT   -1
102
103#define OWL_EDITWIN_STYLE_MULTILINE 0
104#define OWL_EDITWIN_STYLE_ONELINE   1
105
106#define OWL_PROTOCOL_ZEPHYR         0
107#define OWL_PROTOCOL_AIM            1
108#define OWL_PROTOCOL_JABBER         2
109#define OWL_PROTOCOL_ICQ            3
110#define OWL_PROTOCOL_YAHOO          4
111#define OWL_PROTOCOL_MSN            5
112
113#define OWL_MESSAGE_DIRECTION_NONE  0
114#define OWL_MESSAGE_DIRECTION_IN    1
115#define OWL_MESSAGE_DIRECTION_OUT   2
116
117#define OWL_MUX_READ   1
118#define OWL_MUX_WRITE  2
119#define OWL_MUX_EXCEPT 4
120
121#define OWL_DIRECTION_NONE      0
122#define OWL_DIRECTION_DOWNWARDS 1
123#define OWL_DIRECTION_UPWARDS   2
124
125#define OWL_LOGGING_DIRECTION_BOTH 0
126#define OWL_LOGGING_DIRECTION_IN   1
127#define OWL_LOGGING_DIRECTION_OUT  2
128
129#define OWL_SCROLLMODE_NORMAL      0
130#define OWL_SCROLLMODE_TOP         1
131#define OWL_SCROLLMODE_NEARTOP     2
132#define OWL_SCROLLMODE_CENTER      3
133#define OWL_SCROLLMODE_PAGED       4
134#define OWL_SCROLLMODE_PAGEDCENTER 5
135
136#define OWL_TAB               3  /* This *HAS* to be the size of TABSTR below */
137#define OWL_TABSTR        "   "
138#define OWL_MSGTAB            7
139#define OWL_TYPWIN_SIZE       8
140#define OWL_HISTORYSIZE       50
141
142/* Indicate current state, as well as what is allowed */
143#define OWL_CTX_ANY          0xffff
144/* Only one of these may be active at a time... */
145#define OWL_CTX_MODE_BITS    0x000f
146#define OWL_CTX_STARTUP      0x0001
147#define OWL_CTX_READCONFIG   0x0002
148#define OWL_CTX_INTERACTIVE  0x0004
149/* Only one of these may be active at a time... */
150#define OWL_CTX_ACTIVE_BITS  0xfff0
151#define OWL_CTX_POPWIN       0x00f0
152#define OWL_CTX_POPLESS      0x0010
153#define OWL_CTX_RECWIN       0x0f00
154#define OWL_CTX_RECV         0x0100
155#define OWL_CTX_TYPWIN       0xf000
156#define OWL_CTX_EDIT         0x7000
157#define OWL_CTX_EDITLINE     0x1000
158#define OWL_CTX_EDITMULTI    0x2000
159#define OWL_CTX_EDITRESPONSE 0x4000
160
161#define OWL_USERCLUE_NONE       0
162#define OWL_USERCLUE_CLASSES    1
163#define OWL_USERCLUE_FOOBAR     2
164#define OWL_USERCLUE_BAZ        4
165
166#define OWL_WEBBROWSER_NONE     0
167#define OWL_WEBBROWSER_NETSCAPE 1
168#define OWL_WEBBROWSER_GALEON   2
169#define OWL_WEBBROWSER_OPERA    3
170
171#define OWL_VARIABLE_OTHER      0
172#define OWL_VARIABLE_INT        1
173#define OWL_VARIABLE_BOOL       2
174#define OWL_VARIABLE_STRING     3
175
176#define OWL_FILTER_MAX_DEPTH    300
177
178#define OWL_KEYMAP_MAXSTACK     20
179
180#define OWL_KEYBINDING_COMMAND  1   /* command string */
181#define OWL_KEYBINDING_FUNCTION 2   /* function taking no args */
182
183#define OWL_DEFAULT_ZAWAYMSG    "I'm sorry, but I am currently away from the terminal and am\nnot able to receive your message.\n"
184#define OWL_DEFAULT_AAWAYMSG    "I'm sorry, but I am currently away from the terminal and am\nnot able to receive your message.\n"
185
186#define OWL_INCLUDE_REG_TESTS   1  /* whether to build in regression tests */
187
188#define OWL_CMD_ALIAS_SUMMARY_PREFIX "command alias to: "
189
190#define OWL_WEBZEPHYR_PRINCIPAL "daemon.webzephyr"
191#define OWL_WEBZEPHYR_CLASS     "webzephyr"
192#define OWL_WEBZEPHYR_OPCODE    "webzephyr"
193
194#define OWL_REGEX_QUOTECHARS    "+*.?[]^\\${}()"
195#define OWL_REGEX_QUOTEWITH     "\\"
196
197#if defined(HAVE_DES_STRING_TO_KEY) && defined(HAVE_DES_KEY_SCHED) && defined(HAVE_DES_ECB_ENCRYPT)
198#define OWL_ENABLE_ZCRYPT 1
199#endif
200
201#define OWL_META(key) ((key)|010000)
202/* OWL_CTRL is definied in kepress.c */
203
204#define LINE 2048
205
206typedef void (*owl_callback_t)(void *cbdata, char *text);
207
208typedef struct _owl_variable {
209  char *name;
210  int   type;  /* OWL_VARIABLE_* */
211  void *pval_default;  /* for types other and string */
212  int   ival_default;  /* for types int and bool     */
213  char *validsettings;          /* documentation of valid settings */
214  char *summary;                /* summary of usage */
215  char *description;            /* detailed description */
216  void *val;                    /* current value */
217  int  (*validate_fn)(struct _owl_variable *v, void *newval);
218                                /* returns 1 if newval is valid */
219  int  (*set_fn)(struct _owl_variable *v, void *newval); 
220                                /* sets the variable to a value
221                                 * of the appropriate type.
222                                 * unless documented, this
223                                 * should make a copy.
224                                 * returns 0 on success. */
225  int  (*set_fromstring_fn)(struct _owl_variable *v, char *newval);
226                                /* sets the variable to a value
227                                 * of the appropriate type.
228                                 * unless documented, this
229                                 * should make a copy.
230                                 * returns 0 on success. */
231  void *(*get_fn)(struct _owl_variable *v);
232                                /* returns a reference to the current value.
233                                 * WARNING:  this approach is hard to make
234                                 * thread-safe... */
235  int  (*get_tostring_fn)(struct _owl_variable *v, 
236                          char *buf, int bufsize, void *val); 
237                                /* converts val to a string
238                                 * and puts into buf */
239  void  (*free_fn)(struct _owl_variable *v);
240                                /* frees val as needed */
241} owl_variable;
242
243typedef struct _owl_input {
244  int ch;
245  gunichar uch;
246} owl_input;
247
248typedef struct _owl_fmtext {
249  int textlen;
250  int bufflen;
251  char *textbuff;
252  char default_attrs;
253  short default_fgcolor;
254  short default_bgcolor;
255} owl_fmtext;
256
257typedef struct _owl_list {
258  int size;
259  int avail;
260  void **list;
261} owl_list;
262
263typedef struct _owl_dict_el {
264  char *k;                      /* key   */
265  void *v;                      /* value */
266} owl_dict_el;
267
268typedef struct _owl_dict {
269  int size;
270  int avail;
271  owl_dict_el *els;             /* invariant: sorted by k */
272} owl_dict;
273typedef owl_dict owl_vardict;   /* dict of variables */
274typedef owl_dict owl_cmddict;   /* dict of commands */
275
276typedef struct _owl_context {
277  int   mode;
278  void *data;           /* determined by mode */
279} owl_context;
280
281typedef struct _owl_cmd {       /* command */
282  char *name;
283
284  char *summary;                /* one line summary of command */
285  char *usage;                  /* usage synopsis */
286  char *description;            /* long description of command */
287
288  int validctx;                 /* bitmask of valid contexts */
289
290  /* we should probably have a type here that says which of
291   * the following is valid, and maybe make the below into a union... */
292
293  /* Only one of these may be non-NULL ... */
294
295  char *cmd_aliased_to;         /* what this command is aliased to... */
296 
297  /* These don't take any context */
298  char *(*cmd_args_fn)(int argc, char **argv, char *buff); 
299                                /* takes argv and the full command as buff.
300                                 * caller must free return value if !NULL */
301  void (*cmd_v_fn)(void);       /* takes no args */
302  void (*cmd_i_fn)(int i);      /* takes an int as an arg */
303
304  /* The following also take the active context if it's valid */
305  char *(*cmd_ctxargs_fn)(void *ctx, int argc, char **argv, char *buff); 
306                                /* takes argv and the full command as buff.
307                                 * caller must free return value if !NULL */
308  void (*cmd_ctxv_fn)(void *ctx);               /* takes no args */
309  void (*cmd_ctxi_fn)(void *ctx, int i);        /* takes an int as an arg */
310  SV *cmd_perl;                                /* Perl closure that takes a list of args */
311} owl_cmd;
312
313
314typedef struct _owl_zwrite {
315  char *class;
316  char *inst;
317  char *realm;
318  char *opcode;
319  char *zsig;
320  char *message;
321  owl_list recips;
322  int cc;
323  int noping;
324} owl_zwrite;
325
326typedef struct _owl_pair {
327  void *key;
328  void *value;
329} owl_pair;
330
331struct _owl_fmtext_cache;
332
333typedef struct _owl_message {
334  int id;
335  int direction;
336#ifdef HAVE_LIBZEPHYR
337  ZNotice_t notice;
338#endif
339  struct _owl_fmtext_cache * fmtext;
340  int delete;
341  char *hostname;
342  owl_list attributes;            /* this is a list of pairs */
343  char *timestr;
344  time_t time;
345  char *zwriteline;
346} owl_message;
347
348#define OWL_FMTEXT_CACHE_SIZE 1000
349/* We cache the saved fmtexts for the last bunch of messages we
350   rendered */
351typedef struct _owl_fmtext_cache {
352    owl_message * message;
353    owl_fmtext fmtext;
354} owl_fmtext_cache;
355
356typedef struct _owl_style {
357  char *name;
358  SV *perlobj;
359} owl_style;
360
361typedef struct _owl_mainwin {
362  int curtruncated;
363  int lasttruncated;
364  int lastdisplayed;
365} owl_mainwin;
366
367typedef struct _owl_viewwin {
368  owl_fmtext fmtext;
369  int textlines;
370  int topline;
371  int rightshift;
372  int winlines, wincols;
373  WINDOW *curswin;
374  void (*onclose_hook) (struct _owl_viewwin *vwin, void *data);
375  void *onclose_hook_data;
376} owl_viewwin;
377 
378typedef struct _owl_popwin {
379  WINDOW *borderwin;
380  WINDOW *popwin;
381  int lines;
382  int cols;
383  int active;
384  int needsfirstrefresh;
385  void (*handler) (int ch);
386} owl_popwin;
387
388typedef struct _owl_popexec {
389  int refcount;
390  owl_viewwin *vwin;
391  int winactive;
392  int pid;                      /* or 0 if it has terminated */
393  int rfd; 
394} owl_popexec;
395
396typedef struct _owl_messagelist {
397  owl_list list;
398} owl_messagelist;
399
400typedef struct _owl_regex {
401  int negate;
402  char *string;
403  regex_t re;
404} owl_regex;
405
406typedef struct _owl_filterelement {
407  int (*match_message)(struct _owl_filterelement *fe, owl_message *m);
408  /* Append a string representation of the filterelement onto buf*/
409  void (*print_elt)(struct _owl_filterelement *fe, char * buf);
410  /* Operands for and,or,not*/
411  struct _owl_filterelement *left, *right;
412  /* For regex filters*/
413  owl_regex re;
414  /* Used by regexes, filter references, and perl */
415  char *field;
416} owl_filterelement;
417
418typedef struct _owl_filter {
419  char *name;
420  int polarity;
421  owl_filterelement * root;
422  int fgcolor;
423  int bgcolor;
424  int cachedmsgid;  /* cached msgid: should move into view eventually */
425} owl_filter;
426
427typedef struct _owl_view {
428  char *name;
429  owl_filter *filter;
430  owl_messagelist ml;
431  owl_style *style;
432} owl_view;
433
434typedef struct _owl_history {
435  owl_list hist;
436  int cur;
437  int touched;
438  int partial;
439  int repeats;
440} owl_history;
441
442typedef struct _owl_editwin {
443  char *buff;
444  owl_history *hist;
445  int bufflen;
446  int allocated;
447  int buffx, buffy;
448  int topline;
449  int winlines, wincols, fillcol, wrapcol;
450  WINDOW *curswin;
451  int style;
452  int lock;
453  int dotsend;
454  int echochar;
455
456  owl_callback_t callback;
457  void *cbdata;
458} owl_editwin;
459
460typedef struct _owl_mux {
461  int handle;                   /* for referencing this */
462  int active;                   /* has this been deleted? */
463  int fd;                     
464  int eventmask;                /* bitmask of OWL_MUX_* */
465  void (*handler_fn)(int handle, int fd, int eventmask, void *data);
466  void *data;                   /* data reference to pass to callback */
467} owl_mux;
468typedef owl_list owl_muxevents;
469
470typedef struct _owl_keybinding {
471  int  *j;                      /* keypress stack (0-terminated) */ 
472  int   type;                   /* command or function? */
473  char *desc;                   /* description (or "*user*") */
474  char *command;                /* command, if of type command */
475  void (*function_fn)(void);    /* function ptr, if of type function */
476} owl_keybinding;
477
478typedef struct _owl_keymap {
479  char     *name;               /* name of keymap */
480  char     *desc;               /* description */
481  owl_list  bindings;           /* key bindings */
482  struct _owl_keymap *submap;   /* submap */
483  void (*default_fn)(owl_input j);      /* default action (takes a keypress) */
484  void (*prealways_fn)(owl_input  j);   /* always called before a keypress is received */
485  void (*postalways_fn)(owl_input  j);  /* always called after keypress is processed */
486} owl_keymap;
487
488typedef struct _owl_keyhandler {
489  owl_dict  keymaps;            /* dictionary of keymaps */
490  owl_keymap *active;           /* currently active keymap */
491  int       in_esc;             /* escape pressed? */
492  int       kpstack[OWL_KEYMAP_MAXSTACK+1]; /* current stack of keypresses */
493  int       kpstackpos;         /* location in stack (-1 = none) */
494} owl_keyhandler;
495
496typedef struct _owl_buddy {
497  int proto;
498  char *name;
499  int isidle;
500  int idlesince;
501} owl_buddy;
502
503typedef struct _owl_buddylist {
504  owl_list buddies;
505} owl_buddylist;
506
507typedef struct _owl_zbuddylist {
508  owl_list zusers;
509} owl_zbuddylist;
510
511typedef struct _owl_timer {
512  int direction;
513  time_t starttime;
514  int start;
515} owl_timer;
516
517typedef struct _owl_errqueue {
518  owl_list errlist;
519} owl_errqueue;
520
521typedef struct _owl_colorpair_mgr {
522  int next;
523  short **pairs;
524} owl_colorpair_mgr;
525
526typedef struct _owl_obarray {
527  owl_list strings;
528} owl_obarray;
529
530typedef struct _owl_dispatch {
531  int fd;           /* FD to watch for dispatch. */
532  void (*cfunc)();  /* C function to dispatch to. */
533  SV *pfunc;        /* Perl function to dispatch to. */
534} owl_dispatch;
535
536typedef struct _owl_global {
537  owl_mainwin mw;
538  owl_popwin pw;
539  owl_history cmdhist;          /* command history */
540  owl_history msghist;          /* outgoing message history */
541  owl_keyhandler kh;
542  owl_list filterlist;
543  owl_list puntlist;
544  owl_muxevents muxevents;      /* fds to dispatch on */
545  owl_vardict vars;
546  owl_cmddict cmds;
547  owl_context ctx;
548  owl_errqueue errqueue;
549  int lines, cols;
550  int curmsg, topmsg;
551  int curmsg_vert_offset;
552  owl_view current_view;
553  owl_messagelist msglist;
554  WINDOW *recwin, *sepwin, *msgwin, *typwin;
555  int needrefresh;
556  int rightshift;
557  int resizepending;
558  int recwinlines;
559  int typwinactive;
560  char *thishost;
561  char *homedir;
562  char *confdir;
563  char *startupfile;
564  int direction;
565  int zaway;
566  char *cur_zaway_msg;
567  int haveconfig;
568  int config_format;
569  void *buffercbdata;
570  owl_editwin tw;
571  owl_viewwin vw;
572  void *perl;
573  int debug;
574  time_t starttime;
575  time_t lastinputtime;
576  char *startupargs;
577  int userclue;
578  int nextmsgid;
579  int hascolors;
580  int colorpairs;
581  owl_colorpair_mgr cpmgr;
582  int searchactive;
583  int newmsgproc_pid;
584  int malloced, freed;
585  char *searchstring;
586  owl_buddylist buddylist;  /* list of logged in AIM buddies */
587  owl_list messagequeue;    /* for queueing up aim and other messages */
588  owl_dict styledict;       /* global dictionary of available styles */
589  char *response;           /* response to the last question asked */
590  int havezephyr;
591  int got_err_signal;       /* 1 if we got an unexpected signal */
592  siginfo_t err_signal_info;
593  owl_zbuddylist zbuddies;
594  owl_timer zephyr_buddycheck_timer;
595  struct termios startup_tio;
596  owl_obarray obarray;
597  owl_list dispatchlist;
598} owl_global;
599
600/* globals */
601extern owl_global g;
602
603#include "owl_prototypes.h"
604
605/* these are missing from the zephyr includes for some reason */
606#ifdef HAVE_LIBZEPHYR
607int ZGetSubscriptions(ZSubscription_t *, int *);
608int ZGetLocations(ZLocations_t *,int *);
609#endif
610
611#endif /* INC_OWL_H */
Note: See TracBrowser for help on using the repository browser.