From c1b94fda55e6e29e388a30f846b62650b5e60f7e Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Sun, 16 May 2010 03:55:52 +0200 Subject: [PATCH] systemctl: log whenever a unit/job changes --- systemctl.vala | 31 ++++++++++++++++++++++++++++++- 1 file changed, 30 insertions(+), 1 deletion(-) diff --git a/systemctl.vala b/systemctl.vala index ddbede94b..821be5a4f 100644 --- a/systemctl.vala +++ b/systemctl.vala @@ -24,6 +24,7 @@ static string type = null; static bool all = false; static bool replace = false; static bool session = false; +static Connection bus = null; public static int job_info_compare(void* key1, void* key2) { Manager.JobInfo *j1 = (Manager.JobInfo*) key1; @@ -43,12 +44,40 @@ public static int unit_info_compare(void* key1, void* key2) { return Posix.strcmp(u1->id, u2->id); } +public void on_unit_changed(Unit u) { + stdout.printf("Unit %s changed.\n", u.id); +} + public void on_unit_new(string id, ObjectPath path) { stdout.printf("Unit %s added.\n", id); + + Unit u = bus.get_object( + "org.freedesktop.systemd1", + path, + "org.freedesktop.systemd1.Unit") as Unit; + + u.changed += on_unit_changed; + + /* FIXME: We leak memory here */ + u.ref(); +} + +public void on_job_changed(Job j) { + stdout.printf("Job %u changed.\n", j.id); } public void on_job_new(uint32 id, ObjectPath path) { stdout.printf("Job %u added.\n", id); + + Job j = bus.get_object( + "org.freedesktop.systemd1", + path, + "org.freedesktop.systemd1.Job") as Job; + + j.changed += on_job_changed; + + /* FIXME: We leak memory here */ + j.ref(); } public void on_unit_removed(string id, ObjectPath path) { @@ -100,7 +129,7 @@ int main (string[] args) { } try { - Connection bus = Bus.get(session ? BusType.SESSION : BusType.SYSTEM); + bus = Bus.get(session ? BusType.SESSION : BusType.SYSTEM); Manager manager = bus.get_object ( "org.freedesktop.systemd1", -- 2.30.2