-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvrpn_BaseClass.C
650 lines (540 loc) · 23 KB
/
vrpn_BaseClass.C
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
// vrpn_BaseClass.C
#include "vrpn_BaseClass.h"
#include <stdio.h>
#include <string.h>
#include "vrpn_Shared.h"
//#define VERBOSE
/** Definition of the system TextPrinter object that prints messages for
all created objects.
*/
vrpn_TextPrinter vrpn_System_TextPrinter;
vrpn_TextPrinter::vrpn_TextPrinter() :
d_first_watched_object(NULL),
d_ostream(stdout),
d_severity_to_print(vrpn_TEXT_WARNING),
d_level_to_print(0)
{
}
/** Deletes any callbacks that are still registered. */
vrpn_TextPrinter::~vrpn_TextPrinter()
{
/* XXX This code causes seg faults on exit,when it is trying to unregister
handlers, apparently from nonexistent connections. For now, this has
been removed; this will cause user code to segfault if they dynamically
create a vrpn_TextPrinter and then delete it. This is the more rare
case.
vrpn_TextPrinter_Watch_Entry *victim, *next;
vrpn_BaseClass *obj;
victim = d_first_watched_object;
while (victim != NULL) {
next = victim->next;
obj = victim->obj;
obj->connectionPtr()->unregister_handler(obj->d_text_message_id, text_message_handler, victim, obj->d_sender_id);
delete victim;
victim = next;
}
XXX */
}
/** Adds an object to the list of watched objects. Returns 0 on success and
-1 on failure. Registering a watched object is idempotent: doing so again
for an already-registered object has no effect, nor is it an error. Objects
are considered to be the same if they share the same connection and they have
the same service name. What we're going for here is to get only one print-out of any
message.
*/
int vrpn_TextPrinter::add_object(vrpn_BaseClass *o)
{
vrpn_TextPrinter_Watch_Entry *victim;
// Make sure we have an actual object.
if (o == NULL) {
fprintf(stderr, "vrpn_TextPrinter::add_object(): NULL pointer passed\n");
return -1;
}
#ifdef VERBOSE
printf( "vrpn_TextPrinter: adding object %s\n", o->d_servicename);
#endif
// If the object is already in the list, we are done. It is considered the same
// object if it has the same connection and the same service name.
victim = d_first_watched_object;
while (victim != NULL) {
if ( (o->d_connection == victim->obj->d_connection) &&
(strcmp( o->d_servicename, victim->obj->d_servicename) == 0) ) {
return 0;
}
victim = victim->next;
}
// Add the object to the beginning of the list.
if ( (victim = new vrpn_TextPrinter_Watch_Entry) == NULL) {
fprintf(stderr,"vrpn_TextPrinter::add_object(): out of memory\n");
return -1;
}
victim->obj = o;
victim->me = this;
victim->next = d_first_watched_object;
d_first_watched_object = victim;
// Register a callback for the object
if (o->d_connection->register_handler(o->d_text_message_id, text_message_handler, victim, o->d_sender_id) != 0) {
fprintf(stderr,"vrpn_TextPrinter::add_object(): Can't register callback\n");
d_first_watched_object = victim->next;
delete victim;
return -1;
}
return 0;
}
/** Removes an object from the list of watched objects. Returns 0 on success and
-1 on failure. Unregistering a non-watched object has no effect, nor is it an error. Objects
are considered to be the same if they share the same connection and they have
the same service name.
*/
void vrpn_TextPrinter::remove_object(vrpn_BaseClass *o)
{
vrpn_TextPrinter_Watch_Entry *victim, **snitch;
#ifdef VERBOSE
printf( "vrpn_TextPrinter: removing object %s\n", o->d_servicename);
#endif
// Make sure we have an actual object.
if (o == NULL) {
fprintf(stderr,"vrpn_TextPrinter::remove_object(): NULL pointer passed\n");
return;
}
// Find the entry in the list (if it is there).
snitch = &d_first_watched_object;
victim = *snitch;
while ( (victim != NULL) &&
( (o->d_connection != victim->obj->d_connection) ||
(strcmp( o->d_servicename, victim->obj->d_servicename) != 0) ) ) {
snitch = &( (*snitch)->next );
victim = victim->next;
}
// If the object is on the list, unregister its callback and delete it.
if (victim != NULL) {
// Unregister the callback for the object
if (o->d_connection->unregister_handler(o->d_text_message_id, text_message_handler, victim, o->d_sender_id) != 0) {
fprintf(stderr,"vrpn_TextPrinter::remove_object(): Can't unregister callback\n");
}
// Remove the entry from the list
*snitch = victim->next;
delete victim;
// We're done.
return;
}
// Object not in the list, so we're done.
return;
}
/** Prints out a text message that comes in, identifying the severity, level and sender of the
message. The message is not printed if the severity or level do not pass the threshold
for severity or level.
*/
int vrpn_TextPrinter::text_message_handler(void *userdata, vrpn_HANDLERPARAM p)
{
vrpn_TextPrinter_Watch_Entry *entry = (vrpn_TextPrinter_Watch_Entry *)userdata;
vrpn_TextPrinter *me = entry->me;
vrpn_BaseClass *obj = entry->obj;
vrpn_TEXT_SEVERITY severity;
vrpn_uint32 level;
char message[vrpn_MAX_TEXT_LEN];
#ifdef VERBOSE
printf( "vrpn_TextPrinter: text handler called\n");
#endif
// Make sure we have a valid ostream.
if (me->d_ostream == NULL) { return 0; };
// Decode the message
if (vrpn_BaseClassUnique::decode_text_message_from_buffer(message, &severity, &level, p.buffer) != 0) {
fprintf(stderr,"vrpn_TextPrinter::text_message_handler(): Can't decode message\n");
return -1;
}
// If the severity and level criteria pass, then print the annotated message.
// The printing is "VRPN", then one of Message/Warning/Error, then the level of the
// text, "from" the name of the service sending the message, and then the message.
if ( (severity > me->d_severity_to_print) ||
((severity == me->d_severity_to_print) && (level >= me->d_level_to_print) ) ) {
fprintf(me->d_ostream, "VRPN ");
switch (severity) {
case vrpn_TEXT_NORMAL:
fprintf(me->d_ostream, "Message\n");
break;
case vrpn_TEXT_WARNING:
fprintf(me->d_ostream, "Warning\n");
break;
case vrpn_TEXT_ERROR:
fprintf(me->d_ostream, "Error\n");
break;
default:
fprintf(me->d_ostream, "UNKNOWN SEVERITY\n");
break;
}
fprintf(me->d_ostream, " (%d) from %s: %s\n", level,
obj->d_connection->sender_name(p.sender), message);
}
return 0;
}
/** Assigns the connection passed in to the object, or else tries to
create a new connection based on the object name. If this succeeds,
it calls the sender and type registration routines for the object.
Sets the servicename field to be the part of the name coming before
the "@" sign in the name.
vrpn_BaseClassUnique is a virtual base class so it will only be called once, while
vrpn_BaseClass may be called multiple times.
Setting d_connection and d_servicename, only needs to be done once
for each object (even if it inherits from multiple device classes). So these
things should technically go into the vrpn_BaseClassUnique constructor, except that
it is unable to accept parameters. If the vrpn_BaseClassUnique constructor
*did* take the service-name, connnection, and use-ref-count parameters
then every derived class (not just those at the top level) would have to make
an explicit call to the vrpn_BaseClassUnique constructor. As it stands, these
derived classes will instead use the 0-parameter version of the vrpn_BaseClassUnique
constructor implicitly.
As a result, this constructor must make sure that it only executes the code therein once.
*/
vrpn_BaseClass::vrpn_BaseClass (const char * name, vrpn_Connection * c)
{
bool firstTimeCalled = (d_connection==NULL); // has the constructor been called before?
// note that this might also be true if it was called once before but failed.
if (firstTimeCalled)
{
// Get the connection for this object established. If the user passed in a
// NULL connection object, then we determine the connection from the name of
// the object itself (for example, [email protected] will make a
// connection to the machine mumble on the standard VRPN port).
//
// The vrpn_BassClassUnique destructor handles telling the connection we
// are no longer referring to it. Since we only add the reference once
// here (when d_connection is NULL), it is okay for the unique destructor
// to remove the reference.
if (c) { // using existing connection.
d_connection = c;
d_connection->addReference();
} else {
// This will implicitly add the reference to the connection.
d_connection = vrpn_get_connection_by_name(name);
}
// Get the part of the name for this device that does not include the connection.
// The vrpn_BassClassUnique destructor handles the deletion of the space.
d_servicename = vrpn_copy_service_name(name);
}
}
vrpn_BaseClass::~vrpn_BaseClass()
{
// Remove us from the list of objects with messages to be printed
vrpn_System_TextPrinter.remove_object(this);
}
/** This would normally be found in the constructor, but the constructor
cannot call virtual functions in the derived class (since it does not
yet exist). This function needs to be called at the beginning of the
constructor of each class that derives directly from vrpn_BaseClass
....(i.e. the top-level device classes such as Button, Analog, Tracker, etc)
*/
int vrpn_BaseClass::init(void)
{
// In the case of multiple inheritence from this base class, the rest of
// the code in this function will be executed each time init is called.
// If we have established a connection, then register the sender and types
// that this device type uses. If one of these fails, set the connection
// for this object to NULL to indicate failure, and print an error message.
if (d_connection) {
if (register_senders() || register_types()) {
fprintf(stderr,"vrpn_BaseClassUnique: Can't register IDs\n");
d_connection = NULL;
return -1;
}
}
// Register the text and ping/pong types, which will be available to all classes for use.
if (d_connection) {
d_text_message_id = d_connection->register_message_type("vrpn_Base text_message");
if (d_text_message_id == -1) {
fprintf(stderr,"vrpn_BaseClassUnique: Can't register Text type ID\n");
d_connection = NULL;
return -1;
}
d_ping_message_id = d_connection->register_message_type("vrpn_Base ping_message");
if (d_ping_message_id == -1) {
fprintf(stderr,"vrpn_BaseClassUnique: Can't register ping type ID\n");
d_connection = NULL;
return -1;
}
d_pong_message_id = d_connection->register_message_type("vrpn_Base pong_message");
if (d_pong_message_id == -1) {
fprintf(stderr,"vrpn_BaseClassUnique: Can't register pong type ID\n");
d_connection = NULL;
return -1;
}
}
// Sign us up with the standard print function.
if (d_connection) {
vrpn_System_TextPrinter.add_object(this);
}
if (d_connection == NULL) {
return -1;
} else {
return 0;
}
}
/** Registers the senders (usually only one, that part of the name of the
device coming after the "@" sign). For example, the sender for
[email protected] is Tracker0. Both the remote device and the
server device will register the same sender. If for some reason, there
is a different sender or more than one sender, this function should be
overridden by both the remote and server objects.
This routine returns 0 on success and -1 on failure.
*/
int vrpn_BaseClass::register_senders()
{
if (d_connection == NULL) {
return -1;
}
d_sender_id = d_connection->register_sender(d_servicename);
if (d_sender_id == -1) {
return -1;
} else {
return 0;
}
}
vrpn_BaseClassUnique::vrpn_BaseClassUnique() :
d_connection(NULL),
d_servicename(NULL),
d_num_autodeletions(0),
d_first_mainloop(1),
d_unanswered_ping(0),
d_flatline(0)
{
// Initialize variables
d_time_first_ping.tv_sec = d_time_first_ping.tv_usec = 0;
shutup = false; // don't surpress the "No response from server" messages
}
/** Unregister all of the message handlers that were to be autodeleted.
Delete space allocated in the constructor.
*/
vrpn_BaseClassUnique::~vrpn_BaseClassUnique ()
{
int i;
// Unregister all of the handlers that were to be autodeleted,
// if we have a connection.
if (d_connection != NULL) {
for (i = 0; i < d_num_autodeletions; i++) {
d_connection->unregister_handler(d_handler_autodeletion_record[i].type,
d_handler_autodeletion_record[i].handler, d_handler_autodeletion_record[i].userdata,
d_handler_autodeletion_record[i].sender);
}
d_num_autodeletions = 0;
}
// notify the connection that this object is no longer using it.
// This was added in the vrpn_BaseClass constructor for exactly one of the
// objects that are sharing this unique destructor.
if (d_connection!=NULL) {
d_connection->removeReference();
}
// Delete the space allocated in the constructor for the servicename
if (d_servicename) {
delete [] d_servicename;
}
}
/** This function is a wrapper for the vrpn_Connection register_handler()
routine. It also keeps track of all of the handlers registered by an
object and unregisters them automatically when the object is destroyed.
This routine should be used, rather than the Connection one, to ensure
that they are all unregistered. If they are not, and a message comes
in after the object is destroyed, it will likely cause a Segmentation
Violation.
The function returns 0 on success and -1 on failure.
*/
int vrpn_BaseClassUnique::register_autodeleted_handler(vrpn_int32 type,
vrpn_MESSAGEHANDLER handler, void *userdata,
vrpn_int32 sender)
{
// Make sure we have a Connection
if (d_connection == NULL) {
fprintf(stderr,"vrpn_BaseClassUnique::register_autodeleted_handler: "
"No vrpn_Connection.\n");
return -1;
}
// Make sure we have an empy entry to fill in.
if (d_num_autodeletions >= vrpn_MAX_BCADRS) {
fprintf(stderr,"vrpn_BaseClassUnique::register_autodeleted_handler: "
"Too many handlers registered. Increase vrpn_MAX_BCADRS "
"and recompile VRPN. Please report to [email protected].\n");
return -1;
}
// Fill in the values so we know what to delete, and bump the count
d_handler_autodeletion_record[d_num_autodeletions].handler = handler;
d_handler_autodeletion_record[d_num_autodeletions].sender = sender;
d_handler_autodeletion_record[d_num_autodeletions].type = type;
d_handler_autodeletion_record[d_num_autodeletions].userdata = userdata;
d_num_autodeletions++;
// Call the register command.
return d_connection->register_handler(type, handler, userdata, sender);
}
int vrpn_BaseClassUnique::encode_text_message_to_buffer (char * buf, vrpn_TEXT_SEVERITY severity,
vrpn_uint32 level, const char * msg)
{
char *bufptr = buf;
int buflen = 2 * sizeof(vrpn_int32) + vrpn_MAX_TEXT_LEN;
vrpn_uint32 severity_as_uint = severity;
// Send the type, level and string message
vrpn_buffer( &bufptr, &buflen, severity_as_uint );
vrpn_buffer( &bufptr, &buflen, level );
vrpn_buffer( &bufptr, &buflen, msg, -1 ); // -1 means "pack until NULL"
return 0;
}
int vrpn_BaseClassUnique::decode_text_message_from_buffer (char *msg, vrpn_TEXT_SEVERITY *severity,
vrpn_uint32 *level, const char *buf)
{
const char *bufptr = buf;
vrpn_uint32 severity_as_uint;
// Read the type, level and message
vrpn_unbuffer( &bufptr, &severity_as_uint );
*severity = (vrpn_TEXT_SEVERITY)(severity_as_uint);
vrpn_unbuffer( &bufptr, level );
vrpn_unbuffer( &bufptr, msg, -1 ); // -1 means "unpack until NULL"
return 0;
}
int vrpn_BaseClassUnique::send_text_message(const char *msg, struct timeval timestamp,
vrpn_TEXT_SEVERITY type,
vrpn_uint32 level)
{
char buffer [2 * sizeof(vrpn_int32) + vrpn_MAX_TEXT_LEN];
size_t len = strlen(msg)+1; // +1 is for the NULL terminator
if (len > vrpn_MAX_TEXT_LEN) {
fprintf(stderr,"vrpn_BaseClassUnique::send_message: Attempt to encode string that is too long\n");
return -1;
}
// send type, level and message
encode_text_message_to_buffer(buffer, type, level, msg);
if (d_connection) {
d_connection->pack_message(sizeof(buffer), timestamp, d_text_message_id, d_sender_id,
buffer, vrpn_CONNECTION_RELIABLE);
}
return 0;
}
/** This routine handles functions that all servers should perform in their mainloop().
It should be called each time through by each server's mainloop() function.
Performed functions include:
Sending pong ("server is alive") messages so that clients can know if they have
connected to the server.
*/
void vrpn_BaseClassUnique::server_mainloop(void)
{
// Set up to handle pong message. This should be sent whenever there is
// a ping request from a client.
if (d_first_mainloop && (d_connection != NULL)) {
register_autodeleted_handler(d_ping_message_id, handle_ping, this, d_sender_id);
d_first_mainloop = 0;
}
}
/** This routine handles functions that all clients should perform in their mainloop().
It should be called each time through a client's mainloop() function.
Performed functions include:
Handling the Ping/Pong messages that tell the client if the server is alive:
Client initiates ping/pong cycle when client is created and when its connection is dropped
This initiation is done the first time through client_mainloop()
It is done again in a handler for the "dropped_connection" system message
During ping/pong cycle, client sends ping requests once/second and waits for response
At the start of the cycle, d_unanswered_ping is set to 1 and d_first_ping_time is set
Handler for pong message sets d_unanswered_ping to 0 when we get one
Prints warning messages every second after 3+ seconds with no pong
Prints error messages every second after 10+ seconds with no pong (flatlined)
Server responds to ping message with pong message
Handler for ping set up the first time through server_mainloop()
*/
void vrpn_BaseClassUnique::client_mainloop(void)
{
struct timeval now;
struct timeval diff;
// The first time through, set up a callback handler for the pong message so that we
// know when we are getting them. Also set up a handler for the system dropped-connection
// message so that we can initiate a ping cycle when that happens. Also, we'll initiate
// the ping cycle here.
if (d_first_mainloop && (d_connection != NULL)) {
// Set up handlers for the pong message and for the system connection-drop message
register_autodeleted_handler(d_pong_message_id, handle_pong, this, d_sender_id);
register_autodeleted_handler(d_connection->register_message_type(vrpn_dropped_connection),
handle_connection_dropped, this);
// Initiate a ping cycle;
initiate_ping_cycle();
// No longer first time through mainloop.
d_first_mainloop = 0;
}
// If we are in the middle of a ping cycle...
// Check if we've heard, if it has been long enough since we gave a warning or error (>= 1 sec).
// If it has been three seconds or more since we sent our first ping,
// start giving warnings. If it has been ten seconds or more since we got one,
// switch to errors. New ping requests go out each second.
if (d_unanswered_ping) {
vrpn_gettimeofday(&now, NULL);
diff = vrpn_TimevalDiff(now, d_time_last_warned);
vrpn_TimevalNormalize(diff);
if (diff.tv_sec >= 1) {
// Send a new ping, since it has been a second since the last one
d_connection->pack_message(0, now, d_ping_message_id, d_sender_id,
NULL, vrpn_CONNECTION_RELIABLE);
// Send another warning or error, and say if we're flatlined (10+ seconds)
d_time_last_warned = now;
if (!shutup) {
diff = vrpn_TimevalDiff(now, d_time_first_ping);
vrpn_TimevalNormalize(diff);
if (diff.tv_sec >= 10) {
send_text_message("No response from server for >= 10 seconds", now, vrpn_TEXT_ERROR, diff.tv_sec);
d_flatline = 1;
} else if (diff.tv_sec >= 3) {
send_text_message("No response from server for >= 3 seconds", now, vrpn_TEXT_WARNING, diff.tv_sec);
}
}
}
}
}
void vrpn_BaseClassUnique::initiate_ping_cycle(void)
{
// Record when we sent the ping and say that we haven't gotten an answer
vrpn_gettimeofday(&d_time_first_ping, NULL);
d_connection->pack_message(0, d_time_first_ping, d_ping_message_id, d_sender_id,
NULL, vrpn_CONNECTION_RELIABLE);
d_unanswered_ping = 1;
// We didn't send a warning about this one yet...
d_time_last_warned.tv_sec = d_time_last_warned.tv_usec = 0;
}
/** Store the time at which the last pong occured. Used by client_mainloop() to keep
track of how long it has been since we got one. The callback for this handler is registered
in client_mainloop() the first time through.
*/
int vrpn_BaseClassUnique::handle_pong(void *userdata, vrpn_HANDLERPARAM p)
{
vrpn_BaseClassUnique *me = (vrpn_BaseClassUnique *)userdata;
me->d_unanswered_ping = 0;
// If we were flatlined, report that things are okay again.
if (me->d_flatline) {
me->send_text_message("Server connection re-established!", p.msg_time, vrpn_TEXT_ERROR);
me->d_flatline = 0;
}
return 0;
}
/** Respond with a "pong" (server is here) message, to the client "ping"
(is the server there?) message. This message handler is put in place for servers
the first time through server_mainloop(). See client_mainloop() header for a description
of the full algorithm.
*/
int vrpn_BaseClassUnique::handle_ping(void *userdata, vrpn_HANDLERPARAM)
{
vrpn_BaseClassUnique *me = (vrpn_BaseClassUnique *)userdata;
struct timeval now;
vrpn_gettimeofday(&now, NULL);
if (me->d_connection != NULL) {
me->d_connection->pack_message(0, now, me->d_pong_message_id, me->d_sender_id, NULL, vrpn_CONNECTION_RELIABLE);
}
return 0;
}
/** This handler is called by the client code when the system reports that the
connection has been dropped. It initiates a ping cycle, unless we are already
within a ping cycle.
*/
int vrpn_BaseClassUnique::handle_connection_dropped(void *userdata, vrpn_HANDLERPARAM)
{
vrpn_BaseClassUnique *me = (vrpn_BaseClassUnique *)userdata;
struct timeval now;
if (me->d_unanswered_ping != 0) {
return 0;
}
vrpn_gettimeofday(&now, NULL);
if (me->d_connection != NULL) {
me->initiate_ping_cycle();
}
return 0;
}