-
Notifications
You must be signed in to change notification settings - Fork 65
Expand file tree
/
Copy pathNode.hh
More file actions
1002 lines (917 loc) · 45.2 KB
/
Copy pathNode.hh
File metadata and controls
1002 lines (917 loc) · 45.2 KB
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
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*
* Copyright (C) 2014 Open Source Robotics Foundation
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*/
#ifndef GZ_TRANSPORT_NODE_HH_
#define GZ_TRANSPORT_NODE_HH_
#include <memory>
#include <optional>
#include <string>
#include <unordered_set>
#include <vector>
#include "gz/transport/AdvertiseOptions.hh"
#include "gz/transport/config.hh"
#include "gz/transport/Export.hh"
#include "gz/transport/NodeOptions.hh"
#include "gz/transport/NodeShared.hh"
#include "gz/transport/Publisher.hh"
#include "gz/transport/SubscribeOptions.hh"
#include "gz/transport/SubscriptionHandler.hh"
#include "gz/transport/TopicStatistics.hh"
#include "gz/transport/TransportTypes.hh"
#include "gz/transport/WaitHelpers.hh"
namespace zenoh
{
// Forward declaration.
class LivelinessToken;
class Publisher;
}
namespace gz::transport
{
// Inline bracket to help doxygen filtering.
inline namespace GZ_TRANSPORT_VERSION_NAMESPACE {
//
// Forward declarations.
class NodePrivate;
/// \brief Get the capacity of the buffer (High Water Mark)
/// that stores incoming Gazebo Transport messages. Note that this is a
/// global queue shared by all subscribers within the same process.
/// \return The capacity of the buffer storing incoming messages (units are
/// messages). A value of 0 indicates an unlimited buffer and -1
/// that the socket cannot be queried. The default buffer size is
/// contained in the #kDefaultRcvHwm variable.
/// If the buffer is set to unlimited, then your buffer will grow until
/// you run out of memory (and probably crash).
/// If your buffer reaches the maximum capacity data will be dropped.
int GZ_TRANSPORT_VISIBLE rcvHwm();
/// \brief Get the capacity of the buffer (High Water Mark)
/// that stores outgoing Gazebo Transport messages. Note that this is a
/// global queue shared by all publishers within the same process.
/// \return The capacity of the buffer storing outgoing messages (units are
/// messages). A value of 0 indicates an unlimited buffer and -1
/// that the socket cannot be queried. The default buffer size is
/// contained in the #kDefaultSndHwm variable.
/// If the buffer is set to unlimited, then your buffer will grow until
/// you run out of memory (and probably crash).
/// If your buffer reaches the maximum capacity data will be dropped.
int GZ_TRANSPORT_VISIBLE sndHwm();
/// \brief Get the capacity (High Water Mark) of the queue that stores
/// messages to be delivered to local (intraprocess) subscribers. Note
/// that this limit is applied per topic.
/// \return The capacity of the local publication queue (units are
/// messages). A value of 0 indicates an unlimited queue, which will grow
/// until you run out of memory if the local subscribers cannot keep up
/// with the publication rate. The default capacity is contained in the
/// #kDefaultLocalHwm variable and can be changed with the
/// GZ_TRANSPORT_LOCAL_HWM environment variable.
/// When a topic reaches this capacity, its oldest queued message is
/// dropped to make room for a new one.
int GZ_TRANSPORT_VISIBLE localHwm();
/// \class Node Node.hh gz/transport/Node.hh
/// \brief A class that allows a client to communicate with other peers.
/// There are two main communication modes: pub/sub messages and service
/// calls.
class GZ_TRANSPORT_VISIBLE Node
{
class PublisherPrivate;
class SubscriberPrivate;
/// \brief A class that is used to store information about an
/// advertised publisher. An instance of this class is returned
/// from Node::Advertise, and should be used in subsequent
/// Node::Publisher::Publish calls.
///
/// ## Pseudo code example ##
///
/// auto pub = myNode.Advertise<MsgType>("topic_name");
/// if (pub)
/// {
/// MsgType msg;
///
/// // Note that this version of Publish will copy the message
/// // when publishing to interprocess subscribers.
/// pub.Publish(msg);
/// }
public: class GZ_TRANSPORT_VISIBLE Publisher
{
/// \brief Default constructor.
public: Publisher();
/// \brief Constructor.
/// \param[in] _publisher A message publisher.
public: explicit Publisher(const MessagePublisher &_publisher);
#ifdef HAVE_ZENOH
/// \brief Constructor.
/// \param[in] _publisher A message publisher.
/// \param[in] _zPublisher The zenoh publisher.
/// \param[in] _zToken The zenoh liveliness token.
public: explicit Publisher(const MessagePublisher &_publisher,
zenoh::Publisher &&_zPublisher,
zenoh::LivelinessToken &&_zToken);
#endif
/// \brief Destructor.
public: virtual ~Publisher();
/// \brief Allows this class to be evaluated as a boolean.
/// \return True if valid
/// \sa Valid
public: operator bool();
/// \brief Allows this class to be evaluated as a boolean (const).
/// \return True if valid
/// \sa Valid
public: operator bool() const;
/// \brief Return true if valid information, such as a non-empty
/// topic name, is present.
/// \return True if this object can be used in Publish() calls.
public: bool Valid() const;
/// \brief Publish a message. This function will copy the message
/// when publishing to interprocess subscribers. This copy is
/// necessary to facilitate asynchronous publication.
/// \param[in] _msg A google::protobuf message.
/// \return true when success.
public: bool Publish(const ProtoMsg &_msg);
/// \brief Publish a raw pre-serialized message.
///
/// \warning This function is only intended for advanced users. The
/// standard publishing function, Publish(const ProtoMsg &_msg), will
/// ensure that your message is correctly serialized. It is strongly
/// recommended that you use the standard publishing function unless
/// there is a specific reason for using this one (e.g. you are
/// forwarding or playing back data instead of serializing/deserializing
/// it). We currently only support the serialization scheme of protobuf.
///
/// \warning This function will copy the message data when
/// publishing to remote subscribers (interprocess communication).
///
/// \note This function will deserialize the message when sending it to
/// local (intraprocess) subscribers.
///
/// \param[in] _msgData A std::string that represents a
/// serialized google::protobuf message.
/// \param[in] _msgType A std::string that contains the message type
/// name.
/// \return true when success.
public: bool PublishRaw(
const std::string &_msgData,
const std::string &_msgType);
/// \brief Check if message publication is throttled. If so, verify
/// whether the next message should be published or not.
///
/// This may be used to skip resource or time-intensive operations
/// in the case that the message won't be published.
///
/// \return true if the message should be published or false otherwise.
/// Additionally always returns true if the topic is not throttled.
public: bool ThrottledUpdateReady() const;
/// \brief Check if message publication is throttled. If so, verify
/// whether the next message should be published or not.
/// \return true if the message should be published or false otherwise.
private: bool UpdateThrottling();
/// \brief Return true if this publisher has subscribers.
/// \return True if subscribers have connected to this publisher.
public: bool HasConnections() const;
/// \internal
/// \brief Smart pointer to private data.
/// This is std::shared_ptr because we want to trigger the destructor
/// only once: when all references to PublisherPrivate are out of scope.
/// The destructor of PublisherPrivate unadvertise the topic.
#ifdef _WIN32
// Disable warning C4251 which is triggered by
// std::shared_ptr
#pragma warning(push)
#pragma warning(disable: 4251)
#endif
private: std::shared_ptr<PublisherPrivate> dataPtr;
#ifdef _WIN32
#pragma warning(pop)
#endif
};
/// \brief A class that is used to store information about an
/// subscriber. An instance of this class is returned
/// from Node::CreateSubscribe. When the object is destroyed,
/// the corresponding subscription handler is removed from the node.
///
/// ## Pseudo code example ##
///
/// std::function<void(const msgs::Int32 &)> cb =
/// [](const msgs::Int32 &)
/// {
/// // Do something
/// };
/// Node::Subscriber sub = myNode.CreateSubscriber("topic_name", cb);
public: class GZ_TRANSPORT_VISIBLE Subscriber
{
/// \brief Default constructor.
public: Subscriber();
/// \brief Constructor
/// \param[in] _topic Subscribed topic name
/// \param[in] _nUuid Node to which this subscriber belongs
/// \param[in] _nOpts Node options for the node
/// \param[in] _hUuid Subscriber's handler UUID
public: Subscriber(const std::string &_topic,
const std::string &_nUuid,
const NodeOptions &_nOpts,
const std::string &_hUuid);
/// \brief Destructor.
/// Unsubscribe to the topic and remove the subcription handler
public: virtual ~Subscriber();
/// \brief Unsubscribe from the topic.
/// \return True if the topic was successfully unsubscribed
public: bool Unsubscribe();
/// \brief Allows this class to be evaluated as a boolean.
/// \return True if valid
/// \sa Valid
public: operator bool();
/// \brief Allows this class to be evaluated as a boolean (const).
/// \return True if valid
/// \sa Valid
public: operator bool() const;
/// \brief Move constructor
/// \param[in] _other The other Node::Subscriber
public: Subscriber(Subscriber &&_other);
/// \brief Move assignment operator
/// \param[in] _other The other Node::Subscriber
/// \return Reference to this
public: Node::Subscriber &operator=(Subscriber &&_other);
/// \brief Return true if valid information, such as a non-empty
/// topic name, node and handler UUIDs.
/// \return True if this object has a valid subscription.
public: bool Valid() const;
/// \internal
/// \brief Smart pointer to private data.
#ifdef _WIN32
// Disable warning C4251 which is triggered by
// std::shared_ptr
#pragma warning(push)
#pragma warning(disable: 4251)
#endif
private: std::shared_ptr<SubscriberPrivate> dataPtr;
#ifdef _WIN32
#pragma warning(pop)
#endif
};
/// \brief Default constructor.
/// \throws gz::transport::Exception if a Zenoh session cannot be opened
/// (e.g. when using client mode without a reachable router).
public: Node();
/// \brief Constructor.
/// \param[in] _options Node options.
/// \throws gz::transport::Exception if a Zenoh session cannot be opened
/// (e.g. when using client mode without a reachable router).
public: explicit Node(const NodeOptions &_options);
/// \brief Destructor.
public: virtual ~Node();
/// \brief Advertise a new topic. If a topic is currently advertised,
/// you cannot advertise it a second time (regardless of its type).
/// \param[in] _topic Topic name to be advertised.
/// \param[in] _options Advertise options.
/// \return A PublisherId, which can be used in Node::Publish calls.
/// The PublisherId also acts as boolean, where true occurs if the topic
/// was successfully advertised.
/// \sa AdvertiseOptions.
public: template<typename MessageT>
Node::Publisher Advertise(
const std::string &_topic,
const AdvertiseMessageOptions &_options = AdvertiseMessageOptions());
/// \brief Advertise a new topic. If a topic is currently advertised,
/// you cannot advertise it a second time (regardless of its type).
/// \param[in] _topic Topic name to be advertised.
/// \param[in] _msgTypeName Name of the message type that will be
/// published on the topic. The message type name can be retrieved
/// from a protobuf message using the GetTypeName() function.
/// \param[in] _options Advertise options.
/// \return A PublisherId, which can be used in Node::Publish calls.
/// The PublisherId also acts as boolean, where true occurs if the topic
/// was successfully advertised.
/// \sa AdvertiseOptions.
public: Node::Publisher Advertise(
const std::string &_topic,
const std::string &_msgTypeName,
const AdvertiseMessageOptions &_options = AdvertiseMessageOptions());
/// \brief Get the list of topics advertised by this node.
/// \return A vector containing all the topics advertised by this node.
public: std::vector<std::string> AdvertisedTopics() const;
/// \brief Subscribe to a topic registering a callback.
/// This is function is overloaded with different variants of callback
/// functions.
/// Supported function callbacks are:
/// * free function
/// * member function
/// * lambda function
/// The callback function can contain one (_msg) or both (_msg, _info) of
/// the following parameters:
/// * _msg Protobuf message containing a new topic update.
/// * _info Message information (e.g.: topic name).
/// \param[in] args Arguments to be forwarded to SubscribeImpl
/// \return true when successfully subscribed or false otherwise.
/// \sa SubscribeImpl
public: template <typename ...Args>
bool Subscribe(Args && ...args);
/// \brief Create a subscriber to a topic registering a callback
/// This is function is overloaded with different variants of callback
/// functions. It returns a Node::Subscriber object that maintains the
/// subscription while the object is alive. When the subscriber object
/// goes out of scope, it automatically unsubscribes to the topic,
/// removing just one single subscription handler from the node that it
/// belongs to.
/// Supported function callbacks are:
/// * free function
/// * member function
/// * lambda function
/// The callback function can contain one (_msg) or both (_msg, _info) of
/// the following parameters:
/// * _msg Protobuf message containing a new topic update.
/// * _info Message information (e.g.: topic name).
/// \param[in] _topic Topic to be subscribed.
/// \param[in] args Arguments to be forwarded to SubscribeImpl
/// \return true when successfully subscribed or false otherwise.
/// \sa SubscribeImpl
public: template <typename ...Args>
Node::Subscriber CreateSubscriber(const std::string &_topic,
Args && ...args);
/// \brief Get the list of topics subscribed by this node. Note that
/// we might be interested in one topic but we still don't know the
/// address of a publisher.
/// \return A vector containing the subscribed topics (even if we do not
/// have an address for a particular topic yet).
public: std::vector<std::string> SubscribedTopics() const;
/// \brief Unsubscribe from a topic.
/// \param[in] _topic Topic name to be unsubscribed.
/// \return true when successfully unsubscribed or false otherwise.
public: bool Unsubscribe(const std::string &_topic);
/// \brief Advertise a new service.
/// In this version the callback is a plain function pointer.
///
/// Multiple nodes can advertise the same service. When a request is
/// made, only one of the available service providers will handle it.
/// There is no guarantee of which provider will be selected. If one
/// provider becomes unavailable, the remaining providers can still
/// handle subsequent requests.
/// \param[in] _topic Topic name associated to the service.
/// \param[in] _callback Callback to handle the service request with the
/// following parameters:
/// * _request Protobuf message containing the request.
/// * _reply Protobuf message containing the response.
/// * Returns Service call result.
/// \param[in] _options Advertise options.
/// \return true when the topic has been successfully advertised or
/// false otherwise.
/// \sa AdvertiseOptions.
public: template<typename RequestT, typename ReplyT>
bool Advertise(
const std::string &_topic,
bool(*_callback)(const RequestT &_request, ReplyT &_reply),
const AdvertiseServiceOptions &_options = AdvertiseServiceOptions());
/// \brief Advertise a new service without input parameter.
/// In this version the callback is a free function.
///
/// Multiple nodes can advertise the same service. When a request is
/// made, only one of the available service providers will handle it.
/// There is no guarantee of which provider will be selected. If one
/// provider becomes unavailable, the remaining providers can still
/// handle subsequent requests.
/// \param[in] _topic Topic name associated to the service.
/// \param[in] _callback Callback to handle the service request with the
/// following parameters:
/// * _reply Protobuf message containing the response.
/// * Returns Service call result.
/// \param[in] _options Advertise options.
/// \return true when the topic has been successfully advertised or
/// false otherwise.
/// \sa AdvertiseOptions.
public: template<typename ReplyT>
bool Advertise(
const std::string &_topic,
bool(*_callback)(ReplyT &_reply),
const AdvertiseServiceOptions &_options = AdvertiseServiceOptions());
/// \brief Advertise a new service without any output parameter.
/// In this version the callback is a free function.
///
/// Multiple nodes can advertise the same service. When a request is
/// made, only one of the available service providers will handle it.
/// There is no guarantee of which provider will be selected. If one
/// provider becomes unavailable, the remaining providers can still
/// handle subsequent requests.
/// \param[in] _topic Topic name associated to the service.
/// \param[in] _callback Callback to handle the service request with the
/// following parameters:
/// * _request Protobuf message containing the request.
/// \param[in] _options Advertise options.
/// \return true when the topic has been successfully advertised or
/// false otherwise.
/// \sa AdvertiseOptions.
public: template<typename RequestT>
bool Advertise(
const std::string &_topic,
void(*_callback)(const RequestT &_request),
const AdvertiseServiceOptions &_options = AdvertiseServiceOptions());
/// \brief Advertise a new service.
/// In this version the callback is a lambda function.
///
/// Multiple nodes can advertise the same service. When a request is
/// made, only one of the available service providers will handle it.
/// There is no guarantee of which provider will be selected. If one
/// provider becomes unavailable, the remaining providers can still
/// handle subsequent requests.
/// \param[in] _topic Topic name associated to the service.
/// \param[in] _callback Callback to handle the service request with the
/// following parameters:
/// * _request Protobuf message containing the request.
/// * _reply Protobuf message containing the response.
/// * Returns Service call result.
/// \param[in] _options Advertise options.
/// \return true when the topic has been successfully advertised or
/// false otherwise.
/// \sa AdvertiseOptions.
public: template<typename RequestT, typename ReplyT>
bool Advertise(
const std::string &_topic,
std::function<bool(const RequestT &_request,
ReplyT &_reply)> _callback,
const AdvertiseServiceOptions &_options = AdvertiseServiceOptions());
/// \brief Advertise a new service without input parameter.
/// In this version the callback is a lambda function.
///
/// Multiple nodes can advertise the same service. When a request is
/// made, only one of the available service providers will handle it.
/// There is no guarantee of which provider will be selected. If one
/// provider becomes unavailable, the remaining providers can still
/// handle subsequent requests.
/// \param[in] _topic Topic name associated to the service.
/// \param[in] _callback Callback to handle the service request with the
/// following parameters:
/// * _reply Protobuf message containing the response.
/// * Returns Service call result.
/// \param[in] _options Advertise options.
/// \return true when the topic has been successfully advertised or
/// false otherwise.
/// \sa AdvertiseOptions.
public: template<typename ReplyT>
bool Advertise(
const std::string &_topic,
std::function<bool(ReplyT &_reply)> &_callback,
const AdvertiseServiceOptions &_options = AdvertiseServiceOptions());
/// \brief Advertise a new service without any output parameter.
/// In this version the callback is a lambda function.
///
/// Multiple nodes can advertise the same service. When a request is
/// made, only one of the available service providers will handle it.
/// There is no guarantee of which provider will be selected. If one
/// provider becomes unavailable, the remaining providers can still
/// handle subsequent requests.
/// \param[in] _topic Topic name associated to the service.
/// \param[in] _callback Callback to handle the service request with the
/// following parameters:
/// * _request Protobuf message containing the request.
/// \param[in] _options Advertise options.
/// \return true when the topic has been successfully advertised or
/// false otherwise.
/// \sa AdvertiseOptions.
public: template<typename RequestT>
bool Advertise(
const std::string &_topic,
std::function<void(const RequestT &_request)> &_callback,
const AdvertiseServiceOptions &_options = AdvertiseServiceOptions());
/// \brief Advertise a new service.
/// In this version the callback is a member function.
///
/// Multiple nodes can advertise the same service. When a request is
/// made, only one of the available service providers will handle it.
/// There is no guarantee of which provider will be selected. If one
/// provider becomes unavailable, the remaining providers can still
/// handle subsequent requests.
/// \param[in] _topic Topic name associated to the service.
/// \param[in] _callback Callback to handle the service request with the
/// following parameters:
/// * _request Protobuf message containing the request.
/// * _reply Protobuf message containing the response.
/// * Returns Service call result.
/// \param[in] _obj Instance containing the member function.
/// \param[in] _options Advertise options.
/// \return true when the topic has been successfully advertised or
/// false otherwise.
/// \sa AdvertiseOptions.
public: template<typename ClassT, typename RequestT, typename ReplyT>
bool Advertise(
const std::string &_topic,
bool(ClassT::*_callback)(const RequestT &_request, ReplyT &_reply),
ClassT *_obj,
const AdvertiseServiceOptions &_options = AdvertiseServiceOptions());
/// \brief Advertise a new service without input parameter.
/// In this version the callback is a member function.
///
/// Multiple nodes can advertise the same service. When a request is
/// made, only one of the available service providers will handle it.
/// There is no guarantee of which provider will be selected. If one
/// provider becomes unavailable, the remaining providers can still
/// handle subsequent requests.
/// \param[in] _topic Topic name associated to the service.
/// \param[in] _callback Callback to handle the service request with the
/// following parameters:
/// * _reply Protobuf message containing the response.
/// * Returns Service call result.
/// \param[in] _obj Instance containing the member function.
/// \param[in] _options Advertise options.
/// \return true when the topic has been successfully advertised or
/// false otherwise.
/// \sa AdvertiseOptions.
public: template<typename ClassT, typename ReplyT>
bool Advertise(
const std::string &_topic,
bool(ClassT::*_callback)(ReplyT &_reply),
ClassT *_obj,
const AdvertiseServiceOptions &_options = AdvertiseServiceOptions());
/// \brief Advertise a new service without any output parameter.
/// In this version the callback is a member function.
///
/// Multiple nodes can advertise the same service. When a request is
/// made, only one of the available service providers will handle it.
/// There is no guarantee of which provider will be selected. If one
/// provider becomes unavailable, the remaining providers can still
/// handle subsequent requests.
/// \param[in] _topic Topic name associated to the service.
/// \param[in] _callback Callback to handle the service request with the
/// following parameters:
/// * _request Protobuf message containing the request.
/// \param[in] _obj Instance containing the member function.
/// \param[in] _options Advertise options.
/// \return true when the topic has been successfully advertised or
/// false otherwise.
/// \sa AdvertiseOptions
public: template<typename ClassT, typename RequestT>
bool Advertise(
const std::string &_topic,
void(ClassT::*_callback)(const RequestT &_request),
ClassT *_obj,
const AdvertiseServiceOptions &_options = AdvertiseServiceOptions());
/// \brief Get the list of services advertised by this node.
/// \return A vector containing all services advertised by this node.
public: std::vector<std::string> AdvertisedServices() const;
/// \brief Request a new service using a non-blocking call.
/// In this version the callback is a free function.
/// \param[in] _topic Service name requested.
/// \param[in] _request Protobuf message containing the request's
/// parameters.
/// \param[in] _callback Pointer to the callback function executed when
/// the response arrives. The callback has the following parameters:
/// * _reply Protobuf message containing the response.
/// * _result Result of the service call. If false, there was
/// a problem executing your request.
/// \return true when the service call was successfully requested.
public: template<typename RequestT, typename ReplyT>
bool Request(
const std::string &_topic,
const RequestT &_request,
void(*_callback)(const ReplyT &_reply, const bool _result));
/// \brief Request a new service without input parameter using a
/// non-blocking call.
/// In this version the callback is a free function.
/// \param[in] _topic Service name requested.
/// \param[in] _callback Pointer to the callback function executed when
/// the response arrives. The callback has the following parameters:
/// * _reply Protobuf message containing the response.
/// * _result Result of the service call. If false, there was
/// a problem executing your request.
/// \return true when the service call was successfully requested.
public: template<typename ReplyT>
bool Request(
const std::string &_topic,
void(*_callback)(const ReplyT &_reply, const bool _result));
/// \brief Request a new service using a non-blocking call.
/// In this version the callback is a lambda function.
/// \param[in] _topic Service name requested.
/// \param[in] _request Protobuf message containing the request's
/// parameters.
/// \param[in] _callback Lambda function executed when the response
/// arrives. The callback has the following parameters:
/// * _reply Protobuf message containing the response.
/// * _result Result of the service call. If false, there was
/// a problem executing your request.
/// \return true when the service call was successfully requested.
public: template<typename RequestT, typename ReplyT>
bool Request(
const std::string &_topic,
const RequestT &_request,
std::function<void(const ReplyT &_reply,
const bool _result)> &_callback);
/// \brief Request a new service without input parameter using a
/// non-blocking call.
/// In this version the callback is a lambda function.
/// \param[in] _topic Service name requested.
/// \param[in] _callback Lambda function executed when the response
/// arrives. The callback has the following parameters:
/// * _reply Protobuf message containing the response.
/// * _result Result of the service call. If false, there was
/// a problem executing your request.
/// \return true when the service call was successfully requested.
public: template<typename ReplyT>
bool Request(
const std::string &_topic,
std::function<void(const ReplyT &_reply,
const bool _result)> &_callback);
/// \brief Request a new service using a non-blocking call.
/// In this version the callback is a member function.
/// \param[in] _topic Service name requested.
/// \param[in] _request Protobuf message containing the request's
/// parameters.
/// \param[in] _callback Pointer to the callback function executed when
/// the response arrives. The callback has the following parameters:
/// * _reply Protobuf message containing the response.
/// * _result Result of the service call. If false, there was
/// a problem executing your request.
/// \param[in] _obj Instance containing the member function.
/// \return true when the service call was successfully requested.
public: template<typename ClassT, typename RequestT, typename ReplyT>
bool Request(
const std::string &_topic,
const RequestT &_request,
void(ClassT::*_callback)(const ReplyT &_reply, const bool _result),
ClassT *_obj);
/// \brief Request a new service without input parameter using a
/// non-blocking call.
/// In this version the callback is a member function.
/// \param[in] _topic Service name requested.
/// \param[in] _callback Pointer to the callback function executed when
/// the response arrives. The callback has the following parameters:
/// * _reply Protobuf message containing the response.
/// * _result Result of the service call. If false, there was
/// a problem executing your request.
/// \param[in] _obj Instance containing the member function.
/// \return true when the service call was successfully requested.
public: template<typename ClassT, typename ReplyT>
bool Request(
const std::string &_topic,
void(ClassT::*_callback)(const ReplyT &_reply, const bool _result),
ClassT *_obj);
/// \brief Request a new service using a blocking call.
/// \param[in] _topic Service name requested.
/// \param[in] _request Protobuf message containing the request's
/// parameters.
/// \param[in] _timeout The request will timeout after '_timeout' ms.
/// \param[out] _reply Protobuf message containing the response.
/// \param[out] _result Result of the service call.
/// \return true when the request was executed or false if the timeout
/// expired.
public: template<typename RequestT, typename ReplyT>
bool Request(
const std::string &_topic,
const RequestT &_request,
const unsigned int &_timeout,
ReplyT &_reply,
bool &_result);
/// \brief Request a new service without input parameter using a blocking
/// call.
/// \param[in] _topic Service name requested.
/// \param[in] _timeout The request will timeout after '_timeout' ms.
/// \param[out] _reply Protobuf message containing the response.
/// \param[out] _result Result of the service call.
/// \return true when the request was executed or false if the timeout
/// expired.
public: template<typename ReplyT>
bool Request(
const std::string &_topic,
const unsigned int &_timeout,
ReplyT &_reply,
bool &_result);
/// \brief Request a new service without waiting for response.
/// \param[in] _topic Topic requested.
/// \param[in] _request Protobuf message containing the request's
/// parameters.
/// \return true when the service call was successfully requested.
public: template<typename RequestT>
bool Request(const std::string &_topic, const RequestT &_request);
/// \brief Request a new service using a blocking call. This request
/// function expects a serialized protobuf message as the request and
/// returns a serialized protobuf message as the response.
/// \param[in] _topic Service name requested.
/// \param[in] _request Protobuf message serialized into a string
/// containing the request's parameters.
/// \param[in] _requestType Message type of the request.
/// \param[in] _responseType Message type of the response.
/// \param[in] _timeout The request will timeout after '_timeout' ms.
/// \param[out] _response Serialized protobuf message containing the
/// response.
/// \param[out] _result Result of the service call.
/// \return true when the request was executed or false if the timeout
/// expired.
public: bool RequestRaw(const std::string &_topic,
const std::string &_request, const std::string &_requestType,
const std::string &_responseType, unsigned int _timeout,
std::string &_response,
bool &_result);
/// \brief Unadvertise a service.
/// \param[in] _topic Service name to be unadvertised.
/// \return true if the service was successfully unadvertised.
public: bool UnadvertiseSrv(const std::string &_topic);
/// \brief Get the list of topics currently advertised in the network.
/// Note that this function can block for some time if the
/// discovery is in its initialization phase.
/// The value of the "heartbeatInterval" constant, with a default
/// value of 1000 ms, sets the maximum blocking time period.
/// \param[out] _topics List of advertised topics.
public: void TopicList(std::vector<std::string> &_topics) const;
/// \brief Get the information about a topic.
/// \param[in] _topic Name of the topic.
/// \param[out] _publishers List of publishers on the topic.
/// \param[out] _subscribers List of subscribers on the topic.
/// \return False if unable to get topic info.
public: bool TopicInfo(const std::string &_topic,
std::vector<MessagePublisher> &_publishers,
std::vector<MessagePublisher> &_subscribers) const;
/// \brief Get the list of topics currently advertised in the network.
/// Note that this function can block for some time if the
/// discovery is in its initialization phase.
/// The value of the "heartbeatInterval" constant, with a default
/// value of 1000ms, sets the maximum blocking time period.
/// \param[out] _services List of advertised services.
public: void ServiceList(std::vector<std::string> &_services) const;
/// \brief Get the information about a service.
/// \param[in] _service Name of the service.
/// \param[out] _publishers List of publishers on the service.
/// \return False if unable to get service info.
public: bool ServiceInfo(
const std::string &_service,
std::vector<ServicePublisher> &_publishers) const;
/// \brief Subscribe to a topic registering a callback. The callback must
/// accept a std::string to represent the message data, and a MessageInfo
/// which provides metadata about the message.
/// \param[in] _topic Name of the topic to subscribe to
/// \param[in] _callback A function pointer or std::function object that
/// has a void return value and accepts two arguments:
/// (const std::string &_msgData, const MessageInfo &_info).
/// \param[in] _msgType The type of message to subscribe to. Using
/// kGenericMessageType (the default) will allow this subscriber to listen
/// to all message types. The callback function can identify the type for
/// each message by inspecting its const MessageInfo& input argument.
/// \param[in] _opts Options for subscribing.
/// \return True if subscribing was successful.
public: bool SubscribeRaw(
const std::string &_topic,
const RawCallback &_callback,
const std::string &_msgType = kGenericMessageType,
const SubscribeOptions &_opts = SubscribeOptions());
/// \brief Get the reference to the current node options.
/// \return Reference to the current node options.
public: const NodeOptions &Options() const;
/// \brief Turn topic statistics on or off.
/// \param[in] _topic The name of the topic on which to enable or disable
/// statistics.
/// \param[in] _enable True to enable statistics, false to disable.
/// \param[in] _publicationTopic Topic on which to publish statistics.
/// \param[in] _publicationRate Rate at which to publish statistics.
public: bool EnableStats(const std::string &_topic, bool _enable,
const std::string &_publicationTopic = "/statistics",
uint64_t _publicationRate = 1);
/// \brief Get the current statistics for a topic. Statistics must
/// have been enabled using the EnableStatistics function, otherwise
/// the return value will be std::nullopt.
/// \param[in] _topic The name of the topic to get statistics for.
/// return A TopicStatistics class, or std::nullopt if statistics were
/// not enabled.
public: std::optional<TopicStatistics> TopicStats(
const std::string &_topic) const;
/// \brief Adds a unicast relay IP. All nodes in this process will send
/// UDP unicast traffic to the address to connect networks when UDP
/// multicast traffic is not forwarded.
/// It's also possible to use the environment variable GZ_RELAY to add
/// relays.
/// \param[in] _relayAddress IPv4 address of the relay to add.
public: void AddGlobalRelay(const std::string& _relayAddress);
/// \brief Gets the relay addresses configured for all nodes in this
/// process.
/// \return The relay addresses.
public: std::vector<std::string> GlobalRelays() const;
/// \brief Get a pointer to the shared node (singleton shared by all the
/// nodes).
/// \return The pointer to the shared node.
private: NodeShared *Shared() const;
/// \brief Get the UUID of this node.
/// \return The node UUID.
private: const std::string &NodeUuid() const;
/// \brief Get the set of topics subscribed by this node.
/// \return The set of subscribed topics.
private: std::unordered_set<std::string> &TopicsSubscribed() const;
/// \brief Get the set of services advertised by this node.
/// \return The set of advertised services.
private: std::unordered_set<std::string> &SrvsAdvertised() const;
/// \brief Helper function for Subscribe.
/// \param[in] _fullyQualifiedTopic Fully qualified topic name
/// \return True on success.
private: bool SubscribeHelper(const std::string &_fullyQualifiedTopic);
/// \brief Subscribe to a topic registering a callback.
/// Note that this callback does not include any message information.
/// In this version the callback is a free function.
/// \param[in] _topic Topic to be subscribed.
/// \param[in] _callback Pointer to the callback function with the
/// following parameters:
/// * _msg Protobuf message containing a new topic update.
/// \param[in] _opts Subscription options.
/// \return true when successfully subscribed or false otherwise.
private: template<typename MessageT>
std::shared_ptr<SubscriptionHandler<MessageT>> SubscribeImpl(
const std::string &_topic,
void(*_callback)(const MessageT &_msg),
const SubscribeOptions &_opts = SubscribeOptions());
/// \brief Subscribe to a topic registering a callback.
/// Note that this callback does not include any message information.
/// In this version the callback is a lambda function.
/// \param[in] _topic Topic to be subscribed.
/// \param[in] _callback Lambda function with the following parameters:
/// * _msg Protobuf message containing a new topic update.
/// \param[in] _opts Subscription options.
/// \return true when successfully subscribed or false otherwise.
private: template<typename MessageT>
std::shared_ptr<SubscriptionHandler<MessageT>> SubscribeImpl(
const std::string &_topic,
std::function<void(const MessageT &_msg)> _callback,
const SubscribeOptions &_opts = SubscribeOptions());
/// \brief Subscribe to a topic registering a callback.
/// Note that this callback does not include any message information.
/// In this version the callback is a member function.
/// \param[in] _topic Topic to be subscribed.
/// \param[in] _callback Pointer to the callback function with the
/// following parameters:
/// * _msg Protobuf message containing a new topic update.
/// \param[in] _obj Instance containing the member function.
/// \param[in] _opts Subscription options.
/// \return true when successfully subscribed or false otherwise.
private: template<typename ClassT, typename MessageT>
std::shared_ptr<SubscriptionHandler<MessageT>> SubscribeImpl(
const std::string &_topic,
void(ClassT::*_callback)(const MessageT &_msg),
ClassT *_obj,
const SubscribeOptions &_opts = SubscribeOptions());
/// \brief Subscribe to a topic registering a callback.
/// Note that this callback includes message information.
/// In this version the callback is a free function.
/// \param[in] _topic Topic to be subscribed.
/// \param[in] _callback Pointer to the callback function with the
/// following parameters:
/// * _msg Protobuf message containing a new topic update.
/// * _info Message information (e.g.: topic name).
/// \param[in] _opts Subscription options.
/// \return true when successfully subscribed or false otherwise.
private: template<typename MessageT>
std::shared_ptr<SubscriptionHandler<MessageT>> SubscribeImpl(
const std::string &_topic,
void(*_callback)(const MessageT &_msg, const MessageInfo &_info),
const SubscribeOptions &_opts = SubscribeOptions());
/// \brief Subscribe to a topic registering a callback.
/// Note that this callback includes message information.
/// In this version the callback is a lambda function.
/// \param[in] _topic Topic to be subscribed.
/// \param[in] _callback Lambda function with the following parameters:
/// * _msg Protobuf message containing a new topic update.
/// * _info Message information (e.g.: topic name).
/// \param[in] _opts Subscription options.
/// \return true when successfully subscribed or false otherwise.
private: template<typename MessageT>
std::shared_ptr<SubscriptionHandler<MessageT>> SubscribeImpl(
const std::string &_topic,
std::function<void(const MessageT &_msg,
const MessageInfo &_info)> _callback,
const SubscribeOptions &_opts = SubscribeOptions());
/// \brief Subscribe to a topic registering a callback.
/// Note that this callback includes message information.
/// In this version the callback is a member function.
/// \param[in] _topic Topic to be subscribed.
/// \param[in] _callback Pointer to the callback function with the
/// following parameters:
/// * _msg Protobuf message containing a new topic update.
/// * _info Message information (e.g.: topic name).
/// \param[in] _obj Instance containing the member function.
/// \param[in] _opts Subscription options.
/// \return true when successfully subscribed or false otherwise.
private: template<typename ClassT, typename MessageT>
std::shared_ptr<SubscriptionHandler<MessageT>> SubscribeImpl(
const std::string &_topic,
void(ClassT::*_callback)(const MessageT &_msg,
const MessageInfo &_info),
ClassT *_obj,
const SubscribeOptions &_opts = SubscribeOptions());
#ifdef _WIN32
// Disable warning C4251 which is triggered by
// std::unique_ptr
#pragma warning(push)
#pragma warning(disable: 4251)
#endif
/// \internal
/// \brief Smart pointer to private data.
private: std::unique_ptr<transport::NodePrivate> dataPtr;
#ifdef _WIN32
#pragma warning(pop)
#endif
};
}
}
#include "gz/transport/detail/Node.hh"