一区二区三区日韩精品-日韩经典一区二区三区-五月激情综合丁香婷婷-欧美精品中文字幕专区

分享

dbus入門與應(yīng)用 dbus c編程接口

 昵稱5169677 2016-08-13

http://www.cnblogs.com/liyiwen/archive/2012/12/02/2798876.html

DBus 入門與應(yīng)用 -- DBus 的 C 編程接口


轉(zhuǎn)載請注明出處。               作者: 唐風(fēng)  


最近在學(xué) Dbus,不過總是不得其門而入。

大 部分資料都講了很多東西卻最終沒有讓我搞清楚怎么用 DBus,不就是一個(gè) IPC 通信的工具么?就沒有一點(diǎn)實(shí)用些的資料么?看了很多資料之后還是覺得只見樹木不見森林。仔細(xì)整理下思路,覺得還是應(yīng)該從最基本的方面入門,先從 DBus 的 C API 入手學(xué)習(xí),有了這些知識,就算麻煩,也可以先在完成一個(gè)基本功能的例子程序的同時(shí)大概的知道 DBus 的運(yùn)行機(jī)制。

在網(wǎng)上找到這么一篇文章:http://www.matthew./misc/dbus, 正合我意,下面的內(nèi)容基本是對這篇文章的翻譯和擴(kuò)充。

注意:

  1. 翻譯沒有得到原文作者同意,原文也很簡單易懂,最好去讀原文。如果收到投訴,我會立即撤掉本文的。
  2. 本文不是一篇好的 DBus 入門,有很多基本的東西不在記述之內(nèi)。
  3. 一般情況下不會直接使用 C API 進(jìn)行 DBus 的編程,而是使用某種 DBus-binding,但我覺得理解 DBus 的 C API 對完整地理解 DBus 是非常重要的。
  4. 雖然 DBus 是用 C 寫的,而且本文寫的是 C API,但是 DBus 設(shè)計(jì)中充滿的面向?qū)ο蟮乃枷?,請注意?

一、共通部分的代碼

在 使用 DBus 進(jìn)行通信的時(shí)候,有一些代碼是無論如何都會使用到的。首先,你必須要連接上 Dbus,一般來說,系統(tǒng)中會有一個(gè) System Bus 和一個(gè) Session Bus(他們的差別,請參考我另外的筆記)。其次,你需要在 Dbus 中注冊一個(gè)名字,用于標(biāo)識自己。為了簡單起見,這里先不考慮重名的情況:

共通用代碼
  1. DBusError err;
  2. DBusConnection* conn;
  3. int ret;
  4. // initialise the errors
  5. dbus_error_init(&err);
  6.  
  7. // connect to the bus
  8. conn = dbus_bus_get(DBUS_BUS_SESSION, &err);
  9. if (dbus_error_is_set(&err)) {
  10.     fprintf(stderr, "Connection Error (%s)\n", err.message);
  11.     dbus_error_free(&err);
  12. }
  13. if (NULL == conn) {
  14.     exit(1);
  15. }
  16. // request a name on the bus
  17. ret = dbus_bus_request_name(conn, "test.method.server",
  18.                             DBUS_NAME_FLAG_REPLACE_EXISTING
  19.                             , &err);
  20. if (dbus_error_is_set(&err)) {
  21.     fprintf(stderr, "Name Error (%s)\n", err.message);
  22.     dbus_error_free(&err);
  23. }
  24. if (DBUS_REQUEST_NAME_REPLY_PRIMARY_OWNER != ret) {
  25.     exit(1);
  26. }

一般來說,連接上 Dbus 和注冊一個(gè)名稱,應(yīng)該是在程序最開始運(yùn)行的時(shí)候就會進(jìn)行的操作。

當(dāng)然,在程序的結(jié)束的時(shí)候,需要關(guān)閉掉與 Dbus 的連接。使用下面的函數(shù):

Code Snippet
  1. dbus_connection_close(conn);

二、發(fā)送信號(Sending Signal)

