Annotation of libaitsched/inc/aitsched.h, revision 1.16

1.1       misho       1: /*************************************************************************
                      2: * (C) 2011 AITNET ltd - Sofia/Bulgaria - <misho@aitbg.com>
                      3: *  by Michael Pounov <misho@openbsd-bg.org>
                      4: *
                      5: * $Author: misho $
1.16    ! misho       6: * $Id: aitsched.h,v 1.15.2.2 2012/08/22 10:33:45 misho Exp $
1.1       misho       7: *
                      8: **************************************************************************
                      9: The ELWIX and AITNET software is distributed under the following
                     10: terms:
                     11: 
                     12: All of the documentation and software included in the ELWIX and AITNET
                     13: Releases is copyrighted by ELWIX - Sofia/Bulgaria <info@elwix.org>
                     14: 
1.6       misho      15: Copyright 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012
1.1       misho      16:        by Michael Pounov <misho@elwix.org>.  All rights reserved.
                     17: 
                     18: Redistribution and use in source and binary forms, with or without
                     19: modification, are permitted provided that the following conditions
                     20: are met:
                     21: 1. Redistributions of source code must retain the above copyright
                     22:    notice, this list of conditions and the following disclaimer.
                     23: 2. Redistributions in binary form must reproduce the above copyright
                     24:    notice, this list of conditions and the following disclaimer in the
                     25:    documentation and/or other materials provided with the distribution.
                     26: 3. All advertising materials mentioning features or use of this software
                     27:    must display the following acknowledgement:
                     28: This product includes software developed by Michael Pounov <misho@elwix.org>
                     29: ELWIX - Embedded LightWeight unIX and its contributors.
                     30: 4. Neither the name of AITNET nor the names of its contributors
                     31:    may be used to endorse or promote products derived from this software
                     32:    without specific prior written permission.
                     33: 
                     34: THIS SOFTWARE IS PROVIDED BY AITNET AND CONTRIBUTORS ``AS IS'' AND
                     35: ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
                     36: IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
                     37: ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
                     38: FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
                     39: DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
                     40: OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
                     41: HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
                     42: LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
                     43: OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
                     44: SUCH DAMAGE.
                     45: */
                     46: #ifndef __AITSCHED_H
                     47: #define __AITSCHED_H
                     48: 
                     49: 
1.2       misho      50: #include <sys/types.h>
                     51: #include <sys/queue.h>
1.12      misho      52: #include <sys/event.h>
1.2       misho      53: #include <sys/uio.h>
1.3       misho      54: #include <stdint.h>
1.5       misho      55: #include <pthread.h>
1.15      misho      56: #include <assert.h>
1.12      misho      57: #ifdef EVFILT_LIO
                     58: #include <aio.h>
                     59: #endif
1.2       misho      60: 
                     61: 
1.1       misho      62: /* criteria type */
1.10      misho      63: #define CRITERIA_ANY   0
                     64: #define CRITERIA_CALL  1
                     65: #define CRITERIA_ARG   2
                     66: #define CRITERIA_FD    3
                     67: #define CRITERIA_VAL   4
                     68: #define CRITERIA_TS    5
                     69: #define CRITERIA_DATA  6
