--- libaitsched/src/hooks.c 2012/01/08 03:28:26 1.3.4.1 +++ libaitsched/src/hooks.c 2012/05/03 15:05:09 1.5.2.2 @@ -3,7 +3,7 @@ * by Michael Pounov * * $Author: misho $ -* $Id: hooks.c,v 1.3.4.1 2012/01/08 03:28:26 misho Exp $ +* $Id: hooks.c,v 1.5.2.2 2012/05/03 15:05:09 misho Exp $ * ************************************************************************** The ELWIX and AITNET software is distributed under the following @@ -12,7 +12,7 @@ terms: All of the documentation and software included in the ELWIX and AITNET Releases is copyrighted by ELWIX - Sofia/Bulgaria -Copyright 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 +Copyright 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012 by Michael Pounov . All rights reserved. Redistribution and use in source and binary forms, with or without @@ -49,27 +49,19 @@ SUCH DAMAGE. /* * sched_hook_init() - Default INIT hook + * * @root = root task - * @data = optional data if !=NULL + * @arg = unused * return: <0 errors and 0 ok */ void * -sched_hook_init(void *root, void *data) +sched_hook_init(void *root, void *arg __unused) { sched_root_task_t *r = root; - if (!r || r->root_data.iov_base || r->root_data.iov_len) + if (!r) return (void*) -1; - r->root_data.iov_base = malloc(sizeof(struct sched_IO)); - if (!r->root_data.iov_base) { - LOGERR; - return (void*) -1; - } else { - r->root_data.iov_len = sizeof(struct sched_IO); - memset(r->root_data.iov_base, 0, r->root_data.iov_len); - } - r->root_kq = kqueue(); if (r->root_kq == -1) { LOGERR; @@ -81,6 +73,7 @@ sched_hook_init(void *root, void *data) /* * sched_hook_fini() - Default FINI hook + * * @root = root task * @arg = unused * return: <0 errors and 0 ok @@ -98,17 +91,12 @@ sched_hook_fini(void *root, void *arg __unused) r->root_kq = 0; } - if (r->root_data.iov_base && r->root_data.iov_len) { - free(r->root_data.iov_base); - r->root_data.iov_base = NULL; - r->root_data.iov_len = 0; - } - return NULL; } /* * sched_hook_cancel() - Default CANCEL hook + * * @task = current task * @arg = unused * return: <0 errors and 0 ok @@ -116,15 +104,12 @@ sched_hook_fini(void *root, void *arg __unused) void * sched_hook_cancel(void *task, void *arg __unused) { - struct sched_IO *io; sched_task_t *t = task; struct kevent chg[1]; struct timespec timeout = { 0, 0 }; - if (!t || !TASK_ROOT(t) || !ROOT_DATA(t->task_root) || !ROOT_DATLEN(t->task_root)) + if (!t || !TASK_ROOT(t)) return (void*) -1; - else - io = ROOT_DATA(t->task_root); switch (TASK_TYPE(t)) { case taskREAD: @@ -134,7 +119,6 @@ sched_hook_cancel(void *task, void *arg __unused) EV_SET(&chg[0], TASK_FD(t), EVFILT_READ, EV_DELETE, 0, 0, (void*) TASK_FD(t)); #endif kevent(TASK_ROOT(t)->root_kq, chg, 1, NULL, 0, &timeout); - FD_CLR(TASK_FD(t), &io->rfd); break; case taskWRITE: #ifdef __NetBSD__ @@ -143,7 +127,6 @@ sched_hook_cancel(void *task, void *arg __unused) EV_SET(&chg[0], TASK_FD(t), EVFILT_WRITE, EV_DELETE, 0, 0, (void*) TASK_FD(t)); #endif kevent(TASK_ROOT(t)->root_kq, chg, 1, NULL, 0, &timeout); - FD_CLR(TASK_FD(t), &io->wfd); break; default: break; @@ -154,6 +137,7 @@ sched_hook_cancel(void *task, void *arg __unused) /* * sched_hook_read() - Default READ hook + * * @task = current task * @arg = unused * return: <0 errors and 0 ok @@ -161,21 +145,13 @@ sched_hook_cancel(void *task, void *arg __unused) void * sched_hook_read(void *task, void *arg __unused) { - struct sched_IO *io; sched_task_t *t = task; struct kevent chg[1]; struct timespec timeout = { 0, 0 }; - if (!t || !TASK_ROOT(t) || !ROOT_DATA(t->task_root) || !ROOT_DATLEN(t->task_root)) + if (!t || !TASK_ROOT(t)) return (void*) -1; - else - io = ROOT_DATA(t->task_root); - if (FD_ISSET(TASK_FD(t), &io->rfd)) - return NULL; - else - FD_SET(TASK_FD(t), &io->rfd); - #ifdef __NetBSD__ EV_SET(&chg[0], TASK_FD(t), EVFILT_READ, EV_ADD, 0, 0, (intptr_t) TASK_FD(t)); #else @@ -194,6 +170,7 @@ sched_hook_read(void *task, void *arg __unused) /* * sched_hook_write() - Default WRITE hook + * * @task = current task * @arg = unused * return: <0 errors and 0 ok @@ -201,21 +178,13 @@ sched_hook_read(void *task, void *arg __unused) void * sched_hook_write(void *task, void *arg __unused) { - struct sched_IO *io; sched_task_t *t = task; struct kevent chg[1]; struct timespec timeout = { 0, 0 }; - if (!t || !TASK_ROOT(t) || !ROOT_DATA(t->task_root) || !ROOT_DATLEN(t->task_root)) + if (!t || !TASK_ROOT(t)) return (void*) -1; - else - io = ROOT_DATA(t->task_root); - if (FD_ISSET(TASK_FD(t), &io->wfd)) - return NULL; - else - FD_SET(TASK_FD(t), &io->wfd); - #ifdef __NetBSD__ EV_SET(&chg[0], TASK_FD(t), EVFILT_WRITE, EV_ADD, 0, 0, (intptr_t) TASK_FD(t)); #else @@ -234,6 +203,7 @@ sched_hook_write(void *task, void *arg __unused) /* * sched_hook_fetch() - Default FETCH hook + * * @root = root task * @arg = unused * return: NULL error or !=NULL fetched task @@ -241,16 +211,15 @@ sched_hook_write(void *task, void *arg __unused) void * sched_hook_fetch(void *root, void *arg __unused) { - struct sched_IO *io; sched_root_task_t *r = root; sched_task_t *task; - struct timeval now, m, mtmp; - struct timespec nw, *timeout; + struct timespec now, m, mtmp; + struct timespec *timeout; struct kevent evt[1], res[KQ_EVENTS]; register int i; int en; - if (!r || !ROOT_DATA(r) || !ROOT_DATLEN(r)) + if (!r) return NULL; /* get new task by queue priority */ @@ -293,50 +262,46 @@ retry: } #ifdef TIMER_WITHOUT_SORT - clock_gettime(CLOCK_MONOTONIC, &nw); - now.tv_sec = nw.tv_sec; - now.tv_usec = nw.tv_nsec / 1000; + clock_gettime(CLOCK_MONOTONIC, &now); - timerclear(&r->root_wait); + sched_timespecclear(&r->root_wait); TAILQ_FOREACH(task, &r->root_timer, task_node) { - if (!timerisset(&r->root_wait)) - r->root_wait = TASK_TV(task); - else if (timercmp(&TASK_TV(task), &r->root_wait, -) < 0) - r->root_wait = TASK_TV(task); + if (!sched_timespecisset(&r->root_wait)) + r->root_wait = TASK_TS(task); + else if (sched_timespeccmp(&TASK_TS(task), &r->root_wait, -) < 0) + r->root_wait = TASK_TS(task); } if (TAILQ_FIRST(&r->root_timer)) { m = r->root_wait; - timersub(&m, &now, &mtmp); + sched_timespecsub(&m, &now, &mtmp); r->root_wait = mtmp; } else { /* set wait INFTIM */ - r->root_wait.tv_sec = r->root_wait.tv_usec = -1; + sched_timespecinf(&r->root_wait); } #else if (!TAILQ_FIRST(&r->root_eventlo) && (task = TAILQ_FIRST(&r->root_timer))) { - clock_gettime(CLOCK_MONOTONIC, &nw); - now.tv_sec = nw.tv_sec; - now.tv_usec = nw.tv_nsec / 1000; + clock_gettime(CLOCK_MONOTONIC, &now); - m = TASK_TV(task); - timersub(&m, &now, &mtmp); + m = TASK_TS(task); + sched_timespecsub(&m, &now, &mtmp); r->root_wait = mtmp; } else { /* set wait INFTIM */ - r->root_wait.tv_sec = r->root_wait.tv_usec = -1; + sched_timespecinf(&r->root_wait); } #endif /* if present member of eventLo, set NOWAIT */ if (TAILQ_FIRST(&r->root_eventlo)) - timerclear(&r->root_wait); + sched_timespecclear(&r->root_wait); - if (r->root_wait.tv_sec != -1 && r->root_wait.tv_usec != -1) { - nw.tv_sec = r->root_wait.tv_sec; - nw.tv_nsec = r->root_wait.tv_usec * 1000; - timeout = &nw; - } else /* wait INFTIM */ + if (r->root_wait.tv_sec != -1 && r->root_wait.tv_nsec != -1) + timeout = &r->root_wait; + else if (sched_timespecisinf(&r->root_poll)) timeout = NULL; + else + timeout = &r->root_poll; if ((en = kevent(r->root_kq, NULL, 0, res, KQ_EVENTS, timeout)) == -1) { if (r->root_hooks.hook_exec.exception) { if (r->root_hooks.hook_exec.exception(r, NULL)) @@ -352,7 +317,7 @@ retry: #endif } - nw.tv_sec = nw.tv_nsec = 0; + now.tv_sec = now.tv_nsec = 0; /* Go and catch the cat into pipes ... */ for (i = 0; i < en; i++) { memcpy(evt, &res[i], sizeof evt); @@ -364,9 +329,6 @@ retry: if (TASK_FD(task) != ((intptr_t) res[i].udata)) continue; /* remove read handle */ - io = ROOT_DATA(task->task_root); - FD_CLR(TASK_FD(task), &io->rfd); - #ifdef HAVE_LIBPTHREAD pthread_mutex_lock(&r->root_mtx[taskREAD]); #endif @@ -412,9 +374,6 @@ retry: if (TASK_FD(task) != ((intptr_t) res[i].udata)) continue; /* remove write handle */ - io = ROOT_DATA(task->task_root); - FD_CLR(TASK_FD(task), &io->wfd); - #ifdef HAVE_LIBPTHREAD pthread_mutex_lock(&r->root_mtx[taskWRITE]); #endif @@ -456,7 +415,7 @@ retry: } break; } - if (kevent(r->root_kq, evt, 1, NULL, 0, &nw) == -1) { + if (kevent(r->root_kq, evt, 1, NULL, 0, &now) == -1) { if (r->root_hooks.hook_exec.exception) { if (r->root_hooks.hook_exec.exception(r, NULL)) return NULL; @@ -466,12 +425,10 @@ retry: } /* timer update & put in ready queue */ - clock_gettime(CLOCK_MONOTONIC, &nw); - now.tv_sec = nw.tv_sec; - now.tv_usec = nw.tv_nsec / 1000; + clock_gettime(CLOCK_MONOTONIC, &now); TAILQ_FOREACH(task, &r->root_timer, task_node) - if (timercmp(&now, &TASK_TV(task), -) >= 0) { + if (sched_timespeccmp(&now, &TASK_TS(task), -) >= 0) { #ifdef HAVE_LIBPTHREAD pthread_mutex_lock(&r->root_mtx[taskTIMER]); #endif @@ -516,8 +473,10 @@ retry: r->root_eventlo_miss = 0; /* OK, lets get ready task !!! */ - if (!(task = TAILQ_FIRST(&r->root_ready))) - goto retry; + task = TAILQ_FIRST(&r->root_ready); + if (!(task)) + return NULL; + #ifdef HAVE_LIBPTHREAD pthread_mutex_lock(&r->root_mtx[taskREADY]); #endif @@ -538,6 +497,7 @@ retry: /* * sched_hook_exception() - Default EXCEPTION hook + * * @root = root task * @arg = custom handling: if arg == EV_EOF or other value; default: arg == NULL log errno * return: <0 errors and 0 ok @@ -547,7 +507,7 @@ sched_hook_exception(void *root, void *arg) { sched_root_task_t *r = root; - if (!r || !ROOT_DATA(r) || !ROOT_DATLEN(r)) + if (!r) return NULL; /* custom exception handling ... */ @@ -564,4 +524,22 @@ sched_hook_exception(void *root, void *arg) /* default case! */ LOGERR; return NULL; +} + +/* + * sched_hook_condition() - Default CONDITION hook + * + * @root = root task + * @arg = killState from schedRun() + * return: NULL kill scheduler loop or !=NULL ok + */ +void * +sched_hook_condition(void *root, void *arg) +{ + sched_root_task_t *r = root; + + if (!r) + return NULL; + + return (void*) (r->root_cond - *(intptr_t*) arg); }