Strip copyright headers from examples
[platform/upstream/glib.git] / gio / tests / gdbus-example-watch-name.c
1 #include <gio/gio.h>
2
3 static gchar *opt_name         = NULL;
4 static gboolean opt_system_bus = FALSE;
5 static gboolean opt_auto_start = FALSE;
6
7 static GOptionEntry opt_entries[] =
8 {
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},
12   { NULL}
13 };
14
15 static void
16 on_name_appeared (GDBusConnection *connection,
17                   const gchar     *name,
18                   const gchar     *name_owner,
19                   gpointer         user_data)
20 {
21   g_print ("Name %s on %s is owned by %s\n",
22            name,
23            opt_system_bus ? "the system bus" : "the session bus",
24            name_owner);
25 }
26
27 static void
28 on_name_vanished (GDBusConnection *connection,
29                   const gchar     *name,
30                   gpointer         user_data)
31 {
32   g_print ("Name %s does not exist on %s\n",
33            name,
34            opt_system_bus ? "the system bus" : "the session bus");
35 }
36
37 int
38 main (int argc, char *argv[])
39 {
40   guint watcher_id;
41   GMainLoop *loop;
42   GOptionContext *opt_context;
43   GError *error;
44   GBusNameWatcherFlags flags;
45
46   g_type_init ();
47
48   error = NULL;
49   opt_context = g_option_context_new ("g_bus_watch_name() example");
50   g_option_context_set_summary (opt_context,
51                                 "Example: to watch the power manager on the session bus, use:\n"
52                                 "\n"
53                                 "  ./example-watch-name -n org.gnome.PowerManager");
54   g_option_context_add_main_entries (opt_context, opt_entries, NULL);
55   if (!g_option_context_parse (opt_context, &argc, &argv, &error))
56     {
57       g_printerr ("Error parsing options: %s", error->message);
58       goto out;
59     }
60   if (opt_name == NULL)
61     {
62       g_printerr ("Incorrect usage, try --help.\n");
63       goto out;
64     }
65
66   flags = G_BUS_NAME_WATCHER_FLAGS_NONE;
67   if (opt_auto_start)
68     flags |= G_BUS_NAME_WATCHER_FLAGS_AUTO_START;
69
70   watcher_id = g_bus_watch_name (opt_system_bus ? G_BUS_TYPE_SYSTEM : G_BUS_TYPE_SESSION,
71                                  opt_name,
72                                  flags,
73                                  on_name_appeared,
74                                  on_name_vanished,
75                                  NULL,
76                                  NULL);
77
78   loop = g_main_loop_new (NULL, FALSE);
79   g_main_loop_run (loop);
80
81   g_bus_unwatch_name (watcher_id);
82
83  out:
84   g_option_context_free (opt_context);
85   g_free (opt_name);
86
87   return 0;
88 }