1.11      misho      70: #define CRITERIA_ID    7
1.1       misho      71: 
                     72: 
                     73: /* early declaration for root & task */
                     74: typedef struct sched_Task      sched_task_t;
                     75: typedef struct sched_RootTask  sched_root_task_t;
                     76: 
                     77: typedef enum {
                     78:        taskREAD = 0,
                     79:        taskWRITE,
                     80:        taskTIMER,
1.10      misho      81:        taskALARM,
                     82:        taskNODE,
                     83:        taskPROC,
1.12      misho      84:        taskSIGNAL,
                     85:        taskAIO,
                     86:        taskLIO,
1.10      misho      87:        taskUSER,
1.9       misho      88:        taskEVENT,
1.13      misho      89:        taskTASK,
1.11      misho      90:        taskSUSPEND, 
1.1       misho      91:        taskREADY,
                     92:        taskUNUSE,
1.15      misho      93:        taskTHREAD, 
1.1       misho      94:        taskMAX
                     95: } sched_task_type_t;
                     96: 
                     97: /* hooks */
                     98: typedef void *(*sched_hook_func_t)(void *, void *);
                     99: struct sched_HooksTask {
                    100:        struct {
                    101:                /* read(sched_task_t *task, NULL) -> int */
                    102:                sched_hook_func_t       read;
                    103:                /* write(sched_task_t *task, NULL) -> int */
                    104:                sched_hook_func_t       write;
1.10      misho     105:                /* timer(sched_task_t *task, struct timespec *ts) -> int */
                    106:                sched_hook_func_t       timer;
                    107:                /* alarm(sched_task_t *task, NULL) -> int */
                    108:                sched_hook_func_t       alarm;
                    109:                /* node(sched_task_t *task, NULL) -> int */
                    110:                sched_hook_func_t       node;
                    111:                /* proc(sched_task_t *task, NULL) -> int */
                    112:                sched_hook_func_t       proc;
1.12      misho     113:                /* signal(sched_task_t *task, NULL) -> int */
                    114:                sched_hook_func_t       signal;
                    115:                /* aio(sched_task_t *task, NULL) -> int */
                    116:                sched_hook_func_t       aio;
                    117:                /* lio(sched_task_t *task, NULL) -> int */
                    118:                sched_hook_func_t       lio;
1.10      misho     119:                /* user(sched_task_t *task, NULL) -> int */
                    120:                sched_hook_func_t       user;
1.1       misho     121:                /* event(sched_task_t *task, NULL) -> int */
                    122:                sched_hook_func_t       event;
1.13      misho     123:                /* task(sched_task_t *task, NULL) -> int */
                    124:                sched_hook_func_t       task;
1.11      misho     125:                /* suspend(sched_task_t *task, NULL) -> int */
                    126:                sched_hook_func_t       suspend;
1.15      misho     127:                /* thread(sched_task_t *task, NULL) -> int */
                    128:                sched_hook_func_t       thread;
1.1       misho     129:        }       hook_add;
                    130:        struct {
1.15      misho     131:                /* exit(sched_task_t *task, void *exitValue) -> int */
                    132:                sched_hook_func_t       exit;
1.1       misho     133:                /* cancel(sched_task_t *task, NULL) -> int */
                    134:                sched_hook_func_t       cancel;
1.11      misho     135:                /* resume(sched_task_t *task, NULL) -> int */
                    136:                sched_hook_func_t       resume;
1.1       misho     137:                /* run(sched_root_task_t *root, NULL) -> int */
                    138:                sched_hook_func_t       run;
                    139:                /* fetch(sched_root_task_t *root, NULL) -> sched_task_t* */
                    140:                sched_hook_func_t       fetch;
1.3       misho     141:                /* exception(sched_root_task_t *root, NULL) -> int */
                    142:                sched_hook_func_t       exception;
1.6       misho     143:                /* condition(sched_root_task_t *root, intptr_t *stopValue) -> int */
                    144:                sched_hook_func_t       condition;
1.1       misho     145:        }       hook_exec;
                    146:        struct {
                    147:                /* init(sched_root_task_t *root, void *data) -> int */
                    148:                sched_hook_func_t       init;
                    149:                /* fini(sched_root_task_t *root, NULL) -> int */
                    150:                sched_hook_func_t       fini;
1.3       misho     151:                /* error(sched_root_task_t *root, int errno) -> int */
                    152:                sched_hook_func_t       error;
1.1       misho     153:        }       hook_root;
                    154: };
                    155: typedef struct sched_HooksTask hooks_task_t;
                    156: 
                    157: /* task callback, like pthread callback! */
1.2       misho     158: typedef void *(*sched_task_func_t)(sched_task_t * /* current task data*/);
1.1       misho     159: 
1.4       misho     160: /* task lock helpers */
1.10      misho     161: #define TASK_LOCK(x)           ((x)->task_lock = 42)
1.4       misho     162: #define TASK_UNLOCK(x)         ((x)->task_lock ^= (x)->task_lock)
                    163: #define TASK_ISLOCKED(x)       ((x)->task_lock)
                    164: 
