source: mainline/uspace/srv/sysman/job.h@ 102f641

Last change on this file since 102f641 was 102f641, checked in by Matthieu Riolo <matthieu.riolo@…>, 6 years ago

Correcting syntax according to ccheck

  • Property mode set to 100644
File size: 2.7 KB
RevLine 
[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>
[241f1985]34#include <stdatomic.h>
[3f7e1f24]35#include <stdbool.h>
[694253c]36
37#include "unit.h"
38
[3f7e1f24]39/** Run state of job */
[694253c]40typedef 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 */
49typedef enum {
50 JOB_OK,
51 JOB_FAILED,
52 JOB_UNDEFINED_ = -1
53} job_retval_t;
[694253c]54
[72c8f77]55struct job;
56typedef struct job job_t;
57
[dda2602]58struct job {
[3f7e1f24]59 link_t job_queue;
[241f1985]60 atomic_uint refcnt;
[c0c388d2]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;
[102f641]67 /**
68 * No. of jobs that the job is actually blocking (may differ from size
69 * of blocked_jobs for not fully merged job
70 */
[72c8f77]71 size_t blocked_jobs_count;
[3f7e1f24]72 /** No. of jobs that must finish before this job */
73 size_t blocking_jobs;
74 /** Any of blocking jobs failed */
75 bool blocking_job_failed;
[72c8f77]76 /** Job that this job was merged to */
77 job_t *merged_into;
[3f7e1f24]78
79 /** See job_state_t */
[694253c]80 job_state_t state;
[3f7e1f24]81 /** See job_retval_t */
82 job_retval_t retval;
[dda2602]83};
[694253c]84
[3f7e1f24]85extern job_t *job_create(unit_t *, unit_state_t);
[694253c]86
[c0c388d2]87extern void job_add_ref(job_t *);
88extern void job_del_ref(job_t **);
89
[3f7e1f24]90extern void job_run(job_t *);
91extern void job_finish(job_t *);
[694253c]92#endif
Note: See TracBrowser for help on using the repository browser.