信 號是一種廣播的消息,你可以簡單的發(fā)出一個(gè)信號,這樣,所有連接在 DBus 總線上并注冊了接受對應(yīng)信號的進(jìn)程,都會收到這個(gè)信號。為了發(fā)出一個(gè)信號,需要的只是創(chuàng)建一個(gè) DBusMessage 對象來代表信號,然后追加上一些需要發(fā)出的參數(shù),就可以發(fā)向總線了。發(fā)完之后還需要釋放掉 Message。如果內(nèi)存不足的話,這下面不少函數(shù)都會返回 false,所以一般情況下你都需要處理這些情況的返回值。

發(fā)送信號
  1. dbus_uint32_t serial = 0; // unique number to associate replies with requests
  2. DBusMessage* msg;
  3. DBusMessageIter args;
  4.  
  5. // create a signal and check for errors
  6. msg = dbus_message_new_signal("/test/signal/Object", // object name of the signal
  7.                               "test.signal.Type", // interface name of the signal
  8.                               "Test"); // name of the signal
  9. if (NULL == msg)
  10. {
  11.     fprintf(stderr, "Message Null\n");
  12.     exit(1);
  13. }
  14.  
  15. // append arguments onto signal
  16. dbus_message_iter_init_append(msg, &args);
  17. if (!dbus_message_iter_append_basic(&args, DBUS_TYPE_STRING, &sigvalue)) {
  18.     fprintf(stderr, "Out Of Memory!\n");
  19.     exit(1);
  20. }
  21.  
  22. // send the message and flush the connection
  23. if (!dbus_connection_send(conn, msg, &serial)) {
  24.     fprintf(stderr, "Out Of Memory!\n");
  25.     exit(1);
  26. }
  27. dbus_connection_flush(conn);
  28.  
  29. // free the message
  30. dbus_message_unref(msg);

三、調(diào)用方法(Calling a Method)

調(diào) 用一個(gè)遠(yuǎn)程方法(remote method)與發(fā)送一個(gè)信號(sending a signal)是很類似的。需要?jiǎng)?chuàng)建一個(gè) DBusMessage,然后通過注冊在 DBus 上的名稱指定發(fā)送的對象。然后追加相應(yīng)的參數(shù),但調(diào)用方法分為兩種,一種是阻塞式的,另一種則可以異步調(diào)用。異步調(diào)用的時(shí)候會得到一個(gè) DBusMessage* 的返回,從這個(gè) DBusMessage 中可以獲取一些返回的參數(shù)。

調(diào)用方法1
  1. DBusMessage* msg;
  2. DBusMessageIter args;
  3. DBusPendingCall* pending;
  4.  
  5. msg = dbus_message_new_method_call("test.method.server", // target for the method call
  6.                                    "/test/method/Object", // object to call on
  7.                                    "test.method.Type", // interface to call on
  8.                                    "Method"); // method name
  9. if (NULL == msg) {
  10.     fprintf(stderr, "Message Null\n");
  11.     exit(1);
  12. }
  13.  
  14. // append arguments
  15. dbus_message_iter_init_append(msg, &args);
  16. if (!dbus_message_iter_append_basic(&args, DBUS_TYPE_STRING, &param)) {
  17.     fprintf(stderr, "Out Of Memory!\n");
  18.     exit(1);
  19. }
  20.  
  21. // send message and get a handle for a reply
  22. if (!dbus_connection_send_with_reply (conn, msg, &pending, -1)) { // -1 is default timeout
  23.     fprintf(stderr, "Out Of Memory!\n");
  24.     exit(1);
  25. }
  26. if (NULL == pending) {
  27.     fprintf(stderr, "Pending Call Null\n");
  28.     exit(1);
  29. }
  30. dbus_connection_flush(conn);
  31.  
  32. // free message
  33. dbus_message_unref(msg);
