`
huangqinqin
  • 浏览: 365799 次
  • 性别: Icon_minigender_2
  • 来自: 福州
社区版块
存档分类
最新评论

dbus基本接口

 
阅读更多
/*
* Example low-level D-Bus code.
* Written by Matthew Johnson <dbus@matthew.ath.cx>
*
* This code has been released into the Public Domain.
* You may do whatever you like with it.
*/
#include <dbus/dbus.h>
#include <stdbool.h>
#include <unistd.h>
#include <stdio.h>
#include <stdlib.h>

/**
* Connect to the DBUS bus and send a broadcast signal
*/
void sendsignal(char* sigvalue)
{
   DBusMessage* msg;
   DBusMessageIter args;
   DBusConnection* conn;
   DBusError err;
   int ret;
   dbus_uint32_t serial = 0;

   printf("Sending signal with value %s\n", sigvalue);

   // initialise the error value
   dbus_error_init(&err);

   // connect to the DBUS system bus, and check for errors
   conn = dbus_bus_get(DBUS_BUS_SESSION, &err);
   if (dbus_error_is_set(&err)) {
      fprintf(stderr, "Connection Error (%s)\n", err.message);
      dbus_error_free(&err);
   }
   if (NULL == conn) {
      exit(1);
   }

   // register our name on the bus, and check for errors
   ret = dbus_bus_request_name(conn, "test.signal.source", DBUS_NAME_FLAG_REPLACE_EXISTING , &err);
   if (dbus_error_is_set(&err)) {
      fprintf(stderr, "Name Error (%s)\n", err.message);
      dbus_error_free(&err);
   }
   if (DBUS_REQUEST_NAME_REPLY_PRIMARY_OWNER != ret) {
      exit(1);
   }

   // create a signal & check for errors
   msg = dbus_message_new_signal("/test/signal/Object", // object name of the signal
                                 "test.signal.Type",    // interface name of the signal
                                 "Test");               // name of the signal
   if (NULL == msg)
   {
      fprintf(stderr, "Message Null\n");
      exit(1);
   }

   // 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");
      exit(1);
   }

   // send the message and flush the connection
   if (!dbus_connection_send(conn, msg, &serial)) {
      fprintf(stderr, "Out Of Memory!\n");
      exit(1);
   }
   dbus_connection_flush(conn);
 
   printf("Signal Sent\n");
 
   // free the message
   dbus_message_unref(msg);
}

/**
* Call a method on a remote object
*/
void query(char* param)
{
   DBusMessage* msg;
   DBusMessageIter args;
   DBusConnection* conn;
   DBusError err;
   DBusPendingCall* pending;
   int ret;
   bool stat;
   dbus_uint32_t level;

   printf("Calling remote method with %s\n", param);

   // initialiset the errors
   dbus_error_init(&err);

   // connect to the system bus and check for errors
   conn = dbus_bus_get(DBUS_BUS_SESSION, &err);
   if (dbus_error_is_set(&err)) {
      fprintf(stderr, "Connection Error (%s)\n", err.message);
      dbus_error_free(&err);
   }
   if (NULL == conn) {
      exit(1);
   }

   // request our name on the bus
   ret = dbus_bus_request_name(conn, "test.method.caller", DBUS_NAME_FLAG_REPLACE_EXISTING , &err);
   if (dbus_error_is_set(&err)) {
      fprintf(stderr, "Name Error (%s)\n", err.message);
      dbus_error_free(&err);
   }
   if (DBUS_REQUEST_NAME_REPLY_PRIMARY_OWNER != ret) {
      exit(1);
   }

   // create a new method call and check for errors
   msg = dbus_message_new_method_call("test.method.server",// target for the method call
                                      "/test/method/Object", // object to call on
                                      "test.method.Type",    // interface to call on
                                      "Method");             // method name
   if (NULL == msg) {
      fprintf(stderr, "Message Null\n");
      exit(1);
   }

   // append arguments
   dbus_message_iter_init_append(msg, &args);
   if (!dbus_message_iter_append_basic(&args, DBUS_TYPE_STRING, &param)) {
      fprintf(stderr, "Out Of Memory!\n");
      exit(1);
   }
 
   // send message and get a handle for a reply
   if (!dbus_connection_send_with_reply (conn, msg, &pending, -1)) { // -1 is default timeout
      fprintf(stderr, "Out Of Memory!\n");
      exit(1);
   }
   if (NULL == pending) {
      fprintf(stderr, "Pending Call Null\n");
      exit(1);
   }
   dbus_connection_flush(conn);
 
   printf("Request Sent\n");
 
   // free message
   dbus_message_unref(msg);
 
   // block until we recieve a reply
   dbus_pending_call_block(pending);

   // get the reply message
   msg = dbus_pending_call_steal_reply(pending);
   if (NULL == msg) {
      fprintf(stderr, "Reply Null\n");
      exit(1);
   }
   // free the pending message handle
   dbus_pending_call_unref(pending);

   // read the parameters
   if (!dbus_message_iter_init(msg, &args))
      fprintf(stderr, "Message has no arguments!\n");
   else if (DBUS_TYPE_BOOLEAN != dbus_message_iter_get_arg_type(&args))
      fprintf(stderr, "Argument is not boolean!\n");
   else
      dbus_message_iter_get_basic(&args, &stat);

   if (!dbus_message_iter_next(&args))
      fprintf(stderr, "Message has too few arguments!\n");
   else if (DBUS_TYPE_UINT32 != dbus_message_iter_get_arg_type(&args))
      fprintf(stderr, "Argument is not int!\n");
   else
      dbus_message_iter_get_basic(&args, &level);

   printf("Got Reply: %d, %d\n", stat, level);
 
   // free reply
   dbus_message_unref(msg); 
}


void reply_to_method_call(DBusMessage* msg, DBusConnection* conn)
{
   DBusMessage* reply;
   DBusMessageIter args;
   bool stat = true;
   dbus_uint32_t level = 21614;
   dbus_uint32_t serial = 0;
   char* param = "";

   // read the arguments
   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, &param);

   printf("Method called with %s\n", param);

   // create a reply from the message
   reply = dbus_message_new_method_return(msg);

   // add the arguments to the reply
   dbus_message_iter_init_append(reply, &args);
   if (!dbus_message_iter_append_basic(&args, DBUS_TYPE_BOOLEAN, &stat)) {
      fprintf(stderr, "Out Of Memory!\n");
      exit(1);
   }
   if (!dbus_message_iter_append_basic(&args, DBUS_TYPE_UINT32, &level)) {
      fprintf(stderr, "Out Of Memory!\n");
      exit(1);
   }

   // send the reply && flush the connection
   if (!dbus_connection_send(conn, reply, &serial)) {
      fprintf(stderr, "Out Of Memory!\n");
      exit(1);
   }
   dbus_connection_flush(conn);

   // free the reply
   dbus_message_unref(reply);
}



/**
* Server that exposes a method call and waits for it to be called
*/
void listen()
{
   DBusMessage* msg;
   DBusMessage* reply;
   DBusMessageIter args;
   DBusConnection* conn;
   DBusError err;
   int ret;
   char* param;

   printf("Listening for method calls\n");

   // initialise the error
   dbus_error_init(&err);
 
   // connect to the bus and check for errors
   conn = dbus_bus_get(DBUS_BUS_SESSION, &err);
   if (dbus_error_is_set(&err)) {
      fprintf(stderr, "Connection Error (%s)\n", err.message);
      dbus_error_free(&err);
   }
   if (NULL == conn) {
      fprintf(stderr, "Connection Null\n");
      exit(1);
   }
 
   // request our name on the bus and check for errors
   ret = dbus_bus_request_name(conn, "test.method.server",
                               DBUS_NAME_FLAG_REPLACE_EXISTING , &err);
   if (dbus_error_is_set(&err)) {
      fprintf(stderr, "Name Error (%s)\n", err.message);
      dbus_error_free(&err);
   }
   if (DBUS_REQUEST_NAME_REPLY_PRIMARY_OWNER != ret) {
      fprintf(stderr, "Not Primary Owner (%d)\n", ret);
      exit(1);
   }

   // loop, testing for new messages
   while (true) {
      // non blocking read of the next available message
      dbus_connection_read_write(conn, 0);
      msg = dbus_connection_pop_message(conn);

      // loop again if we haven't got a message
      if (NULL == msg) {
         sleep(1);
         continue;
      }
    
      // check this is a method call for the right interface & method
      if (dbus_message_is_method_call(msg, "test.method.Type", "Method"))
         reply_to_method_call(msg, conn);

      // free the message
      dbus_message_unref(msg);
   }
}



/**
* Listens for signals on the bus
*/
void receive()
{
   DBusMessage* msg;
   DBusMessageIter args;
   DBusConnection* conn;
   DBusError err;
   int ret;
   char* sigvalue;

   printf("Listening for signals\n");

   // initialise the errors
   dbus_error_init(&err);
 
   // connect to the bus and check for errors
   conn = dbus_bus_get(DBUS_BUS_SESSION, &err);
   if (dbus_error_is_set(&err)) {
      fprintf(stderr, "Connection Error (%s)\n", err.message);
      dbus_error_free(&err);
   }
   if (NULL == conn) {
      exit(1);
   }
 
   // request our name on the bus and check for errors
   ret = dbus_bus_request_name(conn, "test.signal.sink", DBUS_NAME_FLAG_REPLACE_EXISTING , &err);
   if (dbus_error_is_set(&err)) {
      fprintf(stderr, "Name Error (%s)\n", err.message);
      dbus_error_free(&err);
   }
   if (DBUS_REQUEST_NAME_REPLY_PRIMARY_OWNER != ret) {
      exit(1);
   }

   // add a rule for which messages we want to see
   dbus_bus_add_match(conn, "type='signal',interface='test.signal.Type'", &err); // see signals from the given interface
   dbus_connection_flush(conn);
   if (dbus_error_is_set(&err)) {
      fprintf(stderr, "Match Error (%s)\n", err.message);
      exit(1);
   }
   printf("Match rule sent\n");

   // loop listening for signals being emmitted
   while (true) {

      // non blocking read of the next available message
      dbus_connection_read_write(conn, 0);
      msg = dbus_connection_pop_message(conn);

      // loop again if we haven't read a message
      if (NULL == msg) {
         sleep(1);
         continue;
      }

      // check if the message is a signal from the correct interface and with the correct name
      if (dbus_message_is_signal(msg, "test.signal.Type", "Test")) {
       
         // read the parameters
         if (!dbus_message_iter_init(msg, &args))
            fprintf(stderr, "Message Has No Parameters\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);
      }

      // free the message
      dbus_message_unref(msg);
   }
}



int main(int argc, char** argv)
{
   if (2 > argc) {
      printf ("Syntax: dbus-example [send|receive|listen|query] [<param>]\n");
      return 1;
   }
   char* param = "no param";
   if (3 >= argc && NULL != argv[2]) param = argv[2];
   if (0 == strcmp(argv[1], "send"))
      sendsignal(param);
   else if (0 == strcmp(argv[1], "receive"))
      receive();
   else if (0 == strcmp(argv[1], "listen"))
      listen();
   else if (0 == strcmp(argv[1], "query"))
      query(param);
   else {
      printf ("Syntax: dbus-example [send|receive|listen|query] [<param>]\n");
      return 1;
   }
   return 0;
}



编译
----------------------------------------------------------
错误1:
$ gcc test.c
test.c:8:23: 错误: dbus/dbus.h:No such file or directory
......
$
错误提示,dbus库的头文件位置不正确(如果已经安装了dbus的话)
$ sudo updatedb
$ sudo locate dbus.h (查看dbus.h的所在位置)
/usr/local/include/dbus-1.0/dbus/dbus.h
/usr/include/dbus-1.0/dbus/dbus.h
看来dbus.h的存放位置的确不正确,这可能是由于dbus-1.0的安装位置有问题,没关系,调整一下dbus的头文件位置就可以了(调整方法如下):
root@zxl:/usr/include# ln -sf dbus-1.0/dbus


错误2:
$ gcc test.c
在包含自 test.c:8 的文件中:
/usr/include/dbus/dbus.h:29:33: 错误: dbus/dbus-arch-deps.h:No such file or directory
......

依然有头文件无法正确定位的问题,从错误提示来看,该文件应该在/usr/include/dbus/目录下,可是进入该目录查看竟然没有,那就在整个系统中查找该文件。
root@zxl:/usr/include/dbus# locate dbus-arch-deps.h
/usr/local/lib/dbus-1.0/include/dbus/dbus-arch-deps.h
/usr/lib/dbus-1.0/include/dbus/dbus-arch-deps.h
将该文件复制到/usr/include/dbus目录下



错误3:
$ gcc test.c
......
test.c:(.text+0xbb6): undefined reference to `dbus_message_iter_get_basic'
test.c:(.text+0xbd4): undefined reference to `dbus_message_unref'
collect2: ld 返回 1

需要连接动态库dbus
$ cd /usr/lib
$ ls *dbus*
libdbus-1.a   libdbus-1.so.3      libdbus-glib-1.so
libdbus-1.la libdbus-1.so.3.2.0 libdbus-glib-1.so.2
libdbus-1.so libdbus-glib-1.a    libdbus-glib-1.so.2.1.0

$ gcc test.c -l dbus-1 -o dbus


执行(用普通用户身份执行)
----------------------------------------------------------
$ ./dbus receive
Listening for signals
Match rule sent
Got Signal with value luoling


$ ./dbus send luoling    (再开一个标签)
Sending signal with value luoling
Signal Sent

分享到:
评论

相关推荐

    QtDbus资料集合

    QtDbus提供了方便的API,使得Qt开发者能够轻松地实现DBus接口的调用和实现。 首先,让我们深入理解QtDbus的基本概念: 1. **DBus信号(Signal)**:DBus信号类似于事件,当某个状态或动作发生时,服务会发送一个...

    QT中dbus的应用程序

    首先,我们需要理解DBus的基本概念: 1. **信号(Signal)**:当一个对象的状态发生变化时,可以发送信号通知其他关注此变化的组件。例如,当用户点击一个按钮时,按钮对象可以发送一个信号。 2. **方法(Method)**...

    dbus基础知识

    3. **dbus工具**:掌握基本的dbus工具,如`dbus-send`用于发送方法调用,`dbus-monitor`用于监控总线上的消息,以及`dbus-inspect`用于查看对象和接口信息。 4. **编程接口**:学习 C、Python、Java 或其他支持的...

    dbus测试程序

    DBus测试程序是针对DBus消息总线系统的一种应用实践,主要用于验证和调试DBus接口及通信机制。DBus是由Freedesktop.org发起的一个开源项目,它提供了一种进程间通信(IPC)机制,让不同的应用程序可以在Linux和其他...

    QT中DBUS的用法

    首先,理解DBUS的基本概念是至关重要的。DBUS是一个轻量级的消息总线服务,它允许应用程序之间创建连接,发送和接收消息。DBUS提供了同步和异步通信方式,并且支持多种接口类型,包括对象路径、接口名和信号。 在QT...

    Dbus简介和例程

    4. **DBus的接口和对象路径**:接口定义了可以调用的方法和可读写的属性,而对象路径则是对象在总线上的唯一标识,类似于对象的地址。 5. **DBus的连接与认证**:每个应用程序连接到DBus时都需要进行身份验证,可以...

    QT DBUS通讯小程序

    在学习和使用这个小程序时,可以先了解DBus的基本概念,然后逐步剖析源代码,理解服务端和客户端的交互过程,最后尝试修改代码以实现自己的需求。这个小程序是一个很好的起点,可以帮助初学者快速掌握QT与DBus的集成...

    dbus初学的经典资料

    DBus简化了进程间的数据传递,支持多种数据类型,包括基本类型如整数、浮点数、字符串等,以及复杂类型如数组、字典等。 ### D-Bus在Linux中的角色 在Linux环境中,DBus作为系统服务总线,是许多系统服务和应用...

    dbus例程.zip

    首先,我们需要了解DBus的基本概念。DBus提供了一个基于异步请求/响应模型的接口,允许进程发送和接收消息。消息可以是方法调用、返回值、信号或错误。DBus有两种总线类型:系统总线(System Bus)和会话总线...

    linux DBUS 实例讲解

    #### 二、D-Bus 的基本原理与架构 D-Bus的核心组件包括消息总线(Message Bus)、客户端(Client)和服务端(Server)。消息总线扮演着中介的角色,负责转发消息;客户端和服务端则是实际发送和接收消息的应用程序。 1. ...

    QT 的应用程序间的DBUS通信

    首先,理解DBus的基本概念是必要的。DBus是一种轻量级的消息传递机制,它定义了一种标准的接口,允许不同的软件组件之间交换信息。DBus有两种主要的通信类型:本地(session)总线和系统总线。本地总线用于用户会话...

    dbus编译后的package

    - **功能**:DBus提供了一种标准的接口,使得各种应用可以互相发现并发送消息,无需知道对方的实现细节。 - **工作原理**:DBus基于一个守护进程(dbus-daemon),它管理着消息总线,处理连接和路由。应用通过...

    dbus-core详解

    DBus-core详解: D-Bus,全称为Desktop Bus,是一种低延迟、异步的IPC(进程间通信)协议。它主要用于Linux、BSD以及其他自由的类UNIX系统。D-Bus的目的是作为各种早期临时机制的替代品,这些机制在Linux桌面早期...

    DBus_C_API_Lowlevel

    1. **DBus基本概念**: - **DBus消息总线**:DBus提供了一个统一的消息总线服务,使得不同进程可以通过总线进行通信。 - **对象路径**:每个DBus服务都有一系列对象,通过对象路径来唯一标识。 - **接口**:定义...

    dbus通讯代码

    这些实例可能涵盖了基本的DBus连接、消息发送和接收、信号订阅等常见操作。通过分析和学习这些代码,可以加深对DBus工作机制的理解,并避免遇到描述中提到的问题。 总的来说,DBus通信是一种强大的工具,它简化了...

    dbus_1.8.tar.gz

    - **权限控制**:DBus支持基本的安全模型,允许设置权限以限制哪些进程可以访问特定服务。 - **服务发现**:DBus提供服务注册和发现机制,使得进程可以在运行时找到并使用其他服务。 - **信号和槽**:类似Qt的信号和...

    dbus-glib-0.98

    在深入研究源码之前,了解D-Bus的基本概念和Glib的工作原理至关重要。 1. D-Bus基础: - 消息总线:D-Bus提供了一个消息传递机制,允许进程之间发送和接收消息。 - 对象路径:每个D-Bus对象都有一个唯一的路径,...

    python-systemd:用于systemd系统和会话管理器dbus接口的python-systemd python包装器

    python-systemd-dbus python-systemd-dbus python包装器,用于systemd _系统和会话管理器dbus接口。 .. systemd: : 基本用法导入并创建一个manager : &gt;&gt;&gt; from systemd_dbus.manager import Manager&gt;&gt;&gt; manager = ...

    前端开源库-dbus-native

    5. **接口和信号**:`dbus-native` 支持D-Bus的接口定义和信号监听,可以方便地创建和消费服务接口,以及监听和触发信号事件。 **使用示例** 在使用`dbus-native`时,首先需要安装库: ```bash npm install dbus-...

    dbus资料整理

    首先,我们需要理解DBus的基本概念。DBus分为两种主要的总线类型:系统总线和会话总线。系统总线通常用于跨用户的系统服务之间的通信,而会话总线则服务于单个用户会话中的应用。DBus通过一个中央调度器来管理所有...

Global site tag (gtag.js) - Google Analytics