ibus-daemon: use GFileMonitor instead of polling
[platform/upstream/ibus.git] / bus / main.c
index 1b2ba64..791a524 100644 (file)
  * Boston, MA 02111-1307, USA.
  */
 #include <config.h>
-#include <unistd.h>
-#include <sys/types.h>
-#include <sys/stat.h>
 #include <fcntl.h>
-#include <pwd.h>
-#include <stdlib.h>
-#include <locale.h>
-#include <signal.h>
 #include <glib.h>
 #include <gio/gio.h>
 #include <ibus.h>
-#include "server.h"
-#include "ibusimpl.h"
+#include <locale.h>
+#include <pwd.h>
+#include <signal.h>
+#include <stdlib.h>
+#include <sys/types.h>
+#include <sys/stat.h>
+#include <unistd.h>
 
-gchar **g_argv = NULL;
+#include "global.h"
+#include "ibusimpl.h"
+#include "server.h"
 
 static gboolean daemonize = FALSE;
 static gboolean single = FALSE;
@@ -44,14 +44,6 @@ static gboolean restart = FALSE;
 static gchar *panel = "default";
 static gchar *config = "default";
 static gchar *desktop = "gnome";
-gchar *g_address = "unix:tmpdir=/tmp";
-gchar *g_cache = "auto";
-gboolean g_mempro = FALSE;
-gboolean g_verbose = FALSE;
-gint   g_dbus_timeout = 5000;
-#ifdef G_THREADS_ENABLED
-gint   g_monitor_timeout = 0;
-#endif
 
 static void
 show_version_and_quit (void)
@@ -67,21 +59,26 @@ static const GOptionEntry entries[] =
     { "single",    's', 0, G_OPTION_ARG_NONE,   &single,    "do not execute panel and config module.", NULL },
     { "xim",       'x', 0, G_OPTION_ARG_NONE,   &xim,       "execute ibus XIM server.", NULL },
     { "desktop",   'n', 0, G_OPTION_ARG_STRING, &desktop,   "specify the name of desktop session. [default=gnome]", "name" },
-    { "panel",     'p', 0, G_OPTION_ARG_STRING, &panel,     "specify the cmdline of panel program.", "cmdline" },
-    { "config",    'c', 0, G_OPTION_ARG_STRING, &config,    "specify the cmdline of config program.", "cmdline" },
+    { "panel",     'p', 0, G_OPTION_ARG_STRING, &panel,     "specify the cmdline of panel program. pass 'disable' not to start a panel program.", "cmdline" },
+    { "config",    'c', 0, G_OPTION_ARG_STRING, &config,    "specify the cmdline of config program. pass 'disable' not to start a config program.", "cmdline" },
     { "address",   'a', 0, G_OPTION_ARG_STRING, &g_address,   "specify the address of ibus daemon.", "address" },
     { "replace",   'r', 0, G_OPTION_ARG_NONE,   &replace,   "if there is an old ibus-daemon is running, it will be replaced.", NULL },
     { "cache",     't', 0, G_OPTION_ARG_STRING, &g_cache,   "specify the cache mode. [auto/refresh/none]", NULL },
-    { "timeout",   'o', 0, G_OPTION_ARG_INT,    &g_dbus_timeout, "dbus reply timeout in milliseconds.", "timeout [default is 2000]" },
-#ifdef G_THREADS_ENABLED
-    { "monitor-timeout", 'j', 0, G_OPTION_ARG_INT,    &g_monitor_timeout, "timeout of poll changes of engines in seconds. 0 to disable it. ", "timeout [default is 0]" },
-#endif
+    { "timeout",   'o', 0, G_OPTION_ARG_INT,    &g_gdbus_timeout, "gdbus reply timeout in milliseconds. pass -1 to use the default timeout of gdbus.", "timeout [default is 5000]" },
     { "mem-profile", 'm', 0, G_OPTION_ARG_NONE,   &g_mempro,   "enable memory profile, send SIGUSR2 to print out the memory profile.", NULL },
     { "restart",     'R', 0, G_OPTION_ARG_NONE,   &restart,    "restart panel and config processes when they die.", NULL },
     { "verbose",   'v', 0, G_OPTION_ARG_NONE,   &g_verbose,   "verbose.", NULL },
     { NULL },
 };
 
