-
Notifications
You must be signed in to change notification settings - Fork 0
/
servicetypebrowser.go
196 lines (174 loc) · 5.6 KB
/
servicetypebrowser.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
// 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 serviceTypeBrowserCallback (
// AvahiServiceTypeBrowser *b,
// AvahiIfIndex interface,
// AvahiProtocol proto,
// AvahiBrowserEvent event,
// char *type,
// char *domain,
// AvahiLookupResultFlags flags,
// void *userdata);
import "C"
// ServiceTypeBrowser reports available service types across the network.
//
// If you a looking for services of the particular type, probably you
// need to use [ServiceBrowser] instead.
type ServiceTypeBrowser struct {
clnt *Client // Owning Client
handle cgo.Handle // Handle to self
avahiBrowser *C.AvahiServiceTypeBrowser // Underlying object
queue eventqueue[*ServiceTypeBrowserEvent] // Event queue
closed atomic.Bool // Browser is closed
}
// ServiceTypeBrowserEvent represents events, generated by the
// [ServiceTypeBrowser].
type ServiceTypeBrowserEvent 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
SvcType string // Service type
Domain string // Service domain
}
// NewServiceTypeBrowser creates a new [ServiceTypeBrowser].
//
// ServiceTypeBrowser constantly monitors the network for available
// service types and reports discovered information as a series of
// [ServiceTypeBrowserEvent] events via channel returned by the
// [ServiceTypeBrowser.Chan].
//
// Technically speaking, NewServiceTypeBrowser monitors network for the
// PTR records with the name _services._dns-sd._udp.<domain>, with the
// domain defaulted to "local", which yields a list of all available
// services on the network. See [RFC6763, 9] for details.
//
// 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.
// - 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.
//
// ServiceTypeBrowser must be closed after use with the
// [ServiceTypeBrowser.Close] function call.
//
// [RFC6763, 9]: https://datatracker.ietf.org/doc/html/rfc6763#section-9
func NewServiceTypeBrowser(
clnt *Client,
ifidx IfIndex,
proto Protocol,
domain string,
flags LookupFlags) (*ServiceTypeBrowser, error) {
// Initialize ServiceTypeBrowser structure
browser := &ServiceTypeBrowser{clnt: clnt}
browser.handle = cgo.NewHandle(browser)
browser.queue.init()
// Convert strings from Go to C
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_type_browser_new(
avahiClient,
C.AvahiIfIndex(ifidx),
C.AvahiProtocol(proto),
cdomain,
C.AvahiLookupFlags(flags),
C.AvahiServiceBrowserCallback(C.serviceTypeBrowserCallback),
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 [ServiceTypeBrowserEvent]s are sent.
func (browser *ServiceTypeBrowser) Chan() <-chan *ServiceTypeBrowserEvent {
return browser.queue.Chan()
}
// Get waits for the next [ServiceTypeBrowserEvent].
//
// It returns:
// - event, nil - if event available
// - nil, error - if context is canceled
// - nil, nil - if ServiceTypeBrowser was closed
func (browser *ServiceTypeBrowser) Get(ctx context.Context) (
*ServiceTypeBrowserEvent, error) {
select {
case <-ctx.Done():
return nil, ctx.Err()
case evnt := <-browser.Chan():
return evnt, nil
}
}
// Close closes the [ServiceTypeBrowser] and releases allocated resources.
// It closes the event channel, effectively unblocking pending readers.
//
// Note, double close is safe.
func (browser *ServiceTypeBrowser) Close() {
if !browser.closed.Swap(true) {
browser.clnt.begin()
browser.clnt.delCloser(browser)
C.avahi_service_type_browser_free(browser.avahiBrowser)
browser.avahiBrowser = nil
browser.clnt.end()
browser.queue.Close()
browser.handle.Delete()
}
}
// serviceTypeBrowserCallback called by AvahiServiceTypeBrowser to
// report discovered services
//
//export serviceTypeBrowserCallback
func serviceTypeBrowserCallback(
b *C.AvahiServiceTypeBrowser,
ifidx C.AvahiIfIndex,
proto C.AvahiProtocol,
event C.AvahiBrowserEvent,
svctype, domain *C.char,
flags C.AvahiLookupResultFlags,
p unsafe.Pointer) {
browser := (*cgo.Handle)(p).Value().(*ServiceTypeBrowser)
evnt := &ServiceTypeBrowserEvent{
Event: BrowserEvent(event),
IfIdx: IfIndex(ifidx),
Proto: Protocol(proto),
Flags: LookupResultFlags(flags),
SvcType: C.GoString(svctype),
Domain: C.GoString(domain),
}
if evnt.Event == BrowserFailure {
evnt.Err = browser.clnt.errno()
}
browser.queue.Push(evnt)
}