[9c7a701] | 1 | #include "owl.h" |
---|
| 2 | |
---|
[1895c29] | 3 | static int dispatch_active = 0; |
---|
[4f2166b] | 4 | static int psa_active = 0; |
---|
[1895c29] | 5 | |
---|
[9cf96c8] | 6 | int _owl_select_timer_cmp(const owl_timer *t1, const owl_timer *t2) { |
---|
[ca1fc33a] | 7 | return t1->time - t2->time; |
---|
[b7bb454] | 8 | } |
---|
| 9 | |
---|
[9cf96c8] | 10 | int _owl_select_timer_eq(const owl_timer *t1, const owl_timer *t2) { |
---|
[ca1fc33a] | 11 | return t1 == t2; |
---|
[b7bb454] | 12 | } |
---|
| 13 | |
---|
[c675b39] | 14 | owl_timer *owl_select_add_timer(int after, int interval, void (*cb)(owl_timer *, void *), void (*destroy)(owl_timer*), void *data) |
---|
[b7bb454] | 15 | { |
---|
[ca1fc33a] | 16 | owl_timer *t = owl_malloc(sizeof(owl_timer)); |
---|
[58d1f8a] | 17 | GList **timers = owl_global_get_timerlist(&g); |
---|
[b7bb454] | 18 | |
---|
[ca1fc33a] | 19 | t->time = time(NULL) + after; |
---|
| 20 | t->interval = interval; |
---|
| 21 | t->callback = cb; |
---|
[c675b39] | 22 | t->destroy = destroy; |
---|
[ca1fc33a] | 23 | t->data = data; |
---|
[b7bb454] | 24 | |
---|
[58d1f8a] | 25 | *timers = g_list_insert_sorted(*timers, t, |
---|
| 26 | (GCompareFunc)_owl_select_timer_cmp); |
---|
[ca1fc33a] | 27 | return t; |
---|
[b7bb454] | 28 | } |
---|
| 29 | |
---|
| 30 | void owl_select_remove_timer(owl_timer *t) |
---|
| 31 | { |
---|
[58d1f8a] | 32 | GList **timers = owl_global_get_timerlist(&g); |
---|
| 33 | if (t && g_list_find(*timers, t)) { |
---|
| 34 | *timers = g_list_remove(*timers, t); |
---|
[c675b39] | 35 | if(t->destroy) { |
---|
| 36 | t->destroy(t); |
---|
| 37 | } |
---|
[ca1fc33a] | 38 | owl_free(t); |
---|
| 39 | } |
---|
[b7bb454] | 40 | } |
---|
| 41 | |
---|
[3a84694] | 42 | void owl_select_process_timers(struct timespec *timeout) |
---|
[b7bb454] | 43 | { |
---|
[ca1fc33a] | 44 | time_t now = time(NULL); |
---|
[58d1f8a] | 45 | GList **timers = owl_global_get_timerlist(&g); |
---|
[b7bb454] | 46 | |
---|
[58d1f8a] | 47 | while(*timers) { |
---|
| 48 | owl_timer *t = (*timers)->data; |
---|
[c675b39] | 49 | int remove = 0; |
---|
[b7bb454] | 50 | |
---|
[ca1fc33a] | 51 | if(t->time > now) |
---|
| 52 | break; |
---|
[b7bb454] | 53 | |
---|
[ca1fc33a] | 54 | /* Reschedule if appropriate */ |
---|
| 55 | if(t->interval > 0) { |
---|
| 56 | t->time = now + t->interval; |
---|
[58d1f8a] | 57 | *timers = g_list_remove(*timers, t); |
---|
| 58 | *timers = g_list_insert_sorted(*timers, t, |
---|
| 59 | (GCompareFunc)_owl_select_timer_cmp); |
---|
[ca1fc33a] | 60 | } else { |
---|
[c675b39] | 61 | remove = 1; |
---|
[ca1fc33a] | 62 | } |
---|
[b7bb454] | 63 | |
---|
[ca1fc33a] | 64 | /* Do the callback */ |
---|
[c675b39] | 65 | t->callback(t, t->data); |
---|
| 66 | if(remove) { |
---|
| 67 | owl_select_remove_timer(t); |
---|
| 68 | } |
---|
[ca1fc33a] | 69 | } |
---|
[b7bb454] | 70 | |
---|
[58d1f8a] | 71 | if(*timers) { |
---|
| 72 | owl_timer *t = (*timers)->data; |
---|
[ca1fc33a] | 73 | timeout->tv_sec = t->time - now; |
---|
[58d1f8a] | 74 | if (timeout->tv_sec > 60) |
---|
| 75 | timeout->tv_sec = 60; |
---|
| 76 | } else { |
---|
| 77 | timeout->tv_sec = 60; |
---|
[ca1fc33a] | 78 | } |
---|
[b7bb454] | 79 | |
---|
[3a84694] | 80 | timeout->tv_nsec = 0; |
---|
[b7bb454] | 81 | } |
---|
| 82 | |
---|
[df0138f] | 83 | static const owl_io_dispatch *owl_select_find_io_dispatch_by_fd(const int fd) |
---|
| 84 | { |
---|
| 85 | int i, len; |
---|
| 86 | const owl_list *dl; |
---|
| 87 | owl_io_dispatch *d; |
---|
| 88 | dl = owl_global_get_io_dispatch_list(&g); |
---|
| 89 | len = owl_list_get_size(dl); |
---|
| 90 | for(i = 0; i < len; i++) { |
---|
| 91 | d = owl_list_get_element(dl, i); |
---|
| 92 | if (d->fd == fd) return d; |
---|
| 93 | } |
---|
| 94 | return NULL; |
---|
| 95 | } |
---|
| 96 | |
---|
| 97 | static int owl_select_find_io_dispatch(const owl_io_dispatch *in) |
---|
| 98 | { |
---|
| 99 | int i, len; |
---|
| 100 | const owl_list *dl; |
---|
| 101 | |
---|
| 102 | if (in != NULL) { |
---|
| 103 | dl = owl_global_get_io_dispatch_list(&g); |
---|
| 104 | len = owl_list_get_size(dl); |
---|
| 105 | for(i = 0; i < len; i++) { |
---|
| 106 | const owl_io_dispatch *d = owl_list_get_element(dl, i); |
---|
| 107 | if (d == in) return i; |
---|
| 108 | } |
---|
| 109 | } |
---|
| 110 | return -1; |
---|
| 111 | } |
---|
| 112 | |
---|
| 113 | void owl_select_remove_io_dispatch(const owl_io_dispatch *in) |
---|
| 114 | { |
---|
| 115 | int elt; |
---|
| 116 | if (in != NULL) { |
---|
| 117 | elt = owl_select_find_io_dispatch(in); |
---|
| 118 | if (elt != -1) { |
---|
| 119 | owl_list *dl = owl_global_get_io_dispatch_list(&g); |
---|
| 120 | owl_io_dispatch *d = owl_list_get_element(dl, elt); |
---|
| 121 | if (dispatch_active) |
---|
| 122 | d->needs_gc = 1; |
---|
| 123 | else { |
---|
| 124 | owl_list_remove_element(dl, elt); |
---|
| 125 | if (d->destroy) |
---|
| 126 | d->destroy(d); |
---|
| 127 | owl_free(d); |
---|
| 128 | } |
---|
| 129 | } |
---|
| 130 | } |
---|
| 131 | } |
---|
| 132 | |
---|
| 133 | void owl_select_io_dispatch_gc(void) |
---|
| 134 | { |
---|
| 135 | int i; |
---|
| 136 | owl_list *dl; |
---|
| 137 | |
---|
| 138 | dl = owl_global_get_io_dispatch_list(&g); |
---|
| 139 | /* |
---|
| 140 | * Count down so we aren't set off by removing items from the list |
---|
| 141 | * during the iteration. |
---|
| 142 | */ |
---|
| 143 | for(i = owl_list_get_size(dl) - 1; i >= 0; i--) { |
---|
| 144 | owl_io_dispatch *d = owl_list_get_element(dl, i); |
---|
| 145 | if(d->needs_gc) { |
---|
| 146 | owl_select_remove_io_dispatch(d); |
---|
| 147 | } |
---|
| 148 | } |
---|
| 149 | } |
---|
| 150 | |
---|
| 151 | /* Each FD may have at most one dispatcher. |
---|
| 152 | * If a new dispatch is added for an FD, the old one is removed. |
---|
| 153 | * mode determines what types of events are watched for, and may be any combination of: |
---|
| 154 | * OWL_IO_READ, OWL_IO_WRITE, OWL_IO_EXCEPT |
---|
| 155 | */ |
---|
| 156 | const owl_io_dispatch *owl_select_add_io_dispatch(int fd, int mode, void (*cb)(const owl_io_dispatch *, void *), void (*destroy)(const owl_io_dispatch *), void *data) |
---|
| 157 | { |
---|
| 158 | owl_io_dispatch *d = owl_malloc(sizeof(owl_io_dispatch)); |
---|
| 159 | owl_list *dl = owl_global_get_io_dispatch_list(&g); |
---|
| 160 | |
---|
| 161 | d->fd = fd; |
---|
| 162 | d->needs_gc = 0; |
---|
| 163 | d->mode = mode; |
---|
| 164 | d->callback = cb; |
---|
| 165 | d->destroy = destroy; |
---|
| 166 | d->data = data; |
---|
| 167 | |
---|
| 168 | owl_select_remove_io_dispatch(owl_select_find_io_dispatch_by_fd(fd)); |
---|
| 169 | owl_list_append_element(dl, d); |
---|
| 170 | |
---|
| 171 | return d; |
---|
| 172 | } |
---|
| 173 | |
---|
| 174 | int owl_select_prepare_io_dispatch_fd_sets(fd_set *rfds, fd_set *wfds, fd_set *efds) { |
---|
| 175 | int i, len, max_fd; |
---|
| 176 | owl_io_dispatch *d; |
---|
| 177 | owl_list *dl = owl_global_get_io_dispatch_list(&g); |
---|
| 178 | |
---|
| 179 | max_fd = 0; |
---|
| 180 | len = owl_list_get_size(dl); |
---|
| 181 | for (i = 0; i < len; i++) { |
---|
| 182 | d = owl_list_get_element(dl, i); |
---|
| 183 | if (d->mode & (OWL_IO_READ | OWL_IO_WRITE | OWL_IO_EXCEPT)) { |
---|
| 184 | if (max_fd < d->fd) max_fd = d->fd; |
---|
| 185 | if (d->mode & OWL_IO_READ) FD_SET(d->fd, rfds); |
---|
| 186 | if (d->mode & OWL_IO_WRITE) FD_SET(d->fd, wfds); |
---|
| 187 | if (d->mode & OWL_IO_EXCEPT) FD_SET(d->fd, efds); |
---|
| 188 | } |
---|
| 189 | } |
---|
| 190 | return max_fd + 1; |
---|
| 191 | } |
---|
| 192 | |
---|
| 193 | void owl_select_io_dispatch(const fd_set *rfds, const fd_set *wfds, const fd_set *efds, const int max_fd) |
---|
| 194 | { |
---|
| 195 | int i, len; |
---|
| 196 | owl_io_dispatch *d; |
---|
| 197 | owl_list *dl = owl_global_get_io_dispatch_list(&g); |
---|
| 198 | |
---|
| 199 | dispatch_active = 1; |
---|
| 200 | len = owl_list_get_size(dl); |
---|
| 201 | for (i = 0; i < len; i++) { |
---|
| 202 | d = owl_list_get_element(dl, i); |
---|
| 203 | if (d->fd < max_fd && d->callback != NULL && |
---|
| 204 | ((d->mode & OWL_IO_READ && FD_ISSET(d->fd, rfds)) || |
---|
| 205 | (d->mode & OWL_IO_WRITE && FD_ISSET(d->fd, wfds)) || |
---|
| 206 | (d->mode & OWL_IO_EXCEPT && FD_ISSET(d->fd, efds)))) { |
---|
| 207 | d->callback(d, d->data); |
---|
| 208 | } |
---|
| 209 | } |
---|
| 210 | dispatch_active = 0; |
---|
| 211 | owl_select_io_dispatch_gc(); |
---|
| 212 | } |
---|
| 213 | |
---|
| 214 | int owl_select_add_perl_io_dispatch(int fd, int mode, SV *cb) |
---|
| 215 | { |
---|
| 216 | const owl_io_dispatch *d = owl_select_find_io_dispatch_by_fd(fd); |
---|
| 217 | if (d != NULL && d->callback != owl_perlconfig_io_dispatch) { |
---|
| 218 | /* Don't mess with non-perl dispatch functions from here. */ |
---|
| 219 | return 1; |
---|
| 220 | } |
---|
| 221 | owl_select_add_io_dispatch(fd, mode, owl_perlconfig_io_dispatch, owl_perlconfig_io_dispatch_destroy, cb); |
---|
| 222 | return 0; |
---|
| 223 | } |
---|
| 224 | |
---|
| 225 | int owl_select_remove_perl_io_dispatch(int fd) |
---|
| 226 | { |
---|
| 227 | const owl_io_dispatch *d = owl_select_find_io_dispatch_by_fd(fd); |
---|
| 228 | if (d != NULL && d->callback == owl_perlconfig_io_dispatch) { |
---|
| 229 | /* Only remove perl io dispatchers from here. */ |
---|
| 230 | owl_select_remove_io_dispatch(d); |
---|
| 231 | return 0; |
---|
| 232 | } |
---|
| 233 | return 1; |
---|
| 234 | } |
---|
| 235 | |
---|
[2f69081] | 236 | int owl_select_aim_hack(fd_set *rfds, fd_set *wfds) |
---|
[9c7a701] | 237 | { |
---|
| 238 | aim_conn_t *cur; |
---|
| 239 | aim_session_t *sess; |
---|
| 240 | int max_fd; |
---|
| 241 | |
---|
| 242 | max_fd = 0; |
---|
| 243 | sess = owl_global_get_aimsess(&g); |
---|
| 244 | for (cur = sess->connlist, max_fd = 0; cur; cur = cur->next) { |
---|
| 245 | if (cur->fd != -1) { |
---|
[2f69081] | 246 | FD_SET(cur->fd, rfds); |
---|
| 247 | if (cur->status & AIM_CONN_STATUS_INPROGRESS) { |
---|
| 248 | /* Yes, we're checking writable sockets here. Without it, AIM |
---|
| 249 | login is really slow. */ |
---|
| 250 | FD_SET(cur->fd, wfds); |
---|
| 251 | } |
---|
| 252 | |
---|
[9c7a701] | 253 | if (cur->fd > max_fd) |
---|
| 254 | max_fd = cur->fd; |
---|
| 255 | } |
---|
| 256 | } |
---|
| 257 | return max_fd; |
---|
| 258 | } |
---|
| 259 | |
---|
[5a35c708] | 260 | void owl_process_input_char(owl_input j) |
---|
| 261 | { |
---|
| 262 | int ret; |
---|
| 263 | owl_popwin *pw; |
---|
| 264 | owl_editwin *tw; |
---|
| 265 | |
---|
| 266 | owl_global_set_lastinputtime(&g, time(NULL)); |
---|
| 267 | pw=owl_global_get_popwin(&g); |
---|
| 268 | tw=owl_global_get_typwin(&g); |
---|
| 269 | |
---|
| 270 | owl_global_set_lastinputtime(&g, time(NULL)); |
---|
| 271 | /* find and activate the current keymap. |
---|
| 272 | * TODO: this should really get fixed by activating |
---|
| 273 | * keymaps as we switch between windows... |
---|
| 274 | */ |
---|
| 275 | if (pw && owl_popwin_is_active(pw) && owl_global_get_viewwin(&g)) { |
---|
| 276 | owl_context_set_popless(owl_global_get_context(&g), |
---|
| 277 | owl_global_get_viewwin(&g)); |
---|
| 278 | owl_function_activate_keymap("popless"); |
---|
| 279 | } else if (owl_global_is_typwin_active(&g) |
---|
| 280 | && owl_editwin_get_style(tw)==OWL_EDITWIN_STYLE_ONELINE) { |
---|
| 281 | /* |
---|
| 282 | owl_context_set_editline(owl_global_get_context(&g), tw); |
---|
| 283 | owl_function_activate_keymap("editline"); |
---|
| 284 | */ |
---|
| 285 | } else if (owl_global_is_typwin_active(&g) |
---|
| 286 | && owl_editwin_get_style(tw)==OWL_EDITWIN_STYLE_MULTILINE) { |
---|
| 287 | owl_context_set_editmulti(owl_global_get_context(&g), tw); |
---|
| 288 | owl_function_activate_keymap("editmulti"); |
---|
| 289 | } else { |
---|
| 290 | owl_context_set_recv(owl_global_get_context(&g)); |
---|
| 291 | owl_function_activate_keymap("recv"); |
---|
| 292 | } |
---|
| 293 | /* now actually handle the keypress */ |
---|
| 294 | ret = owl_keyhandler_process(owl_global_get_keyhandler(&g), j); |
---|
| 295 | if (ret!=0 && ret!=1) { |
---|
| 296 | owl_function_makemsg("Unable to handle keypress"); |
---|
| 297 | } |
---|
| 298 | } |
---|
| 299 | |
---|
[40bda84] | 300 | void owl_select_mask_signals(sigset_t *oldmask) { |
---|
| 301 | sigset_t set; |
---|
| 302 | |
---|
| 303 | sigemptyset(&set); |
---|
| 304 | sigaddset(&set, SIGINT); |
---|
| 305 | sigaddset(&set, SIGTSTP); |
---|
| 306 | sigprocmask(SIG_BLOCK, &set, oldmask); |
---|
| 307 | } |
---|
| 308 | |
---|
| 309 | void owl_select_handle_intr(sigset_t *restore) |
---|
[3a84694] | 310 | { |
---|
| 311 | owl_input in; |
---|
[0cb6c26] | 312 | |
---|
| 313 | owl_global_unset_interrupted(&g); |
---|
[40bda84] | 314 | |
---|
| 315 | sigprocmask(SIG_SETMASK, restore, NULL); |
---|
[0cb6c26] | 316 | |
---|
[3a84694] | 317 | in.ch = in.uch = owl_global_get_startup_tio(&g)->c_cc[VINTR]; |
---|
| 318 | owl_process_input_char(in); |
---|
| 319 | } |
---|
| 320 | |
---|
[9f5e847] | 321 | void owl_select_check_tstp(void) { |
---|
[40bda84] | 322 | if(owl_global_is_sigstp(&g)) { |
---|
| 323 | owl_function_makemsg("Use :suspend to suspend."); |
---|
| 324 | owl_global_unset_got_sigstp(&g); |
---|
| 325 | } |
---|
| 326 | } |
---|
| 327 | |
---|
[4f2166b] | 328 | owl_ps_action *owl_select_add_pre_select_action(int (*cb)(owl_ps_action *, void *), void (*destroy)(owl_ps_action *), void *data) |
---|
| 329 | { |
---|
| 330 | owl_ps_action *a = owl_malloc(sizeof(owl_ps_action)); |
---|
| 331 | owl_list *psa_list = owl_global_get_psa_list(&g); |
---|
| 332 | a->needs_gc = 0; |
---|
| 333 | a->callback = cb; |
---|
| 334 | a->destroy = destroy; |
---|
| 335 | a->data = data; |
---|
| 336 | owl_list_append_element(psa_list, a); |
---|
| 337 | return a; |
---|
| 338 | } |
---|
| 339 | |
---|
| 340 | void owl_select_psa_gc(void) |
---|
| 341 | { |
---|
| 342 | int i; |
---|
| 343 | owl_list *psa_list; |
---|
| 344 | owl_ps_action *a; |
---|
| 345 | |
---|
| 346 | psa_list = owl_global_get_psa_list(&g); |
---|
| 347 | for (i = owl_list_get_size(psa_list) - 1; i >= 0; i--) { |
---|
| 348 | a = owl_list_get_element(psa_list, i); |
---|
| 349 | if (a->needs_gc) { |
---|
| 350 | owl_list_remove_element(psa_list, i); |
---|
| 351 | if (a->destroy) { |
---|
| 352 | a->destroy(a); |
---|
| 353 | } |
---|
| 354 | owl_free(a); |
---|
| 355 | } |
---|
| 356 | } |
---|
| 357 | } |
---|
| 358 | |
---|
| 359 | void owl_select_remove_pre_select_action(owl_ps_action *a) |
---|
| 360 | { |
---|
| 361 | a->needs_gc = 1; |
---|
| 362 | if (!psa_active) |
---|
| 363 | owl_select_psa_gc(); |
---|
| 364 | } |
---|
| 365 | |
---|
| 366 | int owl_select_do_pre_select_actions(void) |
---|
| 367 | { |
---|
| 368 | int i, len, ret; |
---|
| 369 | owl_list *psa_list; |
---|
| 370 | |
---|
| 371 | psa_active = 1; |
---|
| 372 | ret = 0; |
---|
| 373 | psa_list = owl_global_get_psa_list(&g); |
---|
| 374 | len = owl_list_get_size(psa_list); |
---|
| 375 | for (i = 0; i < len; i++) { |
---|
| 376 | owl_ps_action *a = owl_list_get_element(psa_list, i); |
---|
| 377 | if (a->callback != NULL && a->callback(a, a->data)) { |
---|
| 378 | ret = 1; |
---|
| 379 | } |
---|
| 380 | } |
---|
| 381 | psa_active = 0; |
---|
| 382 | owl_select_psa_gc(); |
---|
| 383 | return ret; |
---|
| 384 | } |
---|
| 385 | |
---|
[c79a047] | 386 | void owl_select(void) |
---|
[9c7a701] | 387 | { |
---|
[df0138f] | 388 | int i, max_fd, max_fd2, aim_done, ret; |
---|
[9c7a701] | 389 | fd_set r; |
---|
[df0138f] | 390 | fd_set w; |
---|
[9c7a701] | 391 | fd_set e; |
---|
[2f69081] | 392 | fd_set aim_rfds, aim_wfds; |
---|
[3a84694] | 393 | struct timespec timeout; |
---|
[0cb6c26] | 394 | sigset_t mask; |
---|
[9c7a701] | 395 | |
---|
[b7bb454] | 396 | owl_select_process_timers(&timeout); |
---|
[9c7a701] | 397 | |
---|
[40bda84] | 398 | owl_select_mask_signals(&mask); |
---|
| 399 | |
---|
| 400 | owl_select_check_tstp(); |
---|
[3a84694] | 401 | if(owl_global_is_interrupted(&g)) { |
---|
[40bda84] | 402 | owl_select_handle_intr(&mask); |
---|
[3a84694] | 403 | return; |
---|
| 404 | } |
---|
[df0138f] | 405 | FD_ZERO(&r); |
---|
| 406 | FD_ZERO(&w); |
---|
| 407 | FD_ZERO(&e); |
---|
[3a84694] | 408 | |
---|
[6fc40a7] | 409 | max_fd = owl_select_prepare_io_dispatch_fd_sets(&r, &w, &e); |
---|
[9c7a701] | 410 | |
---|
| 411 | /* AIM HACK: |
---|
| 412 | * |
---|
| 413 | * The problem - I'm not sure where to hook into the owl/faim |
---|
| 414 | * interface to keep track of when the AIM socket(s) open and |
---|
| 415 | * close. In particular, the bosconn thing throws me off. So, |
---|
| 416 | * rather than register particular dispatchers for AIM, I look up |
---|
| 417 | * the relevant FDs and add them to select's watch lists, then |
---|
| 418 | * check for them individually before moving on to the other |
---|
| 419 | * dispatchers. --asedeno |
---|
| 420 | */ |
---|
| 421 | aim_done = 1; |
---|
[2f69081] | 422 | FD_ZERO(&aim_rfds); |
---|
| 423 | FD_ZERO(&aim_wfds); |
---|
[9c7a701] | 424 | if (owl_global_is_doaimevents(&g)) { |
---|
| 425 | aim_done = 0; |
---|
[df0138f] | 426 | max_fd2 = owl_select_aim_hack(&aim_rfds, &aim_wfds); |
---|
| 427 | if (max_fd < max_fd2) max_fd = max_fd2; |
---|
| 428 | for(i = 0; i <= max_fd2; i++) { |
---|
[2f69081] | 429 | if (FD_ISSET(i, &aim_rfds)) { |
---|
[9c7a701] | 430 | FD_SET(i, &r); |
---|
| 431 | FD_SET(i, &e); |
---|
| 432 | } |
---|
[df0138f] | 433 | if (FD_ISSET(i, &aim_wfds)) { |
---|
| 434 | FD_SET(i, &w); |
---|
| 435 | FD_SET(i, &e); |
---|
| 436 | } |
---|
[9c7a701] | 437 | } |
---|
| 438 | } |
---|
| 439 | /* END AIM HACK */ |
---|
[2f69081] | 440 | |
---|
[4f2166b] | 441 | if (owl_select_do_pre_select_actions()) { |
---|
| 442 | timeout.tv_sec = 0; |
---|
| 443 | timeout.tv_nsec = 0; |
---|
| 444 | } |
---|
| 445 | |
---|
[df0138f] | 446 | ret = pselect(max_fd+1, &r, &w, &e, &timeout, &mask); |
---|
[3a84694] | 447 | |
---|
| 448 | if(ret < 0 && errno == EINTR) { |
---|
[40bda84] | 449 | owl_select_check_tstp(); |
---|
[3a84694] | 450 | if(owl_global_is_interrupted(&g)) { |
---|
[40bda84] | 451 | owl_select_handle_intr(NULL); |
---|
[3a84694] | 452 | } |
---|
[40bda84] | 453 | sigprocmask(SIG_SETMASK, &mask, NULL); |
---|
[3a84694] | 454 | return; |
---|
| 455 | } |
---|
| 456 | |
---|
[40bda84] | 457 | sigprocmask(SIG_SETMASK, &mask, NULL); |
---|
[3a84694] | 458 | |
---|
| 459 | if(ret > 0) { |
---|
[7ca5d3e] | 460 | /* AIM HACK: process all AIM events at once. */ |
---|
| 461 | for(i = 0; !aim_done && i <= max_fd; i++) { |
---|
[df0138f] | 462 | if (FD_ISSET(i, &r) || FD_ISSET(i, &w) || FD_ISSET(i, &e)) { |
---|
[7ca5d3e] | 463 | if (FD_ISSET(i, &aim_rfds) || FD_ISSET(i, &aim_wfds)) { |
---|
[9c7a701] | 464 | owl_process_aim(); |
---|
| 465 | aim_done = 1; |
---|
| 466 | } |
---|
| 467 | } |
---|
| 468 | } |
---|
[df0138f] | 469 | owl_select_io_dispatch(&r, &w, &e, max_fd); |
---|
[9c7a701] | 470 | } |
---|
| 471 | } |
---|