summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorJiří Klimeš <jklimes@redhat.com>2012-06-13 13:19:32 +0200
committerJiří Klimeš <jklimes@redhat.com>2012-06-13 13:28:43 +0200
commit495fae7a7b4c707f603df74e2f1ac4d4ab7b093e (patch)
tree2a578f6dcc8567a4fb8ccfa7fd4875e1ce810ebe /examples
parentb1e1ee79bd683cb6005878045ec3638a34524c86 (diff)
downloadNetworkManager-495fae7a7b4c707f603df74e2f1ac4d4ab7b093e.tar.gz
examples: add a python GObject Introspection example
It demonstrates getting NMIP4Config object after activating a device.
Diffstat (limited to 'examples')
-rw-r--r--examples/python/Makefile.am3
-rwxr-xr-xexamples/python/goi-device-state-ip4config.py64
2 files changed, 66 insertions, 1 deletions
diff --git a/examples/python/Makefile.am b/examples/python/Makefile.am
index 5b465ae3c5..2706c0f49b 100644
--- a/examples/python/Makefile.am
+++ b/examples/python/Makefile.am
@@ -8,4 +8,5 @@ EXTRA_DIST = \
disconnect-device.py \
get-active-connections.py \
list-devices.py \
- goi-list-connections.py
+ goi-list-connections.py \
+ goi-device-state-ip4config.py
diff --git a/examples/python/goi-device-state-ip4config.py b/examples/python/goi-device-state-ip4config.py
new file mode 100755
index 0000000000..48116dc627
--- /dev/null
+++ b/examples/python/goi-device-state-ip4config.py
@@ -0,0 +1,64 @@
+#!/usr/bin/env python
+#
+# vim: ft=python ts=4 sts=4 sw=4 et ai
+# -*- Mode: Python; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
+#
+# 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.
+#
+# Copyright (C) 2012 Red Hat, Inc.
+#
+
+import sys
+from gi.repository import GObject, NetworkManager, NMClient
+
+#
+# This example shows how to get NMIP4Config from NMDevice after it is activated.
+#
+# We listen to notify::ip4-config glib signal. This signal is trigered by D-Bus
+# PropertiesChanged for IP4Config that comes after StateChanged for NMDevice.
+#
+
+main_loop = None
+
+def do_notify(self, property):
+ print "notify: %s" % property
+ ip4cfg = self.get_ip4_config()
+ if ip4cfg is not None:
+ print "ip4-config: %s" % ip4cfg.get_path()
+ main_loop.quit()
+
+def state_changed(obj, arg1, arg2, arg3):
+ print "State changed: New: %d, Old: %d, Reason: %d" % (arg1, arg2, arg3)
+ # Device is connected
+ if arg1 == 100:
+ obj.connect('notify::ip4-config', do_notify)
+
+
+if __name__ == "__main__":
+ if len(sys.argv) != 2:
+ sys.exit('Usage: %s <interface>' % sys.argv[0])
+ dev_iface = sys.argv[1]
+
+ c = NMClient.Client.new()
+ dev = c.get_device_by_iface(dev_iface)
+ if dev is None:
+ sys.exit('Device \'%s\' not found' % dev_iface)
+ print "Device: %s - %s" % (dev_iface, dev.get_device_type().value_name)
+ print "---------------------------------------"
+
+ dev.connect('state-changed', state_changed)
+ main_loop = GObject.MainLoop()
+ main_loop.run()
+