1.1       misho     165: /* task & queue */
                    166: struct sched_Task {
1.10      misho     167:        uintptr_t                       task_id;
                    168: #define TASK_ID(x)     ((struct sched_Task*) (x)->task_id)
1.1       misho     169:        sched_task_type_t               task_type;
1.5       misho     170: #define TASK_TYPE(x)   (x)->task_type
1.15      misho     171:        volatile int                    task_lock;
1.1       misho     172: 
                    173:        sched_root_task_t               *task_root;
1.2       misho     174: #define TASK_ROOT(x)   (x)->task_root
1.1       misho     175:        sched_task_func_t               task_func;
1.8       misho     176: #define TASK_FUNC(x)   (x)->task_func
1.15      misho     177:        intptr_t                        task_ret;
                    178: #define TASK_RET(x)    (x)->task_ret
                    179:        unsigned int                    task_flag;
                    180: #define TASK_FLAG(x)   (x)->task_flag
1.1       misho     181: 
                    182:        void                            *task_arg;
                    183:        union {
                    184:                unsigned long   v;
1.3       misho     185:                intptr_t        fd;
1.5       misho     186:                struct timespec ts;
1.1       misho     187:        }                               task_val;
                    188: #define TASK_ARG(x)    (x)->task_arg
                    189: #define TASK_VAL(x)    (x)->task_val.v
                    190: #define TASK_FD(x)     (x)->task_val.fd
1.5       misho     191: #define TASK_TS(x)     (x)->task_val.ts
1.1       misho     192: 
                    193:        struct iovec                    task_data;
                    194: #define TASK_DATA(x)   (x)->task_data.iov_base
                    195: #define TASK_DATLEN(x) (x)->task_data.iov_len
                    196: 
                    197:        TAILQ_ENTRY(sched_Task)         task_node;
                    198: };
                    199: typedef TAILQ_HEAD(, sched_Task) sched_queue_t;
1.5       misho     200: #define TASK_DATA_SET(x, _dp, _dl)     do { \
                    201:                                                if ((x)) { \
                    202:                                                        (x)->task_data.iov_base = (_dp); \
                    203:                                                        (x)->task_data.iov_len = _dl; \
                    204:                                                } \
                    205:                                        while (0)
1.1       misho     206: 
                    207: /* root task */
                    208: struct sched_RootTask {
                    209:        int             root_kq;
1.14      misho     210:        unsigned long   root_miss;
1.5       misho     211:        struct timespec root_wait;
                    212:        struct timespec root_poll;
1.6       misho     213:        intptr_t        root_cond;
1.12      misho     214:        void            *root_ret;
1.6       misho     215: 
1.5       misho     216:        pthread_mutex_t root_mtx[taskMAX];
1.1       misho     217: 
                    218:        sched_queue_t   root_read;
                    219:        sched_queue_t   root_write;
                    220:        sched_queue_t   root_timer;
1.9       misho     221:        sched_queue_t   root_alarm;
1.10      misho     222:        sched_queue_t   root_node;
                    223:        sched_queue_t   root_proc;
1.12      misho     224:        sched_queue_t   root_signal;
                    225:        sched_queue_t   root_aio;
                    226:        sched_queue_t   root_lio;
1.10      misho     227:        sched_queue_t   root_user;
1.1       misho     228:        sched_queue_t   root_event;
1.13      misho     229:        sched_queue_t   root_task;
1.11      misho     230:        sched_queue_t   root_suspend;
1.1       misho     231:        sched_queue_t   root_ready;
                    232:        sched_queue_t   root_unuse;
1.15      misho     233:        sched_queue_t   root_thread;
1.1       misho     234: 
                    235:        hooks_task_t    root_hooks;
                    236:        struct iovec    root_data;
                    237: #define ROOT_DATA(x)   (x)->root_data.iov_base
                    238: #define ROOT_DATLEN(x) (x)->root_data.iov_len
                    239: };
1.7       misho     240: #define ROOT_QUEUE_EMPTY(x, _q)        TAILQ_EMPTY(&((x)->root_##_q))
1.12      misho     241: #define ROOT_RETURN(x) (x)->root_ret
1.1       misho     242: 
                    243: 
1.2       misho     244: inline int sched_GetErrno();
                    245: inline const char *sched_GetError();
                    246: 
                    247: 
1.1       misho     248: /*
                    249:  * schedInit() - Init scheduler
1.6       misho     250:  *
1.1       misho     251:  * @data = optional data if !=NULL
                    252:  * @datlen = data len if data is set
                    253:  * return: allocated root task if ok or NULL error
                    254:  */
                    255: sched_root_task_t *schedInit(void ** __restrict data, size_t datlen);
1.2       misho     256: #define schedBegin()   schedInit((void**) &schedRegisterHooks, 0)
1.1       misho     257: /*
                    258:  * schedEnd() - End scheduler & free all resources
1.6       misho     259:  *
1.1       misho     260:  * @root = root task
                    261:  * return: -1 error or 0 ok
                    262:  */
