summaryrefslogtreecommitdiff
path: root/comm/OLD/dgram.cc
blob: f6bc8da676ffd365e62961f844b04a5cb45ab682 (plain)
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
/*
 *	The Unix Channel
 *
 *	by Michel Beaudouin-Lafon
 *
 *	Copyright 1990-1993
 *	Laboratoire de Recherche en Informatique (LRI)
 *
 *	Reliable datagrams - to be updated
 *
 *	$Id$
 *	$CurLog$
 */

#include "MsgBuffer.h"
#include "dgram.h"
#include "error.h"
#include "Message.h"

#include <sys/ioctl.h>
#include <errno.h>
#include <stdlib.h>
#include <memory.h>

// needed only if DEBUG is active
#include <stdio.h>
#define DEBUG	//**//
bool	DGTrace = false;

#if defined(sun) && (defined(__svr4__) || defined(__SVR4))
#include <sys/filio.h>
#endif

/*?class UchDGRAM
The class \typ{UchDGRAM} is derived from \typ{UchDatagram}.
It adds to a datagram a simple protocol to ensure that all messages sent are received.
It does not prevent message duplication, neither does he ensure that the messages are
received in the order they are sent.

Each message is sent along with a tag number. The sender keeps each message it sends
until it receives an acknowledge for it.
When a message is received, an acknowledge is sent back.
Unacknowledged messages are resent at regular intervals.
If a message is not acknowledged after a given number of retries, it is simply discarded.
?*/

struct PENDING {
	UchMsgBuffer*	outBuf;
	pUchAddress	toAddr;
	short		retries;	// for pending
	lword		id;	// for input
	
	PENDING (UchMsgBuffer* b, UchAddress* a, int r = 0)	{ outBuf = b; toAddr = a; retries = r; id = 0;}
	~PENDING ()					{ delete outBuf; toAddr = 0; }
};

/*?hidden?*/
void
UchDGRAM_TIMER :: Handle (Millisecond)
{
if (DGTrace) printf ("*** TimeOut ***\n");
	dgram.Expired ();
}

/*?nodoc?*/
UchDGRAM_TIMER :: UchDGRAM_TIMER (UchDGRAM& dg)
: CcuBaseTimer (0),
  dgram (dg)
{
}

UchDGRAM_TIMER :: ~UchDGRAM_TIMER ()
{
}

/*?hidden?*/
void
UchDGRAM :: Init ()
{
	npending = 0;
	ninput = 0;
	fromAddr = 0;
	retry = 5;
	resend = false;
	locked = 0;
	timeout = 1000;
	sync = false;
}

/*?nextdoc?*/
UchDGRAM :: UchDGRAM ()
: pending (2), input (), timer (*this)
{
	Init ();
}

/*?
Same constructors as for the class \typ{UchDatagram};
?*/
UchDGRAM :: UchDGRAM (UchAddress* b, UchAddress* c)
: UchDatagram (b, c), pending (2), input (), timer (*this)
{
	Init ();
}

/*?
The destructor of \typ{UchDGRAM} discards all pending and input messages.
A derived class could call \fun{Drain} in its destructor to send all pending messages,
and it could call \fun{Receive} while \fun{NumInput} is non null.
?*/
UchDGRAM :: ~UchDGRAM ()
{
	timer.Stop ();
	if (! npending)
		return;
	CcuIdIterOf <PENDING> iter = pending;
	while (++iter) {
		RemovePending (iter.CurId ());
		if (! npending)
			break;
	}
	if (ninput) {
		CcuListIterOf <PENDING> li (input);
		while (++li)
			delete *li;

		input.Clear ();
	}
}

static const	byte DGRAM_ERR = 0;
static const	byte DGRAM_SEND = 1;
static const	byte DGRAM_ACK = 2;

//	GetInput reads an incoming message
//		if its an ack, it is processed
//		if it is a normal message, it is stored in the input list
//	CheckInput calls GetInput wile there is something to read
//	WaitInput returns when a message is in the input list
//	Wait waits for the acknowledge of a particular id

