chiark / gitweb /
unit: rename load_path to fragment_path to make clear what kind of configuration...
[elogind.git] / systemd-interfaces.vala
index 219636648514b6ba1384c2a467cd488edc695557..9947df54a73a2c45d9e75a91ce75883faad433f1 100644 (file)
@@ -50,31 +50,55 @@ 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 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 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 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 JobLink job { owned get; /* FIXME: this setter is a temporary fix to make valac not segfault */ set; }
 
         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; /* FIXME: this setter is a temporary fix to make valac not segfault */ set; }
 
         public abstract void cancel() throws DBus.Error;
+
+        public abstract signal void changed();
 }