1.2       misho     263: int schedEnd(sched_root_task_t ** __restrict root);
1.1       misho     264: /*
1.2       misho     265:  * schedRegisterHooks() - Register IO handles and bind tasks to it
1.6       misho     266:  *
1.1       misho     267:  * @root = root task
                    268:  * return: -1 error or 0 ok
                    269:  */
1.2       misho     270: int schedRegisterHooks(sched_root_task_t * __restrict root);
1.1       misho     271: /*
1.15      misho     272:  * sched_useTask() - Get and init new task
                    273:  *
                    274:  * @root = root task
                    275:  * return: NULL error or !=NULL prepared task
                    276:  */
                    277: inline sched_task_t *sched_useTask(sched_root_task_t * __restrict root);
                    278: /*
                    279:  * sched_unuseTask() - Unlock and put task to unuse queue
                    280:  *
                    281:  * @task = task
                    282:  * return: always is NULL
                    283:  */
                    284: inline sched_task_t *sched_unuseTask(sched_task_t * __restrict task);
                    285: /*
1.5       misho     286:  * schedPolling() - Polling timeout period if no timer task is present
1.6       misho     287:  *
1.5       misho     288:  * @root = root task
                    289:  * @ts = timeout polling period, if ==NULL INFINIT timeout
                    290:  * @tsold = old timeout polling if !=NULL
                    291:  * return: -1 error or 0 ok
                    292:  */
                    293: inline int schedPolling(sched_root_task_t * __restrict root, 
                    294:                struct timespec * __restrict ts, struct timespec * __restrict tsold);
                    295: /*
1.6       misho     296:  * schedTermCondition() - Activate hook for scheduler condition kill
                    297:  *
                    298:  * @root = root task
                    299:  * @condValue = condition value, kill schedRun() if condValue == killState
1.13      misho     300:  * return: -1 error or 0 ok
1.6       misho     301:  */
                    302: inline int schedTermCondition(sched_root_task_t * __restrict root, intptr_t condValue);
                    303: /*
1.1       misho     304:  * schedCall() - Call task execution function
1.6       misho     305:  *
1.1       misho     306:  * @task = current task
                    307:  * return: !=NULL error or =NULL ok
                    308:  */
                    309: inline void *schedCall(sched_task_t * __restrict task);
                    310: /*
                    311:  * schedFetch() - Fetch ready task
1.6       misho     312:  *
1.1       misho     313:  * @root = root task
                    314:  * return: =NULL error or !=NULL ready task
                    315:  */
                    316: inline void *schedFetch(sched_root_task_t * __restrict root);
                    317: /*
                    318:  * schedRun() - Scheduler *run loop*
1.6       misho     319:  *
1.1       misho     320:  * @root = root task
1.2       misho     321:  * @killState = kill condition variable, if !=0 stop scheduler loop
1.1       misho     322:  * return: -1 error or 0 ok
                    323:  */
1.7       misho     324: int schedRun(sched_root_task_t *root, volatile intptr_t * __restrict killState);
1.1       misho     325: /*
                    326:  * schedCancel() - Cancel task from scheduler
1.6       misho     327:  *
1.1       misho     328:  * @task = task
                    329:  * return: -1 error or 0 ok
                    330:  */
                    331: int schedCancel(sched_task_t * __restrict task);
                    332: /*
                    333:  * schedCancelby() - Cancel task from scheduler by criteria
1.6       misho     334:  *
1.1       misho     335:  * @root = root task
1.5       misho     336:  * @type = cancel from queue type, if =taskMAX cancel same task from all queues
1.10      misho     337:  * @criteria = find task by criteria 
1.11      misho     338:  *     [CRITERIA_ANY|CRITERIA_CALL|CRITERIA_ARG|CRITERIA_FD|CRITERIA_VAL|CRITERIA_ID|CRITERIA_TS|CRITERIA_DATA]
1.1       misho     339:  * @param = search parameter
                    340:  * @hook = custom cleanup hook function, may be NULL
1.3       misho     341:  * return: -1 error, -2 error in sub-stage cancel execution, -3 error from custom hook or 0 ok
1.1       misho     342:  */
1.5       misho     343: int schedCancelby(sched_root_task_t * __restrict root, sched_task_type_t type, 
1.1       misho     344:                u_char criteria, void *param, sched_hook_func_t hook);
                    345: 
                    346: 
                    347: /*
1.2       misho     348:  * schedRead() - Add READ I/O task to scheduler queue
1.6       misho     349:  *
1.1       misho     350:  * @root = root task
                    351:  * @func = task execution function
                    352:  * @arg = 1st func argument
1.2       misho     353:  * @fd = fd handle
1.5       misho     354:  * @opt_data = Optional data
                    355:  * @opt_dlen = Optional data length
1.1       misho     356:  * return: NULL error or !=NULL new queued task
                    357:  */