+/**
+ * execute_cmdline:
+ * @cmdline: An absolute path of the executable and its parameters, e.g.  "/usr/lib/ibus/ibus-x11 --kill-daemon".
+ * @returns: TRUE if both parsing cmdline and executing the command succeed.
+ *
+ * Execute cmdline. Child process's stdin, stdout, and stderr are attached to /dev/null.
+ * You don't have to handle SIGCHLD from the child process since glib will do.
+ */
 static gboolean
 execute_cmdline (const gchar *cmdline)
 {
@@ -155,6 +152,12 @@ daemon (gint nochdir, gint noclose)
 }
 #endif
 
+/*
+ * _sig_usr2_handler:
+ * @sig: the signal number, which is usually SIGUSR2.
+ *
+ * A signal handler for SIGUSR2 signal. Dump a summary of memory usage to stderr.
+ */
 static void
 _sig_usr2_handler (int sig)
 {
@@ -176,6 +179,10 @@ main (gint argc, gchar **argv)
        g_error_free (error);
         exit (-1);
     }
+    if (g_gdbus_timeout < -1) {
+        g_printerr ("Bad timeout (must be >= -1): %d\n", g_gdbus_timeout);
+        exit (-1);
+    }
 
     if (g_mempro) {
         g_mem_set_vtable (glib_mem_profiler_table);
@@ -202,7 +209,7 @@ main (gint argc, gchar **argv)
         }
     }
 
-    /* create a new process group */
+    /* create a new process group. this is important to kill all of its children by SIGTERM at a time in bus_ibus_impl_destroy. */
     setpgid (0, 0);
 
     ibus_init ();
@@ -210,10 +217,9 @@ main (gint argc, gchar **argv)
 #ifdef G_THREADS_ENABLED
     g_thread_init (NULL);
 #endif
-    ibus_set_log_handler(g_verbose);
+    ibus_set_log_handler (g_verbose);
 
     /* check if ibus-daemon is running in this session */
-#if 0
     if (ibus_get_address () != NULL) {
         IBusBus *bus = ibus_bus_new ();
 
@@ -228,20 +234,18 @@ main (gint argc, gchar **argv)
             }
         }
         g_object_unref (bus);
-        bus = NULL;
     }
-#endif
+
     bus_server_init ();
-    /* FIXME */
     if (!single) {
         /* execute config component */
         if (g_strcmp0 (config, "default") == 0) {
-            IBusComponent *component;
+            BusComponent *component;
             component = bus_registry_lookup_component_by_name (BUS_DEFAULT_REGISTRY, IBUS_SERVICE_CONFIG);
             if (component) {
-                ibus_component_set_restart (component, restart);
+                bus_component_set_restart (component, restart);
             }
-            if (component == NULL || !ibus_component_start (component, g_verbose)) {
+            if (component == NULL || !bus_component_start (component, g_verbose)) {
                 g_printerr ("Can not execute default config program\n");
                 exit (-1);
             }
@@ -250,14 +254,14 @@ main (gint argc, gchar **argv)
                 exit (-1);
         }
 
-        /* execut panel component */
+        /* execute panel component */
         if (g_strcmp0 (panel, "default") == 0) {
-            IBusComponent *component;
+            BusComponent *component;
             component = bus_registry_lookup_component_by_name (BUS_DEFAULT_REGISTRY, IBUS_SERVICE_PANEL);
             if (component) {
-                ibus_component_set_restart (component, restart);
+                bus_component_set_restart (component, restart);
             }
-            if (component == NULL || !ibus_component_start (component, g_verbose)) {
+            if (component == NULL || !bus_component_start (component, g_verbose)) {
                 g_printerr ("Can not execute default panel program\n");
                 exit (-1);
             }
@@ -269,7 +273,7 @@ main (gint argc, gchar **argv)
 
     /* execute ibus xim server */
     if (xim) {
-        if (!execute_cmdline (LIBEXECDIR"/ibus-x11 --kill-daemon"))
+        if (!execute_cmdline (LIBEXECDIR "/ibus-x11 --kill-daemon"))
             exit (-1);
     }