在Go中导出DBus接口存在问题可能并不如预期的那样工作
来源:stackoverflow
时间:2024-03-26 16:00:32 349浏览 收藏
在 Go 中导出 DBus 接口时,如果一个接口包含多个方法,直接导出方法可能会导致只有最后一个导出的方法有效。为了解决此问题,需要定义一个新的数据类型,并通过该数据类型导出接口方法。此数据类型是一个空结构,可以处理所有内容。通过这种方法,所有接口方法都可以在 DBus 上被调用。
问题内容
首先向所有阅读本文的人问好,
我目前在实现 go dbus 接口时遇到问题。问题是我正在定义一个与方法“ping”和“zing”的接口,这似乎有效。但是,当我导出它们并想要调用它们(通过 d-feet)时,只有最后导出的方法才有效。因此,对于我的观点,导出功能一次仅导出一个方法并覆盖前一个方法。我也尝试使用 exportall 来实现,但这也不起作用。如果有人对我有想法或只是提示,那就太好了!
下面你可以看到我的源代码:
package main import ( "fmt" "os" "github.com/godbus/dbus" "github.com/godbus/dbus/introspect" ) type ping string func (p ping) Ping() (string, *dbus.Error) { fmt.Println(p) return string(p), nil } type zing string func (z zing) Zing() (string, *dbus.Error) { fmt.Println(z) return string(z), nil } func main() { conn, err := dbus.ConnectSystemBus() if err != nil { panic(err) } replyP, errP := conn.RequestName("test.Ping", dbus.NameFlagDoNotQueue) if errP != nil { panic(errP) } if replyP != dbus.RequestNameReplyPrimaryOwner { fmt.Fprintln(os.Stderr, "name already taken") os.Exit(1) } z := zing("Zong") p := ping("Pong") var intro = &introspect.Node{ //Name: "/", Interfaces: []introspect.Interface{ introspect.IntrospectData, { Name: "test.test", Methods: []introspect.Method{ { Name: "Zing", Args: []introspect.Arg{ {"out", "s", "out"}, }, }, { Name: "Ping", Args: []introspect.Arg{ {"out", "s", "out"}, }, }, }, }, }, } conn.Export(z, "/", "test.test") conn.Export(p, "/", "test.test") conn.Export(introspect.NewIntrospectable(intro), "/", "org.freedesktop.DBus.Introspectable") fmt.Printf("Listening on %s / %s ...\n", "test.test", "/...") select {} }
正确答案
关键是,当您有一个具有两种或多种方法的 dbus 接口时,您必须定义一种新的数据类型,然后再导出该数据类型。为此,我创建了一个新的类型 type ping struct{}
。它基本上是一个空结构,因此它可以处理所有内容。新类型发生在通过 dbus 调用的函数/方法的实现中。最后,您必须初始化并将其导出到 dbus p := ping{}
和 conn.export(p, "/", "test.test")
。
package main import ( "fmt" "os" "github.com/godbus/dbus" "github.com/godbus/dbus/introspect" ) type ping struct{} func (z ping) Ping(s string, i uint8) (*dbus.Error) { fmt.Println(s, i) return nil } func (p ping) Zing(t string) (*dbus.Error) { fmt.Println(t) return nil } func main() { conn, err := dbus.ConnectSystemBus() if err != nil { panic(err) } replyP, errP := conn.RequestName("test.Ping", dbus.NameFlagDoNotQueue) if errP != nil { panic(errP) } if replyP != dbus.RequestNameReplyPrimaryOwner { fmt.Fprintln(os.Stderr, "name already taken") os.Exit(1) } p := ping{} var intro = &introspect.Node{ Name: "/", Interfaces: []introspect.Interface{ introspect.IntrospectData, { Name: "test.test", Methods: []introspect.Method{ { Name: "Zing", Args: []introspect.Arg{ {"str", "s", "in"}, }, }, { Name: "Ping", Args: []introspect.Arg{ {"str", "s", "in"}, {"int", "y", "in"}, }, }, }, }, }, } conn.Export(p, "/", "test.test") conn.Export(introspect.NewIntrospectable(intro), "/", "org.freedesktop.DBus.Introspectable") fmt.Printf("Listening on %s / %s \n", "test.test", "/...") select {} }
好了,本文到此结束,带大家了解了《在Go中导出DBus接口存在问题可能并不如预期的那样工作》,希望本文对你有所帮助!关注golang学习网公众号,给大家分享更多Golang知识!
声明:本文转载于:stackoverflow 如有侵犯,请联系study_golang@163.com删除
相关阅读
更多>
-
502 收藏
-
502 收藏
-
501 收藏
-
501 收藏
-
501 收藏
最新阅读
更多>
-
139 收藏
-
204 收藏
-
325 收藏
-
477 收藏
-
486 收藏
-
439 收藏
-
357 收藏
-
352 收藏
-
101 收藏
-
440 收藏
-
212 收藏
-
143 收藏
课程推荐
更多>
-
- 前端进阶之JavaScript设计模式
- 设计模式是开发人员在软件开发过程中面临一般问题时的解决方案,代表了最佳的实践。本课程的主打内容包括JS常见设计模式以及具体应用场景,打造一站式知识长龙服务,适合有JS基础的同学学习。
- 立即学习 542次学习
-
- GO语言核心编程课程
- 本课程采用真实案例,全面具体可落地,从理论到实践,一步一步将GO核心编程技术、编程思想、底层实现融会贯通,使学习者贴近时代脉搏,做IT互联网时代的弄潮儿。
- 立即学习 508次学习
-
- 简单聊聊mysql8与网络通信
- 如有问题加微信:Le-studyg;在课程中,我们将首先介绍MySQL8的新特性,包括性能优化、安全增强、新数据类型等,帮助学生快速熟悉MySQL8的最新功能。接着,我们将深入解析MySQL的网络通信机制,包括协议、连接管理、数据传输等,让
- 立即学习 497次学习
-
- JavaScript正则表达式基础与实战
- 在任何一门编程语言中,正则表达式,都是一项重要的知识,它提供了高效的字符串匹配与捕获机制,可以极大的简化程序设计。
- 立即学习 487次学习
-
- 从零制作响应式网站—Grid布局
- 本系列教程将展示从零制作一个假想的网络科技公司官网,分为导航,轮播,关于我们,成功案例,服务流程,团队介绍,数据部分,公司动态,底部信息等内容区块。网站整体采用CSSGrid布局,支持响应式,有流畅过渡和展现动画。
- 立即学习 484次学习