-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathservicebrowser.go
202 lines (179 loc) · 5.7 KB
/
servicebrowser.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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
// CGo binding for Avahi
//
// Copyright (C) 2024 and up by Alexander Pevzner ([email protected])
// See LICENSE for license terms and conditions
//
// Service browser
//
//go:build linux || freebsd
package avahi
import (
"context"
"runtime/cgo"
"sync/atomic"
"unsafe"
)
// #include <stdlib.h>
// #include <avahi-client/lookup.h>
//
// void serviceBrowserCallback (
// AvahiServiceBrowser *b,
// AvahiIfIndex interface,
// AvahiProtocol proto,
// AvahiBrowserEvent event,
// char *name,
// char *type,
// char *domain,
// AvahiLookupResultFlags flags,
// void *userdata);
import "C"
// ServiceBrowser reports available services of the specified type.
//
// Service type is a string that looks like "_http._tcp", "_ipp._tcp"
// and so on.
type ServiceBrowser struct {
clnt *Client // Owning Client
handle cgo.Handle // Handle to self
avahiBrowser *C.AvahiServiceBrowser // Underlying object
queue eventqueue[*ServiceBrowserEvent] // Event queue
closed atomic.Bool // Browser is closed
}
// ServiceBrowserEvent represents events, generated by the
// [ServiceBrowser].
type ServiceBrowserEvent struct {
Event BrowserEvent // Event code
IfIdx IfIndex // Network interface index
Proto Protocol // Network protocol
Err ErrCode // In a case of BrowserFailure
Flags LookupResultFlags // Lookup flags
InstanceName string // Service instance name
SvcType string // Service type
Domain string // Service domain
}
// NewServiceBrowser creates a new [ServiceBrowser].
//
// ServiceBrowser constantly monitors the network for the available
// services of specified type and reports discovered information as
// a series of [ServiceBrowserEvent] events via channel returned by the
// [ServiceBrowser.Chan]
//
// Technically speaking, ServiceBrowser monitors network for the PTR
// records with the name <svctype>.<domain>, with domain defaulted
// to "local". I.e., if requested svctype is the "_http._tcp" and
// domain is "", it will look for the PTR records with name
// "_http._tcp.local.".
//
// Function parameters:
// - clnt is the pointer to [Client]
// - ifidx is the network interface index. Use [IfIndexUnspec]
// to monitor all interfaces.
// - proto is the IP4/IP6 protocol, used as transport for queries. If
// set to [ProtocolUnspec], both protocols will be used.
// - svctype is the service type we are looking for (e.g., "_http._tcp")
// - domain is domain where service is looked. If set to "", the
// default domain is used, which depends on a avahi-daemon configuration
// and usually is ".local"
// - flags provide some lookup options. See [LookupFlags] for details.
//
// ServiceBrowser must be closed after use with the [ServiceBrowser.Close]
// function call.
func NewServiceBrowser(
clnt *Client,
ifidx IfIndex,
proto Protocol,
svctype, domain string,
flags LookupFlags) (*ServiceBrowser, error) {
// Initialize ServiceBrowser structure
browser := &ServiceBrowser{clnt: clnt}
browser.handle = cgo.NewHandle(browser)
browser.queue.init()
// Convert strings from Go to C
csvctype := C.CString(svctype)
defer C.free(unsafe.Pointer(csvctype))
var cdomain *C.char
if domain != "" {
cdomain = C.CString(domain)
defer C.free(unsafe.Pointer(cdomain))
}
// Create AvahiServiceBrowser
avahiClient := clnt.begin()
defer clnt.end()
browser.avahiBrowser = C.avahi_service_browser_new(
avahiClient,
C.AvahiIfIndex(ifidx),
C.AvahiProtocol(proto),
csvctype, cdomain,
C.AvahiLookupFlags(flags),
C.AvahiServiceBrowserCallback(C.serviceBrowserCallback),
unsafe.Pointer(&browser.handle),
)
if browser.avahiBrowser == nil {
browser.queue.Close()
browser.handle.Delete()
return nil, clnt.errno()
}
// Register self to be closed if Client is closed
browser.clnt.addCloser(browser)
return browser, nil
}
// Chan returns channel where [ServiceBrowserEvent]s are sent.
func (browser *ServiceBrowser) Chan() <-chan *ServiceBrowserEvent {
return browser.queue.Chan()
}
// Get waits for the next [ServiceBrowserEvent].
//
// It returns:
// - event, nil - if event available
// - nil, error - if context is canceled
// - nil, nil - if ServiceBrowser was closed
func (browser *ServiceBrowser) Get(ctx context.Context) (*ServiceBrowserEvent,
error) {
select {
case <-ctx.Done():
return nil, ctx.Err()
case evnt := <-browser.Chan():
return evnt, nil
}
}
// Close closes the [ServiceBrowser] and releases allocated resources.
// It closes the event channel, effectively unblocking pending readers.
//
// Note, double close is safe.
func (browser *ServiceBrowser) Close() {
if !browser.closed.Swap(true) {
browser.clnt.begin()
browser.clnt.delCloser(browser)
C.avahi_service_browser_free(browser.avahiBrowser)
browser.avahiBrowser = nil
browser.clnt.end()
browser.queue.Close()
browser.handle.Delete()
}
}
// serviceBrowserCallback called by AvahiServiceBrowser to
// report discovered services
//
//export serviceBrowserCallback
func serviceBrowserCallback(
b *C.AvahiServiceBrowser,
ifidx C.AvahiIfIndex,
proto C.AvahiProtocol,
event C.AvahiBrowserEvent,
instname, svctype, domain *C.char,
flags C.AvahiLookupResultFlags,
p unsafe.Pointer) {
browser := (*cgo.Handle)(p).Value().(*ServiceBrowser)
evnt := &ServiceBrowserEvent{
Event: BrowserEvent(event),
IfIdx: IfIndex(ifidx),
Proto: Protocol(proto),
Flags: LookupResultFlags(flags),
InstanceName: C.GoString(instname),
SvcType: C.GoString(svctype),
Domain: C.GoString(domain),
}
if evnt.Event == BrowserFailure {
evnt.Err = browser.clnt.errno()
}
browser.queue.Push(evnt)
}