forked from holoplot/go-avahi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaddress-resolver.go
67 lines (53 loc) · 1.49 KB
/
address-resolver.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
package avahi
import (
"fmt"
dbus "github.com/godbus/dbus/v5"
)
// An AddressResolver resolves Address to IP addresses
type AddressResolver struct {
object dbus.BusObject
foundChannel chan Address
closeCh chan struct{}
}
// AddressResolverNew creates a new AddressResolver
func AddressResolverNew(conn *dbus.Conn, path dbus.ObjectPath) (AddressResolverInterface, error) {
c := new(AddressResolver)
c.object = conn.Object("org.freedesktop.Avahi", path)
c.foundChannel = make(chan Address)
c.closeCh = make(chan struct{})
return c, nil
}
var _ AddressResolverInterface = (*AddressResolver)(nil)
func (c *AddressResolver) FoundChannel() chan Address {
return c.foundChannel
}
func (c *AddressResolver) interfaceForMember(method string) string {
return fmt.Sprintf("%s.%s", "org.freedesktop.Avahi.AddressResolver", method)
}
func (c *AddressResolver) Free() {
if c.closeCh != nil {
close(c.closeCh)
}
c.object.Call(c.interfaceForMember("Free"), 0)
}
func (c *AddressResolver) GetObjectPath() dbus.ObjectPath {
return c.object.Path()
}
func (c *AddressResolver) DispatchSignal(signal *dbus.Signal) error {
if signal.Name == c.interfaceForMember("Found") {
var address Address
err := dbus.Store(signal.Body, &address.Interface, &address.Protocol,
&address.Aprotocol, &address.Address, &address.Name,
&address.Flags)
if err != nil {
return err
}
select {
case c.foundChannel <- address:
case <-c.closeCh:
close(c.foundChannel)
c.closeCh = nil
}
}
return nil
}