調(diào)用方法2
  1. bool stat;
  2. dbus_uint32_t level;
  3.  
  4. // block until we receive a reply
  5. dbus_pending_call_block(pending);
  6.  
  7. // get the reply message
  8. msg = dbus_pending_call_steal_reply(pending);
  9. if (NULL == msg) {
  10.     fprintf(stderr, "Reply Null\n");
  11.     exit(1);
  12. }
  13. // free the pending message handle
  14. dbus_pending_call_unref(pending);
  15.  
  16. // read the parameters
  17. if (!dbus_message_iter_init(msg, &args))
  18.     fprintf(stderr, "Message has no arguments!\n");
  19. else if (DBUS_TYPE_BOOLEAN != dbus_message_iter_get_arg_type(&args))
  20.     fprintf(stderr, "Argument is not boolean!\n");
  21. else
  22.     dbus_message_iter_get_basic(&args, &stat);
  23.  
  24. if (!dbus_message_iter_next(&args))
  25.     fprintf(stderr, "Message has too few arguments!\n");
  26. else if (DBUS_TYPE_UINT32 != dbus_message_iter_get_arg_type(&args))
  27.     fprintf(stderr, "Argument is not int!\n");
  28. else
  29.     dbus_message_iter_get_basic(&args, &level);
  30.  
  31. printf("Got Reply: %d, %d\n", stat, level);
  32.  
  33. // free reply and close connection
  34. dbus_message_unref(msg);

四、接收消息(Receiving a Signal)

接下來的兩種操作主要是從總線從讀取消息并處理這些消息。

要接收一個(gè)消息,你首先需要告訴 DBus 你對什么樣的消息感興趣:

接收消息1
  1. // add a rule for which messages we want to see
  2. dbus_bus_add_match(conn,
  3.                    "type='signal',interface='test.signal.Type'",
  4.                    &err); // see signals from the given interface
  5. dbus_connection_flush(conn);
  6. if (dbus_error_is_set(&err)) {
  7.     fprintf(stderr, "Match Error (%s)\n", err.message);
  8.     exit(1);
  9. }

然后,進(jìn)程就可以在一個(gè)循環(huán)中等待這類消息的發(fā)生了:

接收消息2
  1. / loop listening for signals being emmitted
  2. while (true) {
  3.  
  4.     // non blocking read of the next available message
  5.     dbus_connection_read_write(conn, 0);
  6.     msg = dbus_connection_pop_message(conn);
  7.  
  8.     // loop again if we haven't read a message
  9.     if (NULL == msg) {
  10.         sleep(1);
  11.         continue;
  12.     }
  13.  
  14.     // check if the message is a signal from the correct interface and with the correct name
  15.     if (dbus_message_is_signal(msg, "test.signal.Type", "Test")) {
  16.         // read the parameters
  17.         if (!dbus_message_iter_init(msg, &args))
  18.             fprintf(stderr, "Message has no arguments!\n");
  19.         else if (DBUS_TYPE_STRING != dbus_message_iter_get_arg_type(&args))
  20.             fprintf(stderr, "Argument is not string!\n");
  21.         else {
  22.             dbus_message_iter_get_basic(&args, &sigvalue);
  23.             printf("Got Signal with value %s\n", sigvalue);
  24.         }
  25.     }
  26.  
  27.     // free the message
  28.     dbus_message_unref(msg);
  29. }

五、提供被遠(yuǎn)程調(diào)用的方法(Exposing a Method to be called)

在第二節(jié)中,我們看到了調(diào)用一個(gè)遠(yuǎn)程方法,這節(jié)就是告訴我們怎么樣提供一個(gè)方法讓別的應(yīng)用程序調(diào)用。用下面的程序,就可以把方法關(guān)聯(lián)在那些提供給外部的方法上,并解析出相應(yīng)的參數(shù),最后構(gòu)建一個(gè)消息返回給調(diào)用方法的應(yīng)用程序。

提供被遠(yuǎn)程調(diào)用的方法1
  1. // loop, testing for new messages
  2. while (true) {
  3.     // non blocking read of the next available message
  4.     dbus_connection_read_write(conn, 0);
  5.     msg = dbus_connection_pop_message(conn);
  6.   
  7.     // loop again if we haven't got a message
  8.     if (NULL == msg) {
  9.         sleep(1);
  10.         continue;
  11.     }
  12.  
  13.     // check this is a method call for the right interface and method
  14.     if (dbus_message_is_method_call(msg, "test.method.Type", "Method"))
  15.         reply_to_method_call(msg, conn);
  16.  
  17.     // free the message
  18.     dbus_message_unref(msg);
  19. }

 

