]> git.ipfire.org Git - people/ms/systemd.git/blame - job.h
Remove .h files from _SOURCES
[people/ms/systemd.git] / job.h
CommitLineData
60918275
LP
1/*-*- Mode: C; c-basic-offset: 8 -*-*/
2
3#ifndef foojobhfoo
4#define foojobhfoo
5
a7334b09
LP
6/***
7 This file is part of systemd.
8
9 Copyright 2010 Lennart Poettering
10
11 systemd is free software; you can redistribute it and/or modify it
12 under the terms of the GNU General Public License as published by
13 the Free Software Foundation; either version 2 of the License, or
14 (at your option) any later version.
15
16 systemd is distributed in the hope that it will be useful, but
17 WITHOUT ANY WARRANTY; without even the implied warranty of
18 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 General Public License for more details.
20
21 You should have received a copy of the GNU General Public License
22 along with systemd; If not, see <http://www.gnu.org/licenses/>.
23***/
24
60918275
LP
25#include <stdbool.h>
26#include <inttypes.h>
27
28typedef struct Job Job;
e5b5ae50 29typedef struct JobDependency JobDependency;
60918275 30typedef enum JobType JobType;
e5b5ae50 31typedef enum JobState JobState;
5cb5a6ff 32typedef enum JobMode JobMode;
60918275
LP
33
34#include "manager.h"
87f0e418 35#include "unit.h"
60918275
LP
36#include "hashmap.h"
37#include "list.h"
38
39enum JobType {
87f0e418 40 JOB_START, /* if a unit does not support being started, we'll just wait until it becomes active */
5cb5a6ff
LP
41 JOB_VERIFY_ACTIVE,
42
60918275 43 JOB_STOP,
5cb5a6ff
LP
44
45 JOB_RELOAD, /* if running reload */
46 JOB_RELOAD_OR_START, /* if running reload, if not running start */
47
48 /* Note that restarts are first treated like JOB_STOP, but
49 * then instead of finishing are patched to become
50 * JOB_START. */
51 JOB_RESTART, /* if running stop, then start unconditionally */
52 JOB_TRY_RESTART, /* if running stop and then start */
53
e5b5ae50
LP
54 _JOB_TYPE_MAX,
55 _JOB_TYPE_INVALID = -1
60918275
LP
56};
57
e5b5ae50 58enum JobState {
60918275
LP
59 JOB_WAITING,
60 JOB_RUNNING,
94f04347
LP
61 _JOB_STATE_MAX,
62 _JOB_STATE_INVALID = -1
e5b5ae50 63};
60918275
LP
64
65enum JobMode {
66 JOB_FAIL,
67 JOB_REPLACE,
c497c7a9 68 JOB_ISOLATE,
b548631a
LP
69 _JOB_MODE_MAX,
70 _JOB_MODE_INVALID = -1
60918275
LP
71};
72
e5b5ae50
LP
73struct JobDependency {
74 /* Encodes that the 'subject' job needs the 'object' job in
75 * some way. This structure is used only while building a transaction. */
76 Job *subject;
77 Job *object;
78
034c6ed7
LP
79 LIST_FIELDS(JobDependency, subject);
80 LIST_FIELDS(JobDependency, object);
9d58f1db
LP
81
82 bool matters;
e5b5ae50
LP
83};
84
60918275
LP
85struct Job {
86 Manager *manager;
87f0e418 87 Unit *unit;
e5b5ae50 88
034c6ed7
LP
89 LIST_FIELDS(Job, transaction);
90 LIST_FIELDS(Job, run_queue);
c1e1601e 91 LIST_FIELDS(Job, dbus_queue);
e5b5ae50 92
44d8db9e
LP
93 LIST_HEAD(JobDependency, subject_list);
94 LIST_HEAD(JobDependency, object_list);
e5b5ae50 95
5cb5a6ff 96 /* Used for graph algs as a "I have been here" marker */
e5b5ae50
LP
97 Job* marker;
98 unsigned generation;
034c6ed7 99
9d58f1db
LP
100 uint32_t id;
101
102 JobType type;
103 JobState state;
104
105 bool installed:1;
106 bool in_run_queue:1;
107 bool matters_to_anchor:1;
108 bool override:1;
109 bool in_dbus_queue:1;
110 bool sent_dbus_new_signal:1;
60918275
LP
111};
112
87f0e418 113Job* job_new(Manager *m, JobType type, Unit *unit);
60918275 114void job_free(Job *job);
ceed3570 115void job_dump(Job *j, FILE*f, const char *prefix);
60918275 116
e5b5ae50
LP
117JobDependency* job_dependency_new(Job *subject, Job *object, bool matters);
118void job_dependency_free(JobDependency *l);
119void job_dependency_delete(Job *subject, Job *object, bool *matters);
120
121bool job_is_anchor(Job *j);
122
123int job_merge(Job *j, Job *other);
124
1ffba6fe 125int job_type_merge(JobType *a, JobType b);
5cb5a6ff 126bool job_type_is_mergeable(JobType a, JobType b);
1ffba6fe 127bool job_type_is_superset(JobType a, JobType b);
e094e853 128bool job_type_is_conflicting(JobType a, JobType b);
593fbdd2 129bool job_type_is_redundant(JobType a, UnitActiveState b);
5cb5a6ff 130
47be870b
LP
131bool job_is_runnable(Job *j);
132
c1e1601e
LP
133void job_add_to_run_queue(Job *j);
134void job_add_to_dbus_queue(Job *j);
135
5cb5a6ff
LP
136int job_run_and_invalidate(Job *j);
137int job_finish_and_invalidate(Job *j, bool success);
1ffba6fe 138
94f04347
LP
139const char* job_type_to_string(JobType t);
140JobType job_type_from_string(const char *s);
141
142const char* job_state_to_string(JobState t);
143JobState job_state_from_string(const char *s);
144
b548631a
LP
145const char* job_mode_to_string(JobMode t);
146JobMode job_mode_from_string(const char *s);
147
ea430986
LP
148char *job_dbus_path(Job *j);
149
60918275 150#endif