2

我希望能够首先调用一个简单的脚本来启用或禁用我的上网本的外部监视器。我正在以 XFCE 作为桌面运行 Fedora 17。我看到我应该能够使用 python 和 python-dbus 来打开和关闭活动切换。我的问题是我不知道如何发出信号以激活新设置。不幸的是,Python 不是我经常使用的语言。我的代码是:

import dbus
item = 'org.xfce.Xfconf'
path = '/org/xfce/Xfconf'
channel = 'displays'
base = '/'
setting = '/Default/VGA1/Active'

bus = dbus.SessionBus()
remote_object = bus.get_object(item, path)
remote_interface = dbus.Interface(remote_object, "org.xfce.Xfconf")

if remote_interface.GetProperty(channel, setting):
  remote_interface.SetProperty(channel, setting, '0')
  remote_object.PropertyChanged(channel, setting, '0')
else:
  remote_interface.SetProperty(channel, setting, '1')
  remote_object.PropertyChanged(channel, setting, '0')

它失败并被踢出:

Traceback (most recent call last):   File "./vgaToggle", line 31, in <module>
remote_object.PropertyChanged(channel, setting, '0')   
File "/usr/lib/python2.7/site-packages/dbus/proxies.py", line 140, in __call__
**keywords)   
File "/usr/lib/python2.7/site-packages/dbus/connection.py", line 630, in call_blocking
message, timeout) dbus.exceptions.DBusException: 
org.freedesktop.DBus.Error.UnknownMethod: Method "PropertyChanged"
with signature "sss" on interface "(null)" doesn't exist

我花了一些时间进行搜索,但没有找到很多类似的 Python 示例。提前致谢。

4

1 回答 1

0

PropertyChanged是信号,不是方法。您正在与之通信的服务负责发出信号。在这种情况下,PropertyChanged只要相应对象或接口上的属性值发生更改,就应该隐式触发。

这应该在您调用时隐式发生remote_interface.SetProperty(...),并且您不需要像方法一样显式地“调用”信号。

如果您对接收信号感兴趣,您将需要设置一个 glib 主循环并在您的代理对象上调用connect_to_signal,并传递一个回调方法来调用。

于 2012-11-11T06:58:25.430 回答