2 /* Jim - A small embeddable Tcl interpreter
4 * Copyright 2005 Salvatore Sanfilippo <antirez@invece.org>
5 * Copyright 2005 Clemens Hintze <c.hintze@gmx.net>
6 * Copyright 2005 patthoyts - Pat Thoyts <patthoyts@users.sf.net>
7 * Copyright 2008 oharboe - Øyvind Harboe - oyvind.harboe@zylin.com
8 * Copyright 2008 Andrew Lunn <andrew@lunn.ch>
9 * Copyright 2008 Duane Ellis <openocd@duaneellis.com>
10 * Copyright 2008 Uwe Klein <uklein@klein-messgeraete.de>
12 * Redistribution and use in source and binary forms, with or without
13 * modification, are permitted provided that the following conditions
16 * 1. Redistributions of source code must retain the above copyright
17 * notice, this list of conditions and the following disclaimer.
18 * 2. Redistributions in binary form must reproduce the above
19 * copyright notice, this list of conditions and the following
20 * disclaimer in the documentation and/or other materials
21 * provided with the distribution.
23 * THIS SOFTWARE IS PROVIDED BY THE JIM TCL PROJECT ``AS IS'' AND ANY
24 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
25 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
26 * PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
27 * JIM TCL PROJECT OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
28 * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
29 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
30 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
32 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
33 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
34 * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
36 * The views and conclusions contained in the software and documentation
37 * are those of the authors and should not be interpreted as representing
38 * official policies, either expressed or implied, of the Jim Tcl Project.
41 #include "jimautoconf.h"
43 #include <jim-eventloop.h>
47 #include <sys/types.h>
52 #if defined(__MINGW32__)
57 #ifdef HAVE_SYS_SELECT_H
58 #include <sys/select.h>
62 /* XXX: Implement this in terms of select() or nanosleep() */
63 #define msleep(MS) sleep((MS) / 1000)
64 #warning "sub-second sleep not supported"
66 #define msleep(MS) sleep((MS) / 1000); usleep(((MS) % 1000) * 1000);
72 /* File event structure */
73 typedef struct Jim_FileEvent
76 int mask
; /* one of JIM_EVENT_(READABLE|WRITABLE|EXCEPTION) */
77 Jim_FileProc
*fileProc
;
78 Jim_EventFinalizerProc
*finalizerProc
;
80 struct Jim_FileEvent
*next
;
83 /* Time event structure */
84 typedef struct Jim_TimeEvent
86 jim_wide id
; /* time event identifier. */
87 int mode
; /* restart, repetitive .. UK */
88 long initialms
; /* initial relativ timer value UK */
89 jim_wide when
; /* milliseconds */
90 Jim_TimeProc
*timeProc
;
91 Jim_EventFinalizerProc
*finalizerProc
;
93 struct Jim_TimeEvent
*next
;
96 /* Per-interp stucture containing the state of the event loop */
97 typedef struct Jim_EventLoop
99 Jim_FileEvent
*fileEventHead
;
100 Jim_TimeEvent
*timeEventHead
;
101 jim_wide timeEventNextId
; /* highest event id created, starting at 1 */
103 int suppress_bgerror
; /* bgerror returned break, so don't call it again */
106 static void JimAfterTimeHandler(Jim_Interp
*interp
, void *clientData
);
107 static void JimAfterTimeEventFinalizer(Jim_Interp
*interp
, void *clientData
);
109 int Jim_EvalObjBackground(Jim_Interp
*interp
, Jim_Obj
*scriptObjPtr
)
111 Jim_EventLoop
*eventLoop
= Jim_GetAssocData(interp
, "eventloop");
112 Jim_CallFrame
*savedFramePtr
;
115 savedFramePtr
= interp
->framePtr
;
116 interp
->framePtr
= interp
->topFramePtr
;
117 retval
= Jim_EvalObj(interp
, scriptObjPtr
);
118 interp
->framePtr
= savedFramePtr
;
119 /* Try to report the error (if any) via the bgerror proc */
120 if (retval
!= JIM_OK
&& !eventLoop
->suppress_bgerror
) {
124 objv
[0] = Jim_NewStringObj(interp
, "bgerror", -1);
125 objv
[1] = Jim_GetResult(interp
);
126 Jim_IncrRefCount(objv
[0]);
127 Jim_IncrRefCount(objv
[1]);
128 if (Jim_GetCommand(interp
, objv
[0], JIM_NONE
) == NULL
|| (rc
= Jim_EvalObjVector(interp
, 2, objv
)) != JIM_OK
) {
129 if (rc
== JIM_BREAK
) {
130 /* No more bgerror calls */
131 eventLoop
->suppress_bgerror
++;
134 /* Report the error to stderr. */
135 Jim_MakeErrorMessage(interp
);
136 fprintf(stderr
, "%s\n", Jim_String(Jim_GetResult(interp
)));
137 /* And reset the result */
138 Jim_SetResultString(interp
, "", -1);
141 Jim_DecrRefCount(interp
, objv
[0]);
142 Jim_DecrRefCount(interp
, objv
[1]);
148 void Jim_CreateFileHandler(Jim_Interp
*interp
, FILE * handle
, int mask
,
149 Jim_FileProc
* proc
, void *clientData
, Jim_EventFinalizerProc
* finalizerProc
)
152 Jim_EventLoop
*eventLoop
= Jim_GetAssocData(interp
, "eventloop");
154 fe
= Jim_Alloc(sizeof(*fe
));
158 fe
->finalizerProc
= finalizerProc
;
159 fe
->clientData
= clientData
;
160 fe
->next
= eventLoop
->fileEventHead
;
161 eventLoop
->fileEventHead
= fe
;
165 * Removes all event handlers for 'handle' that match 'mask'.
167 void Jim_DeleteFileHandler(Jim_Interp
*interp
, FILE * handle
, int mask
)
169 Jim_FileEvent
*fe
, *next
, *prev
= NULL
;
170 Jim_EventLoop
*eventLoop
= Jim_GetAssocData(interp
, "eventloop");
172 for (fe
= eventLoop
->fileEventHead
; fe
; fe
= next
) {
174 if (fe
->handle
== handle
&& (fe
->mask
& mask
)) {
175 /* Remove this entry from the list */
177 eventLoop
->fileEventHead
= next
;
180 if (fe
->finalizerProc
)
181 fe
->finalizerProc(interp
, fe
->clientData
);
190 * Returns the time since interp creation in milliseconds.
192 static jim_wide
JimGetTime(Jim_EventLoop
*eventLoop
)
196 gettimeofday(&tv
, NULL
);
198 return (jim_wide
)(tv
.tv_sec
- eventLoop
->timeBase
) * 1000 + tv
.tv_usec
/ 1000;
201 jim_wide
Jim_CreateTimeHandler(Jim_Interp
*interp
, jim_wide milliseconds
,
202 Jim_TimeProc
* proc
, void *clientData
, Jim_EventFinalizerProc
* finalizerProc
)
204 Jim_EventLoop
*eventLoop
= Jim_GetAssocData(interp
, "eventloop");
205 jim_wide id
= ++eventLoop
->timeEventNextId
;
206 Jim_TimeEvent
*te
, *e
, *prev
;
208 te
= Jim_Alloc(sizeof(*te
));
211 te
->initialms
= milliseconds
;
212 te
->when
= JimGetTime(eventLoop
) + milliseconds
;
214 te
->finalizerProc
= finalizerProc
;
215 te
->clientData
= clientData
;
217 /* Add to the appropriate place in the list */
219 for (e
= eventLoop
->timeEventHead
; e
; e
= e
->next
) {
220 if (te
->when
< e
->when
) {
226 te
->next
= prev
->next
;
230 te
->next
= eventLoop
->timeEventHead
;
231 eventLoop
->timeEventHead
= te
;
237 static jim_wide
JimParseAfterId(Jim_Obj
*idObj
)
239 const char *tok
= Jim_String(idObj
);
242 if (strncmp(tok
, "after#", 6) == 0 && Jim_StringToWide(tok
+ 6, &id
, 10) == JIM_OK
) {
243 /* Got an event by id */
249 static jim_wide
JimFindAfterByScript(Jim_EventLoop
*eventLoop
, Jim_Obj
*scriptObj
)
253 for (te
= eventLoop
->timeEventHead
; te
; te
= te
->next
) {
254 /* Is this an 'after' event? */
255 if (te
->timeProc
== JimAfterTimeHandler
) {
256 if (Jim_StringEqObj(scriptObj
, te
->clientData
)) {
261 return -1; /* NO event with the specified ID found */
264 static Jim_TimeEvent
*JimFindTimeHandlerById(Jim_EventLoop
*eventLoop
, jim_wide id
)
268 for (te
= eventLoop
->timeEventHead
; te
; te
= te
->next
) {
276 static Jim_TimeEvent
*Jim_RemoveTimeHandler(Jim_EventLoop
*eventLoop
, jim_wide id
)
278 Jim_TimeEvent
*te
, *prev
= NULL
;
280 for (te
= eventLoop
->timeEventHead
; te
; te
= te
->next
) {
283 eventLoop
->timeEventHead
= te
->next
;
285 prev
->next
= te
->next
;
293 static void Jim_FreeTimeHandler(Jim_Interp
*interp
, Jim_TimeEvent
*te
)
295 if (te
->finalizerProc
)
296 te
->finalizerProc(interp
, te
->clientData
);
300 jim_wide
Jim_DeleteTimeHandler(Jim_Interp
*interp
, jim_wide id
)
303 Jim_EventLoop
*eventLoop
= Jim_GetAssocData(interp
, "eventloop");
305 if (id
> eventLoop
->timeEventNextId
) {
306 return -2; /* wrong event ID */
309 te
= Jim_RemoveTimeHandler(eventLoop
, id
);
313 remain
= te
->when
- JimGetTime(eventLoop
);
314 remain
= (remain
< 0) ? 0 : remain
;
316 Jim_FreeTimeHandler(interp
, te
);
319 return -1; /* NO event with the specified ID found */
322 /* --- POSIX version of Jim_ProcessEvents, for now the only available --- */
324 /* Process every pending time event, then every pending file event
325 * (that may be registered by time event callbacks just processed).
326 * Without special flags the function sleeps until some file event
327 * fires, or when the next time event occurrs (if any).
329 * If flags is 0, the function does nothing and returns.
330 * if flags has JIM_ALL_EVENTS set, all the kind of events are processed.
331 * if flags has JIM_FILE_EVENTS set, file events are processed.
332 * if flags has JIM_TIME_EVENTS set, time events are processed.
333 * if flags has JIM_DONT_WAIT set the function returns ASAP until all
334 * the events that's possible to process without to wait are processed.
336 * The function returns the number of events processed or -1 if
337 * there are no matching handlers, or -2 on error.
339 int Jim_ProcessEvents(Jim_Interp
*interp
, int flags
)
341 jim_wide sleep_ms
= -1;
343 Jim_EventLoop
*eventLoop
= Jim_GetAssocData(interp
, "eventloop");
344 Jim_FileEvent
*fe
= eventLoop
->fileEventHead
;
348 if ((flags
& JIM_FILE_EVENTS
) == 0 || fe
== NULL
) {
350 if ((flags
& JIM_TIME_EVENTS
) == 0 || eventLoop
->timeEventHead
== NULL
) {
356 /* Note that we want call select() even if there are no
357 * file events to process as long as we want to process time
358 * events, in order to sleep until the next time event is ready
361 if (flags
& JIM_DONT_WAIT
) {
365 else if (flags
& JIM_TIME_EVENTS
) {
366 /* The nearest timer is always at the head of the list */
367 if (eventLoop
->timeEventHead
) {
368 Jim_TimeEvent
*shortest
= eventLoop
->timeEventHead
;
370 /* Calculate the time missing for the nearest
372 sleep_ms
= shortest
->when
- JimGetTime(eventLoop
);
384 if (flags
& JIM_FILE_EVENTS
) {
386 struct timeval tv
, *tvp
= NULL
;
387 fd_set rfds
, wfds
, efds
;
394 /* Check file events */
396 int fd
= fileno(fe
->handle
);
398 if (fe
->mask
& JIM_EVENT_READABLE
)
400 if (fe
->mask
& JIM_EVENT_WRITABLE
)
402 if (fe
->mask
& JIM_EVENT_EXCEPTION
)
411 tvp
->tv_sec
= sleep_ms
/ 1000;
412 tvp
->tv_usec
= 1000 * (sleep_ms
% 1000);
415 retval
= select(maxfd
+ 1, &rfds
, &wfds
, &efds
, tvp
);
418 if (errno
== EINVAL
) {
419 /* This can happen on mingw32 if a non-socket filehandle is passed */
420 Jim_SetResultString(interp
, "non-waitable filehandle", -1);
424 else if (retval
> 0) {
425 fe
= eventLoop
->fileEventHead
;
427 int fd
= fileno(fe
->handle
);
430 if ((fe
->mask
& JIM_EVENT_READABLE
) && FD_ISSET(fd
, &rfds
))
431 mask
|= JIM_EVENT_READABLE
;
432 if (fe
->mask
& JIM_EVENT_WRITABLE
&& FD_ISSET(fd
, &wfds
))
433 mask
|= JIM_EVENT_WRITABLE
;
434 if (fe
->mask
& JIM_EVENT_EXCEPTION
&& FD_ISSET(fd
, &efds
))
435 mask
|= JIM_EVENT_EXCEPTION
;
438 if (fe
->fileProc(interp
, fe
->clientData
, mask
) != JIM_OK
) {
439 /* Remove the element on handler error */
440 Jim_DeleteFileHandler(interp
, fe
->handle
, mask
);
443 /* After an event is processed our file event list
444 * may no longer be the same, so what we do
445 * is to clear the bit for this file descriptor and
446 * restart again from the head. */
447 fe
= eventLoop
->fileEventHead
;
464 /* Check time events */
465 te
= eventLoop
->timeEventHead
;
466 maxId
= eventLoop
->timeEventNextId
;
470 if (te
->id
> maxId
) {
474 if (JimGetTime(eventLoop
) >= te
->when
) {
476 /* Remove from the list before executing */
477 Jim_RemoveTimeHandler(eventLoop
, id
);
478 te
->timeProc(interp
, te
->clientData
);
479 /* After an event is processed our time event list may
480 * no longer be the same, so we restart from head.
481 * Still we make sure to don't process events registered
482 * by event handlers itself in order to don't loop forever
483 * even in case an [after 0] that continuously register
484 * itself. To do so we saved the max ID we want to handle. */
485 Jim_FreeTimeHandler(interp
, te
);
487 te
= eventLoop
->timeEventHead
;
498 /* ---------------------------------------------------------------------- */
500 static void JimELAssocDataDeleProc(Jim_Interp
*interp
, void *data
)
505 Jim_EventLoop
*eventLoop
= data
;
507 fe
= eventLoop
->fileEventHead
;
510 if (fe
->finalizerProc
)
511 fe
->finalizerProc(interp
, fe
->clientData
);
516 te
= eventLoop
->timeEventHead
;
519 if (te
->finalizerProc
)
520 te
->finalizerProc(interp
, te
->clientData
);
527 static int JimELVwaitCommand(Jim_Interp
*interp
, int argc
, Jim_Obj
*const *argv
)
529 Jim_EventLoop
*eventLoop
= Jim_CmdPrivData(interp
);
534 Jim_WrongNumArgs(interp
, 1, argv
, "name");
538 oldValue
= Jim_GetGlobalVariable(interp
, argv
[1], JIM_NONE
);
540 Jim_IncrRefCount(oldValue
);
543 /* If a result was left, it is an error */
544 if (Jim_Length(Jim_GetResult(interp
))) {
549 eventLoop
->suppress_bgerror
= 0;
551 while ((rc
= Jim_ProcessEvents(interp
, JIM_ALL_EVENTS
)) >= 0) {
553 currValue
= Jim_GetGlobalVariable(interp
, argv
[1], JIM_NONE
);
554 /* Stop the loop if the vwait-ed variable changed value,
555 * or if was unset and now is set (or the contrary)
556 * or if a signal was caught
558 if ((oldValue
&& !currValue
) ||
559 (!oldValue
&& currValue
) ||
560 (oldValue
&& currValue
&& !Jim_StringEqObj(oldValue
, currValue
)) ||
561 Jim_CheckSignal(interp
)) {
566 Jim_DecrRefCount(interp
, oldValue
);
572 Jim_SetEmptyResult(interp
);
576 static int JimELUpdateCommand(Jim_Interp
*interp
, int argc
, Jim_Obj
*const *argv
)
578 Jim_EventLoop
*eventLoop
= Jim_CmdPrivData(interp
);
579 static const char * const options
[] = {
582 enum { UPDATE_IDLE
, UPDATE_NONE
};
583 int option
= UPDATE_NONE
;
584 int flags
= JIM_TIME_EVENTS
;
587 flags
= JIM_ALL_EVENTS
;
589 else if (argc
> 2 || Jim_GetEnum(interp
, argv
[1], options
, &option
, NULL
, JIM_ERRMSG
| JIM_ENUM_ABBREV
) != JIM_OK
) {
590 Jim_WrongNumArgs(interp
, 1, argv
, "?idletasks?");
594 eventLoop
->suppress_bgerror
= 0;
596 while (Jim_ProcessEvents(interp
, flags
| JIM_DONT_WAIT
) > 0) {
602 static void JimAfterTimeHandler(Jim_Interp
*interp
, void *clientData
)
604 Jim_Obj
*objPtr
= clientData
;
606 Jim_EvalObjBackground(interp
, objPtr
);
609 static void JimAfterTimeEventFinalizer(Jim_Interp
*interp
, void *clientData
)
611 Jim_Obj
*objPtr
= clientData
;
613 Jim_DecrRefCount(interp
, objPtr
);
616 static int JimELAfterCommand(Jim_Interp
*interp
, int argc
, Jim_Obj
*const *argv
)
618 Jim_EventLoop
*eventLoop
= Jim_CmdPrivData(interp
);
620 Jim_Obj
*objPtr
, *idObjPtr
;
621 static const char * const options
[] = {
622 "cancel", "info", "idle", NULL
625 { AFTER_CANCEL
, AFTER_INFO
, AFTER_IDLE
, AFTER_RESTART
, AFTER_EXPIRE
, AFTER_CREATE
};
626 int option
= AFTER_CREATE
;
629 Jim_WrongNumArgs(interp
, 1, argv
, "option ?arg ...?");
632 if (Jim_GetWide(interp
, argv
[1], &ms
) != JIM_OK
) {
633 if (Jim_GetEnum(interp
, argv
[1], options
, &option
, "argument", JIM_ERRMSG
) != JIM_OK
) {
636 Jim_SetEmptyResult(interp
);
638 else if (argc
== 2) {
647 Jim_WrongNumArgs(interp
, 2, argv
, "script ?script ...?");
652 Jim_Obj
*scriptObj
= Jim_ConcatObj(interp
, argc
- 2, argv
+ 2);
653 Jim_IncrRefCount(scriptObj
);
654 id
= Jim_CreateTimeHandler(interp
, ms
, JimAfterTimeHandler
, scriptObj
,
655 JimAfterTimeEventFinalizer
);
656 objPtr
= Jim_NewStringObj(interp
, NULL
, 0);
657 Jim_AppendString(interp
, objPtr
, "after#", -1);
658 idObjPtr
= Jim_NewIntObj(interp
, id
);
659 Jim_IncrRefCount(idObjPtr
);
660 Jim_AppendObj(interp
, objPtr
, idObjPtr
);
661 Jim_DecrRefCount(interp
, idObjPtr
);
662 Jim_SetResult(interp
, objPtr
);
667 Jim_WrongNumArgs(interp
, 2, argv
, "id|command");
673 id
= JimParseAfterId(argv
[2]);
675 /* Not an event id, so search by script */
676 Jim_Obj
*scriptObj
= Jim_ConcatObj(interp
, argc
- 2, argv
+ 2);
677 id
= JimFindAfterByScript(eventLoop
, scriptObj
);
678 Jim_FreeNewObj(interp
, scriptObj
);
684 remain
= Jim_DeleteTimeHandler(interp
, id
);
686 Jim_SetResultInt(interp
, remain
);
693 Jim_TimeEvent
*te
= eventLoop
->timeEventHead
;
694 Jim_Obj
*listObj
= Jim_NewListObj(interp
, NULL
, 0);
696 const char *fmt
= "after#%" JIM_WIDE_MODIFIER
;
699 snprintf(buf
, sizeof(buf
), fmt
, te
->id
);
700 Jim_ListAppendElement(interp
, listObj
, Jim_NewStringObj(interp
, buf
, -1));
703 Jim_SetResult(interp
, listObj
);
705 else if (argc
== 3) {
706 id
= JimParseAfterId(argv
[2]);
708 Jim_TimeEvent
*e
= JimFindTimeHandlerById(eventLoop
, id
);
709 if (e
&& e
->timeProc
== JimAfterTimeHandler
) {
710 Jim_Obj
*listObj
= Jim_NewListObj(interp
, NULL
, 0);
711 Jim_ListAppendElement(interp
, listObj
, e
->clientData
);
712 Jim_ListAppendElement(interp
, listObj
, Jim_NewStringObj(interp
, e
->initialms
? "timer" : "idle", -1));
713 Jim_SetResult(interp
, listObj
);
717 Jim_SetResultFormatted(interp
, "event \"%#s\" doesn't exist", argv
[2]);
721 Jim_WrongNumArgs(interp
, 2, argv
, "?id?");
729 int Jim_eventloopInit(Jim_Interp
*interp
)
731 Jim_EventLoop
*eventLoop
;
733 if (Jim_PackageProvide(interp
, "eventloop", "1.0", JIM_ERRMSG
))
736 eventLoop
= Jim_Alloc(sizeof(*eventLoop
));
737 memset(eventLoop
, 0, sizeof(*eventLoop
));
739 Jim_SetAssocData(interp
, "eventloop", JimELAssocDataDeleProc
, eventLoop
);
741 Jim_CreateCommand(interp
, "vwait", JimELVwaitCommand
, eventLoop
, NULL
);
742 Jim_CreateCommand(interp
, "update", JimELUpdateCommand
, eventLoop
, NULL
);
743 Jim_CreateCommand(interp
, "after", JimELAfterCommand
, eventLoop
, NULL
);