[7d4fbcd] | 1 | #include <stdio.h> |
---|
| 2 | #include <unistd.h> |
---|
| 3 | #include <stdlib.h> |
---|
| 4 | #include <string.h> |
---|
| 5 | #include <netdb.h> |
---|
| 6 | #include <termios.h> |
---|
| 7 | #include <sys/ioctl.h> |
---|
| 8 | #include <time.h> |
---|
| 9 | #include "owl.h" |
---|
| 10 | |
---|
[571fab7] | 11 | static void _owl_global_init_windows(owl_global *g); |
---|
| 12 | |
---|
[7d4fbcd] | 13 | void owl_global_init(owl_global *g) { |
---|
[ad15610] | 14 | char *cd; |
---|
[8510d5b] | 15 | const char *homedir; |
---|
[7d4fbcd] | 16 | |
---|
[0be3efd] | 17 | g_type_init(); |
---|
[3535a6e] | 18 | g_thread_init(NULL); |
---|
[0be3efd] | 19 | |
---|
[2c79eae] | 20 | owl_select_init(); |
---|
[0be3efd] | 21 | |
---|
[5cc7e5e] | 22 | g->lines=LINES; |
---|
| 23 | g->cols=COLS; |
---|
| 24 | /* We shouldn't need this if we initialize lines and cols before the first |
---|
| 25 | * owl_window_get_screen, but to be safe, we synchronize. */ |
---|
| 26 | owl_window_resize(owl_window_get_screen(), g->lines, g->cols); |
---|
| 27 | |
---|
[a999d9e] | 28 | g->context_stack = NULL; |
---|
[07b59ea] | 29 | owl_global_push_context(g, OWL_CTX_STARTUP, NULL, NULL, NULL); |
---|
[a999d9e] | 30 | |
---|
[7d4fbcd] | 31 | g->curmsg=0; |
---|
| 32 | g->topmsg=0; |
---|
[bd783db] | 33 | g->markedmsgid=-1; |
---|
[a8938c7] | 34 | g->startupargs=NULL; |
---|
[7d4fbcd] | 35 | |
---|
| 36 | owl_variable_dict_setup(&(g->vars)); |
---|
| 37 | |
---|
| 38 | g->rightshift=0; |
---|
| 39 | |
---|
[03ca005] | 40 | g->pw = NULL; |
---|
[9eb38bb] | 41 | g->vw = NULL; |
---|
[38cc669] | 42 | g->tw = NULL; |
---|
[7d4fbcd] | 43 | |
---|
| 44 | owl_keyhandler_init(&g->kh); |
---|
| 45 | owl_keys_setup_keymaps(&g->kh); |
---|
| 46 | |
---|
[129e609] | 47 | owl_dict_create(&(g->filters)); |
---|
| 48 | g->filterlist = NULL; |
---|
[e6d7e4e] | 49 | g->puntlist = g_ptr_array_new(); |
---|
[20aced3] | 50 | g->messagequeue = g_queue_new(); |
---|
[f1e629d] | 51 | owl_dict_create(&(g->styledict)); |
---|
[7d4fbcd] | 52 | g->curmsg_vert_offset=0; |
---|
| 53 | g->resizepending=0; |
---|
| 54 | g->direction=OWL_DIRECTION_DOWNWARDS; |
---|
[8fa9562] | 55 | owl_fmtext_init_colorpair_mgr(&(g->cpmgr)); |
---|
[7d4fbcd] | 56 | g->debug=OWL_DEBUG; |
---|
[41c9a96] | 57 | owl_regex_init(&g->search_re); |
---|
[7d4fbcd] | 58 | g->starttime=time(NULL); /* assumes we call init only a start time */ |
---|
[7f792c1] | 59 | g->lastinputtime=g->starttime; |
---|
[700c712] | 60 | g->newmsgproc_pid=0; |
---|
[61e79a9] | 61 | |
---|
[7d4fbcd] | 62 | owl_global_set_config_format(g, 0); |
---|
| 63 | owl_global_set_no_have_config(g); |
---|
[10b866d] | 64 | owl_history_init(&(g->msghist)); |
---|
| 65 | owl_history_init(&(g->cmdhist)); |
---|
[7d4fbcd] | 66 | g->nextmsgid=0; |
---|
| 67 | |
---|
| 68 | /* Fill in some variables which don't have constant defaults */ |
---|
[8510d5b] | 69 | |
---|
| 70 | /* glib's g_get_home_dir prefers passwd entries to $HOME, so we |
---|
| 71 | * explicitly check getenv first. */ |
---|
| 72 | homedir = getenv("HOME"); |
---|
| 73 | if (!homedir) |
---|
| 74 | homedir = g_get_home_dir(); |
---|
[d4927a7] | 75 | g->homedir = g_strdup(homedir); |
---|
[7d4fbcd] | 76 | |
---|
[b363d83] | 77 | g->confdir = NULL; |
---|
| 78 | g->startupfile = NULL; |
---|
[dde1b4d] | 79 | cd = g_build_filename(g->homedir, OWL_CONFIG_DIR, NULL); |
---|
[b363d83] | 80 | owl_global_set_confdir(g, cd); |
---|
[ddbbcffa] | 81 | g_free(cd); |
---|
[b363d83] | 82 | |
---|
[7d4fbcd] | 83 | owl_messagelist_create(&(g->msglist)); |
---|
[571fab7] | 84 | |
---|
| 85 | _owl_global_init_windows(g); |
---|
[d09e5a1] | 86 | |
---|
| 87 | g->aim_screenname=NULL; |
---|
[81655f8] | 88 | g->aim_screenname_for_filters=NULL; |
---|
[d09e5a1] | 89 | g->aim_loggedin=0; |
---|
[aa5f725] | 90 | owl_buddylist_init(&(g->buddylist)); |
---|
[b7bb454] | 91 | |
---|
[09489b89] | 92 | g->havezephyr=0; |
---|
| 93 | g->haveaim=0; |
---|
[b7bb454] | 94 | g->ignoreaimlogin=0; |
---|
[a352335c] | 95 | owl_global_set_no_doaimevents(g); |
---|
[ec6ff52] | 96 | |
---|
| 97 | owl_errqueue_init(&(g->errqueue)); |
---|
[5a95b69] | 98 | |
---|
| 99 | owl_zbuddylist_create(&(g->zbuddies)); |
---|
[8e401cae] | 100 | |
---|
[f25812b] | 101 | g->zaldlist = NULL; |
---|
| 102 | g->pseudologin_notify = 0; |
---|
| 103 | |
---|
[a387d12e] | 104 | owl_message_init_fmtext_cache(); |
---|
[5f8ec6b] | 105 | g->kill_buffer = NULL; |
---|
[47128d9] | 106 | |
---|
| 107 | g->interrupt_count = 0; |
---|
| 108 | g->interrupt_lock = g_mutex_new(); |
---|
[571fab7] | 109 | } |
---|
| 110 | |
---|
| 111 | static void _owl_global_init_windows(owl_global *g) |
---|
| 112 | { |
---|
| 113 | /* Create the main window */ |
---|
| 114 | owl_mainpanel_init(&(g->mainpanel)); |
---|
| 115 | |
---|
| 116 | /* Create the widgets */ |
---|
| 117 | owl_mainwin_init(&(g->mw), g->mainpanel.recwin); |
---|
| 118 | owl_msgwin_init(&(g->msgwin), g->mainpanel.msgwin); |
---|
| 119 | owl_sepbar_init(g->mainpanel.sepwin); |
---|
[0881cdd] | 120 | |
---|
[4dd115f] | 121 | owl_window_set_default_cursor(g->mainpanel.sepwin); |
---|
[0881cdd] | 122 | |
---|
| 123 | /* set up a pad for input */ |
---|
| 124 | g->input_pad = newpad(1, 1); |
---|
| 125 | nodelay(g->input_pad, 1); |
---|
| 126 | keypad(g->input_pad, 1); |
---|
| 127 | meta(g->input_pad, 1); |
---|
[7d4fbcd] | 128 | } |
---|
| 129 | |
---|
[044f19f] | 130 | void owl_global_sepbar_dirty(owl_global *g) |
---|
| 131 | { |
---|
| 132 | owl_window_dirty(g->mainpanel.sepwin); |
---|
| 133 | } |
---|
| 134 | |
---|
[eb6cedc] | 135 | /* Called once perl has been initialized */ |
---|
| 136 | void owl_global_complete_setup(owl_global *g) |
---|
| 137 | { |
---|
| 138 | owl_cmddict_setup(&(g->cmds)); |
---|
| 139 | } |
---|
| 140 | |
---|
[005eae5] | 141 | owl_context *owl_global_get_context(const owl_global *g) { |
---|
[a999d9e] | 142 | if (!g->context_stack) |
---|
| 143 | return NULL; |
---|
| 144 | return g->context_stack->data; |
---|
| 145 | } |
---|
| 146 | |
---|
[07b59ea] | 147 | static void owl_global_activate_context(owl_global *g, owl_context *c) { |
---|
| 148 | if (!c) |
---|
[a999d9e] | 149 | return; |
---|
| 150 | |
---|
[07b59ea] | 151 | if (c->keymap) { |
---|
| 152 | if (!owl_keyhandler_activate(owl_global_get_keyhandler(g), c->keymap)) { |
---|
| 153 | owl_function_error("Unable to activate keymap '%s'", c->keymap); |
---|
| 154 | } |
---|
[a999d9e] | 155 | } |
---|
[07b59ea] | 156 | owl_window_set_cursor(c->cursor); |
---|
[7d4fbcd] | 157 | } |
---|
[a999d9e] | 158 | |
---|
[07b59ea] | 159 | void owl_global_push_context(owl_global *g, int mode, void *data, const char *keymap, owl_window *cursor) { |
---|
[a999d9e] | 160 | owl_context *c; |
---|
[cb81570] | 161 | c = owl_context_new(mode, data, keymap, cursor); |
---|
[1d74663] | 162 | owl_global_push_context_obj(g, c); |
---|
| 163 | } |
---|
| 164 | |
---|
| 165 | void owl_global_push_context_obj(owl_global *g, owl_context *c) |
---|
| 166 | { |
---|
[a999d9e] | 167 | g->context_stack = g_list_prepend(g->context_stack, c); |
---|
[07b59ea] | 168 | owl_global_activate_context(g, owl_global_get_context(g)); |
---|
[a999d9e] | 169 | } |
---|
| 170 | |
---|
[1d74663] | 171 | /* Pops the current context from the context stack and returns it. Caller is |
---|
| 172 | * responsible for freeing. */ |
---|
[6829afc] | 173 | CALLER_OWN owl_context *owl_global_pop_context_no_delete(owl_global *g) |
---|
[d427f08] | 174 | { |
---|
[a999d9e] | 175 | owl_context *c; |
---|
| 176 | if (!g->context_stack) |
---|
[1d74663] | 177 | return NULL; |
---|
[a999d9e] | 178 | c = owl_global_get_context(g); |
---|
[1d74663] | 179 | owl_context_deactivate(c); |
---|
[a999d9e] | 180 | g->context_stack = g_list_delete_link(g->context_stack, |
---|
| 181 | g->context_stack); |
---|
[07b59ea] | 182 | owl_global_activate_context(g, owl_global_get_context(g)); |
---|
[1d74663] | 183 | return c; |
---|
| 184 | } |
---|
| 185 | |
---|
| 186 | /* Pops the current context from the context stack and deletes it. */ |
---|
| 187 | void owl_global_pop_context(owl_global *g) { |
---|
| 188 | owl_context *c; |
---|
| 189 | c = owl_global_pop_context_no_delete(g); |
---|
| 190 | if (c) |
---|
| 191 | owl_context_delete(c); |
---|
[a999d9e] | 192 | } |
---|
| 193 | |
---|
[8742840] | 194 | int owl_global_get_lines(const owl_global *g) { |
---|
[7d4fbcd] | 195 | return(g->lines); |
---|
| 196 | } |
---|
| 197 | |
---|
[8742840] | 198 | int owl_global_get_cols(const owl_global *g) { |
---|
[7d4fbcd] | 199 | return(g->cols); |
---|
| 200 | } |
---|
| 201 | |
---|
[8742840] | 202 | int owl_global_get_recwin_lines(const owl_global *g) { |
---|
[d2a4534] | 203 | return g->mainpanel.recwinlines; |
---|
[7d4fbcd] | 204 | } |
---|
| 205 | |
---|
| 206 | /* curmsg */ |
---|
| 207 | |
---|
[8742840] | 208 | int owl_global_get_curmsg(const owl_global *g) { |
---|
[7d4fbcd] | 209 | return(g->curmsg); |
---|
| 210 | } |
---|
| 211 | |
---|
| 212 | void owl_global_set_curmsg(owl_global *g, int i) { |
---|
| 213 | g->curmsg=i; |
---|
| 214 | /* we will reset the vertical offset from here */ |
---|
| 215 | /* we might want to move this out to the functions later */ |
---|
| 216 | owl_global_set_curmsg_vert_offset(g, 0); |
---|
| 217 | } |
---|
| 218 | |
---|
| 219 | /* topmsg */ |
---|
| 220 | |
---|
[8742840] | 221 | int owl_global_get_topmsg(const owl_global *g) { |
---|
[7d4fbcd] | 222 | return(g->topmsg); |
---|
| 223 | } |
---|
| 224 | |
---|
| 225 | void owl_global_set_topmsg(owl_global *g, int i) { |
---|
| 226 | g->topmsg=i; |
---|
| 227 | } |
---|
| 228 | |
---|
[70110286] | 229 | /* markedmsgid */ |
---|
| 230 | |
---|
[8742840] | 231 | int owl_global_get_markedmsgid(const owl_global *g) { |
---|
[70110286] | 232 | return(g->markedmsgid); |
---|
| 233 | } |
---|
| 234 | |
---|
| 235 | void owl_global_set_markedmsgid(owl_global *g, int i) { |
---|
| 236 | g->markedmsgid=i; |
---|
| 237 | /* i; index of message in the current view. |
---|
[c08c70a] | 238 | const owl_message *m; |
---|
[70110286] | 239 | owl_view *v; |
---|
| 240 | |
---|
| 241 | v = owl_global_get_current_view(&g); |
---|
| 242 | m = owl_view_get_element(v, i); |
---|
| 243 | g->markedmsgid = m ? owl_message_get_id(m) : 0; |
---|
| 244 | */ |
---|
| 245 | } |
---|
| 246 | |
---|
[7d4fbcd] | 247 | /* windows */ |
---|
| 248 | |
---|
| 249 | owl_mainwin *owl_global_get_mainwin(owl_global *g) { |
---|
| 250 | return(&(g->mw)); |
---|
| 251 | } |
---|
| 252 | |
---|
| 253 | owl_popwin *owl_global_get_popwin(owl_global *g) { |
---|
[03ca005] | 254 | return g->pw; |
---|
| 255 | } |
---|
| 256 | |
---|
| 257 | void owl_global_set_popwin(owl_global *g, owl_popwin *pw) { |
---|
| 258 | g->pw = pw; |
---|
[7d4fbcd] | 259 | } |
---|
| 260 | |
---|
| 261 | /* msglist */ |
---|
| 262 | |
---|
| 263 | owl_messagelist *owl_global_get_msglist(owl_global *g) { |
---|
| 264 | return(&(g->msglist)); |
---|
| 265 | } |
---|
| 266 | |
---|
| 267 | /* keyhandler */ |
---|
| 268 | |
---|
| 269 | owl_keyhandler *owl_global_get_keyhandler(owl_global *g) { |
---|
| 270 | return(&(g->kh)); |
---|
| 271 | } |
---|
| 272 | |
---|
[005eae5] | 273 | /* Gets the currently active typwin out of the current context. */ |
---|
[818f19c] | 274 | owl_editwin *owl_global_current_typwin(const owl_global *g) { |
---|
[005eae5] | 275 | owl_context *ctx = owl_global_get_context(g); |
---|
[c394de8] | 276 | return owl_editcontext_get_editwin(ctx); |
---|
[7d4fbcd] | 277 | } |
---|
| 278 | |
---|
| 279 | /* variable dictionary */ |
---|
| 280 | |
---|
| 281 | owl_vardict *owl_global_get_vardict(owl_global *g) { |
---|
| 282 | return &(g->vars); |
---|
| 283 | } |
---|
| 284 | |
---|
| 285 | /* command dictionary */ |
---|
| 286 | |
---|
| 287 | owl_cmddict *owl_global_get_cmddict(owl_global *g) { |
---|
| 288 | return &(g->cmds); |
---|
| 289 | } |
---|
| 290 | |
---|
| 291 | /* rightshift */ |
---|
| 292 | |
---|
| 293 | void owl_global_set_rightshift(owl_global *g, int i) { |
---|
[5b80b87] | 294 | g->rightshift = i; |
---|
[e92e2a1] | 295 | owl_mainwin_redisplay(owl_global_get_mainwin(g)); |
---|
[7d4fbcd] | 296 | } |
---|
| 297 | |
---|
[8742840] | 298 | int owl_global_get_rightshift(const owl_global *g) { |
---|
[7d4fbcd] | 299 | return(g->rightshift); |
---|
| 300 | } |
---|
| 301 | |
---|
| 302 | /* typwin */ |
---|
| 303 | |
---|
[58d47ca] | 304 | owl_editwin *owl_global_set_typwin_active(owl_global *g, int style, owl_history *hist) { |
---|
[38cc669] | 305 | int d; |
---|
| 306 | d = owl_global_get_typewindelta(g); |
---|
[73eda8c] | 307 | if (d > 0 && style == OWL_EDITWIN_STYLE_MULTILINE) |
---|
[da466e0] | 308 | owl_function_resize_typwin(owl_global_get_typwin_lines(g) + d); |
---|
| 309 | |
---|
[f6fae8d] | 310 | if (g->typwin_erase_id) { |
---|
[08263a8] | 311 | g_signal_handler_disconnect(g->mainpanel.typwin, g->typwin_erase_id); |
---|
[f6fae8d] | 312 | g->typwin_erase_id = 0; |
---|
| 313 | } |
---|
| 314 | |
---|
[08263a8] | 315 | g->tw = owl_editwin_new(g->mainpanel.typwin, |
---|
[38cc669] | 316 | owl_global_get_typwin_lines(g), |
---|
| 317 | g->cols, |
---|
| 318 | style, |
---|
| 319 | hist); |
---|
[58d47ca] | 320 | return g->tw; |
---|
[7d4fbcd] | 321 | } |
---|
| 322 | |
---|
[fc5eef4] | 323 | void owl_global_deactivate_editcontext(owl_context *ctx) { |
---|
| 324 | owl_global *g = ctx->cbdata; |
---|
| 325 | owl_global_set_typwin_inactive(g); |
---|
| 326 | } |
---|
| 327 | |
---|
[7d4fbcd] | 328 | void owl_global_set_typwin_inactive(owl_global *g) { |
---|
[da466e0] | 329 | int d = owl_global_get_typewindelta(g); |
---|
[73eda8c] | 330 | if (d > 0 && owl_editwin_get_style(g->tw) == OWL_EDITWIN_STYLE_MULTILINE) |
---|
[da466e0] | 331 | owl_function_resize_typwin(owl_global_get_typwin_lines(g) - d); |
---|
| 332 | |
---|
[f6fae8d] | 333 | if (!g->typwin_erase_id) { |
---|
| 334 | g->typwin_erase_id = |
---|
[08263a8] | 335 | g_signal_connect(g->mainpanel.typwin, "redraw", G_CALLBACK(owl_window_erase_cb), NULL); |
---|
[f6fae8d] | 336 | } |
---|
[08263a8] | 337 | owl_window_dirty(g->mainpanel.typwin); |
---|
[f6fae8d] | 338 | |
---|
[c394de8] | 339 | owl_editwin_unref(g->tw); |
---|
[38cc669] | 340 | g->tw = NULL; |
---|
[7d4fbcd] | 341 | } |
---|
| 342 | |
---|
| 343 | /* resize */ |
---|
| 344 | |
---|
| 345 | void owl_global_set_resize_pending(owl_global *g) { |
---|
[3535a6e] | 346 | g->resizepending = true; |
---|
[7d4fbcd] | 347 | } |
---|
| 348 | |
---|
[8742840] | 349 | const char *owl_global_get_homedir(const owl_global *g) { |
---|
[a8938c7] | 350 | if (g->homedir) return(g->homedir); |
---|
| 351 | return("/"); |
---|
[7d4fbcd] | 352 | } |
---|
| 353 | |
---|
[8742840] | 354 | const char *owl_global_get_confdir(const owl_global *g) { |
---|
[b363d83] | 355 | if (g->confdir) return(g->confdir); |
---|
| 356 | return("/"); |
---|
| 357 | } |
---|
| 358 | |
---|
| 359 | /* |
---|
| 360 | * Setting this also sets startupfile to confdir/startup |
---|
| 361 | */ |
---|
[e19eb97] | 362 | void owl_global_set_confdir(owl_global *g, const char *cd) { |
---|
[ddbbcffa] | 363 | g_free(g->confdir); |
---|
[d4927a7] | 364 | g->confdir = g_strdup(cd); |
---|
[ddbbcffa] | 365 | g_free(g->startupfile); |
---|
[dde1b4d] | 366 | g->startupfile = g_build_filename(cd, "startup", NULL); |
---|
[b363d83] | 367 | } |
---|
| 368 | |
---|
[8742840] | 369 | const char *owl_global_get_startupfile(const owl_global *g) { |
---|
[b363d83] | 370 | if(g->startupfile) return(g->startupfile); |
---|
| 371 | return("/"); |
---|
| 372 | } |
---|
| 373 | |
---|
[8742840] | 374 | int owl_global_get_direction(const owl_global *g) { |
---|
[7d4fbcd] | 375 | return(g->direction); |
---|
| 376 | } |
---|
| 377 | |
---|
| 378 | void owl_global_set_direction_downwards(owl_global *g) { |
---|
| 379 | g->direction=OWL_DIRECTION_DOWNWARDS; |
---|
| 380 | } |
---|
| 381 | |
---|
| 382 | void owl_global_set_direction_upwards(owl_global *g) { |
---|
| 383 | g->direction=OWL_DIRECTION_UPWARDS; |
---|
| 384 | } |
---|
| 385 | |
---|
| 386 | /* perl stuff */ |
---|
| 387 | |
---|
| 388 | void owl_global_set_perlinterp(owl_global *g, void *p) { |
---|
| 389 | g->perl=p; |
---|
| 390 | } |
---|
| 391 | |
---|
[8742840] | 392 | void *owl_global_get_perlinterp(const owl_global *g) { |
---|
[7d4fbcd] | 393 | return(g->perl); |
---|
| 394 | } |
---|
| 395 | |
---|
[8742840] | 396 | int owl_global_is_config_format(const owl_global *g) { |
---|
[7d4fbcd] | 397 | if (g->config_format) return(1); |
---|
| 398 | return(0); |
---|
| 399 | } |
---|
| 400 | |
---|
| 401 | void owl_global_set_config_format(owl_global *g, int state) { |
---|
| 402 | if (state==1) { |
---|
| 403 | g->config_format=1; |
---|
| 404 | } else { |
---|
| 405 | g->config_format=0; |
---|
| 406 | } |
---|
| 407 | } |
---|
| 408 | |
---|
| 409 | void owl_global_set_have_config(owl_global *g) { |
---|
| 410 | g->haveconfig=1; |
---|
| 411 | } |
---|
| 412 | |
---|
| 413 | void owl_global_set_no_have_config(owl_global *g) { |
---|
| 414 | g->haveconfig=0; |
---|
| 415 | } |
---|
| 416 | |
---|
| 417 | int owl_global_have_config(owl_global *g) { |
---|
| 418 | if (g->haveconfig) return(1); |
---|
| 419 | return(0); |
---|
| 420 | } |
---|
| 421 | |
---|
[285bc9a] | 422 | /* |
---|
| 423 | * Compute the size of the terminal. Try a ioctl, fallback to other stuff on |
---|
| 424 | * fail. |
---|
| 425 | */ |
---|
[d39f68c] | 426 | void owl_global_get_terminal_size(int *lines, int *cols) { |
---|
[285bc9a] | 427 | struct winsize size; |
---|
| 428 | /* get the new size */ |
---|
| 429 | ioctl(STDIN_FILENO, TIOCGWINSZ, &size); |
---|
| 430 | if (size.ws_row) { |
---|
| 431 | *lines = size.ws_row; |
---|
| 432 | } else { |
---|
| 433 | *lines = LINES; |
---|
| 434 | } |
---|
| 435 | |
---|
| 436 | if (size.ws_col) { |
---|
| 437 | *cols = size.ws_col; |
---|
| 438 | } else { |
---|
| 439 | *cols = COLS; |
---|
| 440 | } |
---|
| 441 | } |
---|
| 442 | |
---|
[99ce51c] | 443 | void owl_global_check_resize(owl_global *g) { |
---|
[3e0147f] | 444 | /* resize the screen. If lines or cols is 0 use the terminal size */ |
---|
[7d4fbcd] | 445 | if (!g->resizepending) return; |
---|
[3535a6e] | 446 | g->resizepending = false; |
---|
[7d4fbcd] | 447 | |
---|
[99ce51c] | 448 | owl_global_get_terminal_size(&g->lines, &g->cols); |
---|
[7a6e6c7] | 449 | owl_window_resize(owl_window_get_screen(), g->lines, g->cols); |
---|
[7d4fbcd] | 450 | |
---|
[f9f88f3] | 451 | owl_function_debugmsg("New size is %i lines, %i cols.", g->lines, g->cols); |
---|
[7d4fbcd] | 452 | } |
---|
| 453 | |
---|
| 454 | /* debug */ |
---|
| 455 | |
---|
[8742840] | 456 | int owl_global_is_debug_fast(const owl_global *g) { |
---|
[7d4fbcd] | 457 | if (g->debug) return(1); |
---|
| 458 | return(0); |
---|
| 459 | } |
---|
| 460 | |
---|
| 461 | /* starttime */ |
---|
| 462 | |
---|
[8742840] | 463 | time_t owl_global_get_starttime(const owl_global *g) { |
---|
[7d4fbcd] | 464 | return(g->starttime); |
---|
| 465 | } |
---|
| 466 | |
---|
[8742840] | 467 | time_t owl_global_get_runtime(const owl_global *g) { |
---|
[7d4fbcd] | 468 | return(time(NULL)-g->starttime); |
---|
| 469 | } |
---|
| 470 | |
---|
[8742840] | 471 | time_t owl_global_get_lastinputtime(const owl_global *g) { |
---|
[7f792c1] | 472 | return(g->lastinputtime); |
---|
| 473 | } |
---|
| 474 | |
---|
[eebef19] | 475 | void owl_global_set_lastinputtime(owl_global *g, time_t time) { |
---|
| 476 | g->lastinputtime = time; |
---|
[7f792c1] | 477 | } |
---|
| 478 | |
---|
[8742840] | 479 | time_t owl_global_get_idletime(const owl_global *g) { |
---|
[7f792c1] | 480 | return(time(NULL)-g->lastinputtime); |
---|
| 481 | } |
---|
| 482 | |
---|
[7d4fbcd] | 483 | /* viewwin */ |
---|
| 484 | |
---|
| 485 | owl_viewwin *owl_global_get_viewwin(owl_global *g) { |
---|
[9eb38bb] | 486 | return g->vw; |
---|
| 487 | } |
---|
| 488 | |
---|
| 489 | void owl_global_set_viewwin(owl_global *g, owl_viewwin *vw) { |
---|
| 490 | g->vw = vw; |
---|
[7d4fbcd] | 491 | } |
---|
| 492 | |
---|
| 493 | |
---|
| 494 | /* vert offset */ |
---|
| 495 | |
---|
[8742840] | 496 | int owl_global_get_curmsg_vert_offset(const owl_global *g) { |
---|
[7d4fbcd] | 497 | return(g->curmsg_vert_offset); |
---|
| 498 | } |
---|
| 499 | |
---|
| 500 | void owl_global_set_curmsg_vert_offset(owl_global *g, int i) { |
---|
[5b80b87] | 501 | g->curmsg_vert_offset = i; |
---|
[7d4fbcd] | 502 | } |
---|
| 503 | |
---|
| 504 | /* startup args */ |
---|
| 505 | |
---|
[d3941a0] | 506 | void owl_global_set_startupargs(owl_global *g, int argc, char **argv) { |
---|
[3b8a563] | 507 | g_free(g->startupargs); |
---|
[d3941a0] | 508 | g->startupargs = g_strjoinv(" ", argv); |
---|
[7d4fbcd] | 509 | } |
---|
| 510 | |
---|
[8742840] | 511 | const char *owl_global_get_startupargs(const owl_global *g) { |
---|
[a8938c7] | 512 | if (g->startupargs) return(g->startupargs); |
---|
| 513 | return(""); |
---|
[7d4fbcd] | 514 | } |
---|
| 515 | |
---|
| 516 | /* history */ |
---|
| 517 | |
---|
[10b866d] | 518 | owl_history *owl_global_get_msg_history(owl_global *g) { |
---|
| 519 | return(&(g->msghist)); |
---|
| 520 | } |
---|
| 521 | |
---|
| 522 | owl_history *owl_global_get_cmd_history(owl_global *g) { |
---|
| 523 | return(&(g->cmdhist)); |
---|
[7d4fbcd] | 524 | } |
---|
| 525 | |
---|
| 526 | /* filterlist */ |
---|
[129e609] | 527 | typedef struct _owl_global_filter_ent { /* noproto */ |
---|
| 528 | owl_global *g; |
---|
| 529 | owl_filter *f; |
---|
| 530 | } owl_global_filter_ent; |
---|
[7d4fbcd] | 531 | |
---|
[8742840] | 532 | owl_filter *owl_global_get_filter(const owl_global *g, const char *name) { |
---|
[129e609] | 533 | owl_global_filter_ent *e = owl_dict_find_element(&(g->filters), name); |
---|
| 534 | if (e) return e->f; |
---|
| 535 | return NULL; |
---|
| 536 | } |
---|
[7d4fbcd] | 537 | |
---|
[5294cbf] | 538 | static void owl_global_delete_filter_ent(void *data) |
---|
| 539 | { |
---|
[129e609] | 540 | owl_global_filter_ent *e = data; |
---|
| 541 | e->g->filterlist = g_list_remove(e->g->filterlist, e->f); |
---|
| 542 | owl_filter_delete(e->f); |
---|
[ddbbcffa] | 543 | g_free(e); |
---|
[7d4fbcd] | 544 | } |
---|
| 545 | |
---|
| 546 | void owl_global_add_filter(owl_global *g, owl_filter *f) { |
---|
[96828e4] | 547 | owl_global_filter_ent *e = g_new(owl_global_filter_ent, 1); |
---|
[129e609] | 548 | e->g = g; |
---|
| 549 | e->f = f; |
---|
| 550 | |
---|
| 551 | owl_dict_insert_element(&(g->filters), owl_filter_get_name(f), |
---|
[5294cbf] | 552 | e, owl_global_delete_filter_ent); |
---|
[129e609] | 553 | g->filterlist = g_list_append(g->filterlist, f); |
---|
[7d4fbcd] | 554 | } |
---|
| 555 | |
---|
[e19eb97] | 556 | void owl_global_remove_filter(owl_global *g, const char *name) { |
---|
[129e609] | 557 | owl_global_filter_ent *e = owl_dict_remove_element(&(g->filters), name); |
---|
| 558 | if (e) |
---|
[5294cbf] | 559 | owl_global_delete_filter_ent(e); |
---|
[7d4fbcd] | 560 | } |
---|
| 561 | |
---|
| 562 | /* nextmsgid */ |
---|
| 563 | |
---|
| 564 | int owl_global_get_nextmsgid(owl_global *g) { |
---|
| 565 | return(g->nextmsgid++); |
---|
| 566 | } |
---|
| 567 | |
---|
| 568 | /* current view */ |
---|
| 569 | |
---|
| 570 | owl_view *owl_global_get_current_view(owl_global *g) { |
---|
| 571 | return(&(g->current_view)); |
---|
| 572 | } |
---|
| 573 | |
---|
[8fa9562] | 574 | owl_colorpair_mgr *owl_global_get_colorpair_mgr(owl_global *g) { |
---|
| 575 | return(&(g->cpmgr)); |
---|
| 576 | } |
---|
| 577 | |
---|
[7d4fbcd] | 578 | /* puntlist */ |
---|
| 579 | |
---|
[e6d7e4e] | 580 | GPtrArray *owl_global_get_puntlist(owl_global *g) { |
---|
| 581 | return g->puntlist; |
---|
[7d4fbcd] | 582 | } |
---|
| 583 | |
---|
[c08c70a] | 584 | int owl_global_message_is_puntable(owl_global *g, const owl_message *m) { |
---|
[e6d7e4e] | 585 | const GPtrArray *pl; |
---|
| 586 | int i; |
---|
[7d4fbcd] | 587 | |
---|
[e6d7e4e] | 588 | pl = owl_global_get_puntlist(g); |
---|
| 589 | for (i = 0; i < pl->len; i++) { |
---|
| 590 | if (owl_filter_message_match(pl->pdata[i], m)) return 1; |
---|
[7d4fbcd] | 591 | } |
---|
[e6d7e4e] | 592 | return 0; |
---|
[7d4fbcd] | 593 | } |
---|
| 594 | |
---|
| 595 | int owl_global_should_followlast(owl_global *g) { |
---|
[9e5c9f3] | 596 | const owl_view *v; |
---|
[7d4fbcd] | 597 | |
---|
| 598 | if (!owl_global_is__followlast(g)) return(0); |
---|
| 599 | |
---|
| 600 | v=owl_global_get_current_view(g); |
---|
| 601 | |
---|
| 602 | if (owl_global_get_curmsg(g)==owl_view_get_size(v)-1) return(1); |
---|
| 603 | return(0); |
---|
| 604 | } |
---|
[1fd0b25] | 605 | |
---|
[8742840] | 606 | int owl_global_is_search_active(const owl_global *g) { |
---|
[41c9a96] | 607 | if (owl_regex_is_set(&g->search_re)) return(1); |
---|
[1fd0b25] | 608 | return(0); |
---|
| 609 | } |
---|
| 610 | |
---|
[89b2daf] | 611 | void owl_global_set_search_re(owl_global *g, const owl_regex *re) { |
---|
[41c9a96] | 612 | if (owl_regex_is_set(&g->search_re)) { |
---|
[5cbc929] | 613 | owl_regex_cleanup(&g->search_re); |
---|
[41c9a96] | 614 | owl_regex_init(&g->search_re); |
---|
| 615 | } |
---|
| 616 | if (re != NULL) |
---|
| 617 | owl_regex_copy(re, &g->search_re); |
---|
[2ec737f] | 618 | /* TODO: Emit a signal so we don't depend on the viewwin and mainwin */ |
---|
[5b68c05] | 619 | if (owl_global_get_viewwin(g)) |
---|
| 620 | owl_viewwin_dirty(owl_global_get_viewwin(g)); |
---|
[2ec737f] | 621 | owl_mainwin_redisplay(owl_global_get_mainwin(g)); |
---|
[1fd0b25] | 622 | } |
---|
| 623 | |
---|
[8742840] | 624 | const owl_regex *owl_global_get_search_re(const owl_global *g) { |
---|
[41c9a96] | 625 | return &g->search_re; |
---|
[1fd0b25] | 626 | } |
---|
[700c712] | 627 | |
---|
[0e5afa2] | 628 | void owl_global_set_newmsgproc_pid(owl_global *g, pid_t i) { |
---|
[700c712] | 629 | g->newmsgproc_pid=i; |
---|
| 630 | } |
---|
| 631 | |
---|
[0e5afa2] | 632 | pid_t owl_global_get_newmsgproc_pid(const owl_global *g) { |
---|
[700c712] | 633 | return(g->newmsgproc_pid); |
---|
| 634 | } |
---|
| 635 | |
---|
[d09e5a1] | 636 | /* AIM stuff */ |
---|
| 637 | |
---|
[8742840] | 638 | int owl_global_is_aimloggedin(const owl_global *g) |
---|
[6a415e9] | 639 | { |
---|
[d09e5a1] | 640 | if (g->aim_loggedin) return(1); |
---|
| 641 | return(0); |
---|
| 642 | } |
---|
| 643 | |
---|
[8742840] | 644 | const char *owl_global_get_aim_screenname(const owl_global *g) |
---|
[6a415e9] | 645 | { |
---|
[a352335c] | 646 | if (owl_global_is_aimloggedin(g)) { |
---|
| 647 | return (g->aim_screenname); |
---|
| 648 | } |
---|
| 649 | return(""); |
---|
[d09e5a1] | 650 | } |
---|
| 651 | |
---|
[8742840] | 652 | const char *owl_global_get_aim_screenname_for_filters(const owl_global *g) |
---|
[81655f8] | 653 | { |
---|
| 654 | if (owl_global_is_aimloggedin(g)) { |
---|
| 655 | return (g->aim_screenname_for_filters); |
---|
| 656 | } |
---|
| 657 | return(""); |
---|
| 658 | } |
---|
| 659 | |
---|
[e19eb97] | 660 | void owl_global_set_aimloggedin(owl_global *g, const char *screenname) |
---|
[6a415e9] | 661 | { |
---|
[65b2173] | 662 | char *sn_escaped; |
---|
[d09e5a1] | 663 | g->aim_loggedin=1; |
---|
[ddbbcffa] | 664 | if (g->aim_screenname) g_free(g->aim_screenname); |
---|
| 665 | if (g->aim_screenname_for_filters) g_free(g->aim_screenname_for_filters); |
---|
[d4927a7] | 666 | g->aim_screenname=g_strdup(screenname); |
---|
[81655f8] | 667 | sn_escaped = owl_text_quote(screenname, OWL_REGEX_QUOTECHARS, OWL_REGEX_QUOTEWITH); |
---|
[d222c44] | 668 | g->aim_screenname_for_filters = owl_arg_quote(sn_escaped); |
---|
[ddbbcffa] | 669 | g_free(sn_escaped); |
---|
[d09e5a1] | 670 | } |
---|
| 671 | |
---|
[6a415e9] | 672 | void owl_global_set_aimnologgedin(owl_global *g) |
---|
| 673 | { |
---|
[d09e5a1] | 674 | g->aim_loggedin=0; |
---|
| 675 | } |
---|
| 676 | |
---|
[dc1edbd] | 677 | bool owl_global_is_doaimevents(const owl_global *g) |
---|
[a352335c] | 678 | { |
---|
[dc1edbd] | 679 | return g->aim_event_source != NULL; |
---|
[a352335c] | 680 | } |
---|
| 681 | |
---|
| 682 | void owl_global_set_doaimevents(owl_global *g) |
---|
| 683 | { |
---|
[dc1edbd] | 684 | if (g->aim_event_source) |
---|
| 685 | return; |
---|
| 686 | g->aim_event_source = owl_aim_event_source_new(owl_global_get_aimsess(g)); |
---|
| 687 | g_source_attach(g->aim_event_source, NULL); |
---|
[a352335c] | 688 | } |
---|
| 689 | |
---|
| 690 | void owl_global_set_no_doaimevents(owl_global *g) |
---|
| 691 | { |
---|
[dc1edbd] | 692 | if (!g->aim_event_source) |
---|
| 693 | return; |
---|
| 694 | g_source_destroy(g->aim_event_source); |
---|
| 695 | g_source_unref(g->aim_event_source); |
---|
| 696 | g->aim_event_source = NULL; |
---|
[a352335c] | 697 | } |
---|
| 698 | |
---|
[6a415e9] | 699 | aim_session_t *owl_global_get_aimsess(owl_global *g) |
---|
| 700 | { |
---|
[d09e5a1] | 701 | return(&(g->aimsess)); |
---|
| 702 | } |
---|
| 703 | |
---|
[c15bbfb] | 704 | aim_conn_t *owl_global_get_bosconn(owl_global *g) |
---|
| 705 | { |
---|
| 706 | return(&(g->bosconn)); |
---|
| 707 | } |
---|
| 708 | |
---|
| 709 | void owl_global_set_bossconn(owl_global *g, aim_conn_t *conn) |
---|
[6a415e9] | 710 | { |
---|
[c15bbfb] | 711 | g->bosconn=*conn; |
---|
[d09e5a1] | 712 | } |
---|
| 713 | |
---|
| 714 | /* message queue */ |
---|
| 715 | |
---|
[6a415e9] | 716 | void owl_global_messagequeue_addmsg(owl_global *g, owl_message *m) |
---|
| 717 | { |
---|
[20aced3] | 718 | g_queue_push_tail(g->messagequeue, m); |
---|
[d09e5a1] | 719 | } |
---|
| 720 | |
---|
| 721 | /* pop off the first message and return it. Return NULL if the queue |
---|
| 722 | * is empty. The caller should free the message after using it, if |
---|
| 723 | * necessary. |
---|
| 724 | */ |
---|
[2560529] | 725 | CALLER_OWN owl_message *owl_global_messagequeue_popmsg(owl_global *g) |
---|
[6a415e9] | 726 | { |
---|
[d09e5a1] | 727 | owl_message *out; |
---|
| 728 | |
---|
[20aced3] | 729 | if (g_queue_is_empty(g->messagequeue)) |
---|
| 730 | return NULL; |
---|
| 731 | out = g_queue_pop_head(g->messagequeue); |
---|
| 732 | return out; |
---|
[d09e5a1] | 733 | } |
---|
| 734 | |
---|
[6a415e9] | 735 | int owl_global_messagequeue_pending(owl_global *g) |
---|
| 736 | { |
---|
[20aced3] | 737 | return !g_queue_is_empty(g->messagequeue); |
---|
[d09e5a1] | 738 | } |
---|
[aa5f725] | 739 | |
---|
[6a415e9] | 740 | owl_buddylist *owl_global_get_buddylist(owl_global *g) |
---|
| 741 | { |
---|
[aa5f725] | 742 | return(&(g->buddylist)); |
---|
| 743 | } |
---|
| 744 | |
---|
[bd3f232] | 745 | /* style */ |
---|
| 746 | |
---|
| 747 | /* Return the style with name 'name'. If it does not exist return |
---|
| 748 | * NULL */ |
---|
[8742840] | 749 | const owl_style *owl_global_get_style_by_name(const owl_global *g, const char *name) |
---|
[bd3f232] | 750 | { |
---|
[f1e629d] | 751 | return owl_dict_find_element(&(g->styledict), name); |
---|
| 752 | } |
---|
| 753 | |
---|
[ce68f23] | 754 | CALLER_OWN GPtrArray *owl_global_get_style_names(const owl_global *g) |
---|
| 755 | { |
---|
| 756 | return owl_dict_get_keys(&g->styledict); |
---|
[bd3f232] | 757 | } |
---|
| 758 | |
---|
[cf83b7a] | 759 | void owl_global_add_style(owl_global *g, owl_style *s) |
---|
| 760 | { |
---|
[f1fc47f] | 761 | /* |
---|
| 762 | * If we're redefining the current style, make sure to update |
---|
| 763 | * pointers to it. |
---|
| 764 | */ |
---|
| 765 | if(g->current_view.style |
---|
| 766 | && !strcmp(owl_style_get_name(g->current_view.style), |
---|
| 767 | owl_style_get_name(s))) |
---|
| 768 | g->current_view.style = s; |
---|
| 769 | owl_dict_insert_element(&(g->styledict), owl_style_get_name(s), |
---|
[516c27e] | 770 | s, (void (*)(void *))owl_style_delete); |
---|
[bd3f232] | 771 | } |
---|
[cf83b7a] | 772 | |
---|
[09489b89] | 773 | void owl_global_set_haveaim(owl_global *g) |
---|
| 774 | { |
---|
| 775 | g->haveaim=1; |
---|
| 776 | } |
---|
| 777 | |
---|
[8742840] | 778 | int owl_global_is_haveaim(const owl_global *g) |
---|
[09489b89] | 779 | { |
---|
| 780 | if (g->haveaim) return(1); |
---|
| 781 | return(0); |
---|
| 782 | } |
---|
| 783 | |
---|
[b7bb454] | 784 | void owl_global_set_ignore_aimlogin(owl_global *g) |
---|
| 785 | { |
---|
| 786 | g->ignoreaimlogin = 1; |
---|
| 787 | } |
---|
| 788 | |
---|
| 789 | void owl_global_unset_ignore_aimlogin(owl_global *g) |
---|
| 790 | { |
---|
| 791 | g->ignoreaimlogin = 0; |
---|
| 792 | } |
---|
| 793 | |
---|
[8742840] | 794 | int owl_global_is_ignore_aimlogin(const owl_global *g) |
---|
[b7bb454] | 795 | { |
---|
| 796 | return g->ignoreaimlogin; |
---|
| 797 | } |
---|
| 798 | |
---|
[09489b89] | 799 | void owl_global_set_havezephyr(owl_global *g) |
---|
| 800 | { |
---|
| 801 | g->havezephyr=1; |
---|
| 802 | } |
---|
| 803 | |
---|
[8742840] | 804 | int owl_global_is_havezephyr(const owl_global *g) |
---|
[09489b89] | 805 | { |
---|
| 806 | if (g->havezephyr) return(1); |
---|
| 807 | return(0); |
---|
| 808 | } |
---|
[de03334] | 809 | |
---|
[ec6ff52] | 810 | owl_errqueue *owl_global_get_errqueue(owl_global *g) |
---|
| 811 | { |
---|
| 812 | return(&(g->errqueue)); |
---|
| 813 | } |
---|
[c9e72d1] | 814 | |
---|
[5a95b69] | 815 | owl_zbuddylist *owl_global_get_zephyr_buddylist(owl_global *g) |
---|
| 816 | { |
---|
| 817 | return(&(g->zbuddies)); |
---|
| 818 | } |
---|
[8232149] | 819 | |
---|
[f25812b] | 820 | GList **owl_global_get_zaldlist(owl_global *g) |
---|
| 821 | { |
---|
| 822 | return &(g->zaldlist); |
---|
| 823 | } |
---|
| 824 | |
---|
| 825 | int owl_global_get_pseudologin_notify(owl_global *g) |
---|
| 826 | { |
---|
| 827 | return g->pseudologin_notify; |
---|
| 828 | } |
---|
| 829 | |
---|
| 830 | void owl_global_set_pseudologin_notify(owl_global *g, int notify) |
---|
| 831 | { |
---|
| 832 | g->pseudologin_notify = notify; |
---|
| 833 | } |
---|
| 834 | |
---|
[8232149] | 835 | struct termios *owl_global_get_startup_tio(owl_global *g) |
---|
| 836 | { |
---|
| 837 | return(&(g->startup_tio)); |
---|
| 838 | } |
---|
[8e401cae] | 839 | |
---|
[04b16f8] | 840 | void owl_global_setup_default_filters(owl_global *g) |
---|
| 841 | { |
---|
| 842 | int i; |
---|
| 843 | static const struct { |
---|
| 844 | const char *name; |
---|
| 845 | const char *desc; |
---|
| 846 | } filters[] = { |
---|
| 847 | { "personal", |
---|
[efc460e] | 848 | "isprivate ^true$ and ( not type ^zephyr$ or ( class ^message ) )" }, |
---|
[04b16f8] | 849 | { "trash", |
---|
| 850 | "class ^mail$ or opcode ^ping$ or type ^admin$ or ( not login ^none$ )" }, |
---|
| 851 | { "wordwrap", "not ( type ^admin$ or type ^zephyr$ )" }, |
---|
| 852 | { "ping", "opcode ^ping$" }, |
---|
| 853 | { "auto", "opcode ^auto$" }, |
---|
| 854 | { "login", "not login ^none$" }, |
---|
| 855 | { "reply-lockout", "class ^noc or class ^mail$" }, |
---|
| 856 | { "out", "direction ^out$" }, |
---|
| 857 | { "aim", "type ^aim$" }, |
---|
| 858 | { "zephyr", "type ^zephyr$" }, |
---|
| 859 | { "none", "false" }, |
---|
| 860 | { "all", "true" }, |
---|
| 861 | { NULL, NULL } |
---|
| 862 | }; |
---|
| 863 | |
---|
| 864 | owl_function_debugmsg("startup: creating default filters"); |
---|
| 865 | |
---|
| 866 | for (i = 0; filters[i].name != NULL; i++) |
---|
| 867 | owl_global_add_filter(g, owl_filter_new_fromstring(filters[i].name, |
---|
| 868 | filters[i].desc)); |
---|
| 869 | } |
---|
[d12a8c7] | 870 | |
---|
| 871 | FILE *owl_global_get_debug_file_handle(owl_global *g) { |
---|
| 872 | static char *open_file = NULL; |
---|
| 873 | const char *filename = owl_global_get_debug_file(g); |
---|
| 874 | if (g->debug_file == NULL || |
---|
| 875 | (open_file && strcmp(filename, open_file) != 0)) { |
---|
[26ad412] | 876 | char *path; |
---|
[50522b5] | 877 | int fd; |
---|
| 878 | |
---|
[d12a8c7] | 879 | if (g->debug_file) |
---|
| 880 | fclose(g->debug_file); |
---|
[50522b5] | 881 | |
---|
| 882 | g->debug_file = NULL; |
---|
| 883 | |
---|
[3472845] | 884 | path = g_strdup_printf("%s.%d", filename, getpid()); |
---|
[26ad412] | 885 | fd = open(path, O_CREAT|O_WRONLY|O_EXCL, 0600); |
---|
[ddbbcffa] | 886 | g_free(path); |
---|
[26ad412] | 887 | |
---|
[50522b5] | 888 | if (fd >= 0) |
---|
| 889 | g->debug_file = fdopen(fd, "a"); |
---|
[d12a8c7] | 890 | |
---|
[ddbbcffa] | 891 | g_free(open_file); |
---|
[d4927a7] | 892 | open_file = g_strdup(filename); |
---|
[d12a8c7] | 893 | } |
---|
| 894 | return g->debug_file; |
---|
| 895 | } |
---|
[5f8ec6b] | 896 | |
---|
[47e0a6a] | 897 | const char *owl_global_get_kill_buffer(owl_global *g) { |
---|
[5f8ec6b] | 898 | return g->kill_buffer; |
---|
| 899 | } |
---|
| 900 | |
---|
[47e0a6a] | 901 | void owl_global_set_kill_buffer(owl_global *g, const char *kill, int len) { |
---|
| 902 | g_free(g->kill_buffer); |
---|
| 903 | g->kill_buffer = g_strndup(kill, len); |
---|
[5f8ec6b] | 904 | } |
---|
[47128d9] | 905 | |
---|
| 906 | void owl_global_add_interrupt(owl_global *g) { |
---|
| 907 | /* TODO: This can almost certainly be done with atomic |
---|
| 908 | * operations. Whatever. */ |
---|
| 909 | g_mutex_lock(g->interrupt_lock); |
---|
| 910 | g->interrupt_count++; |
---|
| 911 | g_mutex_unlock(g->interrupt_lock); |
---|
| 912 | } |
---|
| 913 | |
---|
| 914 | bool owl_global_take_interrupt(owl_global *g) { |
---|
| 915 | bool ans = false; |
---|
| 916 | g_mutex_lock(g->interrupt_lock); |
---|
| 917 | if (g->interrupt_count > 0) { |
---|
| 918 | ans = true; |
---|
| 919 | g->interrupt_count--; |
---|
| 920 | } |
---|
| 921 | g_mutex_unlock(g->interrupt_lock); |
---|
| 922 | return ans; |
---|
| 923 | } |
---|