/*?hidden?*/
int
UchDGRAM :: GetInput (int len)
{
	UchMsgBuffer* buf = new UchMsgBuffer (len);
	int n;
	while ((n = UchDatagram :: Receive (*buf)) == -1 && errno == EINTR)
DEBUG	SysError (ErrWarn, "UchDGRAM::GetInput")
		;
	if (n < 0) {
		SysError (ErrWarn, "UchDGRAM::GetInput");
		delete buf;
		return DGRAM_ERR;
	}
DEBUG	if (DGTrace) printf ("UchDGRAM :: GetInput : received %d bytes\n", buf->BufLength ());
	
	lword id;
	buf->ReadLong (id);
	byte s;
	buf->ReadByte (s);
DEBUG	if (DGTrace) printf ("UchDGRAM :: GetInput : id %x byte %d\n", id, s);
	
	if (s == DGRAM_ACK) {
DEBUG	if (DGTrace) printf ("UchDGRAM :: GetInput : acknowledged %x\n", id);
		RemovePending (id);
		delete buf;
		return DGRAM_ACK;
	}
	
	PENDING* p = new PENDING (buf, FAddr);
	p->id = id;
	input.Append (p);
	ninput++;
	return DGRAM_SEND;
}

/*?hidden?*/
bool
UchDGRAM :: CheckInput ()
{
	// get any pending messages
	for (;;) {
		lword	np;
		if (ioctl (FilDes (), FIONREAD, (char*) &np) < 0)
			return false;
DEBUG	if (DGTrace) if (np) printf ("UchDGRAM :: CheckInput : FIONREAD says %d\n", np);
		if (np == 0)
			break;
		if (GetInput (int (np)) == DGRAM_ERR)
			return false;
	}
	return true;
}

/*?hidden?*/
bool
UchDGRAM :: WaitInput ()
{
	// check the input queue
	if (ninput)
		return true;
	
	// check pending input
	if (! CheckInput ())
		return false;
	
	// block until something
	while (! ninput)
		if (GetInput (2048) == DGRAM_ERR)	// *** arbitrary max size
			return false;
	return true;
}

/*?hidden?*/
bool
UchDGRAM :: Wait (lword id)
{
DEBUG	if (DGTrace) printf ("UchDGRAM::Wait %x\n", id);
	bool ret = false;
	bool loop = true;
	Lock ();
	
	PENDING* pend;
	while (loop) {
		if (! CheckInput ())
			break;
		
		// did we receive the ack ?
		pend = pending.Get (id);
		if (! pend) {
			ret = true;
			break;
		}
		
		if (resend) {
DEBUG	if (DGTrace) printf ("UchDGRAM::Wait : resending\n");
			if (pend->retries <= 0) {
				RemovePending (id);
				break;
			}
			
			int n = SendBuffer (* pend->outBuf, *pend->toAddr);
			if (n < 0)
				break;
			--pend->retries;
			resend = false;
		} else
DEBUG	if (DGTrace) printf ("UchDGRAM::Wait : waiting\n"),
			timer.Wait ();	// sets resend to true
	}
	Unlock ();
DEBUG	if (DGTrace) printf ("UchDGRAM::Wait : %s\n", ret ? "done" : "failed");
	return ret;
}

//	SendAck sends an acknowledge
//	Expired is called when the resend timer has expired
//	PrepareToSend returns a buffer with the header set,
//		and adds it to the pending set
//	SendBuffer sends a buffer, handling interrupted sys calls
//	RemovePending removes a pending message from the table
/*?hidden?*/
void
UchDGRAM :: SendAck (lword id, UchAddress& addr)
{
	UchMsgBuffer buf;
	buf.WriteLong (id);
	buf.WriteByte (DGRAM_ACK);
	SendBuffer (buf, addr);
	fromAddr = & addr;
DEBUG	if (DGTrace) printf ("UchDGRAM :: SendAck : acknowledging %x\n", id);
}

/*?hidden?*/
void
UchDGRAM :: Expired ()
{
	if (locked)
		resend = true;
	else
		Resend ();
}

/*?hidden?*/
UchMsgBuffer*
UchDGRAM :: PrepareToSend (UchAddress& to, int retries)
{
	UchMsgBuffer* obuf = new UchMsgBuffer;
/*
UchInetAddress* ia = (UchInetAddress*) &to;
UchAddress* toCopy = new UchInetAddress (ia->Host (), ia->Port ());
*/
	if (retries == 0)
		retries = retry;
	PENDING* out = new PENDING (obuf, &to /*toCopy*/, retries);
	outId = pending.Store (out);
	
DEBUG	if (DGTrace) printf ("UchDGRAM :: PrepareToSend : id %x\n", outId);
	obuf->WriteLong (outId);
	obuf->WriteByte (DGRAM_SEND);
	
	if (! npending) {
		timer.ChangePeriod (timeout);
		timer.Restart ();
	}
	npending++;

	return obuf;
}

