File: eventkeepalive.cpp

package info (click to toggle)
tango 8.1.2c%2Bdfsg-5
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 21,964 kB
  • ctags: 14,286
  • sloc: cpp: 133,954; sh: 14,704; ansic: 1,083; makefile: 944; java: 215; python: 55
file content (1465 lines) | stat: -rw-r--r-- 46,638 bytes parent folder | download
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
static const char *RcsId = "$Id: eventkeepalive.cpp 22213 2013-03-07 14:32:56Z taurel $";

//=====================================================================================================================
//
// file :				event.cpp
//
// description :		C++ classes for implementing the event system KeepAliveThread. This class cheks that the
//						heartbeat event are well received. It also manages the stateless subscription because this
//						is this class which will regularely re-try to subsribe to event in case it is needed.
//						Finally, it is also this class which generates the re-connection in case a device server
//						sending events is stopped and re-started
//
// author(s) : 			A.Gotz (goetz@esrf.fr)
//
// original : 			7 April 2003
//
// Copyright (C) :      2003,2004,2005,2006,2007,2008,2009,2010,2011,2012,2013
//						European Synchrotron Radiation Facility
//                      BP 220, Grenoble 38043
//                      FRANCE
//
// This file is part of Tango.
//
// Tango is free software: you can redistribute it and/or modify it under the terms of the GNU
// Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// Tango is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty
// of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
// GNU Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public License along with Tango.
// If not, see <http://www.gnu.org/licenses/>.
//
// $Revision: 22213 $
//
//====================================================================================================================

#include <tango.h>
#include <eventconsumer.h>

#include <stdio.h>

#ifdef _TG_WINDOWS_
#include <sys/timeb.h>
#include <process.h>
#else
#include <unistd.h>
#include <sys/time.h>
#endif

using namespace CORBA;

