summaryrefslogtreecommitdiff
path: root/src/systemd-interfaces.vala
blob: e3b79412882540b3a0b2a4dfa16d4b3d8540c487 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
/***
  This file is part of systemd.

  Copyright 2010 Lennart Poettering

  systemd is free software; you can redistribute it and/or modify it
  under the terms of the GNU General Public License as published by
  the Free Software Foundation; either version 2 of the License, or
  (at your option) any later version.

  systemd is distributed in the hope that it will be useful, but
  WITHOUT ANY WARRANTY; without even the implied warranty of
  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  General Public License for more details.

  You should have received a copy of the GNU General Public License
  along with systemd; If not, see <http://www.gnu.org/licenses/>.
***/

[DBus (name = "org.freedesktop.systemd1.Manager")]
public interface Manager : DBusProxy {

        public struct UnitInfo {
                string id;
                string description;
                string load_state;
                string active_state;
                string sub_state;
                string following;
                ObjectPath unit_path;
                uint32 job_id;
                string job_type;
                ObjectPath job_path;
        }

        public struct JobInfo {
                uint32 id;
                string name;
                string type;
                string state;
                ObjectPath job_path;
                ObjectPath unit_path;
        }

        public abstract string[] environment { owned get; }

        public abstract UnitInfo[] list_units() throws IOError;
        public abstract JobInfo[] list_jobs() throws IOError;

        public abstract ObjectPath get_unit(string name) throws IOError;
        public abstract ObjectPath get_unit_by_pid(uint32 pid) throws IOError;
        public abstract ObjectPath load_unit(string name) throws IOError;
        public abstract ObjectPath get_job(uint32 id) throws IOError;

        public abstract ObjectPath start_unit(string name, string mode = "replace") throws IOError;
        public abstract ObjectPath stop_unit(string name, string mode = "replace") throws IOError;
        public abstract ObjectPath reload_unit(string name, string mode = "replace") throws IOError;
        public abstract ObjectPath restart_unit(string name, string mode = "replace") throws IOError;
        public abstract ObjectPath try_restart_unit(string name, string mode = "replace") throws IOError;
        public abstract ObjectPath reload_or_restart_unit(string name, string mode = "replace") throws IOError;
        public abstract ObjectPath reload_or_try_restart_unit(string name, string mode = "replace") throws IOError;

        public abstract void reset_failed_unit(string name = "") throws IOError;

        public abstract void clear_jobs() throws IOError;

        public abstract void subscribe() throws IOError;
        public abstract void unsubscribe() throws IOError;

        public abstract string dump() throws IOError;

        public abstract void reload() throws IOError;
        public abstract void reexecute() throws IOError;
        public abstract void exit() throws IOError;
        public abstract void halt() throws IOError;
        public abstract void power_off() throws IOError;
        public abstract void reboot() throws IOError;
        public abstract void kexec() throws IOError;

        public abstract ObjectPath create_snapshot(string name = "", bool cleanup = false) throws IOError;

        public abstract void set_environment(string[] names) throws IOError;
        public abstract void unset_environment(string[] names) throws IOError;

        public abstract signal void unit_new(string id, ObjectPath path);
        public abstract signal void unit_removed(string id, ObjectPath path);
        public abstract signal void job_new(uint32 id, ObjectPath path);
        public abstract signal void job_removed(uint32 id, ObjectPath path, bool success);
}

[DBus (name = "org.freedesktop.systemd1.Unit")]
public interface Unit : DBusProxy {
        public struct JobLink {
                uint32 id;
                ObjectPath path;
        }

        public abstract string id { owned get; }
        public abstract string[] names { owned get; }
        public abstract string following { owned get; }
        public abstract string[] requires { owned get; }
        public abstract string[] requires_overridable { owned get; }
        public abstract string[] requisite { owned get; }
        public abstract string[] requisite_overridable { owned get; }
        public abstract string[] wants { owned get; }
        public abstract string[] required_by { owned get; }
        public abstract string[] required_by_overridable { owned get; }
        public abstract string[] wanted_by { owned get; }
        public abstract string[] conflicts { owned get; }
        public abstract string[] conflicted_by { owned get; }
        public abstract string[] before { owned get; }
        public abstract string[] after { owned get; }
        public abstract string[] on_failure { owned get; }
        public abstract string description { owned get; }
        public abstract string load_state { owned get; }
        public abstract string active_state { owned get; }
        public abstract string sub_state { owned get; }
        public abstract string fragment_path { owned get; }
        public abstract uint64 inactive_exit_timestamp { owned get; }
        public abstract uint64 active_enter_timestamp { owned get; }
        public abstract uint64 active_exit_timestamp { owned get; }
        public abstract uint64 inactive_enter_timestamp { owned get; }
        public abstract bool can_start { owned get; }
        public abstract bool can_stop { owned get; }
        public abstract bool can_reload { owned get; }
        public abstract JobLink job { owned get; }
        public abstract bool recursive_stop { owned get; }
        public abstract bool stop_when_unneeded { owned get; }
        public abstract bool refuse_manual_start { owned get; }
        public abstract bool refuse_manual_stop { owned get; }
        public abstract bool default_dependencies { owned get; }
        public abstract string default_control_group { owned get; }
        public abstract string[] control_groups { owned get; }
        public abstract bool need_daemon_reload { owned get; }
        public abstract uint64 job_timeout_usec { owned get; }

        public abstract ObjectPath start(string mode = "replace") throws IOError;
        public abstract ObjectPath stop(string mode = "replace") throws IOError;
        public abstract ObjectPath reload(string mode = "replace") throws IOError;
        public abstract ObjectPath restart(string mode = "replace") throws IOError;
        public abstract ObjectPath try_restart(string mode = "replace") throws IOError;
        public abstract ObjectPath reload_or_restart(string mode = "replace") throws IOError;
        public abstract ObjectPath reload_or_try_restart(string mode = "replace") throws IOError;

        public abstract void reset_failed() throws IOError;
}

[DBus (name = "org.freedesktop.systemd1.Job")]
public interface Job : DBusProxy {
        public struct UnitLink {
                string id;
                ObjectPath path;
        }

        public abstract uint32 id { owned get; }
        public abstract string state { owned get; }
        public abstract string job_type { owned get; }
        public abstract UnitLink unit { owned get; }

        public abstract void cancel() throws IOError;
}

[DBus (name = "org.freedesktop.Properties")]
public interface Properties : DBusProxy {
        public abstract Variant? get(string iface, string property) throws IOError;
        public abstract signal void properties_changed(string iface, HashTable<string, Variant?> changed_properties, string[] invalidated_properties);
}