X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=blobdiff_plain;f=systemd-interfaces.vala;h=7282bf3dd81e2d42d0daaed76de7f3488a0e961c;hb=f58eedd538b3a138814a54b94b0c2c89ef727d82;hp=219636648514b6ba1384c2a467cd488edc695557;hpb=a7334b0952ab66c17ee787e36e6d2c5ceb387de6;p=elogind.git diff --git a/systemd-interfaces.vala b/systemd-interfaces.vala index 219636648..7282bf3dd 100644 --- a/systemd-interfaces.vala +++ b/systemd-interfaces.vala @@ -19,7 +19,7 @@ using DBus; -[DBus (name = "org.freedesktop.systemd1")] +[DBus (name = "org.freedesktop.systemd1.Manager")] public interface Manager : DBus.Object { public struct UnitInfo { @@ -27,6 +27,7 @@ public interface Manager : DBus.Object { string description; string load_state; string active_state; + string sub_state; ObjectPath unit_path; uint32 job_id; string job_type; @@ -42,6 +43,8 @@ public interface Manager : DBus.Object { ObjectPath unit_path; } + public abstract string[] environment { owned get; } + public abstract UnitInfo[] list_units() throws DBus.Error; public abstract JobInfo[] list_jobs() throws DBus.Error; @@ -50,31 +53,85 @@ public interface Manager : DBus.Object { public abstract ObjectPath get_job(uint32 id) throws DBus.Error; public abstract void clear_jobs() throws DBus.Error; + + public abstract void subscribe() throws DBus.Error; + public abstract void unsubscribe() throws DBus.Error; + + public abstract string dump() throws DBus.Error; + + public abstract void reload() throws DBus.Error; + public abstract void reexecute() throws DBus.Error; + public abstract void exit() throws DBus.Error; + + public abstract ObjectPath create_snapshot(string name = "", bool cleanup = false) throws DBus.Error; + + public abstract void set_environment(string[] names) throws DBus.Error; + public abstract void unset_environment(string[] names) throws DBus.Error; + + 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); } [DBus (name = "org.freedesktop.systemd1.Unit")] public interface Unit : DBus.Object { + public struct JobLink { + uint32 id; + ObjectPath path; + } + public abstract string id { owned get; } + public abstract string[] names { 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[] before { owned get; } + public abstract string[] after { 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 load_path { 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 bool can_reload { owned get; } + public abstract uint64 inactive_enter_timestamp { owned get; } public abstract bool can_start { 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 string default_control_group { owned get; } + public abstract string[] control_groups { owned get; } public abstract ObjectPath start(string mode) throws DBus.Error; public abstract ObjectPath stop(string mode) throws DBus.Error; public abstract ObjectPath restart(string mode) throws DBus.Error; public abstract ObjectPath reload(string mode) throws DBus.Error; + + public abstract signal void changed(); } [DBus (name = "org.freedesktop.systemd1.Job")] public interface Job : DBus.Object { + 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 DBus.Error; + + public abstract signal void changed(); }