2020-12-23 22:21:36 +01:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
2012-02-02 13:37:10 +01:00
|
|
|
/*
|
2019-10-01 09:20:35 +02:00
|
|
|
* Copyright (C) 2012 Red Hat, Inc.
|
2012-02-02 13:37:10 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* This example monitors whether NM is running by checking if
|
|
|
|
|
* "org.freedesktop.NetworkManager" is owned by a process on D-Bus.
|
|
|
|
|
* It uses g_bus_watch_name().
|
|
|
|
|
*
|
|
|
|
|
* See also http://developer.gnome.org/gio/stable/gio-Watching-Bus-Names.html
|
|
|
|
|
*
|
|
|
|
|
* Standalone compilation:
|
2017-09-20 14:13:18 -07:00
|
|
|
* gcc -Wall monitor-nm-running-gdbus.c -o monitor-nm-running-gdbus `pkg-config --libs --cflags gio-2.0`
|
2012-02-02 13:37:10 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include <gio/gio.h>
|
|
|
|
|
|
|
|
|
|
static void
|
2020-09-28 16:03:33 +02:00
|
|
|
on_name_appeared(GDBusConnection *connection,
|
|
|
|
|
const char * name,
|
|
|
|
|
const char * name_owner,
|
|
|
|
|
gpointer user_data)
|
2012-02-02 13:37:10 +01:00
|
|
|
{
|
2020-09-28 16:03:33 +02:00
|
|
|
g_print("Name '%s' on the system bus is owned by %s => NM is running\n", name, name_owner);
|
2012-02-02 13:37:10 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
2020-09-28 16:03:33 +02:00
|
|
|
on_name_vanished(GDBusConnection *connection, const char *name, gpointer user_data)
|
2012-02-02 13:37:10 +01:00
|
|
|
{
|
2020-09-28 16:03:33 +02:00
|
|
|
g_print("Name '%s' does not exist on the system bus => NM is not running\n", name);
|
2012-02-02 13:37:10 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int
|
2020-09-28 16:03:33 +02:00
|
|
|
main(int argc, char *argv[])
|
2012-02-02 13:37:10 +01:00
|
|
|
{
|
2020-09-28 16:03:33 +02:00
|
|
|
guint watcher_id;
|
|
|
|
|
GMainLoop * loop;
|
|
|
|
|
GBusNameWatcherFlags flags;
|
2012-02-02 13:37:10 +01:00
|
|
|
|
2020-09-28 16:03:33 +02:00
|
|
|
g_print("Monitor 'org.freedesktop.NetworkManager' D-Bus name\n");
|
|
|
|
|
g_print("===================================================\n");
|
2012-02-02 13:37:10 +01:00
|
|
|
|
2020-09-28 16:03:33 +02:00
|
|
|
flags = G_BUS_NAME_WATCHER_FLAGS_NONE;
|
2012-02-02 13:37:10 +01:00
|
|
|
|
2020-09-28 16:03:33 +02:00
|
|
|
/* Start to watch "org.freedesktop.NetworkManager" bus name */
|
|
|
|
|
watcher_id = g_bus_watch_name(G_BUS_TYPE_SYSTEM,
|
|
|
|
|
"org.freedesktop.NetworkManager",
|
|
|
|
|
flags,
|
|
|
|
|
on_name_appeared,
|
|
|
|
|
on_name_vanished,
|
|
|
|
|
NULL,
|
|
|
|
|
NULL);
|
2012-02-02 13:37:10 +01:00
|
|
|
|
2020-09-28 16:03:33 +02:00
|
|
|
/* Run main loop */
|
|
|
|
|
loop = g_main_loop_new(NULL, FALSE);
|
|
|
|
|
g_main_loop_run(loop);
|
2012-02-02 13:37:10 +01:00
|
|
|
|
2020-09-28 16:03:33 +02:00
|
|
|
/* Stop watching the name */
|
|
|
|
|
g_bus_unwatch_name(watcher_id);
|
2012-02-02 13:37:10 +01:00
|
|
|
|
2020-09-28 16:03:33 +02:00
|
|
|
return 0;
|
2012-02-02 13:37:10 +01:00
|
|
|
}
|