提供被遠(yuǎn)程調(diào)用的方法2
  1. void reply_to_method_call(DBusMessage* msg, DBusConnection* conn)
  2. {
  3.     DBusMessage* reply;
  4.     DBusMessageIter args;
  5.     DBusConnection* conn;
  6.     bool stat = true;
  7.     dbus_uint32_t level = 21614;
  8.     dbus_uint32_t serial = 0;
  9.     char* param = "";
  10.  
  11.     // read the arguments
  12.     if (!dbus_message_iter_init(msg, &args))
  13.         fprintf(stderr, "Message has no arguments!\n");
  14.     else if (DBUS_TYPE_STRING != dbus_message_iter_get_arg_type(&args))
  15.         fprintf(stderr, "Argument is not string!\n");
  16.     else
  17.         dbus_message_iter_get_basic(&args, &param);
  18.     printf("Method called with %s\n", param);
  19.  
  20.     // create a reply from the message
  21.     reply = dbus_message_new_method_return(msg);
  22.  
  23.     // add the arguments to the reply
  24.     dbus_message_iter_init_append(reply, &args);
  25.     if (!dbus_message_iter_append_basic(&args, DBUS_TYPE_BOOLEAN, &stat)) {
  26.         fprintf(stderr, "Out Of Memory!\n");
  27.         exit(1);
  28.     }
  29.     if (!dbus_message_iter_append_basic(&args, DBUS_TYPE_UINT32, &level)) {
  30.         fprintf(stderr, "Out Of Memory!\n");
  31.         exit(1);
  32.     }
  33.  
  34.     // send the reply && flush the connection
  35.     if (!dbus_connection_send(conn, reply, &serial)) {
  36.         fprintf(stderr, "Out Of Memory!\n");
  37.         exit(1);
  38.     }
  39.     dbus_connection_flush(conn);
  40.  
  41.     // free the reply
  42.     dbus_message_unref(reply);
  43. }

 

這就基本上全部了。但用這些來理解 DBus 顯然還遠(yuǎn)遠(yuǎn)不夠。接下來,就要對這些程序以及背后的理念進(jìn)行具體的探究了。

---- 總會有一個(gè)人需要你的分享~! 唐風(fēng): www.cnblogs.com/muxue ------

    本站是提供個(gè)人知識管理的網(wǎng)絡(luò)存儲空間,所有內(nèi)容均由用戶發(fā)布,不代表本站觀點(diǎn)。請注意甄別內(nèi)容中的聯(lián)系方式、誘導(dǎo)購買等信息,謹(jǐn)防詐騙。如發(fā)現(xiàn)有害或侵權(quán)內(nèi)容,請點(diǎn)擊一鍵舉報(bào)。
    轉(zhuǎn)藏 分享 獻(xiàn)花(0

    0條評論

    發(fā)表

    請遵守用戶 評論公約

    類似文章 更多

    日本久久中文字幕免费| 激情偷拍一区二区三区视频| 午夜激情视频一区二区| 精品一区二区三区不卡少妇av| 中文字幕精品少妇人妻| 最近中文字幕高清中文字幕无 | 日韩欧美综合中文字幕| 国产精品九九九一区二区| 美日韩一区二区精品系列| 国产午夜福利片在线观看| 丰满少妇被粗大猛烈进出视频| 国产一区国产二区在线视频| 亚洲精品国产精品日韩| 日本av一区二区不卡| 亚洲一区二区三区中文久久| 午夜福利视频日本一区| 精品少妇人妻一区二区三区| 亚洲一二三四区免费视频 | 日韩性生活片免费观看| 国产精品99一区二区三区| 99久免费精品视频在线观| 绝望的校花花间淫事2| 欧美丰满大屁股一区二区三区| 高清一区二区三区大伊香蕉 | 中文字幕日韩无套内射| 99热九九在线中文字幕| 亚洲精品中文字幕在线视频| 成人精品国产亚洲av久久| 欧美成人免费视频午夜色| 男女午夜福利院在线观看| 国产精品日韩精品最新| 偷拍洗澡一区二区三区| 久久国产青偷人人妻潘金莲| 91香蕉国产观看免费人人| 国产精品一区二区成人在线| 中文字幕亚洲在线一区| 激情五月天深爱丁香婷婷| 国产老熟女乱子人伦视频| 日韩国产亚洲欧美另类| 欧美精品在线播放一区二区| 欧美特色特黄一级大黄片|