]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/systemd-interfaces.vala
dbus: pass along information why a job failed when it failed (dbus api change!)
[thirdparty/systemd.git] / src / systemd-interfaces.vala
CommitLineData
a7334b09
LP
1/***
2 This file is part of systemd.
3
4 Copyright 2010 Lennart Poettering
5
6 systemd is free software; you can redistribute it and/or modify it
7 under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
10
11 systemd is distributed in the hope that it will be useful, but
12 WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with systemd; If not, see <http://www.gnu.org/licenses/>.
18***/
19
4139c1b2 20[DBus (name = "org.freedesktop.systemd1.Manager")]
26742b3f 21public interface Manager : DBusProxy {
501c7d0b
LP
22
23 public struct UnitInfo {
24 string id;
25 string description;
26 string load_state;
27 string active_state;
10a94420 28 string sub_state;
8fe914ec 29 string following;
501c7d0b
LP
30 ObjectPath unit_path;
31 uint32 job_id;
32 string job_type;
33 ObjectPath job_path;
34 }
35
36 public struct JobInfo {
37 uint32 id;
38 string name;
39 string type;
40 string state;
41 ObjectPath job_path;
42 ObjectPath unit_path;
43 }
44
1137a57c
LP
45 public abstract string[] environment { owned get; }
46
26742b3f
LP
47 public abstract UnitInfo[] list_units() throws IOError;
48 public abstract JobInfo[] list_jobs() throws IOError;
501c7d0b 49
26742b3f
LP
50 public abstract ObjectPath get_unit(string name) throws IOError;
51 public abstract ObjectPath get_unit_by_pid(uint32 pid) throws IOError;
52 public abstract ObjectPath load_unit(string name) throws IOError;
53 public abstract ObjectPath get_job(uint32 id) throws IOError;
501c7d0b 54
26742b3f
LP
55 public abstract ObjectPath start_unit(string name, string mode = "replace") throws IOError;
56 public abstract ObjectPath stop_unit(string name, string mode = "replace") throws IOError;
57 public abstract ObjectPath reload_unit(string name, string mode = "replace") throws IOError;
58 public abstract ObjectPath restart_unit(string name, string mode = "replace") throws IOError;
59 public abstract ObjectPath try_restart_unit(string name, string mode = "replace") throws IOError;
60 public abstract ObjectPath reload_or_restart_unit(string name, string mode = "replace") throws IOError;
61 public abstract ObjectPath reload_or_try_restart_unit(string name, string mode = "replace") throws IOError;
c4e2ceae 62
26742b3f 63 public abstract void reset_failed_unit(string name = "") throws IOError;
c87eba54 64
26742b3f 65 public abstract void clear_jobs() throws IOError;
c1e1601e 66
26742b3f
LP
67 public abstract void subscribe() throws IOError;
68 public abstract void unsubscribe() throws IOError;
c1e1601e 69
26742b3f 70 public abstract string dump() throws IOError;
b152adec 71
26742b3f
LP
72 public abstract void reload() throws IOError;
73 public abstract void reexecute() throws IOError;
74 public abstract void exit() throws IOError;
75 public abstract void halt() throws IOError;
76 public abstract void power_off() throws IOError;
77 public abstract void reboot() throws IOError;
78 public abstract void kexec() throws IOError;
a16e1123 79
26742b3f 80 public abstract ObjectPath create_snapshot(string name = "", bool cleanup = false) throws IOError;
41447faf 81
26742b3f
LP
82 public abstract void set_environment(string[] names) throws IOError;
83 public abstract void unset_environment(string[] names) throws IOError;
1137a57c 84
c1e1601e
LP
85 public abstract signal void unit_new(string id, ObjectPath path);
86 public abstract signal void unit_removed(string id, ObjectPath path);
87 public abstract signal void job_new(uint32 id, ObjectPath path);
5d44db4a 88 public abstract signal void job_removed(uint32 id, ObjectPath path, string res);
501c7d0b
LP
89}
90
91[DBus (name = "org.freedesktop.systemd1.Unit")]
26742b3f 92public interface Unit : DBusProxy {
c1e1601e
LP
93 public struct JobLink {
94 uint32 id;
95 ObjectPath path;
96 }
97
501c7d0b 98 public abstract string id { owned get; }
77a38d30 99 public abstract string[] names { owned get; }
c4e2ceae 100 public abstract string following { owned get; }
d4e6a6f6
LP
101 public abstract string[] requires { owned get; }
102 public abstract string[] requires_overridable { owned get; }
103 public abstract string[] requisite { owned get; }
104 public abstract string[] requisite_overridable { owned get; }
105 public abstract string[] wants { owned get; }
106 public abstract string[] required_by { owned get; }
107 public abstract string[] required_by_overridable { owned get; }
108 public abstract string[] wanted_by { owned get; }
109 public abstract string[] conflicts { owned get; }
c4e2ceae 110 public abstract string[] conflicted_by { owned get; }
d4e6a6f6
LP
111 public abstract string[] before { owned get; }
112 public abstract string[] after { owned get; }
c4e2ceae 113 public abstract string[] on_failure { owned get; }
501c7d0b
LP
114 public abstract string description { owned get; }
115 public abstract string load_state { owned get; }
116 public abstract string active_state { owned get; }
4139c1b2 117 public abstract string sub_state { owned get; }
6be1e7d5 118 public abstract string fragment_path { owned get; }
173e3821 119 public abstract uint64 inactive_exit_timestamp { owned get; }
501c7d0b
LP
120 public abstract uint64 active_enter_timestamp { owned get; }
121 public abstract uint64 active_exit_timestamp { owned get; }
173e3821 122 public abstract uint64 inactive_enter_timestamp { owned get; }
501c7d0b 123 public abstract bool can_start { owned get; }
c4e2ceae 124 public abstract bool can_stop { owned get; }
4139c1b2 125 public abstract bool can_reload { owned get; }
d4e6a6f6 126 public abstract JobLink job { owned get; }
4139c1b2
LP
127 public abstract bool recursive_stop { owned get; }
128 public abstract bool stop_when_unneeded { owned get; }
c4e2ceae
LP
129 public abstract bool refuse_manual_start { owned get; }
130 public abstract bool refuse_manual_stop { owned get; }
131 public abstract bool default_dependencies { owned get; }
4139c1b2 132 public abstract string default_control_group { owned get; }
d4e6a6f6 133 public abstract string[] control_groups { owned get; }
c4e2ceae
LP
134 public abstract bool need_daemon_reload { owned get; }
135 public abstract uint64 job_timeout_usec { owned get; }
136
26742b3f
LP
137 public abstract ObjectPath start(string mode = "replace") throws IOError;
138 public abstract ObjectPath stop(string mode = "replace") throws IOError;
139 public abstract ObjectPath reload(string mode = "replace") throws IOError;
140 public abstract ObjectPath restart(string mode = "replace") throws IOError;
141 public abstract ObjectPath try_restart(string mode = "replace") throws IOError;
142 public abstract ObjectPath reload_or_restart(string mode = "replace") throws IOError;
143 public abstract ObjectPath reload_or_try_restart(string mode = "replace") throws IOError;
c4e2ceae 144
26742b3f 145 public abstract void reset_failed() throws IOError;
501c7d0b
LP
146}
147
148[DBus (name = "org.freedesktop.systemd1.Job")]
26742b3f 149public interface Job : DBusProxy {
c1e1601e
LP
150 public struct UnitLink {
151 string id;
152 ObjectPath path;
153 }
154
501c7d0b
LP
155 public abstract uint32 id { owned get; }
156 public abstract string state { owned get; }
157 public abstract string job_type { owned get; }
d4e6a6f6 158 public abstract UnitLink unit { owned get; }
501c7d0b 159
26742b3f 160 public abstract void cancel() throws IOError;
c4e2ceae 161}
c1e1601e 162
26742b3f
LP
163[DBus (name = "org.freedesktop.Properties")]
164public interface Properties : DBusProxy {
165 public abstract Variant? get(string iface, string property) throws IOError;
166 public abstract signal void properties_changed(string iface, HashTable<string, Variant?> changed_properties, string[] invalidated_properties);
501c7d0b 167}