From 201e48e1b010ebf180034abb8d61cafaba8a08a0 Mon Sep 17 00:00:00 2001 From: William Hua Date: Thu, 22 Aug 2013 15:12:38 +0800 Subject: Proper shutdown on SIGTERM. --- lib/main.vala | 32 ++++++++++++++++++++++++++------ 1 file changed, 26 insertions(+), 6 deletions(-) (limited to 'lib') diff --git a/lib/main.vala b/lib/main.vala index d601f6f9..073b0588 100644 --- a/lib/main.vala +++ b/lib/main.vala @@ -19,6 +19,7 @@ [DBus (name = "com.canonical.indicator.keyboard")] public class Indicator.Keyboard.Service : Object { + private static Service service; private static IBus.Bus? ibus; private bool force; @@ -76,6 +77,22 @@ public class Indicator.Keyboard.Service : Object { return (!) ibus; } + [DBus (visible = false)] + public void up () { + if (loop == null) { + loop = new MainLoop (); + ((!) loop).run (); + } + } + + [DBus (visible = false)] + public void down () { + if (loop != null) { + ((!) loop).quit (); + loop = null; + } + } + [DBus (visible = false)] private void acquire_bus_name () { Bus.own_name (BusType.SESSION, @@ -84,9 +101,6 @@ public class Indicator.Keyboard.Service : Object { handle_bus_acquired, null, handle_name_lost); - - loop = new MainLoop (); - ((!) loop).run (); } [DBus (visible = false)] @@ -428,13 +442,19 @@ public class Indicator.Keyboard.Service : Object { [DBus (visible = false)] private void handle_name_lost (DBusConnection? connection, string name) { - ((!) loop).quit (); - loop = null; + down (); } [DBus (visible = false)] public static int main (string[] args) { - new Service (ref args); + Service.service = new Service (ref args); + + Posix.signal (Posix.SIGTERM, (code) => { + Service.service.down (); + }); + + Service.service.up (); + return 0; } } -- cgit v1.2.3