-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathntcore_c.h
1881 lines (1675 loc) · 55.7 KB
/
ntcore_c.h
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) FIRST and other WPILib contributors.
// Open Source Software; you can modify and/or share it under the terms of
// the WPILib BSD license file in the root directory of this project.
#pragma once
#include <stdint.h>
#ifdef __cplusplus
#include <cstddef>
#else
#include <stddef.h>
#endif
#ifdef __cplusplus
extern "C" {
#endif
/**
* @defgroup ntcore_c_api ntcore C API
*
* Handle-based interface for C.
*
* @{
*/
/** Typedefs */
typedef int NT_Bool;
typedef unsigned int NT_Handle;
typedef NT_Handle NT_ConnectionDataLogger;
typedef NT_Handle NT_DataLogger;
typedef NT_Handle NT_Entry;
typedef NT_Handle NT_Inst;
typedef NT_Handle NT_Listener;
typedef NT_Handle NT_ListenerPoller;
typedef NT_Handle NT_MultiSubscriber;
typedef NT_Handle NT_Topic;
typedef NT_Handle NT_Subscriber;
typedef NT_Handle NT_Publisher;
/** Default network tables port number (NT3) */
#define NT_DEFAULT_PORT3 1735
/** Default network tables port number (NT4) */
#define NT_DEFAULT_PORT4 5810
/** NetworkTables data types. */
enum NT_Type {
NT_UNASSIGNED = 0,
NT_BOOLEAN = 0x01,
NT_DOUBLE = 0x02,
NT_STRING = 0x04,
NT_RAW = 0x08,
NT_BOOLEAN_ARRAY = 0x10,
NT_DOUBLE_ARRAY = 0x20,
NT_STRING_ARRAY = 0x40,
NT_RPC = 0x80,
NT_INTEGER = 0x100,
NT_FLOAT = 0x200,
NT_INTEGER_ARRAY = 0x400,
NT_FLOAT_ARRAY = 0x800
};
/** NetworkTables entry flags. */
enum NT_EntryFlags { NT_PERSISTENT = 0x01, NT_RETAINED = 0x02 };
/** NetworkTables logging levels. */
enum NT_LogLevel {
NT_LOG_CRITICAL = 50,
NT_LOG_ERROR = 40,
NT_LOG_WARNING = 30,
NT_LOG_INFO = 20,
NT_LOG_DEBUG = 10,
NT_LOG_DEBUG1 = 9,
NT_LOG_DEBUG2 = 8,
NT_LOG_DEBUG3 = 7,
NT_LOG_DEBUG4 = 6
};
/** Client/server modes */
enum NT_NetworkMode {
NT_NET_MODE_NONE = 0x00, /* not running */
NT_NET_MODE_SERVER = 0x01, /* running in server mode */
NT_NET_MODE_CLIENT3 = 0x02, /* running in NT3 client mode */
NT_NET_MODE_CLIENT4 = 0x04, /* running in NT4 client mode */
NT_NET_MODE_STARTING = 0x08, /* flag for starting (either client or server) */
NT_NET_MODE_LOCAL = 0x10, /* running in local-only mode */
};
/** Event notification flags. */
enum NT_EventFlags {
NT_EVENT_NONE = 0,
/** Initial listener addition. */
NT_EVENT_IMMEDIATE = 0x01,
/** Client connected (on server, any client connected). */
NT_EVENT_CONNECTED = 0x02,
/** Client disconnected (on server, any client disconnected). */
NT_EVENT_DISCONNECTED = 0x04,
/** Any connection event (connect or disconnect). */
NT_EVENT_CONNECTION = NT_EVENT_CONNECTED | NT_EVENT_DISCONNECTED,
/** New topic published. */
NT_EVENT_PUBLISH = 0x08,
/** Topic unpublished. */
NT_EVENT_UNPUBLISH = 0x10,
/** Topic properties changed. */
NT_EVENT_PROPERTIES = 0x20,
/** Any topic event (publish, unpublish, or properties changed). */
NT_EVENT_TOPIC = NT_EVENT_PUBLISH | NT_EVENT_UNPUBLISH | NT_EVENT_PROPERTIES,
/** Topic value updated (via network). */
NT_EVENT_VALUE_REMOTE = 0x40,
/** Topic value updated (local). */
NT_EVENT_VALUE_LOCAL = 0x80,
/** Topic value updated (network or local). */
NT_EVENT_VALUE_ALL = NT_EVENT_VALUE_REMOTE | NT_EVENT_VALUE_LOCAL,
/** Log message. */
NT_EVENT_LOGMESSAGE = 0x100,
/** Time synchronized with server. */
NT_EVENT_TIMESYNC = 0x200,
};
/*
* Structures
*/
/** A NetworkTables string. */
struct NT_String {
/**
* String contents (UTF-8).
* The string is NOT required to be zero-terminated.
* When returned by the library, this is zero-terminated and allocated with
* std::malloc().
*/
char* str;
/**
* Length of the string in bytes. If the string happens to be zero
* terminated, this does not include the zero-termination.
*/
size_t len;
};
/** NetworkTables Entry Value. Note this is a typed union. */
struct NT_Value {
enum NT_Type type;
int64_t last_change;
int64_t server_time;
union {
NT_Bool v_boolean;
int64_t v_int;
float v_float;
double v_double;
struct NT_String v_string;
struct {
uint8_t* data;
size_t size;
} v_raw;
struct {
NT_Bool* arr;
size_t size;
} arr_boolean;
struct {
double* arr;
size_t size;
} arr_double;
struct {
float* arr;
size_t size;
} arr_float;
struct {
int64_t* arr;
size_t size;
} arr_int;
struct {
struct NT_String* arr;
size_t size;
} arr_string;
} data;
};
/** NetworkTables Topic Information */
struct NT_TopicInfo {
/** Topic handle */
NT_Topic topic;
/** Topic name */
struct NT_String name;
/** Topic type */
enum NT_Type type;
/** Topic type string */
struct NT_String type_str;
/** Topic properties JSON string */
struct NT_String properties;
};
/** NetworkTables Connection Information */
struct NT_ConnectionInfo {
/**
* The remote identifier (as set on the remote node by NT_StartClient4().
*/
struct NT_String remote_id;
/** The IP address of the remote node. */
struct NT_String remote_ip;
/** The port number of the remote node. */
unsigned int remote_port;
/**
* The last time any update was received from the remote node (same scale as
* returned by nt::Now()).
*/
uint64_t last_update;
/**
* The protocol version being used for this connection. This in protocol
* layer format, so 0x0200 = 2.0, 0x0300 = 3.0).
*/
unsigned int protocol_version;
};
/** NetworkTables value event data. */
struct NT_ValueEventData {
/** Topic handle. */
NT_Topic topic;
/** Subscriber/entry handle. */
NT_Handle subentry;
/** The new value. */
struct NT_Value value;
};
/** NetworkTables log message. */
struct NT_LogMessage {
/** Log level of the message. See NT_LogLevel. */
unsigned int level;
/** The filename of the source file that generated the message. */
char* filename;
/** The line number in the source file that generated the message. */
unsigned int line;
/** The message. */
char* message;
};
/** NetworkTables time sync event data. */
struct NT_TimeSyncEventData {
/**
* Offset between local time and server time, in microseconds. Add this value
* to local time to get the estimated equivalent server time.
*/
int64_t serverTimeOffset;
/** Measured round trip time divided by 2, in microseconds. */
int64_t rtt2;
/**
* If serverTimeOffset and RTT are valid. An event with this set to false is
* sent when the client disconnects.
*/
NT_Bool valid;
};
/** NetworkTables event */
struct NT_Event {
/** Listener that triggered this event. */
NT_Handle listener;
/**
* Event flags (NT_EventFlags). Also indicates the data included with the
* event:
* - NT_EVENT_CONNECTED or NT_EVENT_DISCONNECTED: connInfo
* - NT_EVENT_PUBLISH, NT_EVENT_UNPUBLISH, or NT_EVENT_PROPERTIES: topicInfo
* - NT_EVENT_VALUE_REMOTE, NT_NOTIFY_VALUE_LOCAL: valueData
* - NT_EVENT_LOGMESSAGE: logMessage
* - NT_EVENT_TIMESYNC: timeSyncData
*/
unsigned int flags;
/** Event data; content depends on flags. */
union {
struct NT_ConnectionInfo connInfo;
struct NT_TopicInfo topicInfo;
struct NT_ValueEventData valueData;
struct NT_LogMessage logMessage;
struct NT_TimeSyncEventData timeSyncData;
} data;
};
/** NetworkTables publish/subscribe options. */
struct NT_PubSubOptions {
/**
* Structure size. Must be set to sizeof(NT_PubSubOptions).
*/
unsigned int structSize;
/**
* Polling storage size for a subscription. Specifies the maximum number of
* updates NetworkTables should store between calls to the subscriber's
* ReadQueue() function. If zero, defaults to 1 if sendAll is false, 20 if
* sendAll is true.
*/
unsigned int pollStorage;
/**
* How frequently changes will be sent over the network, in seconds.
* NetworkTables may send more frequently than this (e.g. use a combined
* minimum period for all values) or apply a restricted range to this value.
* The default is 100 ms.
*/
double periodic;
/**
* For subscriptions, if non-zero, value updates for ReadQueue() are not
* queued for this publisher.
*/
NT_Publisher excludePublisher;
/**
* Send all value changes over the network.
*/
NT_Bool sendAll;
/**
* For subscriptions, don't ask for value changes (only topic announcements).
*/
NT_Bool topicsOnly;
/**
* Perform prefix match on subscriber topic names. Is ignored/overridden by
* Subscribe() functions; only present in struct for the purposes of getting
* information about subscriptions.
*/
NT_Bool prefixMatch;
/**
* Preserve duplicate value changes (rather than ignoring them).
*/
NT_Bool keepDuplicates;
/**
* For subscriptions, if remote value updates should not be queued for
* ReadQueue(). See also disableLocal.
*/
NT_Bool disableRemote;
/**
* For subscriptions, if local value updates should not be queued for
* ReadQueue(). See also disableRemote.
*/
NT_Bool disableLocal;
/**
* For entries, don't queue (for ReadQueue) value updates for the entry's
* internal publisher.
*/
NT_Bool excludeSelf;
};
/**
* @defgroup ntcore_instance_cfunc Instance Functions
* @{
*/
/**
* Get default instance.
* This is the instance used by non-handle-taking functions.
*
* @return Instance handle
*/
NT_Inst NT_GetDefaultInstance(void);
/**
* Create an instance.
*
* @return Instance handle
*/
NT_Inst NT_CreateInstance(void);
/**
* Destroy an instance.
* The default instance cannot be destroyed.
*
* @param inst Instance handle
*/
void NT_DestroyInstance(NT_Inst inst);
/**
* Get instance handle from another handle.
*
* @param handle handle
* @return Instance handle
*/
NT_Inst NT_GetInstanceFromHandle(NT_Handle handle);
/** @} */
/**
* @defgroup ntcore_table_cfunc Table Functions
* @{
*/
/**
* Get Entry Handle.
*
* @param inst instance handle
* @param name entry name (UTF-8 string)
* @param name_len length of name in bytes
* @return entry handle
*/
NT_Entry NT_GetEntry(NT_Inst inst, const char* name, size_t name_len);
/**
* Gets the name of the specified entry.
* Returns an empty string if the handle is invalid.
*
* @param entry entry handle
* @param name_len length of the returned string (output parameter)
* @return Entry name
*/
char* NT_GetEntryName(NT_Entry entry, size_t* name_len);
/**
* Gets the type for the specified key, or unassigned if non existent.
*
* @param entry entry handle
* @return Entry type
*/
enum NT_Type NT_GetEntryType(NT_Entry entry);
/**
* Gets the last time the entry was changed.
* Returns 0 if the handle is invalid.
*
* @param entry entry handle
* @return Entry last change time
*/
uint64_t NT_GetEntryLastChange(NT_Entry entry);
/**
* Get Entry Value.
*
* Returns copy of current entry value.
* Note that one of the type options is "unassigned".
*
* @param entry entry handle
* @param value storage for returned entry value
*
* It is the caller's responsibility to free value once it's no longer
* needed (the utility function NT_DisposeValue() is useful for this
* purpose).
*/
void NT_GetEntryValue(NT_Entry entry, struct NT_Value* value);
/**
* Set Default Entry Value.
*
* Returns copy of current entry value if it exists.
* Otherwise, sets passed in value, and returns set value.
* Note that one of the type options is "unassigned".
*
* @param entry entry handle
* @param default_value value to be set if name does not exist
* @return 0 on error (value not set), 1 on success
*/
NT_Bool NT_SetDefaultEntryValue(NT_Entry entry,
const struct NT_Value* default_value);
/**
* Set Entry Value.
*
* Sets new entry value. If type of new value differs from the type of the
* currently stored entry, returns error and does not update value.
*
* @param entry entry handle
* @param value new entry value
* @return 0 on error (type mismatch), 1 on success
*/
NT_Bool NT_SetEntryValue(NT_Entry entry, const struct NT_Value* value);
/**
* Set Entry Flags.
*
* @param entry entry handle
* @param flags flags value (bitmask of NT_EntryFlags)
*/
void NT_SetEntryFlags(NT_Entry entry, unsigned int flags);
/**
* Get Entry Flags.
*
* @param entry entry handle
* @return Flags value (bitmask of NT_EntryFlags)
*/
unsigned int NT_GetEntryFlags(NT_Entry entry);
/**
* Read Entry Queue.
*
* Returns new entry values since last call. The returned array must be freed
* using NT_DisposeValueArray().
*
* @param subentry subscriber or entry handle
* @param count count of items in returned array (output)
* @return entry value array; returns NULL and count=0 if no new values
*/
struct NT_Value* NT_ReadQueueValue(NT_Handle subentry, size_t* count);
/** @} */
/**
* @defgroup ntcore_topic_cfunc Topic Functions
* @{
*/
/**
* Get Published Topic Handles.
*
* Returns an array of topic handles. The results are optionally
* filtered by string prefix and type to only return a subset of all
* topics.
*
* @param inst instance handle
* @param prefix name required prefix; only topics whose name
* starts with this string are returned
* @param prefix_len length of prefix in bytes
* @param types bitmask of NT_Type values; 0 is treated specially
* as a "don't care"
* @param count output parameter; set to length of returned array
* @return Array of topic handles.
*/
NT_Topic* NT_GetTopics(NT_Inst inst, const char* prefix, size_t prefix_len,
unsigned int types, size_t* count);
/**
* Get Published Topic Handles.
*
* Returns an array of topic handles. The results are optionally
* filtered by string prefix and type to only return a subset of all
* topics.
*
* @param inst instance handle
* @param prefix name required prefix; only topics whose name
* starts with this string are returned
* @param prefix_len length of prefix in bytes
* @param types array of type strings
* @param types_len number of elements in types array
* @param count output parameter; set to length of returned array
* @return Array of topic handles.
*/
NT_Topic* NT_GetTopicsStr(NT_Inst inst, const char* prefix, size_t prefix_len,
const char* const* types, size_t types_len,
size_t* count);
/**
* Get Topics.
*
* Returns an array of topic information (handle, name, type). The results are
* optionally filtered by string prefix and type to only return a subset
* of all topics.
*
* @param inst instance handle
* @param prefix name required prefix; only topics whose name
* starts with this string are returned
* @param prefix_len length of prefix in bytes
* @param types bitmask of NT_Type values; 0 is treated specially
* as a "don't care"
* @param count output parameter; set to length of returned array
* @return Array of topic information.
*/
struct NT_TopicInfo* NT_GetTopicInfos(NT_Inst inst, const char* prefix,
size_t prefix_len, unsigned int types,
size_t* count);
/**
* Get Topics.
*
* Returns an array of topic information (handle, name, type). The results are
* optionally filtered by string prefix and type to only return a subset
* of all topics.
*
* @param inst instance handle
* @param prefix name required prefix; only topics whose name
* starts with this string are returned
* @param prefix_len length of prefix in bytes
* @param types array of type strings
* @param types_len number of elements in types array
* @param count output parameter; set to length of returned array
* @return Array of topic information.
*/
struct NT_TopicInfo* NT_GetTopicInfosStr(NT_Inst inst, const char* prefix,
size_t prefix_len,
const char* const* types,
size_t types_len, size_t* count);
/**
* Gets Topic Information.
*
* Returns information about a topic (name and type).
*
* @param topic handle
* @param info information (output)
* @return True if successful, false on error.
*/
NT_Bool NT_GetTopicInfo(NT_Topic topic, struct NT_TopicInfo* info);
/**
* Gets Topic Handle.
*
* Returns topic handle.
*
* @param inst instance handle
* @param name topic name
* @param name_len length of topic name in bytes
* @return Topic handle.
*/
NT_Topic NT_GetTopic(NT_Inst inst, const char* name, size_t name_len);
/**
* Gets the name of the specified topic.
*
* @param topic topic handle
* @param name_len length of topic name (output)
* @return Topic name; returns NULL and name_len=0 if the handle is invalid.
*/
char* NT_GetTopicName(NT_Topic topic, size_t* name_len);
/**
* Gets the type for the specified topic, or unassigned if non existent.
*
* @param topic topic handle
* @return Topic type
*/
enum NT_Type NT_GetTopicType(NT_Topic topic);
/**
* Gets the type string for the specified topic. This may have more information
* than the numeric type (especially for raw values).
*
* @param topic topic handle
* @param type_len length of type string (output)
* @return Topic type string; returns NULL if non-existent
*/
char* NT_GetTopicTypeString(NT_Topic topic, size_t* type_len);
/**
* Sets the persistent property of a topic. If true, the stored value is
* persistent through server restarts.
*
* @param topic topic handle
* @param value True for persistent, false for not persistent.
*/
void NT_SetTopicPersistent(NT_Topic topic, NT_Bool value);
/**
* Gets the persistent property of a topic.
*
* @param topic topic handle
* @return persistent property value
*/
NT_Bool NT_GetTopicPersistent(NT_Topic topic);
/**
* Sets the retained property of a topic. If true, the server retains the
* topic even when there are no publishers.
*
* @param topic topic handle
* @param value new retained property value
*/
void NT_SetTopicRetained(NT_Topic topic, NT_Bool value);
/**
* Gets the retained property of a topic.
*
* @param topic topic handle
* @return retained property value
*/
NT_Bool NT_GetTopicRetained(NT_Topic topic);
/**
* Determine if topic exists (e.g. has at least one publisher).
*
* @param handle Topic, entry, or subscriber handle.
* @return True if topic exists.
*/
NT_Bool NT_GetTopicExists(NT_Handle handle);
/**
* Gets the current value of a property (as a JSON string).
*
* @param topic topic handle
* @param name property name
* @param len length of returned string (output)
* @return JSON string; empty string if the property does not exist.
*/
char* NT_GetTopicProperty(NT_Topic topic, const char* name, size_t* len);
/**
* Sets a property value.
*
* @param topic topic handle
* @param name property name
* @param value property value (JSON string)
*/
NT_Bool NT_SetTopicProperty(NT_Topic topic, const char* name,
const char* value);
/**
* Deletes a property. Has no effect if the property does not exist.
*
* @param topic topic handle
* @param name property name
*/
void NT_DeleteTopicProperty(NT_Topic topic, const char* name);
/**
* Gets all topic properties as a JSON string. Each key in the object
* is the property name, and the corresponding value is the property value.
*
* @param topic topic handle
* @param len length of returned string (output)
* @return JSON string
*/
char* NT_GetTopicProperties(NT_Topic topic, size_t* len);
/**
* Updates multiple topic properties. Each key in the passed-in JSON object is
* the name of the property to add/update, and the corresponding value is the
* property value to set for that property. Null values result in deletion
* of the corresponding property.
*
* @param topic topic handle
* @param properties JSON object string with keys to add/update/delete
* @return False if properties are not a valid JSON object
*/
NT_Bool NT_SetTopicProperties(NT_Topic topic, const char* properties);
/**
* Creates a new subscriber to value changes on a topic.
*
* @param topic topic handle
* @param type expected type
* @param typeStr expected type string
* @param options subscription options
* @return Subscriber handle
*/
NT_Subscriber NT_Subscribe(NT_Topic topic, enum NT_Type type,
const char* typeStr,
const struct NT_PubSubOptions* options);
/**
* Stops subscriber.
*
* @param sub subscriber handle
*/
void NT_Unsubscribe(NT_Subscriber sub);
/**
* Creates a new publisher to a topic.
*
* @param topic topic handle
* @param type type
* @param typeStr type string
* @param options publish options
* @return Publisher handle
*/
NT_Publisher NT_Publish(NT_Topic topic, enum NT_Type type, const char* typeStr,
const struct NT_PubSubOptions* options);
/**
* Creates a new publisher to a topic.
*
* @param topic topic handle
* @param type type
* @param typeStr type string
* @param properties initial properties (JSON object)
* @param options publish options
* @return Publisher handle
*/
NT_Publisher NT_PublishEx(NT_Topic topic, enum NT_Type type,
const char* typeStr, const char* properties,
const struct NT_PubSubOptions* options);
/**
* Stops publisher.
*
* @param pubentry publisher/entry handle
*/
void NT_Unpublish(NT_Handle pubentry);
/**
* @brief Creates a new entry (subscriber and weak publisher) to a topic.
*
* @param topic topic handle
* @param type type
* @param typeStr type string
* @param options publish options
* @return Entry handle
*/
NT_Entry NT_GetEntryEx(NT_Topic topic, enum NT_Type type, const char* typeStr,
const struct NT_PubSubOptions* options);
/**
* Stops entry subscriber/publisher.
*
* @param entry entry handle
*/
void NT_ReleaseEntry(NT_Entry entry);
/**
* Stops entry/subscriber/publisher.
*
* @param pubsubentry entry/subscriber/publisher handle
*/
void NT_Release(NT_Handle pubsubentry);
/**
* Gets the topic handle from an entry/subscriber/publisher handle.
*
* @param pubsubentry entry/subscriber/publisher handle
* @return Topic handle
*/
NT_Topic NT_GetTopicFromHandle(NT_Handle pubsubentry);
/** @} */
/**
* @defgroup ntcore_advancedsub_cfunc Advanced Subscriber Functions
* @{
*/
/**
* Subscribes to multiple topics based on one or more topic name prefixes. Can
* be used in combination with a Value Listener or ReadQueueValue() to get value
* changes across all matching topics.
*
* @param inst instance handle
* @param prefixes topic name prefixes
* @param prefixes_len number of elements in prefixes array
* @param options subscriber options
* @return subscriber handle
*/
NT_MultiSubscriber NT_SubscribeMultiple(NT_Inst inst,
const struct NT_String* prefixes,
size_t prefixes_len,
const struct NT_PubSubOptions* options);
/**
* Unsubscribes a multi-subscriber.
*
* @param sub multi-subscriber handle
*/
void NT_UnsubscribeMultiple(NT_MultiSubscriber sub);
/** @} */
/**
* @defgroup ntcore_listener_cfunc Listener Functions
* @{
*/
/**
* Event listener callback function.
*
* @param data data pointer provided to callback creation function
* @param event event info
*/
typedef void (*NT_ListenerCallback)(void* data, const struct NT_Event* event);
/**
* Creates a listener poller.
*
* A poller provides a single queue of poll events. Events linked to this
* poller (using NT_AddPolledXListener()) will be stored in the queue and
* must be collected by calling NT_ReadListenerQueue().
* The returned handle must be destroyed with NT_DestroyListenerPoller().
*
* @param inst instance handle
* @return poller handle
*/
NT_ListenerPoller NT_CreateListenerPoller(NT_Inst inst);
/**
* Destroys a listener poller. This will abort any blocked polling
* call and prevent additional events from being generated for this poller.
*
* @param poller poller handle
*/
void NT_DestroyListenerPoller(NT_ListenerPoller poller);
/**
* Read notifications.
*
* @param poller poller handle
* @param len length of returned array (output)
* @return Array of events. Returns NULL and len=0 if no events since last
* call.
*/
struct NT_Event* NT_ReadListenerQueue(NT_ListenerPoller poller, size_t* len);
/**
* Removes a listener.
*
* @param listener Listener handle to remove
*/
void NT_RemoveListener(NT_Listener listener);
/**
* Wait for the listener queue to be empty. This is primarily useful
* for deterministic testing. This blocks until either the listener
* queue is empty (e.g. there are no more events that need to be passed along to
* callbacks or poll queues) or the timeout expires.
*
* @param handle handle
* @param timeout timeout, in seconds. Set to 0 for non-blocking behavior, or a
* negative value to block indefinitely
* @return False if timed out, otherwise true.
*/
NT_Bool NT_WaitForListenerQueue(NT_Handle handle, double timeout);
/**
* Create a listener for changes to topics with names that start with
* the given prefix. This creates a corresponding internal subscriber with the
* lifetime of the listener.
*
* @param inst Instance handle
* @param prefix Topic name string prefix
* @param prefix_len Length of topic name string prefix
* @param mask Bitmask of NT_EventFlags values (only topic and value events will
* be generated)
* @param data Data passed to callback function
* @param callback Listener function
* @return Listener handle
*/
NT_Listener NT_AddListenerSingle(NT_Inst inst, const char* prefix,
size_t prefix_len, unsigned int mask,
void* data, NT_ListenerCallback callback);
/**
* Create a listener for changes to topics with names that start with any of
* the given prefixes. This creates a corresponding internal subscriber with the
* lifetime of the listener.
*
* @param inst Instance handle
* @param prefixes Topic name string prefixes
* @param prefixes_len Number of elements in prefixes array
* @param mask Bitmask of NT_EventFlags values (only topic and value events will
* be generated)
* @param data Data passed to callback function
* @param callback Listener function
* @return Listener handle
*/
NT_Listener NT_AddListenerMultiple(NT_Inst inst,
const struct NT_String* prefixes,
size_t prefixes_len, unsigned int mask,
void* data, NT_ListenerCallback callback);
/**
* Create a listener.
*
* Some combinations of handle and mask have no effect:
* - connection and log message events are only generated on instances
* - topic and value events are only generated on non-instances
*
* Adding value and topic events on a topic will create a corresponding internal
* subscriber with the lifetime of the listener.
*
* Adding a log message listener through this function will only result in
* events at NT_LOG_INFO or higher; for more customized settings, use
* NT_AddLogger().
*
* @param handle Handle
* @param mask Bitmask of NT_EventFlags values
* @param data Data passed to callback function
* @param callback Listener function
* @return Listener handle
*/
NT_Listener NT_AddListener(NT_Handle handle, unsigned int mask, void* data,
NT_ListenerCallback callback);
/**
* Creates a polled topic listener. This creates a corresponding internal
* subscriber with the lifetime of the listener.
* The caller is responsible for calling NT_ReadListenerQueue() to poll.
*
* @param poller poller handle
* @param prefix UTF-8 string prefix
* @param prefix_len Length of UTF-8 string prefix
* @param mask NT_EventFlags bitmask (only topic and value events
* will be generated)
* @return Listener handle
*/
NT_Listener NT_AddPolledListenerSingle(NT_ListenerPoller poller,
const char* prefix, size_t prefix_len,