- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我正在寻找一个示例 C 代码来衡量在不使用任何 glib 绑定(bind)的情况下在两个简单应用程序之间发送数据所花费的时间,我在许多帖子中看到 http://www.matthew.ath.cx/misc/dbus有一个例子,但链接现在不存在。
我的代码发送没有给出任何错误,但接收应用程序没有收到任何东西,还附加了 service.conf 文件。从其他一些网站获得此代码:
////////////////////////////Sender Code
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <time.h>
#include <unistd.h>
#include <signal.h>
#include <dbus/dbus.h>
#define false 0
#define true 1
#define bool char
#define DERR_SHOW_CLEAN(error) \
if (dbus_error_is_set(&(error))) \
{ \
printf("error [%s:%d] %s\n %s\n", \
__FILE__, __LINE__, error.name, error.message); \
dbus_error_free(&(error)); \
}
int main() {
dbus_bool_t rc;
DBusError error;
DBusConnection* conn;
int ret;
char* sigvalue = "Test";
// initialise the errors
dbus_error_init(&error); //TODO
conn = dbus_connection_open("unix:path=/dev/shmem/dbus_service_socket", &error);
DERR_SHOW_CLEAN(error);
dbus_uint32_t serial = 0; // unique number to associate replies with requests
DBusMessage* msg;
DBusMessageIter args;
rc = dbus_bus_register(conn, &error);
DERR_SHOW_CLEAN(error);
// create a signal and check for errors
msg = dbus_message_new_signal("/org/freedesktop/DBus", // object name of the signal
"org.freedesktop.DBus", // interface name of the signal
"Test"); // name of the signal
if (NULL == msg)
{
fprintf(stderr, "Message Null\n");
}
// append arguments onto signal
dbus_message_iter_init_append(msg, &args);
if (!dbus_message_iter_append_basic(&args, DBUS_TYPE_STRING, &sigvalue)) {
fprintf(stderr, "Out Of Memory!\n");
}
while(1)
{
// send the message and flush the connection
if (!dbus_connection_send(conn, msg, &serial)) {
fprintf(stderr, "Out Of Memory!\n");
break;
}
else
{
sleep(5);
}
}
dbus_connection_flush(conn);
// free the message
dbus_message_unref(msg);
return 0;
}
////////////////////////////Receiver Code
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <time.h>
#include <unistd.h>
#include <dbus/dbus.h>
#define false 0
#define true 1
#define bool char
#define DERR_SHOW_CLEAN(error) \
if (dbus_error_is_set(&(error))) \
{ \
printf("error [%s:%d] %s\n %s\n", \
__FILE__, __LINE__, error.name, error.message); \
dbus_error_free(&(error)); \
}
int main()
{
DBusError err;
DBusConnection* conn;
DBusMessage* msg;
DBusMessageIter args;
int ret;
char* sigvalue;
dbus_bool_t rc;
// initialise the errors
dbus_error_init(&err); //TODO
conn = dbus_connection_open("unix:path=/dev/shmem/dbus_service_socket", &err);
DERR_SHOW_CLEAN(err);
rc = dbus_bus_register(conn, &err);
DERR_SHOW_CLEAN(err);
while (true) {
// non blocking read of the next available message
dbus_connection_read_write(conn, 0);
msg = dbus_connection_pop_message(conn);
printf("Got Si3\n");
// loop again if we haven't read a message
if (NULL == msg) {
sleep(5);
continue;
}
// check if the message is a signal from the correct interface
// and with the correct name
if (dbus_message_is_signal(msg, "org.freedesktop.DBus", "Test")) {
// read the parameters
printf("Got Si4\n");
if (!dbus_message_iter_init(msg, &args))
fprintf(stderr, "Message has no arguments!\n");
else if (DBUS_TYPE_STRING != dbus_message_iter_get_arg_type(&args))
fprintf(stderr, "Argument is not string!\n");
else {
dbus_message_iter_get_basic(&args, &sigvalue);
printf("Got Signal with value %s\n", sigvalue);
}
}
else
{
printf("Got Signal with type %s\n", dbus_message_get_sender(msg));
}
// free the message
dbus_message_unref(msg);
}
}
/////service.conf file contents which is used while dbus-daemon starts
<!-- This configuration file controls the systemwide message bus.
Add a system-local.conf and edit that rather than changing this
file directly. -->
<!-- Note that there are any number of ways you can hose yourself
security-wise by screwing up this file; in particular, you
probably don't want to listen on any more addresses, add any more
auth mechanisms, run as a different user, etc. -->
<!DOCTYPE busconfig PUBLIC "-//freedesktop//DTD D-Bus Bus Configuration 1.0//EN"
"http://www.freedesktop.org/standards/dbus/1.0/busconfig.dtd">
<busconfig>
<!-- Our well-known bus type, do not change this -->
<type>system</type>
<!-- Run as special user -->
<user>root</user>
<!-- Fork into daemon mode -->
<fork/>
<!-- Write a pid file -->
<pidfile>/dev/shmem/dbus_service.pid</pidfile>
<!-- Enable logging to syslog -->
<syslog/>
<!-- allow everyone -->
<allow_anonymous />
<!-- Only allow socket-credentials-based authentication -->
<!-- <auth>EXTERNAL</auth>-->
<!-- Only listen on a local socket. (abstract=/path/to/socket
means use abstract namespace, don't really create filesystem
file; only Linux supports this. Use path=/whatever on other
systems.) -->
<listen>unix:path=/dev/shmem/dbus_service_socket</listen>
<policy context="default">
<!-- All users can connect to system bus -->
<allow user="*"/>
<allow group="*"/>
<allow own="*"/>
<!-- Signals and reply messages (method returns, errors) are allowed
by default -->
<allow send_type="signal"/>
<allow send_type="method_call" log="true"/>
<allow send_requested_reply="true" send_type="method_return"/>
<allow send_requested_reply="true" send_type="error"/>
<!-- All messages may be received by default -->
<allow receive_type="method_call"/>
<allow receive_type="method_return"/>
<allow receive_type="error"/>
<allow receive_type="signal"/>
<allow receive_interface="org.freedesktop.DBus.Introspectable"/>
<allow send_destination="*"/>
<allow receive_sender="*" />
<allow receive_path="/org/freedesktop/DBus"/>
<!-- Allow anyone to talk to the message bus -->
<allow send_destination="org.freedesktop.DBus"/>
</policy>
<!-- Config files are placed here that among other things, punch
holes in the above policy for specific services. -->
<includedir>service.d</includedir>
</busconfig>
最佳答案
在receive main函数中进入while循环前调用dbus_bus_add_match,有效引用示例:在https://github.com/Jeshwanth/dbus-1/blob/master/dbus-1/dbus-example.c
关于c - DBus:使用直接 dbus API 测量数据交换的时间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27340237/
我是 DBUS 的新手。 我一直在尝试为我的程序创建一个 DBUS 服务,以便应用程序可以通过 DBUS 联系它。 我已经完成了本教程 http://kkaempf.blogspot.in/2009/
进行此查询: dbus-send --system --print-reply --dest=org.ofono /he910_0 org.ofono.ConnectionManager.GetCon
我对 BlueZ 有一个非常奇怪的问题(Ubuntu 16.04 中的股票版本 5.37)。我正在开发蓝牙外围设备,我只有一个开发套件。在其固件中,我更改了广播的名称。当我使用: hcitool le
我正在尝试使用 systemd dbus 修改一些代码。 方法调用如下所示: res = sd_bus_call_method(bus, SERVICE_NAME, OBJECT_PA
我正在尝试使用 systemd dbus 修改一些代码。 方法调用如下所示: res = sd_bus_call_method(bus, SERVICE_NAME, OBJECT_PA
我正在尝试启动 systemd 服务 usnig dbus 服务。我正在关注下面提到的链接的示例 5: http://www.freedesktop.org/software/systemd/man/
我正在尝试编写一个基本的卷应用程序。由于我是用 Ruby 编写的,因此我不想扩展 C 库或使用 ffi ,而是尝试使用 ruby-dbus 编写它,我使用 Address 获得了 /org/pulse
我有一些问题 dbus-send使用时 a{sv} 使用 in_signature='a{ss}' 调用方法似乎使用 以下命令行: dbus-send --dest="org.test.TestSer
我有一个在 Vala 中实现的 DBUS 服务器: [DBus (name = "com.github.Test")] public class Test.Server { public int
我尝试过运气: dbus-send --system --print-reply \ --dest=org.freedesktop.UDisks \ /org/free
我正在使用 qt-dbus 从我的软件中公开一些 API。 我将带有接口(interface)声明的 foo.xml 转换为 foo_adaptor.cpp 和 foo_adaptor.h 通过 qd
我制作了下面的示例 xml,并且需要一些帮助来形成 dbus-send 命令来设置/获取属性“状态”。我知道如何调用方法,但无法使用 dbus-send 读取/写入属性。 xml:
我正在寻找一个示例 C 代码来衡量在不使用任何 glib 绑定(bind)的情况下在两个简单应用程序之间发送数据所花费的时间,我在许多帖子中看到 http://www.matthew.ath.cx
假设我要以编程方式获取我的以太网卡的接口名称。这似乎可行: dbus-send --print-reply \ --type=method_call \ --s
假设我要以编程方式获取我的以太网卡的接口名称。这似乎可行: dbus-send --print-reply \ --type=method_call \ --s
我正在尝试交叉编译我的项目以在 raspberry pi 上使用它,但它找不到 dbus。当我进行经典编译时,这很容易找到。我正在使用 cmake 我已经将 dbus-1 添加到目标链接库并且我正在使
我希望能够首先调用一个简单的脚本来启用或禁用上网本的外部显示器。我正在使用 XFCE 作为我的桌面运行 Fedora 17。我看到我应该能够使用 python 和 python-dbus 来打开和关闭
我正在尝试使用来自 org.freedesktop 的 dbus-java 在 dbus 上注册对象。根据documentation此类操作需要:创建 DBusConnection,创建对象并在 DB
如果我有总线名称、对象路径和接口(interface),我如何从 Gjs(在 gnome-shell 扩展中)调用 DBus 方法? 我正在寻找以下 python 代码的等价物: import dbu
使用 gdbus-codegen 生成的管理器代理时,我无法接收 systemd DBus 信号。但我能够通过 DBus 成功调用 systemd 提供的方法。 我在网上搜索并查看了这些链接,但没有取
我是一名优秀的程序员,十分优秀!