examples: fix python GI examples to work after libnm changes
This commit is contained in:
@@ -1,5 +1,7 @@
|
|||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
# -*- Mode: Python; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
# -*- Mode: Python; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
||||||
|
# vim: ft=python ts=4 sts=4 sw=4 et ai
|
||||||
|
|
||||||
#
|
#
|
||||||
# This program is free software; you can redistribute it and/or modify
|
# 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
|
# it under the terms of the GNU General Public License as published by
|
||||||
@@ -15,7 +17,7 @@
|
|||||||
# with this program; if not, write to the Free Software Foundation, Inc.,
|
# with this program; if not, write to the Free Software Foundation, Inc.,
|
||||||
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||||
#
|
#
|
||||||
# Copyright (C) 2014 Red Hat, Inc.
|
# Copyright 2014 Red Hat, Inc.
|
||||||
#
|
#
|
||||||
|
|
||||||
#
|
#
|
||||||
@@ -37,7 +39,7 @@ def print_values(setting, key, value, flags, data):
|
|||||||
|
|
||||||
# create an Ethernet connection and return it
|
# create an Ethernet connection and return it
|
||||||
def create_profile(name):
|
def create_profile(name):
|
||||||
profile = NM.Connection.new()
|
profile = NM.SimpleConnection.new()
|
||||||
s_con = NM.SettingConnection.new()
|
s_con = NM.SettingConnection.new()
|
||||||
s_con.set_property(NM.SETTING_CONNECTION_ID, name)
|
s_con.set_property(NM.SETTING_CONNECTION_ID, name)
|
||||||
s_con.set_property(NM.SETTING_CONNECTION_UUID, str(uuid.uuid4()))
|
s_con.set_property(NM.SETTING_CONNECTION_UUID, str(uuid.uuid4()))
|
||||||
@@ -84,7 +86,7 @@ if __name__ == "__main__":
|
|||||||
main_loop = GLib.MainLoop()
|
main_loop = GLib.MainLoop()
|
||||||
|
|
||||||
# create RemoteSettings object
|
# create RemoteSettings object
|
||||||
settings = NM.RemoteSettings.new(None);
|
settings = NM.RemoteSettings.new(None)
|
||||||
|
|
||||||
# create a connection profile for NM
|
# create a connection profile for NM
|
||||||
con = create_profile(profile_name)
|
con = create_profile(profile_name)
|
||||||
|
@@ -16,7 +16,7 @@
|
|||||||
# with this program; if not, write to the Free Software Foundation, Inc.,
|
# with this program; if not, write to the Free Software Foundation, Inc.,
|
||||||
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||||
#
|
#
|
||||||
# Copyright (C) 2013 Red Hat, Inc.
|
# Copyright 2013 - 2014 Red Hat, Inc.
|
||||||
#
|
#
|
||||||
|
|
||||||
import sys
|
import sys
|
||||||
@@ -43,7 +43,14 @@ def connection_saved(connection, error, data):
|
|||||||
print ("Connection '%s' saved.") % (connection.get_id())
|
print ("Connection '%s' saved.") % (connection.get_id())
|
||||||
main_loop.quit()
|
main_loop.quit()
|
||||||
|
|
||||||
def connections_read(settings, data):
|
if __name__ == "__main__":
|
||||||
|
if len(sys.argv) != 2 and len(sys.argv) != 3:
|
||||||
|
sys.exit('Usage: %s <connection name or UUID> [new zone]' % sys.argv[0])
|
||||||
|
|
||||||
|
main_loop = GLib.MainLoop()
|
||||||
|
settings = NM.RemoteSettings.new(None)
|
||||||
|
connections = settings.list_connections()
|
||||||
|
|
||||||
con_name = sys.argv[1]
|
con_name = sys.argv[1]
|
||||||
if len(sys.argv) == 3:
|
if len(sys.argv) == 3:
|
||||||
new_zone = sys.argv[2]
|
new_zone = sys.argv[2]
|
||||||
@@ -51,7 +58,6 @@ def connections_read(settings, data):
|
|||||||
new_zone = None
|
new_zone = None
|
||||||
|
|
||||||
found = False
|
found = False
|
||||||
connections = settings.list_connections()
|
|
||||||
for c in connections:
|
for c in connections:
|
||||||
if c.get_id() == con_name or c.get_uuid() == con_name:
|
if c.get_id() == con_name or c.get_uuid() == con_name:
|
||||||
found = True
|
found = True
|
||||||
@@ -71,17 +77,3 @@ def connections_read(settings, data):
|
|||||||
if not found:
|
if not found:
|
||||||
print ("Error: connection '%s' not found.") % (con_name)
|
print ("Error: connection '%s' not found.") % (con_name)
|
||||||
main_loop.quit()
|
main_loop.quit()
|
||||||
|
|
||||||
|
|
||||||
if __name__ == "__main__":
|
|
||||||
if len(sys.argv) != 2 and len(sys.argv) != 3:
|
|
||||||
sys.exit('Usage: %s <connection name or UUID> [new zone]' % sys.argv[0])
|
|
||||||
|
|
||||||
main_loop = GLib.MainLoop()
|
|
||||||
settings = NM.RemoteSettings.new(None);
|
|
||||||
|
|
||||||
# Connections are read asynchronously, so we have to wait for the
|
|
||||||
# 'settings' object to tell us that all connections have been read.
|
|
||||||
settings.connect("connections-read", connections_read, None)
|
|
||||||
main_loop.run()
|
|
||||||
|
|
||||||
|
@@ -17,7 +17,7 @@
|
|||||||
# with this program; if not, write to the Free Software Foundation, Inc.,
|
# with this program; if not, write to the Free Software Foundation, Inc.,
|
||||||
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||||
#
|
#
|
||||||
# Copyright (C) 2014 Red Hat, Inc.
|
# Copyright 2014 Red Hat, Inc.
|
||||||
#
|
#
|
||||||
|
|
||||||
import sys, socket, struct
|
import sys, socket, struct
|
||||||
@@ -102,21 +102,11 @@ def show_dns(self, family):
|
|||||||
print("None")
|
print("None")
|
||||||
return
|
return
|
||||||
|
|
||||||
|
print ("Nameservers: %s") % (ip_cfg.get_nameservers())
|
||||||
|
print ("Domains: %s") % (ip_cfg.get_domains())
|
||||||
|
print ("Searches: %s") % (ip_cfg.get_searches())
|
||||||
if (family == socket.AF_INET):
|
if (family == socket.AF_INET):
|
||||||
print ("Domains: %s") % (ip_cfg.get_domains())
|
print ("WINS: %s") % (ip_cfg.get_wins_servers())
|
||||||
print ("Searches: %s") % (ip_cfg.get_searches())
|
|
||||||
print("Nameservers:")
|
|
||||||
nameservers = ip_cfg.get_nameservers()
|
|
||||||
for dns in nameservers:
|
|
||||||
print socket.inet_ntop(family, struct.pack("=I", dns))
|
|
||||||
else:
|
|
||||||
print ("Domains: %s") % (ip_cfg.get_domains())
|
|
||||||
print ("Searches: %s") % (ip_cfg.get_searches())
|
|
||||||
print("Nameservers:")
|
|
||||||
num = ip_cfg.get_num_nameservers()
|
|
||||||
for i in range(0,num):
|
|
||||||
dns = ip_cfg.get_nameserver(i)
|
|
||||||
print socket.inet_ntop(family, dns)
|
|
||||||
|
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
|
@@ -1,5 +1,7 @@
|
|||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
# -*- Mode: Python; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
# -*- Mode: Python; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
||||||
|
# vim: ft=python ts=4 sts=4 sw=4 et ai
|
||||||
|
|
||||||
#
|
#
|
||||||
# This program is free software; you can redistribute it and/or modify
|
# 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
|
# it under the terms of the GNU General Public License as published by
|
||||||
@@ -15,36 +17,31 @@
|
|||||||
# with this program; if not, write to the Free Software Foundation, Inc.,
|
# with this program; if not, write to the Free Software Foundation, Inc.,
|
||||||
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||||
#
|
#
|
||||||
# Copyright (C) 2012 Red Hat, Inc.
|
# Copyright 2012 - 2014 Red Hat, Inc.
|
||||||
#
|
#
|
||||||
|
|
||||||
from gi.repository import GLib, NM
|
from gi.repository import NM
|
||||||
|
|
||||||
# This example asks settings service for all configured connections.
|
# This example asks settings service for all configured connections.
|
||||||
# Unfortunately, at this time since libnm still makes heavy use of
|
# Unfortunately, at this time since libnm still makes heavy use of
|
||||||
# GValue and GHashTable (rather than GVariant), libnm isn't fully
|
# GValue and GHashTable (rather than GVariant), libnm isn't fully
|
||||||
# usable from GObject Introspection-ready languages. Most functions will
|
# usable from GObject Introspection-ready languages. Most functions will
|
||||||
# work fine, but e. g. nm_connection_to_hash() causes assertion failures.
|
# work fine, but e.g. nm_connection_to_dbus() causes failures.
|
||||||
|
|
||||||
main_loop = None
|
|
||||||
|
|
||||||
def print_values(setting, key, value, flags, data):
|
def print_values(setting, key, value, flags, data):
|
||||||
print " %s.%s: %s" % (setting.get_name(), key, value)
|
print " %s.%s: %s" % (setting.get_name(), key, value)
|
||||||
|
|
||||||
def connections_read(settings):
|
if __name__ == "__main__":
|
||||||
|
# create RemoteSettings object
|
||||||
|
settings = NM.RemoteSettings.new(None)
|
||||||
|
|
||||||
|
# get all connections
|
||||||
connections = settings.list_connections()
|
connections = settings.list_connections()
|
||||||
|
|
||||||
|
# print the connections' details
|
||||||
for c in connections:
|
for c in connections:
|
||||||
print "--- %s : %s" % (c.get_id(), c.get_path())
|
print "=== %s : %s ===" % (c.get_id(), c.get_path())
|
||||||
c.for_each_setting_value(print_values, None)
|
c.for_each_setting_value(print_values, None)
|
||||||
print "\n"
|
print "\n"
|
||||||
main_loop.quit()
|
|
||||||
|
|
||||||
if __name__ == "__main__":
|
|
||||||
main_loop = GLib.MainLoop()
|
|
||||||
settings = NM.RemoteSettings.new(None);
|
|
||||||
|
|
||||||
# connections are read asynchronously, so we need to wait for the
|
|
||||||
# settings object to tell us that it's read all connections
|
|
||||||
settings.connect("connections-read", connections_read)
|
|
||||||
main_loop.run()
|
|
||||||
|
|
||||||
|
@@ -1,5 +1,6 @@
|
|||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
# -*- Mode: Python; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
# -*- Mode: Python; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
||||||
|
# vim: ft=python ts=4 sts=4 sw=4 et ai
|
||||||
#
|
#
|
||||||
# This program is free software; you can redistribute it and/or modify
|
# 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
|
# it under the terms of the GNU General Public License as published by
|
||||||
@@ -15,7 +16,7 @@
|
|||||||
# with this program; if not, write to the Free Software Foundation, Inc.,
|
# with this program; if not, write to the Free Software Foundation, Inc.,
|
||||||
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||||
#
|
#
|
||||||
# Copyright (C) 2014 Red Hat, Inc.
|
# Copyright 2014 Red Hat, Inc.
|
||||||
#
|
#
|
||||||
|
|
||||||
#
|
#
|
||||||
@@ -40,8 +41,27 @@ def commit_cb(connection, error, data):
|
|||||||
print(error)
|
print(error)
|
||||||
main_loop.quit()
|
main_loop.quit()
|
||||||
|
|
||||||
def connections_read_cb(settings, data):
|
if __name__ == "__main__":
|
||||||
uuid, method, args = data
|
# parse and validate arguments
|
||||||
|
if len(sys.argv) < 3:
|
||||||
|
print "Usage: %s <uuid> <auto|static> [address prefix gateway]" % sys.argv[0]
|
||||||
|
sys.exit(1)
|
||||||
|
|
||||||
|
method = sys.argv[2]
|
||||||
|
if method == "static" or method == "manual" and len(sys.argv) < 5:
|
||||||
|
print "Usage: %s %s static address prefix [gateway]" % (sys.argv[0], sys.argv[1])
|
||||||
|
sys.exit(1)
|
||||||
|
|
||||||
|
uuid = sys.argv[1]
|
||||||
|
|
||||||
|
# Convert method to NM method
|
||||||
|
if method == "static":
|
||||||
|
method = "manual"
|
||||||
|
|
||||||
|
main_loop = GLib.MainLoop()
|
||||||
|
|
||||||
|
# create RemoteSettings object
|
||||||
|
settings = NM.RemoteSettings.new(None)
|
||||||
|
|
||||||
all_connections = settings.list_connections()
|
all_connections = settings.list_connections()
|
||||||
for c in all_connections:
|
for c in all_connections:
|
||||||
@@ -70,27 +90,6 @@ def connections_read_cb(settings, data):
|
|||||||
|
|
||||||
c.commit_changes(commit_cb, None)
|
c.commit_changes(commit_cb, None)
|
||||||
|
|
||||||
if __name__ == "__main__":
|
# run main loop
|
||||||
# parse and validate arguments
|
|
||||||
if len(sys.argv) < 3:
|
|
||||||
print "Usage: %s <uuid> <auto|static> [address prefix gateway]" % sys.argv[0]
|
|
||||||
sys.exit(1)
|
|
||||||
|
|
||||||
method = sys.argv[2]
|
|
||||||
if method == "static" and len(sys.argv) < 5:
|
|
||||||
print "Usage: %s %s static address prefix [gateway]" % (sys.argv[0], sys.argv[1])
|
|
||||||
sys.exit(1)
|
|
||||||
|
|
||||||
# Convert method to NM method
|
|
||||||
if method == "static":
|
|
||||||
method = "manual"
|
|
||||||
|
|
||||||
main_loop = GLib.MainLoop()
|
|
||||||
|
|
||||||
# create RemoteSettings object and attach to the "connections-read" signal
|
|
||||||
# to wait for connections to be loaded asynchronously
|
|
||||||
settings = NM.RemoteSettings.new(None)
|
|
||||||
settings.connect('connections-read', connections_read_cb, (sys.argv[1], method, sys.argv))
|
|
||||||
|
|
||||||
main_loop.run()
|
main_loop.run()
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user