3 static gchar
*opt_name
= NULL
;
4 static gboolean opt_system_bus
= FALSE
;
5 static gboolean opt_auto_start
= FALSE
;
7 static GOptionEntry opt_entries
[] =
9 { "name", 'n', 0, G_OPTION_ARG_STRING
, &opt_name
, "Name to watch", NULL
},
10 { "system-bus", 's', 0, G_OPTION_ARG_NONE
, &opt_system_bus
, "Use the system-bus instead of the session-bus", NULL
},
11 { "auto-start", 'a', 0, G_OPTION_ARG_NONE
, &opt_auto_start
, "Instruct the bus to launch an owner for the name", NULL
},
16 on_name_appeared (GDBusConnection
*connection
,
18 const gchar
*name_owner
,
21 g_print ("Name %s on %s is owned by %s\n",
23 opt_system_bus
? "the system bus" : "the session bus",
28 on_name_vanished (GDBusConnection
*connection
,
32 g_print ("Name %s does not exist on %s\n",
34 opt_system_bus
? "the system bus" : "the session bus");
38 main (int argc
, char *argv
[])
42 GOptionContext
*opt_context
;
44 GBusNameWatcherFlags flags
;
47 opt_context
= g_option_context_new ("g_bus_watch_name() example");
48 g_option_context_set_summary (opt_context
,
49 "Example: to watch the power manager on the session bus, use:\n"
51 " ./example-watch-name -n org.gnome.PowerManager");
52 g_option_context_add_main_entries (opt_context
, opt_entries
, NULL
);
53 if (!g_option_context_parse (opt_context
, &argc
, &argv
, &error
))
55 g_printerr ("Error parsing options: %s", error
->message
);
60 g_printerr ("Incorrect usage, try --help.\n");
64 flags
= G_BUS_NAME_WATCHER_FLAGS_NONE
;
66 flags
|= G_BUS_NAME_WATCHER_FLAGS_AUTO_START
;
68 watcher_id
= g_bus_watch_name (opt_system_bus
? G_BUS_TYPE_SYSTEM
: G_BUS_TYPE_SESSION
,
76 loop
= g_main_loop_new (NULL
, FALSE
);
77 g_main_loop_run (loop
);
79 g_bus_unwatch_name (watcher_id
);
82 g_option_context_free (opt_context
);