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