[09a8006] | 1 | /*
|
---|
| 2 | * Copyright (c) 2015 Michal Koutny
|
---|
| 3 | * All rights reserved.
|
---|
| 4 | *
|
---|
| 5 | * Redistribution and use in source and binary forms, with or without
|
---|
| 6 | * modification, are permitted provided that the following conditions
|
---|
| 7 | * are met:
|
---|
| 8 | *
|
---|
| 9 | * - Redistributions of source code must retain the above copyright
|
---|
| 10 | * notice, this list of conditions and the following disclaimer.
|
---|
| 11 | * - Redistributions in binary form must reproduce the above copyright
|
---|
| 12 | * notice, this list of conditions and the following disclaimer in the
|
---|
| 13 | * documentation and/or other materials provided with the distribution.
|
---|
| 14 | * - The name of the author may not be used to endorse or promote products
|
---|
| 15 | * derived from this software without specific prior written permission.
|
---|
| 16 | *
|
---|
| 17 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AS IS'' AND ANY EXPRESS OR
|
---|
| 18 | * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
---|
| 19 | * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
---|
| 20 | * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
---|
| 21 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
---|
| 22 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
---|
| 23 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
---|
| 24 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
---|
| 25 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
---|
| 26 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
---|
| 27 | */
|
---|
| 28 |
|
---|
[694253c] | 29 | #ifndef SYSMAN_JOB_H
|
---|
| 30 | #define SYSMAN_JOB_H
|
---|
| 31 |
|
---|
[3f7e1f24] | 32 | #include <adt/dyn_array.h>
|
---|
[694253c] | 33 | #include <adt/list.h>
|
---|
[c0c388d2] | 34 | #include <atomic.h>
|
---|
[3f7e1f24] | 35 | #include <stdbool.h>
|
---|
[694253c] | 36 |
|
---|
| 37 | #include "unit.h"
|
---|
| 38 |
|
---|
[3f7e1f24] | 39 | /** Run state of job */
|
---|
[694253c] | 40 | typedef enum {
|
---|
[72c8f77] | 41 | JOB_EMBRYO, /**< Job after creation */
|
---|
| 42 | JOB_CLOSURED, /**< Intermmediate when closure is evaluated */
|
---|
| 43 | JOB_PENDING, /**< Job is queued */
|
---|
[694253c] | 44 | JOB_RUNNING,
|
---|
| 45 | JOB_FINISHED
|
---|
| 46 | } job_state_t;
|
---|
| 47 |
|
---|
[3f7e1f24] | 48 | /** Return value of job */
|
---|
| 49 | typedef enum {
|
---|
| 50 | JOB_OK,
|
---|
| 51 | JOB_FAILED,
|
---|
| 52 | JOB_UNDEFINED_ = -1
|
---|
| 53 | } job_retval_t;
|
---|
[694253c] | 54 |
|
---|
[72c8f77] | 55 | struct job;
|
---|
| 56 | typedef struct job job_t;
|
---|
| 57 |
|
---|
[dda2602] | 58 | struct job {
|
---|
[3f7e1f24] | 59 | link_t job_queue;
|
---|
[c0c388d2] | 60 | atomic_t refcnt;
|
---|
| 61 |
|
---|
[3f7e1f24] | 62 | unit_state_t target_state;
|
---|
[694253c] | 63 | unit_t *unit;
|
---|
| 64 |
|
---|
[3f7e1f24] | 65 | /** Jobs that this job is preventing from running */
|
---|
| 66 | dyn_array_t blocked_jobs;
|
---|
[72c8f77] | 67 | /** No. of jobs that the job is actually blocking (may differ from size
|
---|
| 68 | * of blocked_jobs for not fully merged job */
|
---|
| 69 | size_t blocked_jobs_count;
|
---|
[3f7e1f24] | 70 | /** No. of jobs that must finish before this job */
|
---|
| 71 | size_t blocking_jobs;
|
---|
| 72 | /** Any of blocking jobs failed */
|
---|
| 73 | bool blocking_job_failed;
|
---|
[72c8f77] | 74 | /** Job that this job was merged to */
|
---|
| 75 | job_t *merged_into;
|
---|
[3f7e1f24] | 76 |
|
---|
| 77 | /** See job_state_t */
|
---|
[694253c] | 78 | job_state_t state;
|
---|
[3f7e1f24] | 79 | /** See job_retval_t */
|
---|
| 80 | job_retval_t retval;
|
---|
[dda2602] | 81 | };
|
---|
[694253c] | 82 |
|
---|
| 83 | extern void job_queue_init(void);
|
---|
[72c8f77] | 84 | extern int job_queue_add_closure(dyn_array_t *);
|
---|
[5559712] | 85 | extern void job_queue_process(void);
|
---|
[694253c] | 86 |
|
---|
[3f7e1f24] | 87 | extern int job_create_closure(job_t *, dyn_array_t *);
|
---|
| 88 | extern job_t *job_create(unit_t *, unit_state_t);
|
---|
[694253c] | 89 |
|
---|
[c0c388d2] | 90 | extern void job_add_ref(job_t *);
|
---|
| 91 | extern void job_del_ref(job_t **);
|
---|
| 92 |
|
---|
[3f7e1f24] | 93 | extern void job_run(job_t *);
|
---|
| 94 | extern void job_finish(job_t *);
|
---|
[694253c] | 95 | #endif
|
---|