/*?hidden?*/
int
UchDGRAM :: SendBuffer (UchMsgBuffer& buf, UchAddress& addr)
{
	int n;
	while ((n = UchDatagram :: Send (buf, addr, true)) == -1 && errno == EINTR)
DEBUG	SysError (ErrWarn, "UchDGRAM::SendBuffer")
		;
	return n;
}

/*?hidden?*/
void
UchDGRAM :: RemovePending (lword id)
{
	PENDING* pend = pending.Get (id);
	if (! pend) {
		::Error (ErrWarn, "Receive", "unrecognized ACK");
		return;
	}
	pending.Remove (id);
	delete pend;
	npending--;
	if (npending == 0)
		timer.Stop ();
}

//----------------	the public functions

/*?nextdoc?*/
int
UchDGRAM :: Send (byte* buf, int len, UchAddress& to, bool ack, int retries)
{
DEBUG	if (DGTrace) printf ("UchDGRAM :: Send\n");
	Lock ();
	UchMsgBuffer* obuf = PrepareToSend (to, retries);
	obuf->WriteBuf (buf, len);
	int n = SendBuffer (*obuf, to);
	CheckInput ();
	int ret = (ack || sync) ? (Wait (outId) ? n : -1) : n;
	Unlock ();
	return ret;
}

/*?nextdoc?*/
int
UchDGRAM :: Receive (byte* buf, int len)
{
DEBUG	if (DGTrace) printf ("UchDGRAM :: Receive\n");
	if (! WaitInput ())
		return -1;
	PENDING* p = input.RemoveFirst ();
	ninput--;
	int n = p->outBuf->BufLength ();
	if (len < n)
		n = len;
	memcpy (buf, p->outBuf->Buffer (), n);
	SendAck (p->id, *p->toAddr);
	delete p;
DEBUG	if (DGTrace) printf ("UchDGRAM :: Receive : received %d bytes\n", n);
	return n;
}

/*?nextdoc?*/
int
UchDGRAM :: Reply (byte* buf, int len, bool ack, int retries)
{
	if (! fromAddr)
		return -1;
	return Send (buf, len, *fromAddr, ack, retries);
}

/*?nextdoc?*/
int
UchDGRAM :: Send (UchMsgBuffer& buf, UchAddress& to, bool peek, bool ack, int retries)
{
DEBUG	if (DGTrace) printf ("UchDGRAM :: Send\n");
	Lock ();
	UchMsgBuffer* obuf = PrepareToSend (to, retries);
	obuf->WriteBuf (buf.Buffer (), buf.BufLength ());
	if (! peek)
		buf.Flush ();
	int n = SendBuffer (*obuf, to);
	CheckInput ();
	int ret = (ack || sync) ? (Wait (outId) ? n : -1) : n;
	Unlock ();
	return ret;
}

/*?nextdoc?*/
int
UchDGRAM :: Receive (UchMsgBuffer& buf)
{
DEBUG	if (DGTrace) printf ("UchDGRAM :: Receive\n");
	if (! WaitInput ())
		return -1;
	PENDING* p = input.RemoveFirst ();
	ninput--;
	int n = p->outBuf->BufLength ();
	buf.WriteBuf (p->outBuf->Buffer (), n);
	SendAck (p->id, *p->toAddr);
	delete p;
DEBUG	if (DGTrace) printf ("UchDGRAM :: Receive : received buffer %d bytes\n", n);
	return n;
}

/*?
These functions are similar to the same functions in the class \typ{UchDatagram},
except that they manage messages acknowledgement.
\fun{Send} saves the message in a buffer so that it can be resent if no acknowledge
is received.
\fun{Receive} acknowledges the received message.
\fun{Reply} sends the message to the sender of the last received message.
If \var{ack} is true, the acknowledge of the message is waited for.
In that case, \fun{Send} returns -1 if the acknowledge is not received.
If \var{retries} is non zero, it specifies a number of retries for this message
different from the default retry number of this dgram.
?*/
int
UchDGRAM :: Reply (UchMsgBuffer& buf, bool peek, bool ack, int retries)
{
	if (! fromAddr)
		return -1;
	return Send (buf, *fromAddr, peek, ack, retries);
}

