chiark / gitweb /
systemctl: fix exit code when directing is-enabled to chkconfig
[elogind.git] / src / job.h
1 /*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
2
3 #ifndef foojobhfoo
4 #define foojobhfoo
5
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
25 #include <stdbool.h>
26 #include <inttypes.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 #include "manager.h"
36 #include "unit.h"
37 #include "hashmap.h"
38 #include "list.h"
39
40 enum JobType {
41         JOB_START,                  /* if a unit does not support being started, we'll just wait until it becomes active */
42         JOB_VERIFY_ACTIVE,
43
44         JOB_STOP,
45
46         JOB_RELOAD,                 /* if running reload */
47         JOB_RELOAD_OR_START,        /* if running reload, if not running start */
48
49         /* Note that restarts are first treated like JOB_STOP, but
50          * then instead of finishing are patched to become
51          * JOB_START. */
52         JOB_RESTART,                /* if running stop, then start unconditionally */
53         JOB_TRY_RESTART,            /* if running stop and then start */
54
55         _JOB_TYPE_MAX,
56         _JOB_TYPE_INVALID = -1
57 };
58
59 enum JobState {
60         JOB_WAITING,
61         JOB_RUNNING,
62         _JOB_STATE_MAX,
63         _JOB_STATE_INVALID = -1
64 };
65
66 enum JobMode {
67         JOB_FAIL,
68         JOB_REPLACE,
69         JOB_ISOLATE,
70         JOB_IGNORE_DEPENDENCIES,
71         _JOB_MODE_MAX,
72         _JOB_MODE_INVALID = -1
73 };
74
75 enum JobResult {
76         JOB_DONE,
77         JOB_CANCELED,
78         JOB_TIMEOUT,
79         JOB_FAILED,
80         JOB_DEPENDENCY,
81         _JOB_RESULT_MAX,
82         _JOB_RESULT_INVALID = -1
83 };
84
85 struct JobDependency {
86         /* Encodes that the 'subject' job needs the 'object' job in
87          * some way. This structure is used only while building a transaction. */
88         Job *subject;
89         Job *object;
90
91         LIST_FIELDS(JobDependency, subject);
92         LIST_FIELDS(JobDependency, object);
93
94         bool matters;
95         bool conflicts;
96 };
97
98 struct Job {
99         Manager *manager;
100         Unit *unit;
101
102         LIST_FIELDS(Job, transaction);
103         LIST_FIELDS(Job, run_queue);
104         LIST_FIELDS(Job, dbus_queue);
105
106         LIST_HEAD(JobDependency, subject_list);
107         LIST_HEAD(JobDependency, object_list);
108
109         /* Used for graph algs as a "I have been here" marker */
110         Job* marker;
111         unsigned generation;
112
113         uint32_t id;
114
115         JobType type;
116         JobState state;
117
118         Watch timer_watch;
119
120         /* Note that this bus object is not ref counted here. */
121         DBusConnection *bus;
122         char *bus_client;
123
124         JobResult result;
125
126         bool installed:1;
127         bool in_run_queue:1;
128         bool matters_to_anchor:1;
129         bool override:1;
130         bool in_dbus_queue:1;
131         bool sent_dbus_new_signal:1;
132         bool ignore_deps:1;
133 };
134
135 Job* job_new(Manager *m, JobType type, Unit *unit);
136 void job_free(Job *job);
137 void job_dump(Job *j, FILE*f, const char *prefix);
138
139 JobDependency* job_dependency_new(Job *subject, Job *object, bool matters, bool conflicts);
140 void job_dependency_free(JobDependency *l);
141
142 bool job_is_anchor(Job *j);
143
144 int job_merge(Job *j, Job *other);
145
146 int job_type_merge(JobType *a, JobType b);
147 bool job_type_is_mergeable(JobType a, JobType b);
148 bool job_type_is_superset(JobType a, JobType b);
149 bool job_type_is_conflicting(JobType a, JobType b);
150 bool job_type_is_redundant(JobType a, UnitActiveState b);
151
152 bool job_is_runnable(Job *j);
153
154 void job_add_to_run_queue(Job *j);
155 void job_add_to_dbus_queue(Job *j);
156
157 int job_start_timer(Job *j);
158 void job_timer_event(Job *j, uint64_t n_elapsed, Watch *w);
159
160 int job_run_and_invalidate(Job *j);
161 int job_finish_and_invalidate(Job *j, JobResult result);
162
163 char *job_dbus_path(Job *j);
164
165 const char* job_type_to_string(JobType t);
166 JobType job_type_from_string(const char *s);
167
168 const char* job_state_to_string(JobState t);
169 JobState job_state_from_string(const char *s);
170
171 const char* job_mode_to_string(JobMode t);
172 JobMode job_mode_from_string(const char *s);
173
174 const char* job_result_to_string(JobResult t);
175 JobResult job_result_from_string(const char *s);
176
177 #endif