1.5       misho     358: sched_task_t *schedRead(sched_root_task_t * __restrict root, sched_task_func_t func, void *arg, 
                    359:                int fd, void *opt_data, size_t opt_dlen);
1.8       misho     360: #define schedReadSelf(x)       schedRead(TASK_ROOT((x)), TASK_FUNC((x)), TASK_ARG((x)), \
                    361:                TASK_FD((x)), TASK_DATA((x)), TASK_DATLEN((x)))
1.1       misho     362: /*
1.2       misho     363:  * schedWrite() - Add WRITE I/O task to scheduler queue
1.6       misho     364:  *
1.1       misho     365:  * @root = root task
                    366:  * @func = task execution function
                    367:  * @arg = 1st func argument
1.2       misho     368:  * @fd = fd handle
1.5       misho     369:  * @opt_data = Optional data
                    370:  * @opt_dlen = Optional data length
1.1       misho     371:  * return: NULL error or !=NULL new queued task
                    372:  */
1.5       misho     373: sched_task_t *schedWrite(sched_root_task_t * __restrict root, sched_task_func_t func, void *arg, 
                    374:                int fd, void *opt_data, size_t opt_dlen);
1.8       misho     375: #define schedWriteSelf(x)      schedWrite(TASK_ROOT((x)), TASK_FUNC((x)), TASK_ARG((x)), \
                    376:                TASK_FD((x)), TASK_DATA((x)), TASK_DATLEN((x)))
1.1       misho     377: /*
1.9       misho     378:  * schedAlarm() - Add ALARM task to scheduler queue
                    379:  *
                    380:  * @root = root task
                    381:  * @func = task execution function
                    382:  * @arg = 1st func argument
                    383:  * @ts = timeout argument structure, minimum alarm timer resolution is 1msec!
                    384:  * @opt_data = Optional data
                    385:  * @opt_dlen = Optional data length
                    386:  * return: NULL error or !=NULL new queued task
                    387:  */
                    388: sched_task_t *schedAlarm(sched_root_task_t * __restrict root, sched_task_func_t func, void *arg, 
                    389:                struct timespec ts, void *opt_data, size_t opt_dlen);
                    390: #define schedAlarmSelf(x)      schedAlarm(TASK_ROOT((x)), TASK_FUNC((x)), TASK_ARG((x)), \
                    391:                TASK_TS((x)), TASK_DATA((x)), TASK_DATLEN((x)))
                    392: /*
1.10      misho     393:  * schedNode() - Add NODE task to scheduler queue
                    394:  *
                    395:  * @root = root task
                    396:  * @func = task execution function
                    397:  * @arg = 1st func argument
                    398:  * @fd = fd handle
                    399:  * @opt_data = Optional data
                    400:  * @opt_dlen = Optional data length
                    401:  * return: NULL error or !=NULL new queued task
                    402:  */
                    403: sched_task_t *schedNode(sched_root_task_t * __restrict root, sched_task_func_t func, void *arg, 
                    404:                int fd, void *opt_data, size_t opt_dlen);
                    405: #define schedNodeSelf(x)       schedNode(TASK_ROOT((x)), TASK_FUNC((x)), TASK_ARG((x)), \
                    406:                TASK_FD((x)), TASK_DATA((x)), TASK_DATLEN((x)))
                    407: /*
                    408:  * schedProc() - Add PROC task to scheduler queue
                    409:  *
                    410:  * @root = root task
                    411:  * @func = task execution function
                    412:  * @arg = 1st func argument
                    413:  * @pid = PID
                    414:  * @opt_data = Optional data
                    415:  * @opt_dlen = Optional data length
                    416:  * return: NULL error or !=NULL new queued task
                    417:  */
                    418: sched_task_t *schedProc(sched_root_task_t * __restrict root, sched_task_func_t func, void *arg, 
                    419:                unsigned long pid, void *opt_data, size_t opt_dlen);
                    420: #define schedProcSelf(x)       schedProc(TASK_ROOT((x)), TASK_FUNC((x)), TASK_ARG((x)), \
                    421:                TASK_VAL((x)), TASK_DATA((x)), TASK_DATLEN((x)))
                    422: /*
                    423:  * schedSignal() - Add SIGNAL task to scheduler queue
                    424:  *
                    425:  * @root = root task
                    426:  * @func = task execution function
                    427:  * @arg = 1st func argument
                    428:  * @sig = Signal
                    429:  * @opt_data = Optional data
                    430:  * @opt_dlen = Optional data length
                    431:  * return: NULL error or !=NULL new queued task
                    432:  */
                    433: sched_task_t *schedSignal(sched_root_task_t * __restrict root, sched_task_func_t func, void *arg, 
                    434:                unsigned long sig, void *opt_data, size_t opt_dlen);
                    435: #define schedSignalSelf(x)     schedSignal(TASK_ROOT((x)), TASK_FUNC((x)), TASK_ARG((x)), \
                    436:                TASK_VAL((x)), TASK_DATA((x)), TASK_DATLEN((x)))
                    437: 