/*?nextdoc?*/
bool
UchDGRAM :: Send (UchMessage& msg, UchAddress& to, bool ack, int retries)
{
DEBUG	if (DGTrace) printf ("UchDGRAM :: Send message\n");
	Lock ();
	UchMsgBuffer* obuf = PrepareToSend (to, retries);
	obuf->WriteMsg (msg);
// int l;	
// printf ("outBuffer is %d bytes long\n", l = obuf->BufLength ());
// for (int i = 0; i < l; i++) printf ("%02x ", obuf->Buffer () [i]);
// printf ("\n");
	int n = SendBuffer (*obuf, to);
	CheckInput ();
	bool ret;
	if (ack || sync)
		ret = Wait (outId) ? true : false;
	else
		ret = bool (n != obuf->BufLength ());
	Unlock ();
	return ret;
}

/*?nextdoc?*/
bool
UchDGRAM :: Receive (UchMessage* msg)
{
DEBUG	if (DGTrace) printf ("UchDGRAM :: Receive message\n");
	if (! WaitInput ())
		return false;
	PENDING* p = input.RemoveFirst ();
	ninput--;
// int n;	
// printf ("inBuffer is %d bytes long\n", n = p->outBuf->BufLength ());
// for (int i = 0; i < n; i++) printf ("%02x ", p->outBuf->Buffer () [i]);
// printf ("\n");
	if (! p->outBuf->ReadMsg (*msg))
		return false;
	SendAck (p->id, *p->toAddr);
	delete p;
DEBUG	if (DGTrace) printf ("UchDGRAM :: Receive : received message\n");
	return true;
}

/*?
These functions are similar to the previous functions except that they take
a \typ{UchMessage} as argument.
\fun{Send} converts the message in the output buffer.
If \var{ack} is true, the acknowledge of the message is waited for.
In that case, \fun{Send} returns false if the acknowledge is not received.
If \var{retries} is non zero, it specifies a number of retries for this message
different from the default retry number of this dgram.
\fun{Receive} converts the incoming data into the message passed as argument.
\fun{Reply} sends the message to the sender of the last received message.
See also the function \fun{NewMessage} to handle incoming messages.
?*/
bool
UchDGRAM :: Reply (UchMessage& msg, bool ack, int retries)
{
	if (! fromAddr)
		return false;
	return Send (msg, *fromAddr, ack, retries);
}

