chiark / gitweb /
main: don't check if /usr really is a mount point, since it is fine if it is passed...
[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_SKIPPED,
82         _JOB_RESULT_MAX,
83         _JOB_RESULT_INVALID = -1
84 };
85
86 struct JobDependency {
87         /* Encodes that the 'subject' job needs the 'object' job in
88          * some way. This structure is used only while building a transaction. */
89         Job *subject;
90         Job *object;
91
92         LIST_FIELDS(JobDependency, subject);
93         LIST_FIELDS(JobDependency, object);
94
95         bool matters;
96         bool conflicts;
97 };
98
99 struct Job {
100         Manager *manager;
101         Unit *unit;
102
103         LIST_FIELDS(Job, transaction);
104         LIST_FIELDS(Job, run_queue);
105         LIST_FIELDS(Job, dbus_queue);
106
107         LIST_HEAD(JobDependency, subject_list);
108         LIST_HEAD(JobDependency, object_list);
109
110         /* Used for graph algs as a "I have been here" marker */
111         Job* marker;
112         unsigned generation;
113
114         uint32_t id;
115
116         JobType type;
117         JobState state;
118
119         Watch timer_watch;
120
121         /* Note that this bus object is not ref counted here. */
122         DBusConnection *bus;
123         char *bus_client;
124
125         JobResult result;
126
127         bool installed:1;
128         bool in_run_queue:1;
129         bool matters_to_anchor:1;
130         bool override:1;
131         bool in_dbus_queue:1;
132         bool sent_dbus_new_signal:1;
133         bool ignore_deps:1;
134 };
135
136 Job* job_new(Manager *m, JobType type, Unit *unit);
137 void job_free(Job *job);
138 void job_dump(Job *j, FILE*f, const char *prefix);
139
140 JobDependency* job_dependency_new(Job *subject, Job *object, bool matters, bool conflicts);
141 void job_dependency_free(JobDependency *l);
142
143 bool job_is_anchor(Job *j);
144
145 int job_merge(Job *j, Job *other);
146
147 int job_type_merge(JobType *a, JobType b);
148 bool job_type_is_mergeable(JobType a, JobType b);
149 bool job_type_is_superset(JobType a, JobType b);
150 bool job_type_is_conflicting(JobType a, JobType b);
151 bool job_type_is_redundant(JobType a, UnitActiveState b);
152
153 bool job_is_runnable(Job *j);
154
155 void job_add_to_run_queue(Job *j);
156 void job_add_to_dbus_queue(Job *j);
157
158 int job_start_timer(Job *j);
159 void job_timer_event(Job *j, uint64_t n_elapsed, Watch *w);
160
161 int job_run_and_invalidate(Job *j);
162 int job_finish_and_invalidate(Job *j, JobResult result);
163
164 char *job_dbus_path(Job *j);
165
166 const char* job_type_to_string(JobType t);
167 JobType job_type_from_string(const char *s);
168
169 const char* job_state_to_string(JobState t);
170 JobState job_state_from_string(const char *s);
171
172 const char* job_mode_to_string(JobMode t);
173 JobMode job_mode_from_string(const char *s);
174
175 const char* job_result_to_string(JobResult t);
176 JobResult job_result_from_string(const char *s);
177
178 #endif