mirror of git://git.sysmocom.de/ofono
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
54 lines
1.1 KiB
54 lines
1.1 KiB
#!/usr/bin/python3
|
|
|
|
import sys
|
|
from gi.repository import GLib
|
|
|
|
import dbus
|
|
import dbus.mainloop.glib
|
|
|
|
def property_changed(property, value):
|
|
if len(value.__str__()) > 0:
|
|
print("CF property %s changed to %s" % (property, value))
|
|
else:
|
|
print("CF property %s changed to disabled" % (property))
|
|
|
|
if canexit:
|
|
mainloop.quit();
|
|
|
|
if __name__ == "__main__":
|
|
if len(sys.argv) < 2:
|
|
print("Usage: %s <type>" % (sys.argv[0]))
|
|
print("Type can be: all, conditional")
|
|
sys.exit(1)
|
|
|
|
canexit = False
|
|
|
|
type = sys.argv[1]
|
|
|
|
dbus.mainloop.glib.DBusGMainLoop(set_as_default=True)
|
|
|
|
bus = dbus.SystemBus()
|
|
|
|
manager = dbus.Interface(bus.get_object('org.ofono', '/'),
|
|
'org.ofono.Manager')
|
|
|
|
modems = manager.GetModems()
|
|
|
|
cf = dbus.Interface(bus.get_object('org.ofono', modems[0][0]),
|
|
'org.ofono.CallForwarding')
|
|
|
|
cf.connect_to_signal("PropertyChanged", property_changed)
|
|
|
|
try:
|
|
cf.DisableAll(type, timeout = 100)
|
|
except dbus.DBusException as e:
|
|
print("Unable to DisableAll %s" % e)
|
|
sys.exit(1);
|
|
|
|
print("DisableAll successful")
|
|
|
|
canexit = True
|
|
|
|
mainloop = GLib.MainLoop()
|
|
mainloop.run()
|