forked from socketplane/bonjour
-
Notifications
You must be signed in to change notification settings - Fork 0
/
service.go
85 lines (75 loc) · 2.82 KB
/
service.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
package bonjour
import (
"fmt"
"net"
)
// ServiceRecord contains the basic description of a service, which contains instance name, service type & domain
type ServiceRecord struct {
Instance string `json:"name"` // Instance name (e.g. "My web page")
Service string `json:"type"` // Service name (e.g. _http._tcp.)
Domain string `json:"domain"` // If blank, assumes "local"
// private variable populated on the first call to ServiceName()/ServiceInstanceName()
serviceName string `json:"-"`
serviceInstanceName string `json:"-"`
}
// Returns complete service name (e.g. _foobar._tcp.local.), which is composed
// from a service name (also referred as service type) and a domain.
func (s *ServiceRecord) ServiceName() string {
if s.serviceName == "" {
s.serviceName = fmt.Sprintf("%s.%s.", trimDot(s.Service), trimDot(s.Domain))
}
return s.serviceName
}
// Returns complete service instance name (e.g. MyDemo\ Service._foobar._tcp.local.),
// which is composed from service instance name, service name and a domain.
func (s *ServiceRecord) ServiceInstanceName() string {
// If no instance name provided we cannot compose service instance name
if s.Instance == "" {
return ""
}
// If not cached - compose and cache
if s.serviceInstanceName == "" {
s.serviceInstanceName = fmt.Sprintf("%s.%s", trimDot(s.Instance), s.ServiceName())
}
return s.serviceInstanceName
}
// Constructs a ServiceRecord structure by given arguments
func NewServiceRecord(instance, service, domain string) *ServiceRecord {
return &ServiceRecord{instance, service, domain, "", ""}
}
// LookupParams contains configurable properties to create a service discovery request
type LookupParams struct {
ServiceRecord
Entries chan<- *ServiceEntry // Entries Channel
}
// Constructs a LookupParams structure by given arguments
func NewLookupParams(instance, service, domain string, entries chan<- *ServiceEntry) *LookupParams {
return &LookupParams{
*NewServiceRecord(instance, service, domain),
entries,
}
}
// ServiceEntry represents a browse/lookup result for client API.
// It is also used to configure service registration (server API), which is
// used to answer multicast queries.
type ServiceEntry struct {
ServiceRecord
HostName string `json:"hostname"` // Host machine DNS name
Port int `json:"port"` // Service Port
Text []string `json:"text"` // Service info served as a TXT record
TTL uint32 `json:"ttl"` // TTL of the service record
AddrIPv4 net.IP `json:"-"` // Host machine IPv4 address
AddrIPv6 net.IP `json:"-"` // Host machine IPv6 address
}
// Constructs a ServiceEntry structure by given arguments
func NewServiceEntry(instance, service, domain string) *ServiceEntry {
return &ServiceEntry{
*NewServiceRecord(instance, service, domain),
"",
0,
[]string{},
0,
nil,
nil,
}
}