X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=blobdiff_plain;f=systemd-interfaces.vala;h=045bb550477a0c91b46865ee9a98661a3470f031;hp=6eba8a5580f4442517222bbd075fc8f6b16199bf;hb=a0fcc5f6ce46ae69649f42e844249c54aa1e7b2e;hpb=c1e1601e8c6cace85b19a0eebe50076e5d119688 diff --git a/systemd-interfaces.vala b/systemd-interfaces.vala index 6eba8a558..045bb5504 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; @@ -54,6 +55,14 @@ public interface Manager : DBus.Object { 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 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); @@ -68,15 +77,20 @@ public interface Unit : DBus.Object { } public abstract string id { owned get; } + public abstract string[] names { 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 active_enter_timestamp { owned get; } public abstract uint64 active_exit_timestamp { owned get; } - public abstract bool can_reload { owned get; } public abstract bool can_start { owned get; } + public abstract bool can_reload { owned get; } public abstract JobLink job { owned get; /* FIXME: this setter is a temporary fix to make valac not segfault */ set; } + 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 ObjectPath start(string mode) throws DBus.Error; public abstract ObjectPath stop(string mode) throws DBus.Error;