123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613 |
- /* Part of Scheme 48 1.9. See file COPYING for notices and license.
- *
- * Authors: Mike Sperber, Robert Ransom
- */
- #define _WIN32_WINNT 0x0400/* for SetWaitableTimer */
- #include <windows.h>
- #include <signal.h>
- #include <stdlib.h>
- #include <stdio.h>
- #include <errno.h> /* for errno, (ANSI) */
- #include "c-mods.h"
- #include "scheme48vm.h"
- #include "event.h"
- static void
- set_signal_catcher(int signum, void (*catcher)(int))
- {
- signal(signum, catcher);
- }
- static long keyboard_interrupt_count = 0;
- static VOID CALLBACK
- keyboard_interrupt_callback(DWORD dwParam)
- {
- keyboard_interrupt_count += 1;
- NOTE_EVENT;
- }
- HANDLE s48_main_thread;
- when_keyboard_interrupt(int ign)
- {
- if (!QueueUserAPC(keyboard_interrupt_callback,
- s48_main_thread,
- (DWORD) 0))
- {
- fprintf(stderr, "QueueUserAPC failed\n");
- exit(-1);
- }
- }
- static void
- start_control_c_interrupts()
- {
- set_signal_catcher(SIGINT, when_keyboard_interrupt);
- }
-
- /* ticks since last timer-interrupt request
- (except for some types, identical to Unix code) */
- long s48_current_time = 0;
- static long alarm_time = -1;
- static long poll_time = -1;
- static long poll_interval = 5;
- static void
- when_alarm_interrupt()
- {
- s48_current_time += 1;
- /* fprintf(stderr, "[tick %ld]", s48_current_time); */
- if ((alarm_time >= 0 && alarm_time <= s48_current_time) ||
- (poll_time >= 0 && poll_time <= s48_current_time))
- NOTE_EVENT;
- }
- #define USEC_PER_POLL (1000000 / POLLS_PER_SECOND)
- /* delta is in ticks, 0 cancels current alarm */
- long
- s48_schedule_alarm_interrupt(long delta)
- {
- long old;
- /* fprintf(stderr, "<scheduling alarm for %ld + %ld>\n", s48_current_time,
- delta/TICKS_PER_POLL); */
- /* get remaining time */
- if (alarm_time == -1)
- old = -1;
- else
- old = (alarm_time - s48_current_time) * TICKS_PER_POLL;
- /* decrement poll_time and reset current_time */
- if (poll_time != -1)
- poll_time -= s48_current_time;
- s48_current_time = 0;
- /* set alarm_time */
- if (delta == 0)
- {
- NOTE_EVENT;
- alarm_time = 0;
- }
- else
- alarm_time = delta / TICKS_PER_POLL;
- return old;
- }
- /* The next two procedures return times in seconds and ticks
- (also from Lars Bergstrom's version) */
- static DWORD startup_real_time_ticks;
- long s48_real_time(long *ticks)
- {
- DWORD now;
- now = GetTickCount();
- *ticks = ((now - startup_real_time_ticks) % 1000) * (TICKS_PER_SECOND / 1000);
- return (now - startup_real_time_ticks) / 1000;
- }
- long s48_run_time(long *ticks)
- {
- FILETIME create, exit, user, kernel;
- SYSTEMTIME systime;
- HANDLE this_process;
- BOOL status;
- this_process = GetCurrentProcess();
- status = GetProcessTimes(this_process, &create, &exit, &user, &kernel);
- status = FileTimeToSystemTime(&user, &systime);
- /* go from 100ns to 1ms resolution */
- *ticks = systime.wMilliseconds * (TICKS_PER_SECOND / 1000);
- return systime.wSecond;
- }
- static HANDLE alarm_thread = NULL;
- DWORD
- alarm_thread_func(LPDWORD id)
- {
- for (;;)
- {
- Sleep(USEC_PER_POLL / 1000);
- when_alarm_interrupt();
- }
- return 0; /* shouldn't get here */
- }
- /*
- * If it's being called for the first time, create the thread
- * If it's being called again, that means that it's been suspended
- * and should be resumed.
- */
- void
- s48_start_alarm_interrupts(void)
- {
- if (alarm_thread == NULL)
- {
- DWORD alarm_thread_id;
- alarm_thread = CreateThread(NULL, /* no security attributes */
- 0, /* default stack size */
- (LPTHREAD_START_ROUTINE) alarm_thread_func,
- NULL, /* argument to thread -- ignored */
- 0, /* default creation flags */
- &alarm_thread_id);
- if (alarm_thread == NULL)
- {
- fprintf(stderr, "failure creating alarm timer thread\n");
- exit(-1);
- }
- }
- else
- ResumeThread(alarm_thread);
- }
- void
- s48_stop_alarm_interrupts(void)
- {
- if (alarm_thread != NULL)
- SuspendThread(alarm_thread);
- }
- /*
- * We keep two queues of ports: those that have a pending operation, and
- * those whose operation has completed. Periodically, we call select() on
- * the pending ports and move any that are ready onto the other queue and
- * signal an event.
- */
- #define FD_QUIESCENT 0 /* idle */
- #define FD_READY 1 /* I/O ready to be performed */
- #define FD_PENDING 2 /* waiting */
- typedef struct fd_struct {
- int fd, /* file descriptor */
- status; /* one of the FD_* constants */
- long os_status; /* characters processed or error code */
- psbool has_error;
- psbool is_input; /* iff input */
- struct fd_struct *next; /* next on same queue */
- } fd_struct;
- /*
- * A queue of fd_structs is empty iff the first field is NULL. In
- * that case, lastp points to first.
- */
- typedef struct fdque
- {
- fd_struct *first, **lastp;
- } fdque;
- static fd_struct *fds[FD_SETSIZE];
- static fdque ready = {
- NULL,
- &ready.first
- };
- /*
- * Given a pointer to the link of a fd_struct, and a pointer to
- * the queue it is on, remove the entry from the queue.
- * The entry removed is returned.
- */
- static fd_struct *
- rmque(fd_struct **link, fdque *que)
- {
- fd_struct *res;
- res = *link;
- *link = res->next;
- if (res->next == NULL)
- que->lastp = link;
- return (res);
- }
- /*
- * Find a fd_struct in a queue, and remove it.
- */
- static void
- findrm(fd_struct *entry, fdque *que)
- {
- fd_struct **fp,
- *f;
- for (fp = &que->first; (f = *fp) != entry; fp = &f->next)
- if (f == NULL) {
- fprintf(stderr, "ERROR: findrm fd %d, status %d not on queue.\n",
- entry->fd, entry->status);
- return;
- }
- rmque(fp, que);
- }
- /*
- * Add a fd_struct to a queue.
- */
- static void
- addque(fd_struct *entry, fdque *que)
- {
- *que->lastp = entry;
- entry->next = NULL;
- que->lastp = &entry->next;
- }
- static psbool
- there_are_ready_ports(void)
- {
- return (ready.first != NULL);
- }
- static int
- next_ready_port(long* os_status, psbool* has_error)
- {
- fd_struct *p;
- p = rmque(&ready.first, &ready);
- p->status = FD_QUIESCENT;
- *os_status = p->os_status;
- *has_error = p->has_error;
- return (p->fd);
- }
- /*
- * Put fd on to the queue of ports with ready operations.
- * Return PSTRUE if successful, and PSFALSE otherwise.
- */
- psbool
- s48_add_ready_fd(long fd, psbool is_input, psbool has_error, long os_status)
- {
- fd_struct* data = fds[fd]; /* we created this before */
- data->is_input = is_input;
- data->os_status = os_status;
- data->has_error = has_error;
- if (data->status == FD_READY)
- return (PSTRUE); /* fd is already ready */
- data->status = FD_READY;
- addque(data, &ready);
- return PSTRUE;
- }
- /*
- * Add a new fd_struct for fd.
- */
- static fd_struct *
- add_fd(long fd, psbool is_input)
- {
- struct fd_struct *new;
- new = (struct fd_struct *)malloc(sizeof(*new));
- if (new != NULL) {
- new->fd = fd;
- new->status = FD_QUIESCENT;
- new->is_input = is_input;
- new->next = NULL;
- fds[fd] = new;
- }
- return (new);
- }
- static fd_struct *
- get_or_create_fd_struct(long fd, psbool is_input)
- {
- if (fds[fd] == NULL)
- return add_fd(fd, is_input);
- else
- return fds[fd];
- }
- psbool
- s48_add_pending_fd(int fd, psbool is_input)
- {
- fd_struct* data = get_or_create_fd_struct(fd, is_input);
- if (data)
- {
- if (data->status != FD_PENDING)
- {
- data->status = FD_PENDING;
- if (poll_time == -1)
- poll_time = s48_current_time + poll_interval;
- }
- return PSTRUE;
- }
- else
- return PSFALSE;
-
- }
- psbool
- s48_is_pending(long fd)
- {
- return (fds[fd] != NULL) && (fds[fd]->status == FD_PENDING);
- }
-
- /*
- * Remove fd from any queues it is on. Returns true if the FD was on a queue
- * and false if it wasn't.
- */
- psbool
- s48_remove_fd(int fd)
- {
- struct fd_struct *data;
- if (! (0 <= fd && fd < FD_SETSIZE)) {
- fprintf(stderr, "ERROR: s48_remove_fd fd %d not in [0, %d)\n",
- fd,
- FD_SETSIZE);
- return PSFALSE;
- }
- data = fds[fd];
- if (data == NULL)
- return PSFALSE;
- if (data->status == FD_PENDING) {
- /* the callback will see this and no-op */
- data->status = FD_QUIESCENT;
- /*#### if (pending.first == NULL)
- poll_time = -1; */
- } else if (data->status == FD_READY)
- findrm(data, &ready);
- free((void *)data);
- fds[fd] = NULL;
- return TRUE;
- }
- HANDLE
- s48_create_mutex_semaphore()
- {
- HANDLE handle = CreateSemaphore(NULL, /* lpSemaphoreAttributes */
- 0, /* lInitialCount */
- 1, /* lMaximumCount */
- NULL); /* lpName */
- if (handle == NULL)
- {
- fprintf(stderr, "error in CreateSemaphore\n");
- exit(-1);
- }
- return handle;
- }
- static HANDLE external_event_mutex;
- #define LOCK_EXTERNAL_EVENTS WaitForSingleObject(external_event_mutex, INFINITE)
- #define UNLOCK_EXTERNAL_EVENTS ReleaseSemaphore(external_event_mutex, 1, NULL)
- long
- s48_dequeue_external_event(char* readyp)
- {
- long retval;
- LOCK_EXTERNAL_EVENTS;
- retval = s48_dequeue_external_eventBUunsafe(readyp);
- UNLOCK_EXTERNAL_EVENTS;
- return retval;
- }
- static char
- external_event_pending()
- {
- char retval;
- LOCK_EXTERNAL_EVENTS;
- retval = s48_external_event_pendingPUunsafe();
- UNLOCK_EXTERNAL_EVENTS;
- return retval;
- }
- /* no side effect */
- static char
- external_event_ready()
- {
- char retval;
- LOCK_EXTERNAL_EVENTS;
- retval = s48_external_event_readyPUunsafe();
- UNLOCK_EXTERNAL_EVENTS;
- return retval;
- }
- VOID CALLBACK
- s48_when_external_event_interrupt(DWORD dwParam)
- {
- /* do nothing, except possibly interrupt the running SleepEx */
- }
- void
- s48_note_external_event(long uid)
- {
- LOCK_EXTERNAL_EVENTS;
- s48_note_external_eventBUunsafe(uid);
- UNLOCK_EXTERNAL_EVENTS;
- NOTE_EVENT;
- if (!QueueUserAPC(s48_when_external_event_interrupt,
- s48_main_thread,
- (DWORD) 0))
- {
- fprintf(stderr, "QueueUserAPC failed\n");
- exit(-1);
- }
- }
- /*
- * ; Scheme version of the get-next-event procedure
- * ;
- * ; 1. If there has been a keyboard interrupt, return it.
- * ; 2. Check for ready ports if enough time has passed since the last check.
- * ; 3. If there is a ready port, return it.
- * ; 4. If an alarm is due, return it.
- * ; 5. If no events are pending, clear the event flags.
- * (define (get-next-event)
- * (cond ((> *keyboard-interrupt-count* 0)
- * (without-interrupts
- * (lambda ()
- * (set! *keyboard-interrupt-count*
- * (- *keyboard-interrupt-count* 1))))
- * (values (enum event-type keyboard-interrupt) #f #f))
- * (else
- * (cond ((>= *current_time* *poll-time*)
- * (queue-ready-ports)
- * (set! *poll-time* (+ *time* *poll-interval*))))
- * (cond ((not (queue-empty? ready-ports))
- * (values (enum event-type i/o-completion)
- * (dequeue! ready-ports)))
- * ((>= *current_time* *alarm-time*)
- * (set! *alarm-time* max-integer)
- * (values (enum event-type alarm-interrupt) #f))
- * (else
- * (without-interrupts
- * (lambda ()
- * (if (and (= *keyboard-interrupt-count* 0)
- * (> *alarm-time* *current_time*)
- * (> *poll-time* *current_time*))
- * (set! *pending-event?* #f))))
- * (values (enum event-type no-event) #f))))))
- */
- int
- s48_get_next_event(long *ready_fd, long *status)
- {
- /* extern int s48_os_signal_pending(void); */
- /*
- fprintf(stderr, "[poll at %d (waiting for %d)]\n", s48_current_time, alarm_time);
- */
- if (keyboard_interrupt_count > 0) {
- --keyboard_interrupt_count;
- /* fprintf(stderr, "[keyboard interrupt]\n"); */
- return (KEYBOARD_INTERRUPT_EVENT);
- }
- if (poll_time != -1 && s48_current_time >= poll_time) {
- SleepEx(0, TRUE);
- poll_time = s48_current_time + poll_interval;
- }
- if (there_are_ready_ports()) {
- psbool has_error;
- *ready_fd = next_ready_port(status, &has_error);
- if (has_error)
- {
- /* fprintf(stderr, "[i/o error on port %ld, status %ld]\n", *ready_fd, *status); */
- return (IO_ERROR_EVENT);
- }
- else
- {
- /* fprintf(stderr, "[i/o completion on port %ld, status %ld]\n", *ready_fd, *status); */
- return (IO_COMPLETION_EVENT);
- }
- }
- if (alarm_time != -1 && s48_current_time >= alarm_time) {
- alarm_time = -1;
- /* fprintf(stderr, "[alarm %ld]\n", s48_current_time); */
- return (ALARM_EVENT);
- }
- /*
- if (s48_os_signal_pending())
- return (OS_SIGNAL_EVENT);
- */
- if (external_event_pending())
- return (EXTERNAL_EVENT);
- if ((keyboard_interrupt_count == 0)
- && (alarm_time == -1 || s48_current_time < alarm_time)
- && (poll_time == -1 || s48_current_time < poll_time))
- s48_Spending_eventsPS = PSFALSE;
- return (NO_EVENT);
- }
- int
- s48_wait_for_event(long max_wait, psbool is_minutes)
- {
- /* fprintf(stderr, "[waiting]\n"); */
- DWORD dwMilliseconds;
- s48_stop_alarm_interrupts();
- if (max_wait == -1)
- dwMilliseconds = INFINITE;
- else if (is_minutes)
- dwMilliseconds = max_wait * 60 * 1000;
- else
- dwMilliseconds = max_wait * (1000 / TICKS_PER_SECOND);
- SleepEx(dwMilliseconds,
- TRUE);
- if (there_are_ready_ports()
- || external_event_ready())
- NOTE_EVENT;
- s48_start_alarm_interrupts();
- return NO_ERRORS;
- }
- void
- s48_sysdep_init(void)
- {
- startup_real_time_ticks = GetTickCount();
- /* Yes, this is the official hoopla to get at an absolute handle for
- the current thread. GetCurrentThread() returns a *constant*. */
-
- if (!DuplicateHandle(GetCurrentProcess(),
- GetCurrentThread(), GetCurrentProcess(),
- &s48_main_thread,
- THREAD_ALL_ACCESS, FALSE, 0))
- {
- fprintf(stderr, "DuplicateHandle failed\n");
- exit(-1);
- }
- external_event_mutex = s48_create_mutex_semaphore();
- UNLOCK_EXTERNAL_EVENTS;
- start_control_c_interrupts();
- s48_start_alarm_interrupts();
- {
- extern void s48_fd_io_init();
- s48_fd_io_init();
- }
- }
|