summaryrefslogtreecommitdiff
path: root/src/gpm-networkmanager.c
diff options
context:
space:
mode:
authorStefano Karapetsas <[email protected]>2011-12-11 12:55:19 +0100
committerStefano Karapetsas <[email protected]>2011-12-11 12:55:19 +0100
commit51175189c6d7313a3b84019e39496f957c4e6164 (patch)
treee4c2c130fa3140bca28685ef900f04a012e53dcd /src/gpm-networkmanager.c
downloadmate-power-manager-51175189c6d7313a3b84019e39496f957c4e6164.tar.bz2
mate-power-manager-51175189c6d7313a3b84019e39496f957c4e6164.tar.xz
moved from Mate-Extra
Diffstat (limited to 'src/gpm-networkmanager.c')
-rw-r--r--src/gpm-networkmanager.c102
1 files changed, 102 insertions, 0 deletions
diff --git a/src/gpm-networkmanager.c b/src/gpm-networkmanager.c
new file mode 100644
index 0000000..3b62406
--- /dev/null
+++ b/src/gpm-networkmanager.c
@@ -0,0 +1,102 @@
+/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*-
+ *
+ * Copyright (C) 2005-2007 Richard Hughes <[email protected]>
+ *
+ * Licensed under the GNU General Public License Version 2
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+ */
+
+#ifdef HAVE_CONFIG_H
+# include <config.h>
+#endif
+
+#include <glib.h>
+#include <dbus/dbus-glib.h>
+
+#include "gpm-networkmanager.h"
+#include "egg-debug.h"
+
+#define NM_LISTENER_SERVICE "org.freedesktop.NetworkManager"
+#define NM_LISTENER_PATH "/org/freedesktop/NetworkManager"
+#define NM_LISTENER_INTERFACE "org.freedesktop.NetworkManager"
+
+/**
+ * gpm_networkmanager_sleep:
+ *
+ * Tell NetworkManager to put the network devices to sleep
+ *
+ * Return value: TRUE if NetworkManager is now sleeping.
+ **/
+gboolean
+gpm_networkmanager_sleep (void)
+{
+ DBusGConnection *connection = NULL;
+ DBusGProxy *nm_proxy = NULL;
+ GError *error = NULL;
+
+ connection = dbus_g_bus_get (DBUS_BUS_SYSTEM, &error);
+ if (error) {
+ egg_warning ("%s", error->message);
+ g_error_free (error);
+ return FALSE;
+ }
+
+ nm_proxy = dbus_g_proxy_new_for_name (connection,
+ NM_LISTENER_SERVICE,
+ NM_LISTENER_PATH,
+ NM_LISTENER_INTERFACE);
+ if (!nm_proxy) {
+ egg_warning ("Failed to get name owner");
+ return FALSE;
+ }
+ dbus_g_proxy_call_no_reply (nm_proxy, "sleep", G_TYPE_INVALID);
+ g_object_unref (G_OBJECT (nm_proxy));
+ return TRUE;
+}
+
+/**
+ * gpm_networkmanager_wake:
+ *
+ * Tell NetworkManager to wake up all the network devices
+ *
+ * Return value: TRUE if NetworkManager is now awake.
+ **/
+gboolean
+gpm_networkmanager_wake (void)
+{
+ DBusGConnection *connection = NULL;
+ DBusGProxy *nm_proxy = NULL;
+ GError *error = NULL;
+
+ connection = dbus_g_bus_get (DBUS_BUS_SYSTEM, &error);
+ if (error) {
+ egg_warning ("%s", error->message);
+ g_error_free (error);
+ return FALSE;
+ }
+
+ nm_proxy = dbus_g_proxy_new_for_name (connection,
+ NM_LISTENER_SERVICE,
+ NM_LISTENER_PATH,
+ NM_LISTENER_INTERFACE);
+ if (!nm_proxy) {
+ egg_warning ("Failed to get name owner");
+ return FALSE;
+ }
+ dbus_g_proxy_call_no_reply (nm_proxy, "wake", G_TYPE_INVALID);
+ g_object_unref (G_OBJECT (nm_proxy));
+ return TRUE;
+}