chiark / gitweb /
c23a38029d3932c23e1edf5426b10782f0c5d473
[elogind.git] / src / core / job.h
1 /*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
2
3 #pragma once
4
5 /***
6   This file is part of systemd.
7
8   Copyright 2010 Lennart Poettering
9
10   systemd is free software; you can redistribute it and/or modify it
11   under the terms of the GNU Lesser General Public License as published by
12   the Free Software Foundation; either version 2.1 of the License, or
13   (at your option) any later version.
14
15   systemd is distributed in the hope that it will be useful, but
16   WITHOUT ANY WARRANTY; without even the implied warranty of
17   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18   Lesser General Public License for more details.
19
20   You should have received a copy of the GNU Lesser General Public License
21   along with systemd; If not, see <http://www.gnu.org/licenses/>.
22 ***/
23
24 #include <stdbool.h>
25 #include <inttypes.h>
26 #include <errno.h>
27
28 typedef struct Job Job;
29 typedef struct JobDependency JobDependency;
30 typedef enum JobType JobType;
31 typedef enum JobState JobState;
32 typedef enum JobMode JobMode;
33 typedef enum JobResult JobResult;
34
35 /* Be careful when changing the job types! Adjust job_merging_table[] accordingly! */
36 enum JobType {
37         JOB_START,                  /* if a unit does not support being started, we'll just wait until it becomes active */
38         JOB_VERIFY_ACTIVE,
39
40         JOB_STOP,
41
42         JOB_RELOAD,                 /* if running, reload */
43
44         /* Note that restarts are first treated like JOB_STOP, but
45          * then instead of finishing are patched to become
46          * JOB_START. */
47         JOB_RESTART,                /* If running, stop. Then start unconditionally. */
48
49         _JOB_TYPE_MAX_MERGING,
50
51         /* JOB_NOP can enter into a transaction, but as it won't pull in
52          * any dependencies, it won't have to merge with anything.
53          * job_install() avoids the problem of merging JOB_NOP too (it's
54          * special-cased, only merges with other JOB_NOPs). */
55         JOB_NOP = _JOB_TYPE_MAX_MERGING, /* do nothing */
56
57         _JOB_TYPE_MAX_IN_TRANSACTION,
58
59         /* JOB_TRY_RESTART can never appear in a transaction, because
60          * it always collapses into JOB_RESTART or JOB_NOP before entering.
61          * Thus we never need to merge it with anything. */
62         JOB_TRY_RESTART = _JOB_TYPE_MAX_IN_TRANSACTION, /* if running, stop and then start */
63
64         /* JOB_RELOAD_OR_START won't enter into a transaction and cannot result
65          * from transaction merging (there's no way for JOB_RELOAD and
66          * JOB_START to meet in one transaction). It can result from a merge
67          * during job installation, but then it will immediately collapse into
68          * one of the two simpler types. */
69         JOB_RELOAD_OR_START,        /* if running, reload, otherwise start */
70
71         _JOB_TYPE_MAX,
72         _JOB_TYPE_INVALID = -1
73 };
74
75 enum JobState {
76         JOB_WAITING,
77         JOB_RUNNING,
78         _JOB_STATE_MAX,
79         _JOB_STATE_INVALID = -1
80 };
81
82 enum JobMode {
83         JOB_FAIL,                /* Fail if a conflicting job is already queued */
84         JOB_REPLACE,             /* Replace an existing conflicting job */
85         JOB_REPLACE_IRREVERSIBLY,/* Like JOB_REPLACE + produce irreversible jobs */
86         JOB_ISOLATE,             /* Start a unit, and stop all others */
87         JOB_FLUSH,               /* Flush out all other queued jobs when queing this one */
88         JOB_IGNORE_DEPENDENCIES, /* Ignore both requirement and ordering dependencies */
89         JOB_IGNORE_REQUIREMENTS, /* Ignore requirement dependencies */
90         _JOB_MODE_MAX,
91         _JOB_MODE_INVALID = -1
92 };
93
94 enum JobResult {
95         JOB_DONE,                /* Job completed successfully */
96         JOB_CANCELED,            /* Job canceled by a conflicting job installation or by explicit cancel request */
97         JOB_TIMEOUT,             /* JobTimeout elapsed */
98         JOB_FAILED,              /* Job failed */
99         JOB_DEPENDENCY,          /* A required dependency job did not result in JOB_DONE */
100         JOB_SKIPPED,             /* JOB_RELOAD of inactive unit; negative result of JOB_VERIFY_ACTIVE */
101         _JOB_RESULT_MAX,
102         _JOB_RESULT_INVALID = -1
103 };
104
105 #include "sd-event.h"
106 #include "manager.h"
107 #include "unit.h"
108 #include "hashmap.h"
109 #include "list.h"
110
111 struct JobDependency {
112         /* Encodes that the 'subject' job needs the 'object' job in
113          * some way. This structure is used only while building a transaction. */
114         Job *subject;
115         Job *object;
116
117         LIST_FIELDS(JobDependency, subject);
118         LIST_FIELDS(JobDependency, object);
119
120         bool matters;
121         bool conflicts;
122 };
123
124 struct Job {
125         Manager *manager;
126         Unit *unit;
127
128         LIST_FIELDS(Job, transaction);
129         LIST_FIELDS(Job, run_queue);
130         LIST_FIELDS(Job, dbus_queue);
131
132         LIST_HEAD(JobDependency, subject_list);
133         LIST_HEAD(JobDependency, object_list);
134
135         /* Used for graph algs as a "I have been here" marker */
136         Job* marker;
137         unsigned generation;
138
139         uint32_t id;
140
141         JobType type;
142         JobState state;
143
144         sd_event_source *timer_event_source;
145         usec_t begin_usec;
146
147         /* There can be more than one client, because of job merging. */
148         Set *subscribed;
149
150         JobResult result;
151
152         bool installed:1;
153         bool in_run_queue:1;
154         bool matters_to_anchor:1;
155         bool override:1;
156         bool in_dbus_queue:1;
157         bool sent_dbus_new_signal:1;
158         bool ignore_order:1;
159         bool irreversible:1;
160 };
161
162 Job* job_new(Unit *unit, JobType type);
163 Job* job_new_raw(Unit *unit);
164 void job_free(Job *job);
165 Job* job_install(Job *j);
166 int job_install_deserialized(Job *j);
167 void job_uninstall(Job *j);
168 void job_dump(Job *j, FILE*f, const char *prefix);
169 int job_serialize(Job *j, FILE *f, FDSet *fds);
170 int job_deserialize(Job *j, FILE *f, FDSet *fds);
171 int job_coldplug(Job *j);
172
173 JobDependency* job_dependency_new(Job *subject, Job *object, bool matters, bool conflicts);
174 void job_dependency_free(JobDependency *l);
175
176 int job_merge(Job *j, Job *other);
177
178 JobType job_type_lookup_merge(JobType a, JobType b) _pure_;
179
180 _pure_ static inline bool job_type_is_mergeable(JobType a, JobType b) {
181         return job_type_lookup_merge(a, b) >= 0;
182 }
183
184 _pure_ static inline bool job_type_is_conflicting(JobType a, JobType b) {
185         return !job_type_is_mergeable(a, b);
186 }
187
188 _pure_ static inline bool job_type_is_superset(JobType a, JobType b) {
189         /* Checks whether operation a is a "superset" of b in its actions */
190         return a == job_type_lookup_merge(a, b);
191 }
192
193 bool job_type_is_redundant(JobType a, UnitActiveState b) _pure_;
194
195 /* Collapses a state-dependent job type into a simpler type by observing
196  * the state of the unit which it is going to be applied to. */
197 void job_type_collapse(JobType *t, Unit *u);
198
199 int job_type_merge_and_collapse(JobType *a, JobType b, Unit *u);
200
201 void job_add_to_run_queue(Job *j);
202 void job_add_to_dbus_queue(Job *j);
203
204 int job_start_timer(Job *j);
205
206 int job_run_and_invalidate(Job *j);
207 int job_finish_and_invalidate(Job *j, JobResult result, bool recursive);
208
209 char *job_dbus_path(Job *j);
210
211 void job_shutdown_magic(Job *j);
212
213 const char* job_type_to_string(JobType t) _const_;
214 JobType job_type_from_string(const char *s) _pure_;
215
216 const char* job_state_to_string(JobState t) _const_;
217 JobState job_state_from_string(const char *s) _pure_;
218
219 const char* job_mode_to_string(JobMode t) _const_;
220 JobMode job_mode_from_string(const char *s) _pure_;
221
222 const char* job_result_to_string(JobResult t) _const_;
223 JobResult job_result_from_string(const char *s) _pure_;