namespace Tango {

/************************************************************************/
/*		       															*/
/* 			EventConsumerKeepAlive class 								*/
/*			----------------------------								*/
/*		       															*/
/************************************************************************/




//+-------------------------------------------------------------------------------------------------------------------
//
// method :
//		EventConsumerKeepAliveThread::reconnect_to_channel()
//
// description :
//		Method to reconnect the process to an event channel in case of reconnection to a notifd
//
// argument :
//		in :
//			- ipos : An iterator to the EventChannel structure to reconnect to in the Event Channel map
//			- event_consumer : Pointer to the EventConsumer singleton
//
// return :
// 		This method returns true if the reconnection succeeds. Otherwise, returns false
//
//--------------------------------------------------------------------------------------------------------------------

bool EventConsumerKeepAliveThread::reconnect_to_channel(EvChanIte &ipos,EventConsumer *event_consumer)
{
	bool ret = true;
	EvCbIte epos;

	cout3 << "Entering KeepAliveThread::reconnect()" << endl;

	for (epos = event_consumer->event_callback_map.begin(); epos != event_consumer->event_callback_map.end(); ++epos)
	{
		if (epos->second.channel_name == ipos->first)
		{
			bool need_reconnect = false;
			vector<EventSubscribeStruct>:: iterator esspos;
			for (esspos = epos->second.callback_list.begin(); esspos != epos->second.callback_list.end(); ++esspos)
			{
				if (esspos->callback != NULL || esspos->ev_queue != NULL)
				{
					need_reconnect = true;
					break;
				}
			}

			if (need_reconnect == true)
			{
				try
				{
				    DeviceData dummy;
					string adm_name = ipos->second.full_adm_name;
					event_consumer->connect_event_channel(adm_name,
									      epos->second.device->get_device_db(),
									      true,dummy);

					if (ipos->second.adm_device_proxy != NULL)
						delete ipos->second.adm_device_proxy;
					ipos->second.adm_device_proxy = new DeviceProxy(ipos->second.full_adm_name);
					cout3 << "Reconnected to event channel" << endl;
				}
				catch(...)
				{
					ret = false;
				}

				break;
			}
		}
	}

	return ret;
}


//---------------------------------------------------------------------------------------------------------------------
//
// method :
//		EventConsumerKeepAliveThread::reconnect_to_zmq_channel()
//
// description :
//		Method to reconnect the process to a ZMQ event channel in case of reconnection
//
// argument :
//		in :
//			- ipos : An iterator to the EventChannel structure to reconnect to in the Event Channel map
//			- event_consumer : Pointer to the EventConsumer singleton
//			- dd :
//
// return :
// 		This method returns true if the reconnection succeeds. Otherwise, returns false
//
//---------------------------------------------------------------------------------------------------------------------

bool EventConsumerKeepAliveThread::reconnect_to_zmq_channel(EvChanIte &ipos,EventConsumer *event_consumer,DeviceData &dd)
{
	bool ret = true;
	EvCbIte epos;

	cout3 << "Entering KeepAliveThread::reconnect_to_zmq_channel()" << endl;

	for (epos = event_consumer->event_callback_map.begin(); epos != event_consumer->event_callback_map.end(); ++epos)
	{
		if (epos->second.channel_name == ipos->first)
		{
			bool need_reconnect = false;
			vector<EventSubscribeStruct>:: iterator esspos;
			for (esspos = epos->second.callback_list.begin(); esspos != epos->second.callback_list.end(); ++esspos)
			{
				if (esspos->callback != NULL || esspos->ev_queue != NULL)
				{
					need_reconnect = true;
					break;
				}
			}

			if (need_reconnect == true)
			{
				try
				{
                    DeviceData subscriber_in,subscriber_out;
                    vector<string> subscriber_info;
                    subscriber_info.push_back(epos->second.device->dev_name());
                    subscriber_info.push_back(epos->second.attr_name);
                    subscriber_info.push_back("subscribe");
                    subscriber_info.push_back(epos->second.event_name);
                    subscriber_in << subscriber_info;

                    subscriber_out = ipos->second.adm_device_proxy->command_inout("ZmqEventSubscriptionChange",subscriber_in);

					string adm_name = ipos->second.full_adm_name;

#ifdef ZMQ_HAS_DISCONNECT
					event_consumer->disconnect_event_channel(adm_name,ipos->second.endpoint,epos->second.endpoint);
#endif
					event_consumer->connect_event_channel(adm_name,
									      epos->second.device->get_device_db(),
									      true,subscriber_out);

                    dd = subscriber_out;
					if (ipos->second.adm_device_proxy != NULL)
						delete ipos->second.adm_device_proxy;
					ipos->second.adm_device_proxy = new DeviceProxy(ipos->second.full_adm_name);
					cout3 << "Reconnected to zmq event channel" << endl;
				}
				catch(...)
				{
					ret = false;
				}

				break;
			}
		}
	}

	return ret;
}

//--------------------------------------------------------------------------------------------------------------------
//
// method :
//		EventConsumerKeepAliveThread::reconnect_to_event()
//
// description :
//		Method to reconnect each event associated to a specific event channel to the just reconnected event channel
//
// argument :
//		in :
//			- ipos : An iterator to the EventChannel structure in the Event Channel map
//			- event_consumer : Pointer to the EventConsumer singleton
//
//--------------------------------------------------------------------------------------------------------------------

void EventConsumerKeepAliveThread::reconnect_to_event(EvChanIte &ipos,EventConsumer *event_consumer)
{
	EvCbIte epos;

	cout3 << "Entering KeepAliveThread::reconnect_to_event()" << endl;

	for (epos = event_consumer->event_callback_map.begin(); epos != event_consumer->event_callback_map.end(); ++epos)
	{
		if (epos->second.channel_name == ipos->first)
		{
			bool need_reconnect = false;
			vector<EventSubscribeStruct>:: iterator esspos;
			for (esspos = epos->second.callback_list.begin(); esspos != epos->second.callback_list.end(); ++esspos)
			{
				if (esspos->callback != NULL || esspos->ev_queue != NULL)
				{
					need_reconnect = true;
					break;
				}
			}

			if (need_reconnect == true)
			{
				try
				{
					epos->second.callback_monitor->get_monitor();

					try
					{
						re_subscribe_event(epos,ipos);
						epos->second.filter_ok = true;
						cout3 << "Reconnected to event" << endl;
					}
					catch(...)
					{
						epos->second.filter_ok = false;
					}

					epos->second.callback_monitor->rel_monitor();
				}
				catch (...)
				{
					ApiUtil *au = ApiUtil::instance();
					stringstream ss;

					ss << "EventConsumerKeepAliveThread::reconnect_to_event() cannot get callback monitor for " << epos->first;
					au->print_error_message(ss.str().c_str());
				}
			}
		}
	}
}

//---------------------------------------------------------------------------------------------------------------------
//
// method :
//		EventConsumerKeepAliveThread::re_subscribe_event()
//
// description :
//		Method to reconnect a specific event to an event channel just reconnected
//
// argument :
//		in :
//			- epos : An iterator to the EventCallback structure in the Event Callback map
//			- ipos : Pointer to the EventChannel structure in the Event Channel map
//
//--------------------------------------------------------------------------------------------------------------------

void EventConsumerKeepAliveThread::re_subscribe_event(EvCbIte &epos,EvChanIte &ipos)
{

//
// Build a filter using the CORBA Notify constraint Language (use attribute name in lowercase letters)
//

	CosNotifyFilter::FilterFactory_var ffp;
	CosNotifyFilter::Filter_var filter = CosNotifyFilter::Filter::_nil();
	CosNotifyFilter::FilterID filter_id;

	string channel_name = epos->second.channel_name;

	try
	{
		ffp    = ipos->second.eventChannel->default_filter_factory();
		filter = ffp->create_filter("EXTENDED_TCL");
  	}
	catch (CORBA::COMM_FAILURE &)
	{
		EventSystemExcept::throw_exception((const char*)API_NotificationServiceFailed,
                       	(const char*)"Caught CORBA::COMM_FAILURE exception while creating event filter (check filter)",
                       	(const char*)"EventConsumerKeepAliveThread::re_subscribe_event()");
	}
	catch (...)
	{
		EventSystemExcept::throw_exception((const char*)API_NotificationServiceFailed,
                       	(const char*)"Caught exception while creating event filter (check filter)",
                       	(const char*)"EventConsumerKeepAliveThread::re_subscribe_event()");
	}

//
// Construct a simple constraint expression; add it to fadmin
//

	string constraint_expr = epos->second.filter_constraint;

	CosNotification::EventTypeSeq evs;
	CosNotifyFilter::ConstraintExpSeq exp;
	exp.length(1);
	exp[0].event_types = evs;
	exp[0].constraint_expr = CORBA::string_dup(constraint_expr.c_str());
	CORBA::Boolean res = 0; // OK
	try
	{
		CosNotifyFilter::ConstraintInfoSeq_var dummy = filter->add_constraints(exp);

		filter_id = ipos->second.structuredProxyPushSupplier->add_filter(filter);

		epos->second.filter_id = filter_id;
	}
	catch(CosNotifyFilter::InvalidConstraint &)
	{
		//cerr << "Exception thrown : Invalid constraint given "
		//     << (const char *)constraint_expr << endl;
		res = 1;
	}
	catch (...)
	{
		//cerr << "Exception thrown while adding constraint "
	 	//     << (const char *)constraint_expr << endl;
		res = 1;
	}

//
// If error, destroy filter
//

	if (res == 1)
	{
		try
		{
			filter->destroy();
		}
		catch (...) { }

		filter = CosNotifyFilter::Filter::_nil();
		EventSystemExcept::throw_exception((const char*)API_NotificationServiceFailed,
                       	(const char*)"Caught exception while creating event filter (check filter)",
                       	(const char*)"EventConsumerKeepAliveThread::re_subscribe_event()");
	}
}

//--------------------------------------------------------------------------------------------------------------------
//
// method :
//		EventConsumerKeepAliveThread::reconnect_to_zmq_event()
//
// description :
//		Method to reconnect each event associated to a specific event channel to the just reconnected event channel
//
// argument :
//		in :
//			- ipos : An iterator to the EventChannel structure in the Event Channel map
//			- event_consumer : Pointer to the EventConsumer singleton
//			- dd :
//
//-------------------------------------------------------------------------------------------------------------------

void EventConsumerKeepAliveThread::reconnect_to_zmq_event(EvChanIte &ipos,EventConsumer *event_consumer,DeviceData &dd)
{
	EvCbIte epos;
#ifdef ZMQ_HAS_DISCONNECT
	bool disconnect_called = false;
#endif

	cout3 << "Entering KeepAliveThread::reconnect_to_zmq_event()" << endl;

	for (epos = event_consumer->event_callback_map.begin(); epos != event_consumer->event_callback_map.end(); ++epos)
	{
		if (epos->second.channel_name == ipos->first)
		{
			bool need_reconnect = false;
			vector<EventSubscribeStruct>:: iterator esspos;
			for (esspos = epos->second.callback_list.begin(); esspos != epos->second.callback_list.end(); ++esspos)
			{
				if (esspos->callback != NULL || esspos->ev_queue != NULL)
				{
					need_reconnect = true;
					break;
				}
			}

			if (need_reconnect == true)
			{
				try
				{
					epos->second.callback_monitor->get_monitor();

					try
					{
						EventCallBackStruct ecbs;
						vector<string> vs;

						vs.push_back(string("reconnect"));

						string d_name = epos->second.device->dev_name();
						string &fqen = epos->second.fully_qualified_event_name;
						string::size_type pos = fqen.find('/');
						pos = pos + 2;
						pos = fqen.find('/',pos);
						string prefix = fqen.substr(0,pos + 1);
						d_name.insert(0,prefix);

#ifdef ZMQ_HAS_DISCONNECT
						if (disconnect_called == false)
						{
							event_consumer->disconnect_event(epos->second.event_name,epos->second.endpoint);
							disconnect_called = true;
						}
#endif

						event_consumer->connect_event_system(d_name,epos->second.attr_name,epos->second.event_name,vs,ipos,ecbs,dd);

						const DevVarLongStringArray *dvlsa;
						dd >> dvlsa;
						epos->second.endpoint = dvlsa->svalue[1].in();

						cout3 << "Reconnected to ZMQ event" << endl;
					}
					catch(...)
					{
						epos->second.filter_ok = false;
					}

					epos->second.callback_monitor->rel_monitor();
				}
				catch (...)
				{
					ApiUtil *au = ApiUtil::instance();
					stringstream ss;

					ss << "EventConsumerKeepAliveThread::reconnect_to_zmq_event() cannot get callback monitor for " << epos->first;
					au->print_error_message(ss.str().c_str());
				}
			}
		}
	}
}

//-------------------------------------------------------------------------------------------------------------------
//
// method :
//		EventConsumerKeepAliveThread::run_undetached
//
// description :
//		The main code of the KeepAliveThread
//
//-------------------------------------------------------------------------------------------------------------------

void *EventConsumerKeepAliveThread::run_undetached(TANGO_UNUSED(void *arg))
{
	int time_to_sleep;
	time_t now;
	ZmqEventConsumer *event_consumer;
	NotifdEventConsumer *notifd_event_consumer;

//
// first sleep 2 seconds to give the event system time to startup
//

#ifndef _TG_WINDOWS_
	unsigned int time_left;
	time_left = ::sleep(2);
	if (time_left != 0)
		::sleep(time_left);
#else
	Sleep(2000L);
#endif /* _TG_WINDOWS_ */

	bool exit_th = false;

	event_consumer = ApiUtil::instance()->get_zmq_event_consumer();
	notifd_event_consumer = ApiUtil::instance()->get_notifd_event_consumer();

	while (exit_th == false)
	{
		time_to_sleep = EVENT_HEARTBEAT_PERIOD;

//
// Go to sleep until next heartbeat. Wait on a monitor. This allows another thread to wake-up this thread
// before the end of the EVENT_HEARTBEAT_PERIOD time which is 10 seconds. Only one command can now be send to the
// thread. It is a stop command
//

		{
			omni_mutex_lock sync(shared_cmd);
			if (shared_cmd.cmd_pending == false)
			{
				unsigned long s,n;

				unsigned long nb_sec,nb_nanos;
				nb_sec = time_to_sleep ;
				nb_nanos = 0;

				omni_thread::get_time(&s,&n,nb_sec,nb_nanos);
				shared_cmd.cond.timedwait(s,n);
			}
			if (shared_cmd.cmd_pending == true)
			{
				exit_th = true;
				return (void *)NULL;
			}
		}

//
// Re-subscribe
//

		cout4 << "KeepAliveThread at work" << endl;

		// lock the maps only for reading
		event_consumer->map_modification_lock.writerIn();

		now = time(NULL);

//
// Check the list of not yet connected events and try to subscribe
// Try first with ZMQ event consumer. If ZMQ is not used (API_CommandNotFound exception), use notifd.
//

		if ( !event_consumer->event_not_connected.empty() )
		{
			std::vector<EventNotConnected>::iterator vpos;
			for (vpos = event_consumer->event_not_connected.begin();
				 vpos != event_consumer->event_not_connected.end();
				 /*vpos++*/)
			{
				bool inc_vpos = true;
				// check wether it is necessary to try to subscribe again!
				if ( (now - vpos->last_heartbeat) >= (EVENT_HEARTBEAT_PERIOD - 1) )
				{
					try
					{
						// try to subscribe
						event_consumer->connect_event (vpos->device,vpos->attribute,vpos->event_type,
																					vpos->callback,
																					vpos->ev_queue,
																					vpos->filters,
																					vpos->event_name,
																					vpos->event_id);

						// delete element from vector when subscribe worked
						vpos = event_consumer->event_not_connected.erase(vpos);
						inc_vpos = false;
					}

					catch (Tango::DevFailed &e)
					{
					    string reason(e.errors[0].reason.in());
					    if (reason == API_CommandNotFound)
					    {
                            try
                            {
								if (notifd_event_consumer == NULL)
								{
									ApiUtil::instance()->create_notifd_event_consumer();
									notifd_event_consumer = ApiUtil::instance()->get_notifd_event_consumer();
								}
                                notifd_event_consumer->connect_event(vpos->device,vpos->attribute,vpos->event_type,
																					vpos->callback,
																					vpos->ev_queue,
																					vpos->filters,
																					vpos->event_name,
																					vpos->event_id);

                                // delete element from vector when subscribe worked
                                vpos = event_consumer->event_not_connected.erase(vpos);
                                inc_vpos = false;
                            }
                            catch (Tango::DevFailed &e)
                            {
                                stateless_subscription_failed(vpos,e,now);
                            }
					    }
					    else
                            stateless_subscription_failed(vpos,e,now);
					}
					catch (...)
					{
						// subscribe has not worked, try again in the next hearbeat period
						vpos->last_heartbeat = now;

						ApiUtil *au = ApiUtil::instance();
						au->print_error_message("During the event subscription an exception was sent which is not a Tango::DevFailed exception!");
					}
				}
				if (inc_vpos)
					++vpos;
			}
		}

		event_consumer->map_modification_lock.writerOut();

//
// Check for all other event reconnections
//

		{
			// lock the maps only for reading
			ReaderLock r (event_consumer->map_modification_lock);

			std::map<std::string,EventChannelStruct>::iterator ipos;
			std::map<std::string,EventCallBackStruct>::iterator epos;

			for (ipos = event_consumer->channel_map.begin(); ipos != event_consumer->channel_map.end(); ++ipos)
			{
				try
				{
					// lock the event channel
					ipos->second.channel_monitor->get_monitor();

//
// Check if it is necessary for client to confirm its subscription. Note that starting with Tango 8.1 (and for ZMQ),
// there is a new command in the admin device which allows a better (optimized) confirmation algorithm
//

					if ((now - ipos->second.last_subscribed) > EVENT_RESUBSCRIBE_PERIOD/3)
					{
						vector<string> cmd_params;
						vector<map<string,EventCallBackStruct>::difference_type> vd;

						for (epos = event_consumer->event_callback_map.begin(); epos != event_consumer->event_callback_map.end(); ++epos)
						{
							if (epos->second.channel_name == ipos->first )
							{
								try
								{
									// lock the callback
									epos->second.callback_monitor->get_monitor();

									if (ipos->second.channel_type == ZMQ)
									{
										cmd_params.push_back(epos->second.device->dev_name());
										cmd_params.push_back(epos->second.attr_name);
										cmd_params.push_back(epos->second.event_name);

										vd.push_back(distance(event_consumer->event_callback_map.begin(),epos));
									}
									else
									{
										DeviceData subscriber_in;
										vector<string> subscriber_info;
										subscriber_info.push_back(epos->second.device->dev_name());
										subscriber_info.push_back(epos->second.attr_name);
										subscriber_info.push_back("subscribe");
										subscriber_info.push_back(epos->second.event_name);
										subscriber_in << subscriber_info;

                                        ipos->second.adm_device_proxy->command_inout("EventSubscriptionChange",subscriber_in);

										time_t ti = time(NULL);
										ipos->second.last_subscribed = ti;
        								epos->second.last_subscribed = ti;
									}
									epos->second.callback_monitor->rel_monitor();
								}
								catch (...)
								{
									epos->second.callback_monitor->rel_monitor();
								}
							}
						}

						if (ipos->second.channel_type == ZMQ && cmd_params.empty() == false)
						{
							try
							{
								DeviceData sub_cmd_in;
								sub_cmd_in << cmd_params;

								ipos->second.adm_device_proxy->command_inout("EventConfirmSubscription",sub_cmd_in);

								time_t ti = time(NULL);
								ipos->second.last_subscribed = ti;
								for (unsigned int loop = 0;loop < vd.size();++loop)
								{
									epos = event_consumer->event_callback_map.begin();
									advance(epos,vd[loop]);

									epos->second.callback_monitor->get_monitor();
									epos->second.last_subscribed = ti;
									epos->second.callback_monitor->rel_monitor();
								}
							}
							catch (Tango::DevFailed &e)
							{
							    string reason(e.errors[0].reason.in());
							    if (reason == API_CommandNotFound)
                                {

//
// We are connected to a Tango 8 server which do not implement the EventConfirmSubscription command
// Send confirmation the old way
//

                                    time_t ti = time(NULL);
                                    ipos->second.last_subscribed = ti;

                                    for (unsigned int loop = 0;loop < vd.size();++loop)
                                    {
										DeviceData subscriber_in;
										vector<string> subscriber_info;
										subscriber_info.push_back(cmd_params[(loop * 3)]);
										subscriber_info.push_back(cmd_params[(loop * 3) + 1]);
										subscriber_info.push_back("subscribe");
										subscriber_info.push_back(cmd_params[(loop * 3) + 2]);
										subscriber_in << subscriber_info;

                                        try
                                        {
                                            ipos->second.adm_device_proxy->command_inout("ZmqEventSubscriptionChange",subscriber_in);
                                        }
                                        catch(...) {}

                                        epos = event_consumer->event_callback_map.begin();
                                        advance(epos,vd[loop]);

                                        epos->second.callback_monitor->get_monitor();
                                        epos->second.last_subscribed = ti;
                                        epos->second.callback_monitor->rel_monitor();
                                    }
                                }
							}
							catch (...) {}

							cmd_params.clear();
						}
					}

//
// Check if a heartbeat have been skipped. If a heartbeat is missing, there are four possibilities :
// 1 - The notifd is dead (or the crate is rebooting or has already reboot)
// 2 - The server is dead
// 3 - The network was down;
// 4 - The server has been restarted on another host.
//

 					bool heartbeat_skipped;
					heartbeat_skipped = ((now - ipos->second.last_heartbeat) >= EVENT_HEARTBEAT_PERIOD);

					if (heartbeat_skipped || ipos->second.heartbeat_skipped || ipos->second.event_system_failed == true )
					{
						ipos->second.heartbeat_skipped = true;

                        if (ipos->second.channel_type == NOTIFD)
                        {

//
// Check notifd by trying to read an attribute of the event channel
//

                            try
                            {
//
// Check if the device server is now running on a different host. In this case we have to reconnect to another
// notification daemon.
//
                                DeviceInfo info;
                                try
                                {
                                    info = ipos->second.adm_device_proxy->info();
                                }
                                catch (Tango::DevFailed &)
                                {
                                    // in case of failure, just stay connected to the actual notifd
                                    info.server_host = ipos->second.notifyd_host;
                                }

                                if ( ipos->second.notifyd_host != info.server_host )
                                {
                                    ipos->second.event_system_failed = true;
                                }
                                else
                                {
                                    CosNotifyChannelAdmin::EventChannelFactory_var ecf = ipos->second.eventChannel->MyFactory();
                                    if (ipos->second.full_adm_name.find(MODIFIER_DBASE_NO) != string::npos)
                                        ipos->second.event_system_failed = true;
                                }
                            }
                            catch (...)
                            {
                                ipos->second.event_system_failed = true;
                                cout3 << "Notifd is dead !!!" << endl;
                            }

//
// if the connection to the notify daemon is marked as ok, the device server is working fine but
// the heartbeat is still not coming back since three periods:
// The notify deamon might have closed the connection, try to reconnect!
//

                            if ( ipos->second.event_system_failed == false &&
                                 ipos->second.has_notifd_closed_the_connection >= 3 )
                            {
                                ipos->second.event_system_failed = true;
                            }

//
// Re-build connection to the event channel. This is a two steps process. First, reconnect to the new event channel,
// then reconnect callbacks to this new event channel
//

                            if ( ipos->second.event_system_failed == true )
                            {
                                bool notifd_reco = reconnect_to_channel(ipos,notifd_event_consumer);
                                if ( notifd_reco )
                                    ipos->second.event_system_failed = false;
                                else
                                    ipos->second.event_system_failed = true;

                                if ( ipos->second.event_system_failed == false )
                                {
                                    reconnect_to_event(ipos,notifd_event_consumer);
                                }
                            }
                        }
                        else
                        {
                            DeviceData dd;
                            bool zmq_reco = reconnect_to_zmq_channel(ipos,event_consumer,dd);
                            if ( zmq_reco )
                                ipos->second.event_system_failed = false;
                            else
                                ipos->second.event_system_failed = true;

                            if (ipos->second.event_system_failed == false)
                            {
                                reconnect_to_zmq_event(ipos,event_consumer,dd);
                            }
                        }

						Tango::DevErrorList errors(1);

						errors.length(1);
						errors[0].severity = Tango::ERR;
						errors[0].origin = CORBA::string_dup("EventConsumer::KeepAliveThread()");
						errors[0].reason = CORBA::string_dup("API_EventTimeout");
						errors[0].desc = CORBA::string_dup("Event channel is not responding anymore, maybe the server or event system is down");
						DeviceAttribute *dev_attr = NULL;
						AttributeInfoEx *dev_attr_conf = NULL;

						for (epos = event_consumer->event_callback_map.begin(); epos != event_consumer->event_callback_map.end(); ++epos)
						{
							if (epos->second.channel_name == ipos->first)
							{
								bool need_reconnect = false;
								vector<EventSubscribeStruct>:: iterator esspos;
								for (esspos = epos->second.callback_list.begin(); esspos != epos->second.callback_list.end(); ++esspos)
								{
									if (esspos->callback != NULL || esspos->ev_queue != NULL)
									{
										need_reconnect = true;
										break;
									}
								}

								// lock the callback
								try
								{
									epos->second.callback_monitor->get_monitor();

									if (need_reconnect == true)
									{
										if ((ipos->second.channel_type == NOTIFD) && (epos->second.filter_ok == false))
										{
											try
											{
												re_subscribe_event(epos,ipos);
												epos->second.filter_ok = true;
											}
											catch(...) {}
										}
									}

									string domain_name;
									string event_name;

									string::size_type pos = epos->first.rfind('.');
									if (pos == string::npos)
									{
										domain_name = "domain_name";
										event_name = "event_name";
									}
									else
									{
										domain_name = epos->first.substr(0,pos);
										event_name = epos->first.substr(pos + 1);
									}

									for (esspos = epos->second.callback_list.begin(); esspos != epos->second.callback_list.end(); ++esspos)
									{
										CallBack   *callback = esspos->callback;
										EventQueue *ev_queue = esspos->ev_queue;

//
// Push an event with error set
//

										if (event_name == CONF_TYPE_EVENT)
										{
											AttrConfEventData *event_data = new AttrConfEventData(epos->second.device,
											      												domain_name,
											      												event_name,
											      												dev_attr_conf,
																									errors);
											// if a callback method was specified, call it!
											if (callback != NULL )
											{
												try
												{
													callback->push_event(event_data);
												}
												catch (...)
												{
													ApiUtil *au = ApiUtil::instance();
													stringstream ss;

													ss << "EventConsumerKeepAliveThread::run_undetached() exception in callback method of  " << epos->first;
													au->print_error_message(ss.str().c_str());
												}

												delete event_data;
											}

											// no calback method, the event has to be instered
											// into the event queue
											else
											{
												ev_queue->insert_event(event_data);
											}

										}
										else if (event_name == DATA_READY_TYPE_EVENT)
										{
											DataReadyEventData *event_data = new DataReadyEventData(epos->second.device,NULL,event_name,errors);
											// if a callback method was specified, call it!
											if (callback != NULL )
											{
												try
												{
													callback->push_event(event_data);
												}
												catch (...)
												{
													ApiUtil *au = ApiUtil::instance();
													stringstream ss;

													ss << "EventConsumerKeepAliveThread::run_undetached() exception in callback method of " << epos->first;
													au->print_error_message(ss.str().c_str());
												}

												delete event_data;
											}

											// no calback method, the event has to be instered
											// into the event queue
											else
											{
												ev_queue->insert_event(event_data);
											}
										}
										else
										{
											EventData *event_data = new EventData(epos->second.device,
											      			domain_name,
											      			event_name,
											      			dev_attr,
											      			errors);


											// if a callback method was specified, call it!
											if (callback != NULL )
											{
												try
												{
													callback->push_event(event_data);
												}
												catch (...)
												{
													ApiUtil *au = ApiUtil::instance();
													stringstream ss;

													ss << "EventConsumerKeepAliveThread::run_undetached() exception in callback method of " << epos->first;
													au->print_error_message(ss.str().c_str());
												}

												delete event_data;
											}

											// no calback method, the event has to be instered
											// into the event queue
											else
											{
												ev_queue->insert_event(event_data);
											}
										}
									}

									if ( ipos->second.event_system_failed == false )
									{
										DeviceData subscriber_in;
       									vector<string> subscriber_info;
       									subscriber_info.push_back(epos->second.device->dev_name());
       									subscriber_info.push_back(epos->second.attr_name);
       									subscriber_info.push_back("subscribe");
       									subscriber_info.push_back(epos->second.event_name);
       									subscriber_in << subscriber_info;

										bool ds_failed = false;

										try
										{
										    if (ipos->second.channel_type == ZMQ)
                                                ipos->second.adm_device_proxy->command_inout("ZmqEventSubscriptionChange",subscriber_in);
										    else
                                                ipos->second.adm_device_proxy->command_inout("EventSubscriptionChange",subscriber_in);

											ipos->second.heartbeat_skipped = false;
        									ipos->second.last_subscribed = time(NULL);
										}
										catch (...) {ds_failed = true;}

										if (ds_failed == false)
										{

//
// Push an event with the value just read from the re-connected server
// NOT NEEDED for the Data Ready event
//

											if ((epos->second.event_name == "change") ||
	    							   			 (epos->second.event_name == "quality") ||
	    							   			 (epos->second.event_name == "archive") ||
	    							   			 (epos->second.event_name == "user_event"))
											{

//
// For attribute data event
//

												DeviceAttribute *da = NULL;
												DevErrorList err;
												err.length(0);

												bool old_transp = epos->second.device->get_transparency_reconnection();
												epos->second.device->set_transparency_reconnection(true);

												try
												{
													da = new DeviceAttribute();
													*da = epos->second.device->read_attribute(epos->second.attr_name.c_str());

//
// The reconnection worked fine. The heartbeat should come back now, when the notifd has not closed the connection.
// Increase the counter to detect when the heartbeat is not coming back.
//

													if (ipos->second.channel_type == NOTIFD)
														ipos->second.has_notifd_closed_the_connection++;
												}
												catch (DevFailed &e)
												{
													err = e.errors;
												}
												epos->second.device->set_transparency_reconnection(old_transp);

												// if callback methods were specified, call them!
												unsigned int cb_nb = epos->second.callback_list.size();
												unsigned int cb_ctr = 0;
												DeviceAttribute *da_copy = NULL;

												for (esspos = epos->second.callback_list.begin(); esspos != epos->second.callback_list.end(); ++esspos)
												{
													cb_ctr++;
													EventData *event_data;

													if (cb_ctr != cb_nb)
													{
														da_copy = new DeviceAttribute();
														da_copy->deep_copy(*da);

														event_data = new EventData(epos->second.device,
													      				domain_name,
													      				epos->second.event_name,
													      				da_copy,
													      				err);
													}
													else
													{
														event_data = new EventData(epos->second.device,
													      				domain_name,
													      				epos->second.event_name,
													      				da,
													      				err);
													}

													CallBack   *callback = esspos->callback;
													EventQueue *ev_queue = esspos->ev_queue;

													if (callback != NULL )
													{
														try
														{
															callback->push_event(event_data);
														}
														catch (...)
														{
															ApiUtil *au = ApiUtil::instance();
															stringstream ss;

															ss << "EventConsumerKeepAliveThread::run_undetached() exception in callback method of " << epos->first;
															au->print_error_message(ss.str().c_str());
														}

														//event_data->attr_value = NULL;
														delete event_data;
													}

													// no calback method, the event has to be inserted
													// into the event queue
													else
													{
														ev_queue->insert_event(event_data);
													}
												}
											}

											else if (epos->second.event_name == CONF_TYPE_EVENT)
											{

//
// For attribute configuration event
//

												AttributeInfoEx *aie = NULL;
												DevErrorList err;
												err.length(0);
												string domain_name = epos->second.device->dev_name() + "/" + epos->second.attr_name;

												bool old_transp = epos->second.device->get_transparency_reconnection();
												epos->second.device->set_transparency_reconnection(true);

												try
												{
													aie = new AttributeInfoEx();
													*aie = epos->second.device->get_attribute_config(epos->second.attr_name);

//
// The reconnection worked fine. The heartbeat should come back now, when the notifd has not closed the connection.
// Increase the counter to detect when the heartbeat is not coming back.
//

													if (ipos->second.channel_type == NOTIFD)
														ipos->second.has_notifd_closed_the_connection++;
												}
												catch (DevFailed &e)
												{
													err = e.errors;
												}
												epos->second.device->set_transparency_reconnection(old_transp);

												unsigned int cb_nb = epos->second.callback_list.size();
												unsigned int cb_ctr = 0;
												AttributeInfoEx *aie_copy = NULL;

												for (esspos = epos->second.callback_list.begin(); esspos != epos->second.callback_list.end(); ++esspos)
												{
													cb_ctr++;
													AttrConfEventData *event_data;
													if (cb_ctr != cb_nb)
													{
														aie_copy = new AttributeInfoEx;
														*aie_copy = *aie;
														event_data = new AttrConfEventData(epos->second.device,
													      				domain_name,
													      				epos->second.event_name,
													      				aie_copy,
													      				err);
													}
													else
													{
														event_data = new AttrConfEventData(epos->second.device,
													      				domain_name,
													      				epos->second.event_name,
													      				aie,
													      				err);
													}

													CallBack   *callback = esspos->callback;
													EventQueue *ev_queue = esspos->ev_queue;

													// if a callback method was specified, call it!
													if (callback != NULL )
													{
														try
														{
															callback->push_event(event_data);
														}
														catch (...)
														{
															ApiUtil *au = ApiUtil::instance();
															stringstream ss;

															ss << "EventConsumerKeepAliveThread::run_undetached() exception in callback method of " << epos->first;
															au->print_error_message(ss.str().c_str());
														}

														delete event_data;
													}

													// no calback method, the event has to be instered
													// into the event queue
													else
													{
														ev_queue->insert_event(event_data);
													}
												}
											}
										}
									}
									// release callback monitor
									epos->second.callback_monitor->rel_monitor();
								}
								catch (...)
								{
									ApiUtil *au = ApiUtil::instance();
									stringstream ss;

									ss << "EventConsumerKeepAliveThread::run_undetached() timeout on callback monitor of " << epos->first;
									au->print_error_message(ss.str().c_str());
								}
							}
						}
					}
					else
					{
						// When the heartbeat has worked, mark the connection to the notifd as OK
						if (ipos->second.channel_type == NOTIFD)
							ipos->second.has_notifd_closed_the_connection = 0;
					}

					// release channel monitor
					ipos->second.channel_monitor->rel_monitor();
				}
				catch (...)
				{
					ApiUtil *au = ApiUtil::instance();
					stringstream ss;

					ss << "EventConsumerKeepAliveThread::run_undetached() timeout on callback monitor of " << epos->first;
					au->print_error_message(ss.str().c_str());
				}
			}
		}
	}

//
// If we arrive here, this means that we have received the exit thread command.
//

	return (void *)NULL;

}

//---------------------------------------------------------------------------------------------------------------------
//
// method :
//		EventConsumerKeepAliveThread::stateless_subscription_failed
//
// description :
//
// argument :
//		in :
//			- vpos : An iterator in the vector of non-connected event for the concerned event
//			- e : The received exception
//			- now : When the exception was received
//
//--------------------------------------------------------------------------------------------------------------------

void EventConsumerKeepAliveThread::stateless_subscription_failed(vector<EventNotConnected>::iterator &vpos,DevFailed &e,time_t &now)
{

//
// subscribe has not worked, try again in the next hearbeat period
//

    vpos->last_heartbeat = now;

//
// The event can still not be connected. Send the return error message as event to the client application.
// Push an event with the error message!
//

    DevErrorList err;
    err.length(0);
    string domain_name = vpos->device->dev_name() + "/" + vpos->attribute;
    err = e.errors;

//
// For attribute data event
//

    if ((vpos->event_name == "change") ||
        (vpos->event_name == "quality") ||
        (vpos->event_name == "archive") ||
        (vpos->event_name == "user_event"))
    {

        DeviceAttribute *da = NULL;
        EventData *event_data = new EventData(vpos->device,
                                                domain_name,
                                                vpos->event_name,
                                                da,
                                                err);

// if a callback method was specified, call it!

        if (vpos->callback != NULL )
        {
            try
            {
                vpos->callback->push_event(event_data);
            }
            catch (...)
            {
				ApiUtil *au = ApiUtil::instance();
				stringstream ss;

				ss << "EventConsumerKeepAliveThread::stateless_subscription_failed() exception in callback method of " << domain_name;
				au->print_error_message(ss.str().c_str());
            }

            delete event_data;
        }

//
// no callback method, the event has to be instered into the event queue
//
        else
        {
            vpos->ev_queue->insert_event(event_data);
        }
    }

//
// For attribute configuration event
//

    else if (vpos->event_name == CONF_TYPE_EVENT)
    {
        AttributeInfoEx *aie = NULL;
        AttrConfEventData *event_data = new AttrConfEventData(vpos->device,
                                                domain_name,
                                                vpos->event_name,
                                                aie,
                                                err);

//
// If a callback method was specified, call it!
//

        if (vpos->callback != NULL )
        {
            try
            {
                vpos->callback->push_event(event_data);
            }
            catch (...)
            {
				ApiUtil *au = ApiUtil::instance();
				stringstream ss;

				ss << "EventConsumerKeepAliveThread::stateless_subscription_failed() exception in callback method of " << domain_name;
				au->print_error_message(ss.str().c_str());
            }

            //event_data->attr_conf = NULL;
            delete event_data;
        }

//
// No calback method, the event has to be inserted into the event queue
//

        else
        {
            vpos->ev_queue->insert_event(event_data);
        }
    }
    else if (vpos->event_name == DATA_READY_TYPE_EVENT)
    {
        DataReadyEventData *event_data = new DataReadyEventData(vpos->device,NULL,vpos->event_name,err);

//
// If a callback method was specified, call it!
//

        if (vpos->callback != NULL )
        {
            try
            {
                vpos->callback->push_event(event_data);
            }
            catch (...)
            {
				ApiUtil *au = ApiUtil::instance();
				stringstream ss;

				ss << "EventConsumerKeepAliveThread::stateless_subscription_failed() exception in callback method of " << domain_name;
				au->print_error_message(ss.str().c_str());
            }
            delete event_data;
        }

//
// No callback method, the event has to be inserted into the event queue
//
        else
            vpos->ev_queue->insert_event(event_data);
    }
}

} /* End of Tango namespace */