我正在尝试使用 PyQt4 在 DBus 上运行一些基本代码,特别是 QtDBus。我正在使用 Python3 版本的 PyQt4。我已经得到了我想在 Qt (c++) 上运行的代码,但我想只使用 Python 来运行类似的代码。我想在 DBus 上公开方法、信号/插槽和属性,以供其他 Python 代码调用。
在 Qt 中,您使用 Q_CLASSINFO 宏/函数来进行 DBus 内省。虽然我引入了 Q_CLASSINFO 方法,但我无法让它产生相同类型的功能。据我所知,关于 Q_CLASSINFO 方法的文档为零,所以我不确定是否还有其他方法。使用 D-Feet 我可以清楚地看到没有自动公开任何方法,所以我有点卡住了。
这是我到目前为止所拥有的。
from PyQt4 import QtDBus
from PyQt4.QtCore import QCoreApplication, QObject, Q_CLASSINFO, pyqtSlot, pyqtProperty
from PyQt4.QtDBus import QDBusConnection, QDBusAbstractAdaptor
SERVICE = 'com.home.dbus'
class MyServer(QObject):
def __init__(self):
QObject.__init__(self)
self.__dbusAdaptor = ServerAdaptor(self)
def close(self):
pass
def echo(self, value):
echoed = 'Received {0}'.format(value)
return echoed
def name(self):
return 'myname'
def dbus_adaptor(self):
return self.__dbusAdaptor
class ServerAdaptor(QDBusAbstractAdaptor):
""" This provides the DBus adaptor to the outside world"""
def __init__(self, parent):
super().__init__(parent)
self.__parent = parent
Q_CLASSINFO("D-Bus Introspection",
" <interface name=\"com.home.dbus\">\n"
" <method name=\"name\">\n"
" <arg direction=\"out\" type=\"s\" name=\"name\"/>\n"
" </method>\n"
" <method name=\"echo\">\n"
" <arg direction=\"in\" type=\"s\" name=\"phrase\"/>\n"
" <arg directory=\"out\" type=\"s\" name=\"echoed\"/>\n"
" </method>\n"
" </interface>\n")
def close(self):
parent.close()
def echo(self, value):
return parent.echo(value)
def name(self):
return parent.name
def start():
app = QCoreApplication([])
if QDBusConnection.sessionBus().isConnected() == False:
print('Cannot connect to D-Bus session bus')
return
print('Starting')
server = MyServer()
if not QDBusConnection.sessionBus().registerService(SERVICE):
print('Unable to register service name')
return
if not QDBusConnection.sessionBus().registerObject('/mydbus', server.dbus_adaptor):
print('Unable to register object at service path')
return
app.exec();
print('Exited')
if __name__ == '__main__':
start()
虽然我真的很喜欢在 C++ 中使用 QtDBus,因为我想如何构建我的这个大型项目,但我确实需要通过 DBus 访问的对象用 Python3 编写。