1.12      misho     438: #ifdef EVFILT_LIO
                    439: /*
                    440:  * schedAIO() - Add AIO task to scheduler queue
                    441:  *
                    442:  * @root = root task
                    443:  * @func = task execution function
                    444:  * @arg = 1st func argument
                    445:  * @acb = AIO cb structure address
                    446:  * @opt_data = Optional data
                    447:  * @opt_dlen = Optional data length
                    448:  * return: NULL error or !=NULL new queued task
                    449:  */
                    450: sched_task_t *schedAIO(sched_root_task_t * __restrict root, sched_task_func_t func, void *arg, 
                    451:                struct aiocb * __restrict acb, void *opt_data, size_t opt_dlen);
                    452: /*
                    453:  * schedAIORead() - Add AIO read task to scheduler queue
                    454:  *
                    455:  * @root = root task
                    456:  * @func = task execution function
                    457:  * @arg = 1st func argument
                    458:  * @fd = file descriptor
                    459:  * @buffer = Buffer
                    460:  * @buflen = Buffer length
                    461:  * @offset = Offset from start of file, if =-1 from current position
                    462:  * return: NULL error or !=NULL new queued task
                    463:  */
                    464: inline sched_task_t *schedAIORead(sched_root_task_t * __restrict root, sched_task_func_t func, 
                    465:                void *arg, int fd, void *buffer, size_t buflen, off_t offset);
                    466: /*
                    467:  * schedAIOWrite() - Add AIO write task to scheduler queue
                    468:  *
                    469:  * @root = root task
                    470:  * @func = task execution function
                    471:  * @arg = 1st func argument
                    472:  * @fd = file descriptor
                    473:  * @buffer = Buffer
                    474:  * @buflen = Buffer length
                    475:  * @offset = Offset from start of file, if =-1 from current position
                    476:  * return: NULL error or !=NULL new queued task
                    477:  */
                    478: inline sched_task_t *schedAIOWrite(sched_root_task_t * __restrict root, sched_task_func_t func, 
                    479:                void *arg, int fd, void *buffer, size_t buflen, off_t offset);
                    480: 
                    481: /*
                    482:  * schedLIO() - Add AIO bulk tasks to scheduler queue
                    483:  *
                    484:  * @root = root task
                    485:  * @func = task execution function
                    486:  * @arg = 1st func argument
                    487:  * @acbs = AIO cb structure addresses
                    488:  * @opt_data = Optional data
                    489:  * @opt_dlen = Optional data length
                    490:  * return: NULL error or !=NULL new queued task
                    491:  */
                    492: sched_task_t *schedLIO(sched_root_task_t * __restrict root, sched_task_func_t func, void *arg, 
                    493:                struct aiocb ** __restrict acbs, void *opt_data, size_t opt_dlen);
                    494: /*
                    495:  * schedLIORead() - Add list of AIO read tasks to scheduler queue
                    496:  *
                    497:  * @root = root task
                    498:  * @func = task execution function
                    499:  * @arg = 1st func argument
                    500:  * @fd = file descriptor
                    501:  * @bufs = Buffer's list
                    502:  * @nbufs = Number of Buffers
                    503:  * @offset = Offset from start of file, if =-1 from current position
                    504:  * return: NULL error or !=NULL new queued task
                    505:  */
                    506: inline sched_task_t *schedLIORead(sched_root_task_t * __restrict root, sched_task_func_t func, 
                    507:                void *arg, int fd, struct iovec *bufs, size_t nbufs, off_t offset);
                    508: /*
                    509:  * schedLIOWrite() - Add list of AIO write tasks to scheduler queue
                    510:  *
                    511:  * @root = root task
                    512:  * @func = task execution function
                    513:  * @arg = 1st func argument
                    514:  * @fd = file descriptor
                    515:  * @bufs = Buffer's list
                    516:  * @nbufs = Number of Buffers
                    517:  * @offset = Offset from start of file, if =-1 from current position
                    518:  * return: NULL error or !=NULL new queued task
                    519:  */
                    520: inline sched_task_t *schedLIOWrite(sched_root_task_t * __restrict root, sched_task_func_t func, 
                    521:                void *arg, int fd, struct iovec *bufs, size_t nbufs, off_t offset);
                    522: #endif /* EVFILT_LIO */
                    523: 
