全部博文(396)
发布时间:2018-10-31 13:18:51
gdbus的官方培训文档:https://aleksander.es/data/gdbus官方sample代码:https://aleksander.es/data/GNOMEASIA2014-Examples/gdbus例子:https://github.com/joprietoe/gdbus维基百科介绍:https://en.wikipedia.org/wiki/D-Bus相关概念介绍:https://blog.csdn.net/eastmoon502136/article/d.........【阅读全文】
发布时间:2018-05-09 15:02:51
动机前置知识正文同样先给出 Python 编写的服务与测试(这次没有 shell 脚本了)。 #!/usr/bin/env pythonimport gobjectimport dbusimport dbus.serviceimport dbus.mainloop.glibclass AdvancedData(dbus.service.Object): def __init__(self, bus, object_path): dbus.ser.........【阅读全文】
发布时间:2018-05-09 13:31:27
工作上用到了,开始也不知道怎么弄,网上也没有现成的例子,只好自己搞了,不废话。 需要改动的地方[plain] view plain copytypedef struct PassStruct { int ID;&.........【阅读全文】
发布时间:2018-05-09 11:49:10
<?xml version="1.0" encoding="UTF-8" ?><node name="/com/wei/MyObject"> <interface name="com.wei.MyObject.Sample"> <method name="Test"> <arg name="x" type="u" direction="in" /> <arg name="d_ret" type="d" d.........【阅读全文】