//-----------------------
#if 0
bool
UchDGRAM :: Ask (UchMessage& msg, UchAddress& to)
{
DEBUG	if (DGTrace) printf ("UchDGRAM :: Ask\n");
	Lock ();
	UchMsgBuffer* obuf = PrepareToSend (to, DGRAM_ASK *******);
	obuf->WriteMsg (msg);
	int n = SendBuffer (*obuf, to);
	CheckInput ();
	bool ret = Wait (outId) ? true : false;
	if (ret) {
		// wait answer
		for (;;) {
			if (! WaitInput ())
				continue;
			PENDING* pend = input.Last ();
			if (pend->toAddr == to.............
		}
	}
	Unlock ();
	return ret;
}
#endif
//-----------------------

/*?
Resend all messages for which no acknowledge has been received.
If a UchMessage.has been resent more than the retry number, it is discarded.
When successive messages are to be sent to the same address, only the first
is resent, to avoid connection overflow.
?*/
void
UchDGRAM :: Resend ()
{
if (DGTrace) printf ("UchDGRAM::Resend\n");
	Lock ();
	if (npending)
		CheckInput ();
	if (! npending) {
		resend = false;
		Unlock ();
		return;
	}
	
	UchAddress*	addr = 0;
	
	CcuIdIterOf <PENDING> iter = pending;
	while ( ++iter) {
		PENDING* pend = *iter;
		if (pend->retries <= 0) {
			// the output buffer contains the leading id and type
			UchMsgBuffer fake (*pend->outBuf);
			lword id;
			byte typ;
			fake.ReadLong (id);
			fake.ReadByte (typ);
			if (! DiscardNotify (fake, *pend->toAddr)) {
				pend->retries = retry;	// *** should be controllable ?
				continue;
			}
if (DGTrace) printf ("UchDGRAM::Resend : abandonning %x\n", iter.CurId ());
			RemovePending (iter.CurId ());
			if (! npending)
				break;
		} else
		if (addr != (UchAddress*) pend->toAddr) {
DEBUG	printf ("UchDGRAM::Resend : resending %x\n", iter.CurId ());
			SendBuffer (* pend->outBuf, *pend->toAddr);
			--pend->retries;
			addr = pend->toAddr;
			CheckInput ();
		}
DEBUG	else printf ("UchDGRAM::Resend : skipping %x\n", iter.CurId ());
	}
	
	resend = false;
	Unlock ();
}

/*?
This virtual function is called whenever a pending message is about
to be discarded because no acknowledge has been received after
the the default number of retries.
If it returns false, the message is not discarded and its retry count is reset to zero.
Returning false is not very social.
The default action is to return true, thus discarding the pending message.
?*/
bool
UchDGRAM :: DiscardNotify (UchMsgBuffer&, UchAddress&)
{
	return true;
}

/*?
Set the interval between retries.
The default value is 1000 (1 second).
?*/
void
UchDGRAM :: SetRetryTime (Millisecond m)
{
	timeout = m;
	if (npending) {
		timer.ChangePeriod (m);
		timer.Restart ();
	}
}

/*?
Wait until all acknowledges have been received,
or until all messages have been discarded.
?*/
void
UchDGRAM :: Drain ()
{
	if (npending)
		CheckInput ();
	while (npending)
		timer.Wait ();
}

/*?
This virtual function is called by \fun{HandleRead}.
It must be redefined in a derived class if \fun{HandleRead} is to be used
(for instance if this \typ{UchDGRAM} is put in a channel set).
This function should convert the contents of the buffer into a message, and handle it.
It should return true if the message was correctly handled, else false.
Note that if it returns false, the message will not be acknowledged, and thus it will
be resent later.
The default behaviour of this virtual function is to issue an error message and
to return true.
?*/
bool
UchDGRAM :: NewMessage (UchMsgBuffer&)
{
	::Error (ErrWarn, "UchDGRAM :: NewMessage", "should be defined in derived class");
	return true;
}

/*?
This is an instance of the virtual function \fun{HandleRead} of class \typ{UchChannel}.
It calls the virtual function \fun{NewMessage} when a message is received.
If \fun{NewMessage} returns true, an acknowledge is sent back.
This functions also handles incoming acknowledges.
?*/
void
UchDGRAM :: HandleRead ()
{
	if (! CheckInput ())
		return;
	if (! ninput)
		return;
	
DEBUG	if (DGTrace) printf (">>UchDGRAM :: HandleRead\n");
	PENDING* p = input.RemoveFirst ();
	ninput--;
	if (NewMessage (* p->outBuf))
		SendAck (p->id, *p->toAddr);
DEBUG	if (DGTrace) printf ("<<UchDGRAM :: HandleRead\n");
}

/*?
This is an instance of the virtual function \fun{HandleSelect} of class \typ{UchChannel}.
It calls the virtual function \fun{NewMessage} when a message is in the input buffer.
If \fun{NewMessage} returns true, an acknowledge is sent back.
This functions also handles incoming acknowledges.
?*/
bool
UchDGRAM :: HandleSelect ()
{
	if (! ninput)
		return false;
DEBUG	if (DGTrace) printf (">>UchDGRAM :: HandleSelect\n");
	PENDING* p = input.RemoveFirst ();
	ninput--;
	if (NewMessage (* p->outBuf))
		SendAck (p->id, *p->toAddr);
DEBUG	if (DGTrace) printf ("<<UchDGRAM :: HandleSelect\n");
	return true;
}

#ifdef DOC
// fake entries for documentation

/*?
Return the number of pending messages
?*/
int
UchDGRAM :: NumPending ()
{ }

/*?
Return the number of waiting input messages
?*/
int
UchDGRAM :: NumInput ()
{ }

/*?
Set the number of times a message is resent until it is discarded.
The default value is 5.
?*/
void
UchDGRAM :: SetRetry (short r)
{ }

/*?
Set the synchronous mode of this \typ{UchDGRAM}.
If \var{s} is true, the \fun{Send} functions always wait for the acknowledge of the messages.
The default value is false.
?*/
void
UchDGRAM :: SetSync (bool s)
{ }

#endif /* DOC */