mirror of https://github.com/dnomd343/gdbus-demo
dnomd343
3 years ago
9 changed files with 221 additions and 0 deletions
@ -0,0 +1,7 @@ |
|||||
|
cmake_minimum_required(VERSION 3.16) |
||||
|
set(CMAKE_CXX_STANDARD 14) |
||||
|
project(gdbus_multi_method_demo) |
||||
|
|
||||
|
add_subdirectory(gdbus) |
||||
|
add_subdirectory(client) |
||||
|
add_subdirectory(server) |
@ -0,0 +1,13 @@ |
|||||
|
cmake_minimum_required(VERSION 3.16) |
||||
|
|
||||
|
INCLUDE_DIRECTORIES(${PROJECT_SOURCE_DIR}/includes) |
||||
|
INCLUDE_DIRECTORIES(${PROJECT_SOURCE_DIR}/gdbus) |
||||
|
INCLUDE_DIRECTORIES(/usr/include/glib-2.0) |
||||
|
INCLUDE_DIRECTORIES(/usr/include/gio-unix-2.0) |
||||
|
INCLUDE_DIRECTORIES(/usr/lib/glib-2.0/include) |
||||
|
INCLUDE_DIRECTORIES(/usr/lib/i386-linux-gnu/glib-2.0/include) |
||||
|
INCLUDE_DIRECTORIES(/usr/lib/x86_64-linux-gnu/glib-2.0/include) |
||||
|
INCLUDE_DIRECTORIES(/usr/lib/aarch64-linux-gnu/glib-2.0/include) |
||||
|
|
||||
|
add_executable(client client.c ${PROJECT_SOURCE_DIR}/gdbus/gdbus_demo_gen.c) |
||||
|
target_link_libraries(client rt pthread gio-2.0 glib-2.0 gobject-2.0 gmodule-2.0 gthread-2.0) |
@ -0,0 +1,59 @@ |
|||||
|
#include "client.h" |
||||
|
|
||||
|
// 发送平方计算
|
||||
|
static void send_num(gint input_arg, gint *output_arg, GError **error) { |
||||
|
com_gdbus_demo_call_send_int_sync(proxy, input_arg, output_arg, NULL, error); // 发送请求
|
||||
|
if (*error != NULL) { // 发送请求失败
|
||||
|
g_print("Failed to call method: %s.\n", (*error)->message); |
||||
|
g_error_free(*error); |
||||
|
} |
||||
|
g_print("Return -> %d\n", *output_arg); |
||||
|
} |
||||
|
|
||||
|
// 发送文本请求
|
||||
|
static void send_text(const gchar *input_arg, gchar **output_arg, GError **error) { |
||||
|
com_gdbus_demo_call_send_text_sync(proxy, input_arg, output_arg, NULL, error); // 发送请求
|
||||
|
if (*error != NULL) { // 发送请求失败
|
||||
|
g_print("Failed to call method: %s.\n", (*error)->message); |
||||
|
g_error_free(*error); |
||||
|
} |
||||
|
g_print("Return -> %s\n", *output_arg); |
||||
|
g_free(*output_arg); |
||||
|
} |
||||
|
|
||||
|
// 初始化DBus连接
|
||||
|
bool init_dbus_client() { |
||||
|
GError *proxy_error = NULL; |
||||
|
GError *connect_error = NULL; |
||||
|
connection = g_bus_get_sync(G_BUS_TYPE_SESSION, NULL, &connect_error); // 建立连接
|
||||
|
if (connect_error != NULL) { // 连接失败
|
||||
|
g_print("Failed to connect dbus: %s.\n", connect_error->message); |
||||
|
g_error_free(connect_error); |
||||
|
return false; |
||||
|
} |
||||
|
proxy = com_gdbus_demo_proxy_new_sync(connection, G_DBUS_PROXY_FLAGS_NONE, "com.gdbus.demo", |
||||
|
"/com/gdbus/object", NULL, &proxy_error); // 创建Proxy
|
||||
|
if (proxy == 0) { // 创建Proxy失败
|
||||
|
g_print("Failed to create proxy: %s.\n", proxy_error->message); |
||||
|
g_error_free(proxy_error); |
||||
|
return false; |
||||
|
} |
||||
|
return true; |
||||
|
} |
||||
|
|
||||
|
int main() { |
||||
|
int num = 7; |
||||
|
char str[] = "PING"; |
||||
|
GError *error = NULL; |
||||
|
gint output_num; |
||||
|
gchar *output_text = NULL; |
||||
|
if (!init_dbus_client()) { // 初始化DBus失败
|
||||
|
return 0; |
||||
|
} |
||||
|
g_print("DBus init successfully.\n"); // DBus连接成功
|
||||
|
|
||||
|
g_print("Send -> %d | ", num); |
||||
|
send_num(num, &output_num, &error); |
||||
|
g_print("Send -> %s | ", str); |
||||
|
send_text(str, &output_text, &error); |
||||
|
} |
@ -0,0 +1,4 @@ |
|||||
|
cmake_minimum_required(VERSION 3.16) |
||||
|
|
||||
|
EXECUTE_PROCESS(COMMAND gdbus-codegen --generate-c-code |
||||
|
${PROJECT_SOURCE_DIR}/gdbus/gdbus_demo_gen ${PROJECT_SOURCE_DIR}/gdbus/interface.xml) |
@ -0,0 +1,13 @@ |
|||||
|
<?xml version="1.0" encoding="UTF-8"?> |
||||
|
<node> |
||||
|
<interface name="com.gdbus.demo"> |
||||
|
<method name="SendInt"> |
||||
|
<arg name="num" type="i" direction="in"/> |
||||
|
<arg name="square" type="i" direction="out"/> |
||||
|
</method> |
||||
|
<method name="SendText"> |
||||
|
<arg name="content" type="s" direction="in"/> |
||||
|
<arg name="response" type="s" direction="out"/> |
||||
|
</method> |
||||
|
</interface> |
||||
|
</node> |
@ -0,0 +1,19 @@ |
|||||
|
#ifndef _CLIENT_H_ |
||||
|
#define _CLIENT_H_ |
||||
|
|
||||
|
#include <string.h> |
||||
|
#include <stdlib.h> |
||||
|
#include <ctype.h> |
||||
|
#include <stdbool.h> |
||||
|
#include <stdio.h> |
||||
|
#include <glib.h> |
||||
|
#include <gio/gio.h> |
||||
|
#include "gdbus_demo_gen.h" |
||||
|
|
||||
|
static ComGdbusDemo *proxy = NULL; |
||||
|
static GDBusConnection *connection = NULL; |
||||
|
|
||||
|
bool init_dbus_client(); |
||||
|
static void send_text(const gchar*, gchar**, GError**); |
||||
|
|
||||
|
#endif |
@ -0,0 +1,23 @@ |
|||||
|
#ifndef _SERVER_H_ |
||||
|
#define _SERVER_H_ |
||||
|
|
||||
|
#include <string.h> |
||||
|
#include <stdlib.h> |
||||
|
#include <ctype.h> |
||||
|
#include <stdbool.h> |
||||
|
#include <glib.h> |
||||
|
#include <gio/gio.h> |
||||
|
#include "gdbus_demo_gen.h" |
||||
|
|
||||
|
static GMainLoop *main_loop = NULL; |
||||
|
static ComGdbusDemo *skeleton = NULL; |
||||
|
static GDBusConnection *connection = NULL; |
||||
|
|
||||
|
void init_dbus_server(); |
||||
|
static void* start_main_loop(void*); |
||||
|
static void gdbus_acquired_callback(GDBusConnection*, const gchar*, gpointer); |
||||
|
static void gdbus_name_acquired_callback(GDBusConnection*, const gchar*, gpointer); |
||||
|
static void gdbus_name_lost_callback(GDBusConnection*, const gchar*, gpointer); |
||||
|
static gboolean receive_text(ComGdbusDemo*, GDBusMethodInvocation*, const gchar*, gpointer); |
||||
|
|
||||
|
#endif |
@ -0,0 +1,13 @@ |
|||||
|
cmake_minimum_required(VERSION 3.16) |
||||
|
|
||||
|
INCLUDE_DIRECTORIES(${PROJECT_SOURCE_DIR}/includes) |
||||
|
INCLUDE_DIRECTORIES(${PROJECT_SOURCE_DIR}/gdbus) |
||||
|
INCLUDE_DIRECTORIES(/usr/include/glib-2.0) |
||||
|
INCLUDE_DIRECTORIES(/usr/include/gio-unix-2.0) |
||||
|
INCLUDE_DIRECTORIES(/usr/lib/glib-2.0/include) |
||||
|
INCLUDE_DIRECTORIES(/usr/lib/i386-linux-gnu/glib-2.0/include) |
||||
|
INCLUDE_DIRECTORIES(/usr/lib/x86_64-linux-gnu/glib-2.0/include) |
||||
|
INCLUDE_DIRECTORIES(/usr/lib/aarch64-linux-gnu/glib-2.0/include) |
||||
|
|
||||
|
add_executable(server server.c ${PROJECT_SOURCE_DIR}/gdbus/gdbus_demo_gen.c) |
||||
|
target_link_libraries(server rt pthread gio-2.0 glib-2.0 gobject-2.0 gmodule-2.0 gthread-2.0) |
@ -0,0 +1,70 @@ |
|||||
|
#include "server.h" |
||||
|
|
||||
|
// 进程主循环函数
|
||||
|
static void* start_main_loop(void* args) { |
||||
|
g_main_loop_run(main_loop); // 进入主循环
|
||||
|
} |
||||
|
|
||||
|
// 接收平方计算
|
||||
|
static gboolean receive_num(ComGdbusDemo *object, GDBusMethodInvocation *invocation, const gint *input, gpointer user_data) { |
||||
|
const gint num = input; |
||||
|
g_print("Receive num -> %d\n", input); |
||||
|
com_gdbus_demo_complete_send_int(object, invocation, num * num); |
||||
|
return true; |
||||
|
} |
||||
|
|
||||
|
// 接收请求文本
|
||||
|
static gboolean receive_text(ComGdbusDemo *object, GDBusMethodInvocation *invocation, const gchar *input, gpointer user_data) { |
||||
|
g_print("Receive text -> %s\n", input); |
||||
|
com_gdbus_demo_complete_send_text(object, invocation, "PONG"); // 返回数据
|
||||
|
return true; // 请求处理成功
|
||||
|
} |
||||
|
|
||||
|
// 如果无法建立与总线的连接会调用 name_lost_handler()
|
||||
|
// 如果无法获取 bus-name,会先调用 bus_acquired_handler(),再调用 name_lost_handler()
|
||||
|
// 如果已获得 bus-name ,会先调用 bus_acquired_handler(),再调用 name_acquired_handler()
|
||||
|
|
||||
|
// GDBus Acquired 回调
|
||||
|
static void gdbus_acquired_callback(GDBusConnection *callback_connection, const gchar *name, gpointer user_data) { |
||||
|
GError *error = NULL; |
||||
|
skeleton = com_gdbus_demo_skeleton_new(); |
||||
|
// 设置对象接口
|
||||
|
g_signal_connect(skeleton, "handle-send-int", G_CALLBACK(receive_num), NULL); |
||||
|
g_signal_connect(skeleton, "handle-send-text", G_CALLBACK(receive_text), NULL); |
||||
|
g_dbus_interface_skeleton_export(G_DBUS_INTERFACE_SKELETON(skeleton), callback_connection, |
||||
|
"/com/gdbus/object", &error); // 绑定到对象上
|
||||
|
if (error != 0) { |
||||
|
g_print("Failed to export object: %s.\n", error->message); |
||||
|
g_error_free(error); |
||||
|
g_main_loop_quit(main_loop); // 退出主循环
|
||||
|
return; |
||||
|
} |
||||
|
g_print("Skeleton load successfully.\n"); |
||||
|
} |
||||
|
|
||||
|
// GDBus Name Acquired 回调
|
||||
|
static void gdbus_name_acquired_callback(GDBusConnection *callback_connection, const gchar *name, gpointer user_data) { |
||||
|
g_print("Acquired bus-name success.\n"); |
||||
|
} |
||||
|
|
||||
|
// GDBus Name Lost 回调
|
||||
|
static void gdbus_name_lost_callback(GDBusConnection *callback_connection, const gchar *name, gpointer user_data) { |
||||
|
g_print("Name lost error: Failed to get bus-name.\n"); |
||||
|
g_main_loop_quit(main_loop); // 退出主循环
|
||||
|
} |
||||
|
|
||||
|
// 初始化DBus连接
|
||||
|
void init_dbus_server() { |
||||
|
main_loop = g_main_loop_new(NULL, FALSE); // 创建主循环对象
|
||||
|
// 申请 bus-name 并将结果给到回调函数
|
||||
|
g_bus_own_name(G_BUS_TYPE_SESSION, "com.gdbus.demo", G_BUS_NAME_OWNER_FLAGS_NONE, |
||||
|
&gdbus_acquired_callback, &gdbus_name_acquired_callback, |
||||
|
&gdbus_name_lost_callback, NULL, NULL); |
||||
|
} |
||||
|
|
||||
|
int main() { |
||||
|
pthread_t tid; |
||||
|
init_dbus_server(); // 初始化DBus
|
||||
|
pthread_create(&tid, NULL, start_main_loop, NULL); // 创建线程 进入主循环
|
||||
|
for (;;) {} // 死循环
|
||||
|
} |
Loading…
Reference in new issue