1.10      misho     524: /*
                    525:  * schedUser() - Add trigger USER task to scheduler queue
                    526:  *
                    527:  * @root = root task
                    528:  * @func = task execution function
                    529:  * @arg = 1st func argument
                    530:  * @id = Trigger ID
                    531:  * @opt_data = Optional data
                    532:  * @opt_dlen = Optional user's trigger flags
                    533:  * return: NULL error or !=NULL new queued task
                    534:  */
                    535: sched_task_t *schedUser(sched_root_task_t * __restrict root, sched_task_func_t func, void *arg, 
                    536:                unsigned long id, void *opt_data, size_t opt_dlen);
                    537: #define schedUserSelf(x)       schedUser(TASK_ROOT((x)), TASK_FUNC((x)), TASK_ARG((x)), \
                    538:                TASK_VAL((x)), TASK_DATA((x)), TASK_DATLEN((x)))
                    539: /*
                    540:  * schedTrigger() - Triggering USER task
                    541:  *
                    542:  * @task = task
                    543:  * return: -1 error or 0 ok
                    544:  */
                    545: int schedTrigger(sched_task_t * __restrict task);
                    546: 
                    547: /*
1.1       misho     548:  * schedTimer() - Add TIMER task to scheduler queue
1.6       misho     549:  *
1.1       misho     550:  * @root = root task
                    551:  * @func = task execution function
                    552:  * @arg = 1st func argument
1.5       misho     553:  * @ts = timeout argument structure
                    554:  * @opt_data = Optional data
                    555:  * @opt_dlen = Optional data length
1.1       misho     556:  * return: NULL error or !=NULL new queued task
                    557:  */
1.5       misho     558: sched_task_t *schedTimer(sched_root_task_t * __restrict root, sched_task_func_t func, void *arg, 
                    559:                struct timespec ts, void *opt_data, size_t opt_dlen);
1.8       misho     560: #define schedTimerSelf(x)      schedTimer(TASK_ROOT((x)), TASK_FUNC((x)), TASK_ARG((x)), \
                    561:                TASK_TS((x)), TASK_DATA((x)), TASK_DATLEN((x)))
1.1       misho     562: /*
                    563:  * schedEvent() - Add EVENT task to scheduler queue
1.6       misho     564:  *
1.1       misho     565:  * @root = root task
                    566:  * @func = task execution function
                    567:  * @arg = 1st func argument
1.2       misho     568:  * @val = additional func argument
1.5       misho     569:  * @opt_data = Optional data
                    570:  * @opt_dlen = Optional data length
1.1       misho     571:  * return: NULL error or !=NULL new queued task
                    572:  */
1.5       misho     573: sched_task_t *schedEvent(sched_root_task_t * __restrict root, sched_task_func_t func, void *arg, 
                    574:                unsigned long val, void *opt_data, size_t opt_dlen);
1.8       misho     575: #define schedEventSelf(x)      schedEvent(TASK_ROOT((x)), TASK_FUNC((x)), TASK_ARG((x)), \
                    576:                TASK_VAL((x)), TASK_DATA((x)), TASK_DATLEN((x)))
1.1       misho     577: /*
1.13      misho     578:  * schedTask() - Add regular task to scheduler queue
1.6       misho     579:  *
1.1       misho     580:  * @root = root task
                    581:  * @func = task execution function
                    582:  * @arg = 1st func argument
1.13      misho     583:  * @prio = regular task priority, 0 is hi priority for regular tasks
1.5       misho     584:  * @opt_data = Optional data
                    585:  * @opt_dlen = Optional data length
1.1       misho     586:  * return: NULL error or !=NULL new queued task
                    587:  */
