[1cfcab7] | 1 | /* Copyright (c) 2006-2010 The BarnOwl Developers. All rights reserved. |
---|
[81001c0] | 2 | * Copyright (c) 2004 James Kretchmar. All rights reserved. |
---|
[5ca5f8e] | 3 | * |
---|
[81001c0] | 4 | * This program is free software. You can redistribute it and/or |
---|
| 5 | * modify under the terms of the Sleepycat License. See the COPYING |
---|
| 6 | * file included with the distribution for more information. |
---|
[5ca5f8e] | 7 | */ |
---|
| 8 | |
---|
[06adc25] | 9 | #ifndef INC_BARNOWL_OWL_H |
---|
| 10 | #define INC_BARNOWL_OWL_H |
---|
[7d4fbcd] | 11 | |
---|
[691d012] | 12 | #include "config.h" |
---|
| 13 | |
---|
[75b0adb] | 14 | #ifdef HAVE_STDBOOL_H |
---|
[f8074e9] | 15 | #include <stdbool.h> |
---|
[75b0adb] | 16 | #else |
---|
| 17 | #ifndef HAVE__BOOL |
---|
| 18 | #define _Bool signed char |
---|
| 19 | #endif |
---|
| 20 | #define bool _Bool |
---|
| 21 | #define false 0 |
---|
| 22 | #define true 1 |
---|
| 23 | #define __bool_true_false_are_defined 1 |
---|
| 24 | #endif /* HAVE_STDBOOL_H */ |
---|
| 25 | |
---|
[1bdffcb] | 26 | #ifndef OWL_PERL |
---|
| 27 | #include <curses.h> |
---|
[be1ae91] | 28 | #include <panel.h> |
---|
[1bdffcb] | 29 | #endif |
---|
[7d4fbcd] | 30 | #include <sys/param.h> |
---|
| 31 | #include <EXTERN.h> |
---|
| 32 | #include <netdb.h> |
---|
| 33 | #include <regex.h> |
---|
[d09e5a1] | 34 | #include <time.h> |
---|
[c9e72d1] | 35 | #include <signal.h> |
---|
[8232149] | 36 | #include <termios.h> |
---|
[731dd1e] | 37 | #include "libfaim/aim.h" |
---|
[dd24b6a] | 38 | #include <wchar.h> |
---|
[34509d5] | 39 | #include "glib.h" |
---|
[be0a79f] | 40 | #ifdef HAVE_LIBZEPHYR |
---|
[373b7e7] | 41 | #include <zephyr/zephyr.h> |
---|
[be0a79f] | 42 | #endif |
---|
[e6449bc] | 43 | #ifdef HAVE_COM_ERR_H |
---|
| 44 | #include <com_err.h> |
---|
| 45 | #endif |
---|
| 46 | |
---|
[6922edd] | 47 | /* Perl and curses don't play nice. */ |
---|
| 48 | #ifdef OWL_PERL |
---|
| 49 | typedef void WINDOW; |
---|
[be1ae91] | 50 | typedef void PANEL; |
---|
[18e28a4] | 51 | /* logout is defined in FreeBSD. */ |
---|
| 52 | #define logout logout_ |
---|
[88dc766] | 53 | #define HAS_BOOL |
---|
[6922edd] | 54 | #include <perl.h> |
---|
[120291c] | 55 | #include "owl_perl.h" |
---|
[18e28a4] | 56 | #undef logout |
---|
[6922edd] | 57 | #include "XSUB.h" |
---|
| 58 | #else |
---|
| 59 | typedef void SV; |
---|
[68c572a] | 60 | typedef void AV; |
---|
| 61 | typedef void HV; |
---|
[6922edd] | 62 | #endif |
---|
| 63 | |
---|
[e96b4ce] | 64 | #include "window.h" |
---|
| 65 | |
---|
[8df704f] | 66 | #ifdef GIT_VERSION |
---|
| 67 | #define stringify(x) __stringify(x) |
---|
| 68 | #define __stringify(x) #x |
---|
| 69 | #define OWL_VERSION_STRING stringify(GIT_VERSION) |
---|
| 70 | #else |
---|
[37f27bc] | 71 | #define OWL_VERSION_STRING PACKAGE_VERSION |
---|
[8df704f] | 72 | #endif |
---|
[2a2bb60] | 73 | |
---|
| 74 | /* Feature that is being tested to redirect stderr through a pipe. |
---|
| 75 | * There may still be some portability problems with this. */ |
---|
| 76 | #define OWL_STDERR_REDIR 1 |
---|
[7d4fbcd] | 77 | |
---|
| 78 | #define OWL_DEBUG 0 |
---|
[26ad412] | 79 | #define OWL_DEBUG_FILE "/var/tmp/barnowl-debug" |
---|
[7d4fbcd] | 80 | |
---|
[bd3f232] | 81 | #define OWL_CONFIG_DIR "/.owl" /* this is relative to the user's home directory */ |
---|
[38cf544c] | 82 | #define OWL_STARTUP_FILE "/.owl/startup" /* this is relative to the user's home directory */ |
---|
| 83 | |
---|
[7d4fbcd] | 84 | #define OWL_FMTEXT_ATTR_NONE 0 |
---|
| 85 | #define OWL_FMTEXT_ATTR_BOLD 1 |
---|
| 86 | #define OWL_FMTEXT_ATTR_REVERSE 2 |
---|
| 87 | #define OWL_FMTEXT_ATTR_UNDERLINE 4 |
---|
| 88 | |
---|
[9866c3a] | 89 | #define OWL_FMTEXT_UC_BASE 0x100000 /* Unicode Plane 16 - Supplementary Private Use Area-B*/ |
---|
| 90 | #define OWL_FMTEXT_UC_ATTR ( OWL_FMTEXT_UC_BASE | 0x800 ) |
---|
| 91 | #define OWL_FMTEXT_UC_ATTR_MASK 0x7 |
---|
| 92 | #define OWL_FMTEXT_UC_COLOR_BASE ( OWL_FMTEXT_UC_BASE | 0x400 ) |
---|
| 93 | #define OWL_FMTEXT_UC_FGCOLOR OWL_FMTEXT_UC_COLOR_BASE |
---|
| 94 | #define OWL_FMTEXT_UC_BGCOLOR ( OWL_FMTEXT_UC_COLOR_BASE | 0x200 ) |
---|
| 95 | #define OWL_FMTEXT_UC_DEFAULT_COLOR 0x100 |
---|
| 96 | #define OWL_FMTEXT_UC_FGDEFAULT ( OWL_FMTEXT_UC_FGCOLOR | OWL_FMTEXT_UC_DEFAULT_COLOR ) |
---|
| 97 | #define OWL_FMTEXT_UC_BGDEFAULT ( OWL_FMTEXT_UC_BGCOLOR | OWL_FMTEXT_UC_DEFAULT_COLOR ) |
---|
| 98 | #define OWL_FMTEXT_UC_COLOR_MASK 0xFF |
---|
| 99 | #define OWL_FMTEXT_UC_ALLCOLOR_MASK ( OWL_FMTEXT_UC_COLOR_MASK | OWL_FMTEXT_UC_DEFAULT_COLOR | 0x200) |
---|
| 100 | #define OWL_FMTEXT_UC_STARTBYTE_UTF8 '\xf4' |
---|
| 101 | |
---|
| 102 | #define OWL_FMTEXT_UTF8_ATTR_NONE "\xf4\x80\xa0\x80" |
---|
| 103 | #define OWL_FMTEXT_UTF8_FGDEFAULT "\xf4\x80\x94\x80" |
---|
[6f6330b] | 104 | #define OWL_FMTEXT_UTF8_BGDEFAULT "\xf4\x80\x9C\x80" |
---|
[9866c3a] | 105 | |
---|
[7d4fbcd] | 106 | #define OWL_COLOR_BLACK 0 |
---|
| 107 | #define OWL_COLOR_RED 1 |
---|
| 108 | #define OWL_COLOR_GREEN 2 |
---|
| 109 | #define OWL_COLOR_YELLOW 3 |
---|
| 110 | #define OWL_COLOR_BLUE 4 |
---|
| 111 | #define OWL_COLOR_MAGENTA 5 |
---|
| 112 | #define OWL_COLOR_CYAN 6 |
---|
| 113 | #define OWL_COLOR_WHITE 7 |
---|
[c2c5c77] | 114 | #define OWL_COLOR_DEFAULT -1 |
---|
[601733d] | 115 | #define OWL_COLOR_INVALID -2 |
---|
[7d4fbcd] | 116 | |
---|
[2b83ad6] | 117 | #define OWL_TAB_WIDTH 8 |
---|
| 118 | |
---|
[7d4fbcd] | 119 | #define OWL_EDITWIN_STYLE_MULTILINE 0 |
---|
| 120 | #define OWL_EDITWIN_STYLE_ONELINE 1 |
---|
| 121 | |
---|
[f4d0975] | 122 | #define OWL_PROTOCOL_ZEPHYR 0 |
---|
| 123 | #define OWL_PROTOCOL_AIM 1 |
---|
| 124 | #define OWL_PROTOCOL_JABBER 2 |
---|
| 125 | #define OWL_PROTOCOL_ICQ 3 |
---|
| 126 | #define OWL_PROTOCOL_YAHOO 4 |
---|
| 127 | #define OWL_PROTOCOL_MSN 5 |
---|
| 128 | |
---|
[4b464a4] | 129 | #define OWL_MESSAGE_DIRECTION_NONE 0 |
---|
| 130 | #define OWL_MESSAGE_DIRECTION_IN 1 |
---|
| 131 | #define OWL_MESSAGE_DIRECTION_OUT 2 |
---|
[7d4fbcd] | 132 | |
---|
[df0138f] | 133 | #define OWL_IO_READ 1 |
---|
| 134 | #define OWL_IO_WRITE 2 |
---|
| 135 | #define OWL_IO_EXCEPT 4 |
---|
[afbf668] | 136 | |
---|
[7d4fbcd] | 137 | #define OWL_DIRECTION_NONE 0 |
---|
| 138 | #define OWL_DIRECTION_DOWNWARDS 1 |
---|
| 139 | #define OWL_DIRECTION_UPWARDS 2 |
---|
| 140 | |
---|
[12c35df] | 141 | #define OWL_LOGGING_DIRECTION_BOTH 0 |
---|
| 142 | #define OWL_LOGGING_DIRECTION_IN 1 |
---|
| 143 | #define OWL_LOGGING_DIRECTION_OUT 2 |
---|
| 144 | |
---|
[88736cb] | 145 | #define OWL_SCROLLMODE_NORMAL 0 |
---|
| 146 | #define OWL_SCROLLMODE_TOP 1 |
---|
| 147 | #define OWL_SCROLLMODE_NEARTOP 2 |
---|
| 148 | #define OWL_SCROLLMODE_CENTER 3 |
---|
| 149 | #define OWL_SCROLLMODE_PAGED 4 |
---|
[aa2f33b3] | 150 | #define OWL_SCROLLMODE_PAGEDCENTER 5 |
---|
| 151 | |
---|
[7d4fbcd] | 152 | #define OWL_TAB 3 /* This *HAS* to be the size of TABSTR below */ |
---|
| 153 | #define OWL_TABSTR " " |
---|
| 154 | #define OWL_MSGTAB 7 |
---|
| 155 | #define OWL_TYPWIN_SIZE 8 |
---|
| 156 | #define OWL_HISTORYSIZE 50 |
---|
| 157 | |
---|
| 158 | /* Indicate current state, as well as what is allowed */ |
---|
| 159 | #define OWL_CTX_ANY 0xffff |
---|
| 160 | /* Only one of these may be active at a time... */ |
---|
| 161 | #define OWL_CTX_MODE_BITS 0x000f |
---|
| 162 | #define OWL_CTX_STARTUP 0x0001 |
---|
| 163 | #define OWL_CTX_READCONFIG 0x0002 |
---|
| 164 | #define OWL_CTX_INTERACTIVE 0x0004 |
---|
| 165 | /* Only one of these may be active at a time... */ |
---|
| 166 | #define OWL_CTX_ACTIVE_BITS 0xfff0 |
---|
| 167 | #define OWL_CTX_POPWIN 0x00f0 |
---|
| 168 | #define OWL_CTX_POPLESS 0x0010 |
---|
| 169 | #define OWL_CTX_RECWIN 0x0f00 |
---|
| 170 | #define OWL_CTX_RECV 0x0100 |
---|
| 171 | #define OWL_CTX_TYPWIN 0xf000 |
---|
[cf83b7a] | 172 | #define OWL_CTX_EDIT 0x7000 |
---|
[7d4fbcd] | 173 | #define OWL_CTX_EDITLINE 0x1000 |
---|
| 174 | #define OWL_CTX_EDITMULTI 0x2000 |
---|
[cf83b7a] | 175 | #define OWL_CTX_EDITRESPONSE 0x4000 |
---|
[7d4fbcd] | 176 | |
---|
| 177 | #define OWL_VARIABLE_OTHER 0 |
---|
| 178 | #define OWL_VARIABLE_INT 1 |
---|
| 179 | #define OWL_VARIABLE_BOOL 2 |
---|
| 180 | #define OWL_VARIABLE_STRING 3 |
---|
| 181 | |
---|
[7ba9e0de] | 182 | #define OWL_OUTPUT_RETURN 0 |
---|
| 183 | #define OWL_OUTPUT_POPUP 1 |
---|
| 184 | #define OWL_OUTPUT_ADMINMSG 2 |
---|
| 185 | |
---|
[7d4fbcd] | 186 | #define OWL_FILTER_MAX_DEPTH 300 |
---|
| 187 | |
---|
[4b464a4] | 188 | #define OWL_KEYMAP_MAXSTACK 20 |
---|
[7d4fbcd] | 189 | |
---|
[4b464a4] | 190 | #define OWL_KEYBINDING_COMMAND 1 /* command string */ |
---|
| 191 | #define OWL_KEYBINDING_FUNCTION 2 /* function taking no args */ |
---|
[7d4fbcd] | 192 | |
---|
[4b464a4] | 193 | #define OWL_DEFAULT_ZAWAYMSG "I'm sorry, but I am currently away from the terminal and am\nnot able to receive your message.\n" |
---|
[4b660cc] | 194 | #define OWL_DEFAULT_AAWAYMSG "I'm sorry, but I am currently away from the terminal and am\nnot able to receive your message.\n" |
---|
[7d4fbcd] | 195 | |
---|
[1c7a4e0] | 196 | #define OWL_CMD_ALIAS_SUMMARY_PREFIX "command alias to: " |
---|
[7d4fbcd] | 197 | |
---|
[e7cc1c3] | 198 | #define OWL_WEBZEPHYR_PRINCIPAL "daemon.webzephyr" |
---|
[1d3e925] | 199 | #define OWL_WEBZEPHYR_CLASS "webzephyr" |
---|
| 200 | #define OWL_WEBZEPHYR_OPCODE "webzephyr" |
---|
[e7cc1c3] | 201 | |
---|
[80e54a7] | 202 | #define OWL_REGEX_QUOTECHARS "+*.?[]^\\${}()" |
---|
[bc08664] | 203 | #define OWL_REGEX_QUOTEWITH "\\" |
---|
| 204 | |
---|
[0435c7d] | 205 | #if defined(HAVE_DES_STRING_TO_KEY) && defined(HAVE_DES_KEY_SCHED) && defined(HAVE_DES_ECB_ENCRYPT) |
---|
[c86a35c] | 206 | #define OWL_ENABLE_ZCRYPT 1 |
---|
[c269e22] | 207 | #endif |
---|
| 208 | |
---|
[62fdd29] | 209 | #define OWL_META(key) ((key)|010000) |
---|
[f87c490] | 210 | /* OWL_CTRL is definied in kepress.c */ |
---|
[7d4fbcd] | 211 | |
---|
| 212 | #define LINE 2048 |
---|
| 213 | |
---|
[712caac] | 214 | #ifdef HAVE_LIBZEPHYR |
---|
[6337cb5] | 215 | /* libzephyr doesn't use const, so we appease the type system with this kludge. |
---|
| 216 | * This just casts const char * to char * in a way that doesn't yield a warning |
---|
| 217 | * from gcc -Wcast-qual. */ |
---|
[712caac] | 218 | static inline char *zstr(const char *str) |
---|
| 219 | { |
---|
[6337cb5] | 220 | union { char *rw; const char *ro; } u; |
---|
| 221 | u.ro = str; |
---|
| 222 | return u.rw; |
---|
[712caac] | 223 | } |
---|
| 224 | #endif |
---|
| 225 | |
---|
[e19eb97] | 226 | /* Convert char *const * into const char *const *. This conversion is safe, |
---|
[c529ac8] | 227 | * and implicit in C++ (conv.qual 4) but for some reason not in C. */ |
---|
[e19eb97] | 228 | static inline const char *const *strs(char *const *pstr) |
---|
[c529ac8] | 229 | { |
---|
[e19eb97] | 230 | return (const char *const *)pstr; |
---|
[c529ac8] | 231 | } |
---|
| 232 | |
---|
[7d4fbcd] | 233 | typedef struct _owl_variable { |
---|
| 234 | char *name; |
---|
| 235 | int type; /* OWL_VARIABLE_* */ |
---|
| 236 | void *pval_default; /* for types other and string */ |
---|
| 237 | int ival_default; /* for types int and bool */ |
---|
| 238 | char *validsettings; /* documentation of valid settings */ |
---|
[aa2f33b3] | 239 | char *summary; /* summary of usage */ |
---|
| 240 | char *description; /* detailed description */ |
---|
[7d4fbcd] | 241 | void *val; /* current value */ |
---|
[64735f0] | 242 | int (*validate_fn)(const struct _owl_variable *v, const void *newval); |
---|
[7d4fbcd] | 243 | /* returns 1 if newval is valid */ |
---|
[e19eb97] | 244 | int (*set_fn)(struct _owl_variable *v, const void *newval); |
---|
[7d4fbcd] | 245 | /* sets the variable to a value |
---|
| 246 | * of the appropriate type. |
---|
| 247 | * unless documented, this |
---|
| 248 | * should make a copy. |
---|
| 249 | * returns 0 on success. */ |
---|
[e19eb97] | 250 | int (*set_fromstring_fn)(struct _owl_variable *v, const char *newval); |
---|
[7d4fbcd] | 251 | /* sets the variable to a value |
---|
| 252 | * of the appropriate type. |
---|
| 253 | * unless documented, this |
---|
| 254 | * should make a copy. |
---|
| 255 | * returns 0 on success. */ |
---|
[64735f0] | 256 | const void *(*get_fn)(const struct _owl_variable *v); |
---|
[7d4fbcd] | 257 | /* returns a reference to the current value. |
---|
| 258 | * WARNING: this approach is hard to make |
---|
| 259 | * thread-safe... */ |
---|
[64735f0] | 260 | int (*get_tostring_fn)(const struct _owl_variable *v, |
---|
[e19eb97] | 261 | char *buf, int bufsize, const void *val); |
---|
[7d4fbcd] | 262 | /* converts val to a string |
---|
| 263 | * and puts into buf */ |
---|
[bbd74a9] | 264 | void (*delete_fn)(struct _owl_variable *v); |
---|
[7d4fbcd] | 265 | /* frees val as needed */ |
---|
| 266 | } owl_variable; |
---|
| 267 | |
---|
[428834d] | 268 | typedef struct _owl_input { |
---|
| 269 | int ch; |
---|
| 270 | gunichar uch; |
---|
| 271 | } owl_input; |
---|
| 272 | |
---|
[7d4fbcd] | 273 | typedef struct _owl_fmtext { |
---|
| 274 | int textlen; |
---|
[a387d12e] | 275 | int bufflen; |
---|
[7d4fbcd] | 276 | char *textbuff; |
---|
[9866c3a] | 277 | char default_attrs; |
---|
| 278 | short default_fgcolor; |
---|
| 279 | short default_bgcolor; |
---|
[7d4fbcd] | 280 | } owl_fmtext; |
---|
| 281 | |
---|
| 282 | typedef struct _owl_list { |
---|
| 283 | int size; |
---|
| 284 | int avail; |
---|
| 285 | void **list; |
---|
| 286 | } owl_list; |
---|
| 287 | |
---|
| 288 | typedef struct _owl_dict_el { |
---|
| 289 | char *k; /* key */ |
---|
| 290 | void *v; /* value */ |
---|
| 291 | } owl_dict_el; |
---|
| 292 | |
---|
| 293 | typedef struct _owl_dict { |
---|
| 294 | int size; |
---|
| 295 | int avail; |
---|
| 296 | owl_dict_el *els; /* invariant: sorted by k */ |
---|
| 297 | } owl_dict; |
---|
| 298 | typedef owl_dict owl_vardict; /* dict of variables */ |
---|
| 299 | typedef owl_dict owl_cmddict; /* dict of commands */ |
---|
| 300 | |
---|
| 301 | typedef struct _owl_context { |
---|
| 302 | int mode; |
---|
| 303 | void *data; /* determined by mode */ |
---|
[a999d9e] | 304 | char *keymap; |
---|
[07b59ea] | 305 | owl_window *cursor; |
---|
[7d4fbcd] | 306 | } owl_context; |
---|
| 307 | |
---|
| 308 | typedef struct _owl_cmd { /* command */ |
---|
| 309 | char *name; |
---|
| 310 | |
---|
| 311 | char *summary; /* one line summary of command */ |
---|
| 312 | char *usage; /* usage synopsis */ |
---|
| 313 | char *description; /* long description of command */ |
---|
| 314 | |
---|
| 315 | int validctx; /* bitmask of valid contexts */ |
---|
| 316 | |
---|
| 317 | /* we should probably have a type here that says which of |
---|
| 318 | * the following is valid, and maybe make the below into a union... */ |
---|
| 319 | |
---|
| 320 | /* Only one of these may be non-NULL ... */ |
---|
| 321 | |
---|
| 322 | char *cmd_aliased_to; /* what this command is aliased to... */ |
---|
| 323 | |
---|
| 324 | /* These don't take any context */ |
---|
[e19eb97] | 325 | char *(*cmd_args_fn)(int argc, const char *const *argv, const char *buff); |
---|
[7d4fbcd] | 326 | /* takes argv and the full command as buff. |
---|
| 327 | * caller must free return value if !NULL */ |
---|
| 328 | void (*cmd_v_fn)(void); /* takes no args */ |
---|
| 329 | void (*cmd_i_fn)(int i); /* takes an int as an arg */ |
---|
| 330 | |
---|
| 331 | /* The following also take the active context if it's valid */ |
---|
[e19eb97] | 332 | char *(*cmd_ctxargs_fn)(void *ctx, int argc, const char *const *argv, const char *buff); |
---|
[7d4fbcd] | 333 | /* takes argv and the full command as buff. |
---|
| 334 | * caller must free return value if !NULL */ |
---|
| 335 | void (*cmd_ctxv_fn)(void *ctx); /* takes no args */ |
---|
| 336 | void (*cmd_ctxi_fn)(void *ctx, int i); /* takes an int as an arg */ |
---|
[6922edd] | 337 | SV *cmd_perl; /* Perl closure that takes a list of args */ |
---|
[7d4fbcd] | 338 | } owl_cmd; |
---|
| 339 | |
---|
| 340 | |
---|
| 341 | typedef struct _owl_zwrite { |
---|
[987cf3f] | 342 | char *cmd; |
---|
[24ccc01] | 343 | char *zwriteline; |
---|
[ce7db4d] | 344 | char *class; |
---|
| 345 | char *inst; |
---|
| 346 | char *realm; |
---|
| 347 | char *opcode; |
---|
[56330ff] | 348 | char *zsig; |
---|
[ce7db4d] | 349 | char *message; |
---|
[7d4fbcd] | 350 | owl_list recips; |
---|
| 351 | int cc; |
---|
| 352 | int noping; |
---|
| 353 | } owl_zwrite; |
---|
| 354 | |
---|
[d0d65df] | 355 | typedef struct _owl_pair { |
---|
[e19eb97] | 356 | const char *key; |
---|
[de1c8a5] | 357 | char *value; |
---|
[d0d65df] | 358 | } owl_pair; |
---|
| 359 | |
---|
[a387d12e] | 360 | struct _owl_fmtext_cache; |
---|
| 361 | |
---|
[7d4fbcd] | 362 | typedef struct _owl_message { |
---|
| 363 | int id; |
---|
[4b464a4] | 364 | int direction; |
---|
[be0a79f] | 365 | #ifdef HAVE_LIBZEPHYR |
---|
[7d4fbcd] | 366 | ZNotice_t notice; |
---|
[be0a79f] | 367 | #endif |
---|
[a387d12e] | 368 | struct _owl_fmtext_cache * fmtext; |
---|
[7d4fbcd] | 369 | int delete; |
---|
[e19eb97] | 370 | const char *hostname; |
---|
[65ad073] | 371 | owl_list attributes; /* this is a list of pairs */ |
---|
[25dd31a] | 372 | char *timestr; |
---|
| 373 | time_t time; |
---|
[7d4fbcd] | 374 | } owl_message; |
---|
| 375 | |
---|
[a387d12e] | 376 | #define OWL_FMTEXT_CACHE_SIZE 1000 |
---|
| 377 | /* We cache the saved fmtexts for the last bunch of messages we |
---|
| 378 | rendered */ |
---|
| 379 | typedef struct _owl_fmtext_cache { |
---|
| 380 | owl_message * message; |
---|
| 381 | owl_fmtext fmtext; |
---|
| 382 | } owl_fmtext_cache; |
---|
| 383 | |
---|
[bd3f232] | 384 | typedef struct _owl_style { |
---|
| 385 | char *name; |
---|
[120291c] | 386 | SV *perlobj; |
---|
[bd3f232] | 387 | } owl_style; |
---|
| 388 | |
---|
[7d4fbcd] | 389 | typedef struct _owl_mainwin { |
---|
| 390 | int curtruncated; |
---|
[f2e36b5] | 391 | int lasttruncated; |
---|
[7d4fbcd] | 392 | int lastdisplayed; |
---|
[40d1eef] | 393 | owl_window *window; |
---|
[7d4fbcd] | 394 | } owl_mainwin; |
---|
| 395 | |
---|
| 396 | typedef struct _owl_viewwin { |
---|
| 397 | owl_fmtext fmtext; |
---|
| 398 | int textlines; |
---|
| 399 | int topline; |
---|
| 400 | int rightshift; |
---|
[68f63a2] | 401 | owl_window *window; |
---|
[7a6e6c7] | 402 | gulong sig_redraw_id; |
---|
[afbf668] | 403 | void (*onclose_hook) (struct _owl_viewwin *vwin, void *data); |
---|
| 404 | void *onclose_hook_data; |
---|
[7d4fbcd] | 405 | } owl_viewwin; |
---|
| 406 | |
---|
| 407 | typedef struct _owl_popwin { |
---|
[68f63a2] | 408 | owl_window *border; |
---|
| 409 | owl_window *content; |
---|
[7d4fbcd] | 410 | int active; |
---|
| 411 | } owl_popwin; |
---|
[d70f45f] | 412 | |
---|
| 413 | typedef struct _owl_msgwin { |
---|
| 414 | char *msg; |
---|
| 415 | owl_window *window; |
---|
| 416 | gulong redraw_id; |
---|
| 417 | } owl_msgwin; |
---|
[7d4fbcd] | 418 | |
---|
| 419 | typedef struct _owl_messagelist { |
---|
| 420 | owl_list list; |
---|
| 421 | } owl_messagelist; |
---|
| 422 | |
---|
| 423 | typedef struct _owl_regex { |
---|
| 424 | int negate; |
---|
| 425 | char *string; |
---|
| 426 | regex_t re; |
---|
| 427 | } owl_regex; |
---|
| 428 | |
---|
| 429 | typedef struct _owl_filterelement { |
---|
[bd65108] | 430 | int (*match_message)(const struct _owl_filterelement *fe, const owl_message *m); |
---|
[cb769bb] | 431 | /* Append a string representation of the filterelement onto buf*/ |
---|
[bd65108] | 432 | void (*print_elt)(const struct _owl_filterelement *fe, GString *buf); |
---|
[cb769bb] | 433 | /* Operands for and,or,not*/ |
---|
| 434 | struct _owl_filterelement *left, *right; |
---|
| 435 | /* For regex filters*/ |
---|
[7d4fbcd] | 436 | owl_regex re; |
---|
[cb769bb] | 437 | /* Used by regexes, filter references, and perl */ |
---|
| 438 | char *field; |
---|
[7d4fbcd] | 439 | } owl_filterelement; |
---|
| 440 | |
---|
| 441 | typedef struct _owl_filter { |
---|
| 442 | char *name; |
---|
[cb769bb] | 443 | owl_filterelement * root; |
---|
[8fa9562] | 444 | int fgcolor; |
---|
| 445 | int bgcolor; |
---|
[7d4fbcd] | 446 | } owl_filter; |
---|
| 447 | |
---|
| 448 | typedef struct _owl_view { |
---|
[c3ab155] | 449 | char *name; |
---|
[7d4fbcd] | 450 | owl_filter *filter; |
---|
| 451 | owl_messagelist ml; |
---|
[1fdab04] | 452 | const owl_style *style; |
---|
[c3a47c9] | 453 | int cachedmsgid; |
---|
[7d4fbcd] | 454 | } owl_view; |
---|
| 455 | |
---|
| 456 | typedef struct _owl_history { |
---|
| 457 | owl_list hist; |
---|
| 458 | int cur; |
---|
| 459 | int touched; |
---|
| 460 | int partial; |
---|
[12c35df] | 461 | int repeats; |
---|
[7d4fbcd] | 462 | } owl_history; |
---|
| 463 | |
---|
[a556caa] | 464 | typedef struct _owl_editwin owl_editwin; |
---|
[a88f35a] | 465 | typedef struct _owl_editwin_excursion owl_editwin_excursion; |
---|
[10b866d] | 466 | |
---|
[d2a4534] | 467 | typedef struct _owl_mainpanel { |
---|
| 468 | owl_window *panel; |
---|
| 469 | owl_window *typwin; |
---|
| 470 | owl_window *sepwin; |
---|
| 471 | owl_window *msgwin; |
---|
| 472 | owl_window *recwin; |
---|
| 473 | int recwinlines; |
---|
| 474 | } owl_mainpanel; |
---|
| 475 | |
---|
[7d4fbcd] | 476 | typedef struct _owl_keybinding { |
---|
[e1b136bf] | 477 | int *keys; /* keypress stack */ |
---|
| 478 | int len; /* length of stack */ |
---|
[7d4fbcd] | 479 | int type; /* command or function? */ |
---|
| 480 | char *desc; /* description (or "*user*") */ |
---|
| 481 | char *command; /* command, if of type command */ |
---|
| 482 | void (*function_fn)(void); /* function ptr, if of type function */ |
---|
| 483 | } owl_keybinding; |
---|
| 484 | |
---|
| 485 | typedef struct _owl_keymap { |
---|
| 486 | char *name; /* name of keymap */ |
---|
| 487 | char *desc; /* description */ |
---|
| 488 | owl_list bindings; /* key bindings */ |
---|
[44cc9ab] | 489 | const struct _owl_keymap *parent; /* parent */ |
---|
[428834d] | 490 | void (*default_fn)(owl_input j); /* default action (takes a keypress) */ |
---|
| 491 | void (*prealways_fn)(owl_input j); /* always called before a keypress is received */ |
---|
| 492 | void (*postalways_fn)(owl_input j); /* always called after keypress is processed */ |
---|
[7d4fbcd] | 493 | } owl_keymap; |
---|
| 494 | |
---|
| 495 | typedef struct _owl_keyhandler { |
---|
| 496 | owl_dict keymaps; /* dictionary of keymaps */ |
---|
[afa200a] | 497 | const owl_keymap *active; /* currently active keymap */ |
---|
[7d4fbcd] | 498 | int in_esc; /* escape pressed? */ |
---|
| 499 | int kpstack[OWL_KEYMAP_MAXSTACK+1]; /* current stack of keypresses */ |
---|
| 500 | int kpstackpos; /* location in stack (-1 = none) */ |
---|
| 501 | } owl_keyhandler; |
---|
| 502 | |
---|
[f4d0975] | 503 | typedef struct _owl_buddy { |
---|
| 504 | int proto; |
---|
| 505 | char *name; |
---|
| 506 | int isidle; |
---|
| 507 | int idlesince; |
---|
| 508 | } owl_buddy; |
---|
| 509 | |
---|
[aa5f725] | 510 | typedef struct _owl_buddylist { |
---|
| 511 | owl_list buddies; |
---|
| 512 | } owl_buddylist; |
---|
| 513 | |
---|
[5a95b69] | 514 | typedef struct _owl_zbuddylist { |
---|
| 515 | owl_list zusers; |
---|
| 516 | } owl_zbuddylist; |
---|
| 517 | |
---|
[6a415e9] | 518 | typedef struct _owl_timer { |
---|
[b7bb454] | 519 | time_t time; |
---|
| 520 | int interval; |
---|
| 521 | void (*callback)(struct _owl_timer *, void *); |
---|
[c675b39] | 522 | void (*destroy)(struct _owl_timer *); |
---|
[b7bb454] | 523 | void *data; |
---|
[6a415e9] | 524 | } owl_timer; |
---|
[aa5f725] | 525 | |
---|
[ec6ff52] | 526 | typedef struct _owl_errqueue { |
---|
| 527 | owl_list errlist; |
---|
| 528 | } owl_errqueue; |
---|
| 529 | |
---|
[8fa9562] | 530 | typedef struct _owl_colorpair_mgr { |
---|
[99c7549] | 531 | int next; |
---|
[c2c5c77] | 532 | short **pairs; |
---|
[8fa9562] | 533 | } owl_colorpair_mgr; |
---|
| 534 | |
---|
[df0138f] | 535 | typedef struct _owl_io_dispatch { |
---|
| 536 | int fd; /* FD to watch for dispatch. */ |
---|
| 537 | int mode; |
---|
[1895c29] | 538 | int needs_gc; |
---|
[df0138f] | 539 | void (*callback)(const struct _owl_io_dispatch *, void *); /* C function to dispatch to. */ |
---|
| 540 | void (*destroy)(const struct _owl_io_dispatch *); /* Destructor */ |
---|
[f36cd97] | 541 | void *data; |
---|
[df0138f] | 542 | } owl_io_dispatch; |
---|
[9c7a701] | 543 | |
---|
[4f2166b] | 544 | typedef struct _owl_ps_action { |
---|
| 545 | int needs_gc; |
---|
| 546 | int (*callback)(struct _owl_ps_action *, void *); |
---|
| 547 | void (*destroy)(struct _owl_ps_action *); |
---|
| 548 | void *data; |
---|
| 549 | } owl_ps_action; |
---|
| 550 | |
---|
[40c6657] | 551 | typedef struct _owl_popexec { |
---|
| 552 | int refcount; |
---|
| 553 | owl_viewwin *vwin; |
---|
| 554 | int winactive; |
---|
[0e5afa2] | 555 | pid_t pid; /* or 0 if it has terminated */ |
---|
[18fdd5f9] | 556 | const owl_io_dispatch *dispatch; |
---|
[40c6657] | 557 | } owl_popexec; |
---|
| 558 | |
---|
[f3a9d4d] | 559 | typedef struct _OwlGlobalNotifier OwlGlobalNotifier; |
---|
| 560 | |
---|
[7d4fbcd] | 561 | typedef struct _owl_global { |
---|
| 562 | owl_mainwin mw; |
---|
| 563 | owl_popwin pw; |
---|
[d70f45f] | 564 | owl_msgwin msgwin; |
---|
[10b866d] | 565 | owl_history cmdhist; /* command history */ |
---|
| 566 | owl_history msghist; /* outgoing message history */ |
---|
[7d4fbcd] | 567 | owl_keyhandler kh; |
---|
[129e609] | 568 | owl_dict filters; |
---|
| 569 | GList *filterlist; |
---|
[7d4fbcd] | 570 | owl_list puntlist; |
---|
| 571 | owl_vardict vars; |
---|
| 572 | owl_cmddict cmds; |
---|
[a999d9e] | 573 | GList *context_stack; |
---|
[ec6ff52] | 574 | owl_errqueue errqueue; |
---|
[7d4fbcd] | 575 | int lines, cols; |
---|
[bd783db] | 576 | int curmsg, topmsg; |
---|
[70110286] | 577 | int markedmsgid; /* for finding the marked message when it has moved. */ |
---|
[7d4fbcd] | 578 | int curmsg_vert_offset; |
---|
| 579 | owl_view current_view; |
---|
| 580 | owl_messagelist msglist; |
---|
[0881cdd] | 581 | WINDOW *input_pad; |
---|
[d2a4534] | 582 | owl_mainpanel mainpanel; |
---|
[f6fae8d] | 583 | gulong typwin_erase_id; |
---|
[7d4fbcd] | 584 | int rightshift; |
---|
[7892963] | 585 | volatile sig_atomic_t resizepending; |
---|
[a8938c7] | 586 | char *thishost; |
---|
| 587 | char *homedir; |
---|
[b363d83] | 588 | char *confdir; |
---|
| 589 | char *startupfile; |
---|
[7d4fbcd] | 590 | int direction; |
---|
| 591 | int zaway; |
---|
| 592 | char *cur_zaway_msg; |
---|
| 593 | int haveconfig; |
---|
| 594 | int config_format; |
---|
[1b6b2f3] | 595 | void *buffercbdata; |
---|
[a556caa] | 596 | owl_editwin *tw; |
---|
[7d4fbcd] | 597 | owl_viewwin vw; |
---|
| 598 | void *perl; |
---|
| 599 | int debug; |
---|
[7f792c1] | 600 | time_t starttime; |
---|
| 601 | time_t lastinputtime; |
---|
[a8938c7] | 602 | char *startupargs; |
---|
[7d4fbcd] | 603 | int nextmsgid; |
---|
| 604 | int hascolors; |
---|
| 605 | int colorpairs; |
---|
[8fa9562] | 606 | owl_colorpair_mgr cpmgr; |
---|
[0e5afa2] | 607 | pid_t newmsgproc_pid; |
---|
[41c9a96] | 608 | owl_regex search_re; |
---|
[d09e5a1] | 609 | aim_session_t aimsess; |
---|
[c15bbfb] | 610 | aim_conn_t bosconn; |
---|
[6a415e9] | 611 | owl_timer aim_noop_timer; |
---|
| 612 | owl_timer aim_ignorelogin_timer; |
---|
[bd3f232] | 613 | int aim_loggedin; /* true if currently logged into AIM */ |
---|
[a352335c] | 614 | int aim_doprocessing; /* true if we should process AIM events (like pending login) */ |
---|
[bd3f232] | 615 | char *aim_screenname; /* currently logged in AIM screen name */ |
---|
[81655f8] | 616 | char *aim_screenname_for_filters; /* currently logged in AIM screen name */ |
---|
[bd3f232] | 617 | owl_buddylist buddylist; /* list of logged in AIM buddies */ |
---|
[20aced3] | 618 | GQueue *messagequeue; /* for queueing up aim and other messages */ |
---|
[f1e629d] | 619 | owl_dict styledict; /* global dictionary of available styles */ |
---|
[cf83b7a] | 620 | char *response; /* response to the last question asked */ |
---|
[09489b89] | 621 | int havezephyr; |
---|
| 622 | int haveaim; |
---|
[b7bb454] | 623 | int ignoreaimlogin; |
---|
[7892963] | 624 | volatile sig_atomic_t got_err_signal; /* 1 if we got an unexpected signal */ |
---|
| 625 | volatile siginfo_t err_signal_info; |
---|
[5a95b69] | 626 | owl_zbuddylist zbuddies; |
---|
| 627 | owl_timer zephyr_buddycheck_timer; |
---|
[f25812b] | 628 | GList *zaldlist; |
---|
| 629 | int pseudologin_notify; |
---|
[8232149] | 630 | struct termios startup_tio; |
---|
[df0138f] | 631 | owl_list io_dispatch_list; |
---|
[4f2166b] | 632 | owl_list psa_list; |
---|
[58d1f8a] | 633 | GList *timerlist; |
---|
[b7bb454] | 634 | owl_timer *aim_nop_timer; |
---|
[52a0f14] | 635 | int load_initial_subs; |
---|
[7892963] | 636 | volatile sig_atomic_t interrupted; |
---|
[d12a8c7] | 637 | FILE *debug_file; |
---|
[7d4fbcd] | 638 | } owl_global; |
---|
| 639 | |
---|
| 640 | /* globals */ |
---|
[b2b0773] | 641 | extern owl_global g; |
---|
[7d4fbcd] | 642 | |
---|
| 643 | #include "owl_prototypes.h" |
---|
| 644 | |
---|
| 645 | /* these are missing from the zephyr includes for some reason */ |
---|
[be0a79f] | 646 | #ifdef HAVE_LIBZEPHYR |
---|
[7d4fbcd] | 647 | int ZGetSubscriptions(ZSubscription_t *, int *); |
---|
| 648 | int ZGetLocations(ZLocations_t *,int *); |
---|
[be0a79f] | 649 | #endif |
---|
[7d4fbcd] | 650 | |
---|
[06adc25] | 651 | #endif /* INC_BARNOWL_OWL_H */ |
---|