-
Notifications
You must be signed in to change notification settings - Fork 62
/
node.go
732 lines (616 loc) · 17.7 KB
/
node.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
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
/*
Package goroslib is a library in pure Go that allows to build clients (nodes)
for the Robot Operating System (ROS).
Examples are available at https://github.com/bluenviron/goroslib/tree/main/examples
*/
package goroslib
import (
"context"
"fmt"
"net"
"net/http"
"net/url"
"os"
"strconv"
"strings"
"sync"
"time"
"github.com/bluenviron/goroslib/v2/pkg/apimaster"
"github.com/bluenviron/goroslib/v2/pkg/apiparam"
"github.com/bluenviron/goroslib/v2/pkg/apislave"
"github.com/bluenviron/goroslib/v2/pkg/msgs/rosgraph_msgs"
"github.com/bluenviron/goroslib/v2/pkg/prototcp"
"github.com/bluenviron/goroslib/v2/pkg/protoudp"
)
const (
udpMTU = 1500
)
func urlToAddress(in string) (string, error) {
u, err := url.Parse(in)
if err != nil {
return "", err
}
return u.Host, nil
}
func findNodeHost(masterAddr *net.TCPAddr) string {
ifaces, err := net.Interfaces()
if err != nil {
return ""
}
for _, i := range ifaces {
addrs, err := i.Addrs()
if err != nil {
continue
}
for _, addr := range addrs {
if v, ok := addr.(*net.IPNet); ok {
if v.Contains(masterAddr.IP) {
return v.IP.String()
}
}
}
}
return ""
}
type getPublicationsReq struct {
res chan [][]string
}
type getBusInfoReq struct {
res chan apislave.ResponseGetBusInfo
}
type getBusInfoSubReq struct {
pbusInfo *[][]interface{}
done chan struct{}
}
type tcpConnSubscriberReq struct {
nconn net.Conn
tconn *prototcp.Conn
header *prototcp.HeaderSubscriber
}
type tcpConnServiceClientReq struct {
nconn net.Conn
tconn *prototcp.Conn
header *prototcp.HeaderServiceClient
}
type udpSubPublisherCloseReq struct {
sp *subscriberPublisher
done chan struct{}
}
type udpFrameReq struct {
frame *protoudp.Frame
source *net.UDPAddr
}
type subscriberPubUpdateReq struct {
topic string
urls []string
}
type subscriberRequestTopicReq struct {
req *apislave.RequestRequestTopic
res chan apislave.ResponseRequestTopic
}
type subscriberNewReq struct {
sub *Subscriber
res chan error
}
type publisherNewReq struct {
pub *Publisher
res chan error
}
type serviceProviderNewReq struct {
sp *ServiceProvider
res chan error
}
type simtimeSleep struct {
value time.Time
done chan time.Time
}
// NodeConf is the configuration of a Node.
type NodeConf struct {
// (optional) hostname (or ip) and port of the master node.
// It defaults to 127.0.0.1:11311
MasterAddress string
// (optional) namespace of this node.
// It defaults to '/' (global namespace).
Namespace string
// name of this node.
Name string
// (optional) hostname or ip of this node, needed by other nodes
// in order to communicate with it.
// It defaults to an automatic IP.
Host string
// (optional) port of the Slave API server of this node.
// It defaults to a random port.
ApislavePort int
// (optional) port of the TCPROS server of this node.
// It defaults to a random port.
TcprosPort int
// (optional) port of the UDPROS server of this node.
// It defaults to a random port.
UdprosPort int
// (optional) minimum severity level of log messages that will be
// written to stdout/stderr or sent to /rosout.
// It defaults to LogLevelInfo.
LogLevel LogLevel
// (optional) destinations of log messages.
// It defaults to LogDestinationConsole | LogDestinationRosout | LogDestinationCallback
LogDestinations LogDestination
// (optional) a function that will be called for every log message.
// It defaults to nil.
OnLog func(LogLevel, string)
// (optional) read timeout.
// It defaults to 10 seconds.
ReadTimeout time.Duration
// (optional) write timeout.
// It defaults to 5 seconds.
WriteTimeout time.Duration
args []string
}
// ErrNodeTerminated is the error when the node has been terminated.
var ErrNodeTerminated = fmt.Errorf("node terminated")
// Node is a ROS Node, an entity that can create subscribers, publishers, service providers,
// service clients, action servers and action clients.
type Node struct {
conf NodeConf
ctx context.Context
ctxCancel func()
httpClient *http.Client
masterAddr *net.TCPAddr
nodeAddr *net.TCPAddr
apiMasterClient *apimaster.Client
apiParamClient *apiparam.Client
apiSlaveServer *apislave.Server
tcprosListener net.Listener
udprosListener net.PacketConn
udprosConn *protoudp.Conn
tcprosConns map[net.Conn]struct{}
udprosSubPublishers map[*subscriberPublisher]struct{}
subscribers map[string]*Subscriber
publishers map[string]*Publisher
serviceProviders map[string]*ServiceProvider
publisherLastID int
rosoutPublisher *Publisher
simtimeEnabled bool
simtimeSubscriber *Subscriber
simtimeMutex sync.RWMutex
simtimeInitialized bool
simtimeValue time.Time
simtimeSleeps []*simtimeSleep
// in
getPublications chan getPublicationsReq
getBusInfo chan getBusInfoReq
tcpConnNew chan net.Conn
tcpConnClose chan net.Conn
tcpConnSubscriber chan tcpConnSubscriberReq
tcpConnServiceClient chan tcpConnServiceClientReq
udpSubPublisherNew chan *subscriberPublisher
udpSubPublisherClose chan udpSubPublisherCloseReq
udpFrame chan udpFrameReq
subscriberRequestTopic chan subscriberRequestTopicReq
subscriberNew chan subscriberNewReq
subscriberClose chan *Subscriber
subscriberPubUpdate chan subscriberPubUpdateReq
publisherNew chan publisherNewReq
publisherClose chan *Publisher
serviceProviderNew chan serviceProviderNewReq
serviceProviderClose chan *ServiceProvider
// out
done chan struct{}
}
// NewNode allocates a Node. See NodeConf for the options.
func NewNode(conf NodeConf) (*Node, error) {
if os.Getenv("ROS_NAMESPACE") != "" {
conf.Namespace = os.Getenv("ROS_NAMESPACE")
}
if conf.Namespace == "" {
conf.Namespace = "/"
}
if conf.Namespace[0] != '/' {
return nil, fmt.Errorf("Namespace must begin with a slash (/)")
}
if conf.Namespace != "/" && conf.Namespace[len(conf.Namespace)-1] == '/' {
return nil, fmt.Errorf("Namespace can't end with a slash (/)")
}
if conf.Name == "" {
return nil, fmt.Errorf("Name not provided")
}
if strings.ContainsRune(conf.Name, '/') {
return nil, fmt.Errorf("Name cannot contain slashes (/), use Namespace to set a namespace")
}
if len(conf.MasterAddress) == 0 {
conf.MasterAddress = "127.0.0.1:11311"
}
// support ROS-style master address, in order to increase interoperability
conf.MasterAddress = strings.TrimPrefix(conf.MasterAddress, "http://")
if conf.LogLevel == 0 {
conf.LogLevel = LogLevelInfo
}
if conf.LogDestinations == 0 {
conf.LogDestinations = LogDestinationConsole | LogDestinationCallback | LogDestinationRosout
}
if conf.ReadTimeout == 0 {
conf.ReadTimeout = 10 * time.Second
}
if conf.WriteTimeout == 0 {
conf.WriteTimeout = 5 * time.Second
}
if conf.args == nil {
conf.args = os.Args
}
// solve master address once
masterAddr, err := net.ResolveTCPAddr("tcp", conf.MasterAddress)
if err != nil {
return nil, fmt.Errorf("unable to solve master address: %w", err)
}
if masterAddr.Zone != "" {
return nil, fmt.Errorf("stateless IPv6 master addresses are not supported")
}
// find an ip in the same subnet of the master
if conf.Host == "" {
conf.Host = findNodeHost(masterAddr)
if conf.Host == "" {
return nil, fmt.Errorf("unable to set Host automatically")
}
}
// solve node host once
nodeAddr, err := net.ResolveTCPAddr("tcp", net.JoinHostPort(conf.Host, "0"))
if err != nil {
return nil, fmt.Errorf("unable to solve node host: %w", err)
}
if nodeAddr.Zone != "" {
return nil, fmt.Errorf("the node IP is a stateless IPv6, which is not supported")
}
ctx, ctxCancel := context.WithCancel(context.Background())
n := &Node{
conf: conf,
ctx: ctx,
ctxCancel: ctxCancel,
httpClient: &http.Client{
Timeout: conf.ReadTimeout,
},
masterAddr: masterAddr,
nodeAddr: nodeAddr,
tcprosConns: make(map[net.Conn]struct{}),
udprosSubPublishers: make(map[*subscriberPublisher]struct{}),
subscribers: make(map[string]*Subscriber),
publishers: make(map[string]*Publisher),
serviceProviders: make(map[string]*ServiceProvider),
simtimeValue: time.Unix(0, 0),
getPublications: make(chan getPublicationsReq),
getBusInfo: make(chan getBusInfoReq),
tcpConnNew: make(chan net.Conn),
tcpConnClose: make(chan net.Conn),
tcpConnSubscriber: make(chan tcpConnSubscriberReq),
tcpConnServiceClient: make(chan tcpConnServiceClientReq),
udpSubPublisherNew: make(chan *subscriberPublisher),
udpSubPublisherClose: make(chan udpSubPublisherCloseReq),
udpFrame: make(chan udpFrameReq),
subscriberRequestTopic: make(chan subscriberRequestTopicReq),
subscriberNew: make(chan subscriberNewReq),
subscriberClose: make(chan *Subscriber),
subscriberPubUpdate: make(chan subscriberPubUpdateReq),
publisherNew: make(chan publisherNewReq),
publisherClose: make(chan *Publisher),
serviceProviderNew: make(chan serviceProviderNewReq),
serviceProviderClose: make(chan *ServiceProvider),
done: make(chan struct{}),
}
n.conf.Name = n.applyCliRemapping(n.conf.Name)
n.apiMasterClient = apimaster.NewClient(masterAddr.String(), n.absoluteName(), n.httpClient)
n.apiParamClient = apiparam.NewClient(masterAddr.String(), n.absoluteName(), n.httpClient)
n.apiSlaveServer, err = apislave.NewServer(
net.JoinHostPort(nodeAddr.IP.String(), strconv.FormatInt(int64(conf.ApislavePort), 10)),
nodeAddr.IP, nodeAddr.Zone, conf.WriteTimeout)
if err != nil {
return nil, err
}
n.tcprosListener, err = net.Listen("tcp",
net.JoinHostPort(nodeAddr.IP.String(), strconv.FormatInt(int64(conf.TcprosPort), 10)))
if err != nil {
n.apiSlaveServer.Close()
return nil, err
}
n.udprosListener, err = net.ListenPacket("udp",
net.JoinHostPort(nodeAddr.IP.String(), strconv.FormatInt(int64(conf.UdprosPort), 10)))
if err != nil {
n.tcprosListener.Close()
n.apiSlaveServer.Close()
return nil, err
}
n.udprosConn = protoudp.NewConn(n.udprosListener)
go n.run()
n.rosoutPublisher, err = NewPublisher(PublisherConf{
Node: n,
Topic: "/rosout",
Msg: &rosgraph_msgs.Log{},
})
if err != nil {
n.Close()
return nil, err
}
n.Log(LogLevelDebug, "node '%s' created", n.absoluteName())
isSet, err := n.ParamIsSet("/use_sim_time")
if err != nil {
n.Close()
return nil, err
}
if isSet {
n.simtimeEnabled, err = n.ParamGetBool("/use_sim_time")
if err != nil {
n.Close()
return nil, err
}
}
if n.simtimeEnabled {
n.simtimeSubscriber, err = NewSubscriber(SubscriberConf{
Node: n,
Topic: "/clock",
Callback: func(msg *rosgraph_msgs.Clock) {
n.simtimeMutex.Lock()
defer n.simtimeMutex.Unlock()
// reinitialize sleeps if simulation time was not initialized before
if !n.simtimeInitialized {
n.simtimeInitialized = true
zero := time.Unix(0, 0)
for _, s := range n.simtimeSleeps {
s.value = msg.Clock.Add(s.value.Sub(zero))
}
}
n.simtimeValue = msg.Clock
for i := 0; i < len(n.simtimeSleeps); {
s := n.simtimeSleeps[i]
if !s.value.After(n.simtimeValue) {
close(s.done)
n.simtimeSleeps = append(n.simtimeSleeps[:i], n.simtimeSleeps[i+1:]...)
} else {
i++
}
}
},
})
if err != nil {
n.Close()
return nil, err
}
}
return n, nil
}
// Close closes a Node and all its resources.
func (n *Node) Close() {
n.ctxCancel()
<-n.done
n.Log(LogLevelDebug, "node '%s' destroyed", n.absoluteName())
}
func (n *Node) absoluteTopicName(topic string) string {
// topic is absolute
if topic[0] == '/' {
return topic
}
// topic is relative
if n.conf.Namespace == "/" {
return "/" + topic
}
return n.conf.Namespace + "/" + topic
}
func (n *Node) absoluteName() string {
if n.conf.Namespace == "/" {
return "/" + n.conf.Name
}
return n.conf.Namespace + "/" + n.conf.Name
}
func (n *Node) applyCliRemapping(v string) string {
for _, cliArg := range n.conf.args {
remapArg := strings.Split(cliArg, ":=")
if len(remapArg) == 2 { // only match ros remapping args chatter:=/talker
if v == remapArg[0] {
return remapArg[1]
}
}
}
return v
}
func (n *Node) tcprosURL() string {
return (&url.URL{
Scheme: "rosrpc",
Host: (&net.TCPAddr{
IP: n.nodeAddr.IP,
Port: n.tcprosListener.Addr().(*net.TCPAddr).Port,
Zone: n.nodeAddr.Zone,
}).String(),
}).String()
}
func (n *Node) run() {
defer close(n.done)
var serversWg sync.WaitGroup
serversWg.Add(3)
go n.runAPISlaveServer(&serversWg)
go n.runTcprosServer(&serversWg)
go n.runUdprosServer(&serversWg)
var clientsWg sync.WaitGroup
outer:
for {
select {
case req := <-n.getPublications:
res := [][]string{}
for _, pub := range n.publishers {
res = append(res, []string{
n.absoluteTopicName(pub.conf.Topic),
pub.msgType,
})
}
req.res <- res
case req := <-n.getBusInfo:
var busInfo [][]interface{}
for _, pub := range n.publishers {
done := make(chan struct{})
select {
case pub.getBusInfo <- getBusInfoSubReq{&busInfo, done}:
<-done
case <-pub.ctx.Done():
}
}
for _, sub := range n.subscribers {
done := make(chan struct{})
select {
case sub.getBusInfo <- getBusInfoSubReq{&busInfo, done}:
<-done
case <-sub.ctx.Done():
}
}
req.res <- apislave.ResponseGetBusInfo{
Code: 1,
BusInfo: busInfo,
}
case <-n.ctx.Done():
break outer
case conn := <-n.tcpConnNew:
n.tcprosConns[conn] = struct{}{}
clientsWg.Add(1)
go n.runTcprosServerConn(&clientsWg, conn)
case conn := <-n.tcpConnClose:
delete(n.tcprosConns, conn)
case req := <-n.tcpConnSubscriber:
// pass conn ownership to publisher, if exists
delete(n.tcprosConns, req.nconn)
pub, ok := n.publishers[req.header.Topic]
if !ok {
req.nconn.Close()
continue
}
select {
case pub.subscriberTCPNew <- req:
case <-pub.ctx.Done():
}
case req := <-n.tcpConnServiceClient:
// pass conn ownership to service provider, if exists
delete(n.tcprosConns, req.nconn)
sp, ok := n.serviceProviders[req.header.Service]
if !ok {
req.nconn.Close()
continue
}
select {
case sp.clientNew <- req:
case <-sp.ctx.Done():
}
case sp := <-n.udpSubPublisherNew:
n.udprosSubPublishers[sp] = struct{}{}
case req := <-n.udpSubPublisherClose:
delete(n.udprosSubPublishers, req.sp)
close(req.done)
case req := <-n.udpFrame:
for sp := range n.udprosSubPublishers {
if req.frame.ConnectionID == sp.udpID &&
(req.source.IP.Equal(sp.udpAddr.IP) ||
(sp.udpAddrIsLocal && sp.localIPs.contains(req.source.IP))) {
select {
case sp.udpFrame <- req.frame:
case <-sp.ctx.Done():
}
break
}
}
case req := <-n.subscriberRequestTopic:
pub, ok := n.publishers[req.req.Topic]
if !ok {
req.res <- apislave.ResponseRequestTopic{
Code: 0,
StatusMessage: "topic not found",
}
continue
}
select {
case pub.requestTopic <- subscriberRequestTopicReq{req.req, req.res}:
case <-pub.ctx.Done():
req.res <- apislave.ResponseRequestTopic{
Code: 0,
StatusMessage: "terminating",
}
}
case req := <-n.subscriberNew:
_, ok := n.subscribers[n.absoluteTopicName(req.sub.conf.Topic)]
if ok {
req.res <- fmt.Errorf("Topic %s already subscribed", req.sub.conf.Topic)
continue
}
uris, err := n.apiMasterClient.RegisterSubscriber(
n.absoluteTopicName(req.sub.conf.Topic),
req.sub.msgType,
n.apiSlaveServer.URL())
if err != nil {
req.res <- err
continue
}
n.subscribers[n.absoluteTopicName(req.sub.conf.Topic)] = req.sub
req.res <- nil
// send initial publishers list to subscriber
select {
case req.sub.subscriberPubUpdate <- uris:
case <-req.sub.ctx.Done():
}
case sub := <-n.subscriberClose:
delete(n.subscribers, n.absoluteTopicName(sub.conf.Topic))
case req := <-n.subscriberPubUpdate:
sub, ok := n.subscribers[req.topic]
if !ok {
continue
}
select {
case sub.subscriberPubUpdate <- req.urls:
case <-sub.ctx.Done():
}
case req := <-n.publisherNew:
_, ok := n.publishers[n.absoluteTopicName(req.pub.conf.Topic)]
if ok {
req.res <- fmt.Errorf("Topic %s already published", req.pub.conf.Topic)
continue
}
_, err := n.apiMasterClient.RegisterPublisher(
n.absoluteTopicName(req.pub.conf.Topic),
req.pub.msgType,
n.apiSlaveServer.URL())
if err != nil {
req.res <- err
continue
}
n.publisherLastID++
req.pub.id = n.publisherLastID
n.publishers[n.absoluteTopicName(req.pub.conf.Topic)] = req.pub
req.res <- nil
case pub := <-n.publisherClose:
delete(n.publishers, n.absoluteTopicName(pub.conf.Topic))
case req := <-n.serviceProviderNew:
_, ok := n.serviceProviders[n.absoluteTopicName(req.sp.conf.Name)]
if ok {
req.res <- fmt.Errorf("Service %s already provided", req.sp.conf.Name)
continue
}
err := n.apiMasterClient.RegisterService(
n.absoluteTopicName(req.sp.conf.Name),
n.tcprosURL(),
n.apiSlaveServer.URL())
if err != nil {
req.res <- err
continue
}
n.serviceProviders[n.absoluteTopicName(req.sp.conf.Name)] = req.sp
req.res <- nil
case sp := <-n.serviceProviderClose:
delete(n.serviceProviders, n.absoluteTopicName(sp.conf.Name))
}
}
n.ctxCancel()
n.apiSlaveServer.Close()
n.tcprosListener.Close()
n.udprosListener.Close()
serversWg.Wait()
for c := range n.tcprosConns {
c.Close()
}
clientsWg.Wait()
if n.simtimeSubscriber != nil {
n.simtimeSubscriber.Close()
}
if n.rosoutPublisher != nil {
n.rosoutPublisher.Close()
}
}