1.13      misho     588: sched_task_t *schedTask(sched_root_task_t * __restrict root, sched_task_func_t func, void *arg, 
                    589:                unsigned long prio, void *opt_data, size_t opt_dlen);
                    590: #define schedTaskSelf(x)       schedTask(TASK_ROOT((x)), TASK_FUNC((x)), TASK_ARG((x)), \
1.8       misho     591:                TASK_VAL((x)), TASK_DATA((x)), TASK_DATLEN((x)))
1.11      misho     592: /*
                    593:  * schedSuspend() - Add Suspended task to scheduler queue
                    594:  *
                    595:  * @root = root task
                    596:  * @func = task execution function
                    597:  * @arg = 1st func argument
                    598:  * @id = Trigger ID
                    599:  * @opt_data = Optional data
                    600:  * @opt_dlen = Optional user's trigger flags
                    601:  * return: NULL error or !=NULL new queued task
                    602:  */
                    603: sched_task_t *schedSuspend(sched_root_task_t * __restrict root, sched_task_func_t func, void *arg, 
                    604:                unsigned long id, void *opt_data, size_t opt_dlen);
                    605: #define schedSuspendSelf(x)    schedUser(TASK_ROOT((x)), TASK_FUNC((x)), TASK_ARG((x)), \
                    606:                TASK_VAL((x)), TASK_DATA((x)), TASK_DATLEN((x)))
                    607: /*
                    608:  * schedResumeby() - Resume suspended task
                    609:  *
                    610:  * @root = root task
                    611:  * @criteria = find task by criteria 
                    612:  *     [CRITERIA_ANY|CRITERIA_ID|CRITERIA_DATA]
                    613:  * @param = search parameter (sched_task_t *task| u_long id)
                    614:  * return: -1 error or 0 resumed ok
                    615:  */
                    616: int schedResumeby(sched_root_task_t * __restrict root, unsigned char criteria, void *param);
1.10      misho     617: 
1.1       misho     618: /*
                    619:  * schedCallOnce() - Call once from scheduler
1.6       misho     620:  *
1.1       misho     621:  * @root = root task
                    622:  * @func = task execution function
                    623:  * @arg = 1st func argument
1.2       misho     624:  * @val = additional func argument
1.5       misho     625:  * @opt_data = Optional data
                    626:  * @opt_dlen = Optional data length
1.2       misho     627:  * return: return value from called func
1.1       misho     628:  */
1.5       misho     629: sched_task_t *schedCallOnce(sched_root_task_t * __restrict root, sched_task_func_t func, void *arg, 
                    630:                unsigned long val, void *opt_data, size_t opt_dlen);
1.8       misho     631: #define schedCallAgain(x)      schedCallOnce(TASK_ROOT((x)), TASK_FUNC((x)), TASK_ARG((x)), \
                    632:                TASK_VAL((x)), TASK_DATA((x)), TASK_DATLEN((x)))
1.1       misho     633: 
1.15      misho     634: /*
                    635:  * schedThread() - Add thread task to scheduler queue
                    636:  *
                    637:  * @root = root task
                    638:  * @func = task execution function
                    639:  * @arg = 1st func argument
                    640:  * @detach = Detach thread from scheduler, if !=0
                    641:  * @opt_data = Optional data
                    642:  * @opt_dlen = Optional data length
                    643:  * return: NULL error or !=NULL new queued task
                    644:  */
                    645: sched_task_t *schedThread(sched_root_task_t * __restrict root, sched_task_func_t func, void *arg, 
                    646:                int detach, void *opt_data, size_t opt_dlen);
                    647: #define schedThreadSelf(x)     schedThread(TASK_ROOT((x)), TASK_FUNC((x)), TASK_ARG((x)), \
                    648:                TASK_VAL((x)), TASK_DATA((x)), TASK_DATLEN((x)))
                    649: /*
1.16    ! misho     650:  * sched_taskExit() - Exit routine for scheduler task, explicit required for thread tasks
        !           651:  *
        !           652:  * @task = current task
        !           653:  * @retcode = return code
        !           654:  * return: return code
        !           655:  */
        !           656: inline void *sched_taskExit(sched_task_t *task, intptr_t retcode);
        !           657: /*
        !           658:  * taskExit() - Exit helper for scheduler task
1.15      misho     659:  *
                    660:  * @t = current executed task
                    661:  * @x = exit value for task
                    662:  * return: none
                    663:  */
1.16    ! misho     664: #define taskExit(t, x)         return sched_taskExit((t), (intptr_t) (x))
1.15      misho     665: 
1.1       misho     666: 
                    667: #endif

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>