chiark / gitweb /
ask-password: add minimal framework to allow services query SSL/harddisk passphrases...
[elogind.git] / src / systemd-interfaces.vala
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
20 using DBus;
21
22 [DBus (name = "org.freedesktop.systemd1.Manager")]
23 public interface Manager : DBus.Object {
24
25         public struct UnitInfo {
26                 string id;
27                 string description;
28                 string load_state;
29                 string active_state;
30                 string sub_state;
31                 string following;
32                 ObjectPath unit_path;
33                 uint32 job_id;
34                 string job_type;
35                 ObjectPath job_path;
36         }
37
38         public struct JobInfo {
39                 uint32 id;
40                 string name;
41                 string type;
42                 string state;
43                 ObjectPath job_path;
44                 ObjectPath unit_path;
45         }
46
47         public abstract string[] environment { owned get; }
48
49         public abstract UnitInfo[] list_units() throws DBus.Error;
50         public abstract JobInfo[] list_jobs() throws DBus.Error;
51
52         public abstract ObjectPath get_unit(string name) throws DBus.Error;
53         public abstract ObjectPath get_unit_by_pid(uint32 pid) throws DBus.Error;
54         public abstract ObjectPath load_unit(string name) throws DBus.Error;
55         public abstract ObjectPath get_job(uint32 id) throws DBus.Error;
56
57         public abstract ObjectPath start_unit(string name, string mode = "replace") throws DBus.Error;
58         public abstract ObjectPath stop_unit(string name, string mode = "replace") throws DBus.Error;
59         public abstract ObjectPath reload_unit(string name, string mode = "replace") throws DBus.Error;
60         public abstract ObjectPath restart_unit(string name, string mode = "replace") throws DBus.Error;
61         public abstract ObjectPath try_restart_unit(string name, string mode = "replace") throws DBus.Error;
62         public abstract ObjectPath reload_or_restart_unit(string name, string mode = "replace") throws DBus.Error;
63         public abstract ObjectPath reload_or_try_restart_unit(string name, string mode = "replace") throws DBus.Error;
64
65         public abstract void reset_failed_unit(string name = "") throws DBus.Error;
66
67         public abstract void clear_jobs() throws DBus.Error;
68
69         public abstract void subscribe() throws DBus.Error;
70         public abstract void unsubscribe() throws DBus.Error;
71
72         public abstract string dump() throws DBus.Error;
73
74         public abstract void reload() throws DBus.Error;
75         public abstract void reexecute() throws DBus.Error;
76         public abstract void exit() throws DBus.Error;
77
78         public abstract ObjectPath create_snapshot(string name = "", bool cleanup = false) throws DBus.Error;
79
80         public abstract void set_environment(string[] names) throws DBus.Error;
81         public abstract void unset_environment(string[] names) throws DBus.Error;
82
83         public abstract signal void unit_new(string id, ObjectPath path);
84         public abstract signal void unit_removed(string id, ObjectPath path);
85         public abstract signal void job_new(uint32 id, ObjectPath path);
86         public abstract signal void job_removed(uint32 id, ObjectPath path, bool success);
87 }
88
89 [DBus (name = "org.freedesktop.systemd1.Unit")]
90 public interface Unit : DBus.Object {
91         public struct JobLink {
92                 uint32 id;
93                 ObjectPath path;
94         }
95
96         public abstract string id { owned get; }
97         public abstract string[] names { owned get; }
98         public abstract string following { owned get; }
99         public abstract string[] requires { owned get; }
100         public abstract string[] requires_overridable { owned get; }
101         public abstract string[] requisite { owned get; }
102         public abstract string[] requisite_overridable { owned get; }
103         public abstract string[] wants { owned get; }
104         public abstract string[] required_by { owned get; }
105         public abstract string[] required_by_overridable { owned get; }
106         public abstract string[] wanted_by { owned get; }
107         public abstract string[] conflicts { owned get; }
108         public abstract string[] conflicted_by { owned get; }
109         public abstract string[] before { owned get; }
110         public abstract string[] after { owned get; }
111         public abstract string[] on_failure { owned get; }
112         public abstract string description { owned get; }
113         public abstract string load_state { owned get; }
114         public abstract string active_state { owned get; }
115         public abstract string sub_state { owned get; }
116         public abstract string fragment_path { owned get; }
117         public abstract uint64 inactive_exit_timestamp { owned get; }
118         public abstract uint64 active_enter_timestamp { owned get; }
119         public abstract uint64 active_exit_timestamp { owned get; }
120         public abstract uint64 inactive_enter_timestamp { owned get; }
121         public abstract bool can_start { owned get; }
122         public abstract bool can_stop { owned get; }
123         public abstract bool can_reload { owned get; }
124         public abstract JobLink job { owned get; }
125         public abstract bool recursive_stop { owned get; }
126         public abstract bool stop_when_unneeded { owned get; }
127         public abstract bool refuse_manual_start { owned get; }
128         public abstract bool refuse_manual_stop { owned get; }
129         public abstract bool default_dependencies { owned get; }
130         public abstract string default_control_group { owned get; }
131         public abstract string[] control_groups { owned get; }
132         public abstract bool need_daemon_reload { owned get; }
133         public abstract uint64 job_timeout_usec { owned get; }
134
135         public abstract ObjectPath start(string mode = "replace") throws DBus.Error;
136         public abstract ObjectPath stop(string mode = "replace") throws DBus.Error;
137         public abstract ObjectPath reload(string mode = "replace") throws DBus.Error;
138         public abstract ObjectPath restart(string mode = "replace") throws DBus.Error;
139         public abstract ObjectPath try_restart(string mode = "replace") throws DBus.Error;
140         public abstract ObjectPath reload_or_restart(string mode = "replace") throws DBus.Error;
141         public abstract ObjectPath reload_or_try_restart(string mode = "replace") throws DBus.Error;
142
143         public abstract void reset_failed() throws DBus.Error;
144 }
145
146 [DBus (name = "org.freedesktop.systemd1.Job")]
147 public interface Job : DBus.Object {
148         public struct UnitLink {
149                 string id;
150                 ObjectPath path;
151         }
152
153         public abstract uint32 id { owned get; }
154         public abstract string state { owned get; }
155         public abstract string job_type { owned get; }
156         public abstract UnitLink unit { owned get; }
157
158         public abstract void cancel() throws DBus.Error;
159 }
160
161 [DBus (name = "org.freedesktop.DBus.Properties")]
162 public interface Properties : DBus.Object {
163         public abstract Value? get(string iface, string property) throws DBus.Error;
164         public abstract signal void properties_changed(string iface, HashTable<string, Value?> changed_properties, string[] invalidated_properties);
165 }