Newer
Older

Graziano Scalamera
committed
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
/*----- PROTECTED REGION ID(AlarmClass.cpp) ENABLED START -----*/
static const char *RcsId = "$Id: $";
static const char *TagName = "$Name: $";
static const char *CvsPath = "$Source: $";
static const char *SvnPath = "$HeadURL: $";
static const char *HttpServer = "http://www.esrf.eu/computing/cs/tango/tango_doc/ds_doc/";
//=============================================================================
//
// file : AlarmClass.cpp
//
// description : C++ source for the AlarmClass.
// A singleton class derived from DeviceClass.
// It implements the command and attribute list
// and all properties and methods required
// by the Alarm once per process.
//
// project : alarm
//
// This file is part of Tango device class.
//
// Tango is free software: you can redistribute it and/or modify
// it under the terms of the GNU 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 General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with Tango. If not, see <http://www.gnu.org/licenses/>.
//
// $Author: $
//
// $Revision: $
// $Date: $
//
// $HeadURL: $
//
//=============================================================================
// This file is generated by POGO
// (Program Obviously used to Generate tango Object)
//=============================================================================
#include <tango.h>
#include <Alarm.h>
#include <AlarmClass.h>
/*----- PROTECTED REGION END -----*/ // AlarmClass.cpp
//-------------------------------------------------------------------
/**
* Create AlarmClass singleton and
* return it in a C function for Python usage
*/
//-------------------------------------------------------------------
extern "C" {
#ifdef _TG_WINDOWS_
__declspec(dllexport)
#endif
Tango::DeviceClass *_create_Alarm_class(const char *name) {
return Alarm_ns::AlarmClass::init(name);
}
}
namespace Alarm_ns
{
//===================================================================
// Initialize pointer for singleton pattern
//===================================================================
AlarmClass *AlarmClass::_instance = NULL;
//--------------------------------------------------------
/**
* method : AlarmClass::AlarmClass(string &s)
* description : constructor for the AlarmClass
*
* @param s The class name
*/
//--------------------------------------------------------
AlarmClass::AlarmClass(string &s):Tango::DeviceClass(s)
{
cout2 << "Entering AlarmClass constructor" << endl;
set_default_property();
write_class_property();
/*----- PROTECTED REGION ID(AlarmClass::constructor) ENABLED START -----*/
/*----- PROTECTED REGION END -----*/ // AlarmClass::constructor
cout2 << "Leaving AlarmClass constructor" << endl;
}
//--------------------------------------------------------
/**
* method : AlarmClass::~AlarmClass()
* description : destructor for the AlarmClass
*/
//--------------------------------------------------------
AlarmClass::~AlarmClass()
{
/*----- PROTECTED REGION ID(AlarmClass::destructor) ENABLED START -----*/
/*----- PROTECTED REGION END -----*/ // AlarmClass::destructor
_instance = NULL;
}
//--------------------------------------------------------
/**
* method : AlarmClass::init
* description : Create the object if not already done.
* Otherwise, just return a pointer to the object
*
* @param name The class name
*/
//--------------------------------------------------------
AlarmClass *AlarmClass::init(const char *name)
{
if (_instance == NULL)
{
try
{
string s(name);
_instance = new AlarmClass(s);
}
catch (bad_alloc &)
{
throw;
}
}
return _instance;
}
//--------------------------------------------------------
/**
* method : AlarmClass::instance
* description : Check if object already created,
* and return a pointer to the object
*/
//--------------------------------------------------------
AlarmClass *AlarmClass::instance()
{
if (_instance == NULL)
{
cerr << "Class is not initialised !!" << endl;
exit(-1);
}
return _instance;
}
//===================================================================
// Command execution method calls
//===================================================================
//--------------------------------------------------------
/**
* method : AckClass::execute()
* description : method to trigger the execution of the command.
*
* @param device The device on which the command must be executed
* @param in_any The command input data
*
* returns The command output data (packed in the Any object)
*/
//--------------------------------------------------------
CORBA::Any *AckClass::execute(Tango::DeviceImpl *device, const CORBA::Any &in_any)
{
cout2 << "AckClass::execute(): arrived" << endl;
const Tango::DevVarStringArray *argin;
extract(in_any, argin);
((static_cast<Alarm *>(device))->ack(argin));
return new CORBA::Any();
}
//--------------------------------------------------------
/**
* method : LoadClass::execute()
* description : method to trigger the execution of the command.
*
* @param device The device on which the command must be executed
* @param in_any The command input data
*
* returns The command output data (packed in the Any object)
*/
//--------------------------------------------------------
CORBA::Any *LoadClass::execute(Tango::DeviceImpl *device, const CORBA::Any &in_any)
{
cout2 << "LoadClass::execute(): arrived" << endl;
Tango::DevString argin;
extract(in_any, argin);
((static_cast<Alarm *>(device))->load(argin));
return new CORBA::Any();
}
//--------------------------------------------------------
/**
* method : RemoveClass::execute()
* description : method to trigger the execution of the command.
*
* @param device The device on which the command must be executed
* @param in_any The command input data
*
* returns The command output data (packed in the Any object)
*/
//--------------------------------------------------------
CORBA::Any *RemoveClass::execute(Tango::DeviceImpl *device, const CORBA::Any &in_any)
{
cout2 << "RemoveClass::execute(): arrived" << endl;
Tango::DevString argin;
extract(in_any, argin);
((static_cast<Alarm *>(device))->remove(argin));
return new CORBA::Any();
}
//--------------------------------------------------------
/**

Graziano Scalamera
committed
* method : SearchAlarmClass::execute()

Graziano Scalamera
committed
* description : method to trigger the execution of the command.
*
* @param device The device on which the command must be executed
* @param in_any The command input data
*
* returns The command output data (packed in the Any object)
*/
//--------------------------------------------------------

Graziano Scalamera
committed
CORBA::Any *SearchAlarmClass::execute(Tango::DeviceImpl *device, const CORBA::Any &in_any)

Graziano Scalamera
committed
{

Graziano Scalamera
committed
cout2 << "SearchAlarmClass::execute(): arrived" << endl;

Graziano Scalamera
committed
Tango::DevString argin;
extract(in_any, argin);

Graziano Scalamera
committed
return insert((static_cast<Alarm *>(device))->search_alarm(argin));

Graziano Scalamera
committed
}
//--------------------------------------------------------
/**

Graziano Scalamera
committed
* method : StopAudibleClass::execute()

Graziano Scalamera
committed
* description : method to trigger the execution of the command.
*
* @param device The device on which the command must be executed
* @param in_any The command input data
*
* returns The command output data (packed in the Any object)
*/
//--------------------------------------------------------

Graziano Scalamera
committed
CORBA::Any *StopAudibleClass::execute(Tango::DeviceImpl *device, TANGO_UNUSED(const CORBA::Any &in_any))

Graziano Scalamera
committed
{

Graziano Scalamera
committed
cout2 << "StopAudibleClass::execute(): arrived" << endl;
((static_cast<Alarm *>(device))->stop_audible());

Graziano Scalamera
committed
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
return new CORBA::Any();
}
//--------------------------------------------------------
/**
* method : SilenceClass::execute()
* description : method to trigger the execution of the command.
*
* @param device The device on which the command must be executed
* @param in_any The command input data
*
* returns The command output data (packed in the Any object)
*/
//--------------------------------------------------------
CORBA::Any *SilenceClass::execute(Tango::DeviceImpl *device, const CORBA::Any &in_any)
{
cout2 << "SilenceClass::execute(): arrived" << endl;
const Tango::DevVarStringArray *argin;
extract(in_any, argin);
((static_cast<Alarm *>(device))->silence(argin));
return new CORBA::Any();
}
//--------------------------------------------------------
/**
* method : ModifyClass::execute()
* description : method to trigger the execution of the command.
*
* @param device The device on which the command must be executed
* @param in_any The command input data
*
* returns The command output data (packed in the Any object)
*/
//--------------------------------------------------------
CORBA::Any *ModifyClass::execute(Tango::DeviceImpl *device, const CORBA::Any &in_any)
{
cout2 << "ModifyClass::execute(): arrived" << endl;
Tango::DevString argin;
extract(in_any, argin);
((static_cast<Alarm *>(device))->modify(argin));
return new CORBA::Any();
}

Graziano Scalamera
committed
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
//--------------------------------------------------------
/**
* method : ShelveClass::execute()
* description : method to trigger the execution of the command.
*
* @param device The device on which the command must be executed
* @param in_any The command input data
*
* returns The command output data (packed in the Any object)
*/
//--------------------------------------------------------
CORBA::Any *ShelveClass::execute(Tango::DeviceImpl *device, const CORBA::Any &in_any)
{
cout2 << "ShelveClass::execute(): arrived" << endl;
const Tango::DevVarStringArray *argin;
extract(in_any, argin);
((static_cast<Alarm *>(device))->shelve(argin));
return new CORBA::Any();
}
//--------------------------------------------------------
/**
* method : EnableClass::execute()
* description : method to trigger the execution of the command.
*
* @param device The device on which the command must be executed
* @param in_any The command input data
*
* returns The command output data (packed in the Any object)
*/
//--------------------------------------------------------
CORBA::Any *EnableClass::execute(Tango::DeviceImpl *device, const CORBA::Any &in_any)
{
cout2 << "EnableClass::execute(): arrived" << endl;
Tango::DevString argin;
extract(in_any, argin);
((static_cast<Alarm *>(device))->enable(argin));
return new CORBA::Any();
}
//--------------------------------------------------------
/**
* method : DisableClass::execute()
* description : method to trigger the execution of the command.
*
* @param device The device on which the command must be executed
* @param in_any The command input data
*
* returns The command output data (packed in the Any object)
*/
//--------------------------------------------------------
CORBA::Any *DisableClass::execute(Tango::DeviceImpl *device, const CORBA::Any &in_any)
{
cout2 << "DisableClass::execute(): arrived" << endl;
Tango::DevString argin;
extract(in_any, argin);
((static_cast<Alarm *>(device))->disable(argin));
return new CORBA::Any();
}
//--------------------------------------------------------
/**
* method : ResetStatisticsClass::execute()
* description : method to trigger the execution of the command.
*
* @param device The device on which the command must be executed
* @param in_any The command input data
*
* returns The command output data (packed in the Any object)
*/
//--------------------------------------------------------
CORBA::Any *ResetStatisticsClass::execute(Tango::DeviceImpl *device, TANGO_UNUSED(const CORBA::Any &in_any))
{
cout2 << "ResetStatisticsClass::execute(): arrived" << endl;
((static_cast<Alarm *>(device))->reset_statistics());
return new CORBA::Any();
}

Graziano Scalamera
committed
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
//===================================================================
// Properties management
//===================================================================
//--------------------------------------------------------
/**
* Method : AlarmClass::get_class_property()
* Description : Get the class property for specified name.
*/
//--------------------------------------------------------
Tango::DbDatum AlarmClass::get_class_property(string &prop_name)
{
for (unsigned int i=0 ; i<cl_prop.size() ; i++)
if (cl_prop[i].name == prop_name)
return cl_prop[i];
// if not found, returns an empty DbDatum
return Tango::DbDatum(prop_name);
}
//--------------------------------------------------------
/**
* Method : AlarmClass::get_default_device_property()
* Description : Return the default value for device property.
*/
//--------------------------------------------------------
Tango::DbDatum AlarmClass::get_default_device_property(string &prop_name)
{
for (unsigned int i=0 ; i<dev_def_prop.size() ; i++)
if (dev_def_prop[i].name == prop_name)
return dev_def_prop[i];
// if not found, return an empty DbDatum
return Tango::DbDatum(prop_name);
}
//--------------------------------------------------------
/**
* Method : AlarmClass::get_default_class_property()
* Description : Return the default value for class property.
*/
//--------------------------------------------------------
Tango::DbDatum AlarmClass::get_default_class_property(string &prop_name)
{
for (unsigned int i=0 ; i<cl_def_prop.size() ; i++)
if (cl_def_prop[i].name == prop_name)
return cl_def_prop[i];
// if not found, return an empty DbDatum
return Tango::DbDatum(prop_name);
}
//--------------------------------------------------------
/**
* Method : AlarmClass::set_default_property()
* Description : Set default property (class and device) for wizard.
* For each property, add to wizard property name and description.
* If default value has been set, add it to wizard property and
* store it in a DbDatum.
*/
//--------------------------------------------------------
void AlarmClass::set_default_property()
{
string prop_name;
string prop_desc;
string prop_def;
vector<string> vect_data;
// Set Default Class Properties
// Set Default device Properties
prop_name = "GroupNames";
prop_desc = "Labels for Group mask, first is for mask 0x00";
prop_def = "";
vect_data.clear();
if (prop_def.length()>0)
{
Tango::DbDatum data(prop_name);
data << vect_data ;
dev_def_prop.push_back(data);
add_wiz_dev_prop(prop_name, prop_desc, prop_def);
}
else
add_wiz_dev_prop(prop_name, prop_desc);

Graziano Scalamera
committed
prop_name = "SubscribeRetryPeriod";
prop_desc = "Retry subscription period in seconds";
prop_def = "30";

Graziano Scalamera
committed
vect_data.clear();

Graziano Scalamera
committed
vect_data.push_back("30");

Graziano Scalamera
committed
if (prop_def.length()>0)
{
Tango::DbDatum data(prop_name);
data << vect_data ;
dev_def_prop.push_back(data);
add_wiz_dev_prop(prop_name, prop_desc, prop_def);
}
else
add_wiz_dev_prop(prop_name, prop_desc);

Graziano Scalamera
committed
prop_name = "StatisticsTimeWindow";
prop_desc = "Time window to compute statistics in seconds";
prop_def = "60";

Graziano Scalamera
committed
vect_data.push_back("60");
if (prop_def.length()>0)
{
Tango::DbDatum data(prop_name);
data << vect_data ;
dev_def_prop.push_back(data);
add_wiz_dev_prop(prop_name, prop_desc, prop_def);
}
else
add_wiz_dev_prop(prop_name, prop_desc);

Graziano Scalamera
committed
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
}
//--------------------------------------------------------
/**
* Method : AlarmClass::write_class_property()
* Description : Set class description fields as property in database
*/
//--------------------------------------------------------
void AlarmClass::write_class_property()
{
// First time, check if database used
if (Tango::Util::_UseDb == false)
return;
Tango::DbData data;
string classname = get_name();
string header;
string::size_type start, end;
// Put title
Tango::DbDatum title("ProjectTitle");
string str_title("Elettra alarm device server");
title << str_title;
data.push_back(title);
// Put Description
Tango::DbDatum description("Description");
vector<string> str_desc;
str_desc.push_back("Elettra alarm device server");
description << str_desc;
data.push_back(description);
// Put inheritance
Tango::DbDatum inher_datum("InheritedFrom");
vector<string> inheritance;
inheritance.push_back("TANGO_BASE_CLASS");
inher_datum << inheritance;
data.push_back(inher_datum);
// Call database and and values
get_db_class()->put_property(data);
}
//===================================================================
// Factory methods
//===================================================================
//--------------------------------------------------------
/**
* Method : AlarmClass::device_factory()
* Description : Create the device object(s)
* and store them in the device list
*/
//--------------------------------------------------------
void AlarmClass::device_factory(const Tango::DevVarStringArray *devlist_ptr)
{
/*----- PROTECTED REGION ID(AlarmClass::device_factory_before) ENABLED START -----*/
// Add your own code
/*----- PROTECTED REGION END -----*/ // AlarmClass::device_factory_before
// Create devices and add it into the device list
for (unsigned long i=0 ; i<devlist_ptr->length() ; i++)
{
cout4 << "Device name : " << (*devlist_ptr)[i].in() << endl;
device_list.push_back(new Alarm(this, (*devlist_ptr)[i]));
}
// Manage dynamic attributes if any
erase_dynamic_attributes(devlist_ptr, get_class_attr()->get_attr_list());
// Export devices to the outside world
for (unsigned long i=1 ; i<=devlist_ptr->length() ; i++)
{
// Add dynamic attributes if any
Alarm *dev = static_cast<Alarm *>(device_list[device_list.size()-i]);
dev->add_dynamic_attributes();
// Check before if database used.
if ((Tango::Util::_UseDb == true) && (Tango::Util::_FileDb == false))
export_device(dev);
else
export_device(dev, dev->get_name().c_str());
}
/*----- PROTECTED REGION ID(AlarmClass::device_factory_after) ENABLED START -----*/
// Add your own code
/*----- PROTECTED REGION END -----*/ // AlarmClass::device_factory_after
}
//--------------------------------------------------------
/**
* Method : AlarmClass::attribute_factory()
* Description : Create the attribute object(s)
* and store them in the attribute list
*/
//--------------------------------------------------------
void AlarmClass::attribute_factory(vector<Tango::Attr *> &att_list)
{
/*----- PROTECTED REGION ID(AlarmClass::attribute_factory_before) ENABLED START -----*/
// Add your own code
/*----- PROTECTED REGION END -----*/ // AlarmClass::attribute_factory_before

Graziano Scalamera
committed
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
// Attribute : audibleAlarm
audibleAlarmAttrib *audiblealarm = new audibleAlarmAttrib();
Tango::UserDefaultAttrProp audiblealarm_prop;
audiblealarm_prop.set_description("True if there is at least one alarm that needs audible indication on the GUI");
// label not set for audibleAlarm
// unit not set for audibleAlarm
// standard_unit not set for audibleAlarm
// display_unit not set for audibleAlarm
// format not set for audibleAlarm
// max_value not set for audibleAlarm
// min_value not set for audibleAlarm
// max_alarm not set for audibleAlarm
// min_alarm not set for audibleAlarm
// max_warning not set for audibleAlarm
// min_warning not set for audibleAlarm
// delta_t not set for audibleAlarm
// delta_val not set for audibleAlarm
audiblealarm->set_default_properties(audiblealarm_prop);
// Not Polled
audiblealarm->set_disp_level(Tango::OPERATOR);
// Not Memorized
audiblealarm->set_change_event(true, false);
audiblealarm->set_archive_event(true, false);
att_list.push_back(audiblealarm);
// Attribute : StatisticsResetTime
StatisticsResetTimeAttrib *statisticsresettime = new StatisticsResetTimeAttrib();
Tango::UserDefaultAttrProp statisticsresettime_prop;
statisticsresettime_prop.set_description("Time elapsed in seconds since last Resetstatistics");
// label not set for StatisticsResetTime
statisticsresettime_prop.set_unit("s");
statisticsresettime_prop.set_standard_unit("1");
statisticsresettime_prop.set_display_unit("s");
// format not set for StatisticsResetTime
// max_value not set for StatisticsResetTime
// min_value not set for StatisticsResetTime
// max_alarm not set for StatisticsResetTime
// min_alarm not set for StatisticsResetTime
// max_warning not set for StatisticsResetTime
// min_warning not set for StatisticsResetTime
// delta_t not set for StatisticsResetTime
// delta_val not set for StatisticsResetTime
statisticsresettime->set_default_properties(statisticsresettime_prop);
// Not Polled
statisticsresettime->set_disp_level(Tango::OPERATOR);
// Not Memorized
att_list.push_back(statisticsresettime);

Graziano Scalamera
committed
// Attribute : alarm
alarmAttrib *alarm = new alarmAttrib();
Tango::UserDefaultAttrProp alarm_prop;
// description not set for alarm
// label not set for alarm
// unit not set for alarm
// standard_unit not set for alarm
// display_unit not set for alarm
// format not set for alarm
// max_value not set for alarm
// min_value not set for alarm
// max_alarm not set for alarm
// min_alarm not set for alarm
// max_warning not set for alarm
// min_warning not set for alarm
// delta_t not set for alarm
// delta_val not set for alarm
alarm->set_default_properties(alarm_prop);
// Not Polled
alarm->set_disp_level(Tango::OPERATOR);
// Not Memorized
att_list.push_back(alarm);

Graziano Scalamera
committed
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
// Attribute : normalAlarms
normalAlarmsAttrib *normalalarms = new normalAlarmsAttrib();
Tango::UserDefaultAttrProp normalalarms_prop;
normalalarms_prop.set_description("List of alarms in normal state");
// label not set for normalAlarms
// unit not set for normalAlarms
// standard_unit not set for normalAlarms
// display_unit not set for normalAlarms
// format not set for normalAlarms
// max_value not set for normalAlarms
// min_value not set for normalAlarms
// max_alarm not set for normalAlarms
// min_alarm not set for normalAlarms
// max_warning not set for normalAlarms
// min_warning not set for normalAlarms
// delta_t not set for normalAlarms
// delta_val not set for normalAlarms
normalalarms->set_default_properties(normalalarms_prop);
// Not Polled
normalalarms->set_disp_level(Tango::OPERATOR);
// Not Memorized
normalalarms->set_change_event(true, true);
normalalarms->set_archive_event(true, true);
att_list.push_back(normalalarms);
// Attribute : unacknowledgedAlarms
unacknowledgedAlarmsAttrib *unacknowledgedalarms = new unacknowledgedAlarmsAttrib();
Tango::UserDefaultAttrProp unacknowledgedalarms_prop;
unacknowledgedalarms_prop.set_description("List of alarms in unacknowledged state");
// label not set for unacknowledgedAlarms
// unit not set for unacknowledgedAlarms
// standard_unit not set for unacknowledgedAlarms
// display_unit not set for unacknowledgedAlarms
// format not set for unacknowledgedAlarms
// max_value not set for unacknowledgedAlarms
// min_value not set for unacknowledgedAlarms
// max_alarm not set for unacknowledgedAlarms
// min_alarm not set for unacknowledgedAlarms
// max_warning not set for unacknowledgedAlarms
// min_warning not set for unacknowledgedAlarms
// delta_t not set for unacknowledgedAlarms
// delta_val not set for unacknowledgedAlarms
unacknowledgedalarms->set_default_properties(unacknowledgedalarms_prop);
// Not Polled
unacknowledgedalarms->set_disp_level(Tango::OPERATOR);
// Not Memorized
unacknowledgedalarms->set_change_event(true, true);
unacknowledgedalarms->set_archive_event(true, true);
att_list.push_back(unacknowledgedalarms);
// Attribute : acknowledgedAlarms
acknowledgedAlarmsAttrib *acknowledgedalarms = new acknowledgedAlarmsAttrib();
Tango::UserDefaultAttrProp acknowledgedalarms_prop;
acknowledgedalarms_prop.set_description("List of alarms in acknowledged state");
// label not set for acknowledgedAlarms
// unit not set for acknowledgedAlarms
// standard_unit not set for acknowledgedAlarms
// display_unit not set for acknowledgedAlarms
// format not set for acknowledgedAlarms
// max_value not set for acknowledgedAlarms
// min_value not set for acknowledgedAlarms
// max_alarm not set for acknowledgedAlarms
// min_alarm not set for acknowledgedAlarms
// max_warning not set for acknowledgedAlarms
// min_warning not set for acknowledgedAlarms
// delta_t not set for acknowledgedAlarms
// delta_val not set for acknowledgedAlarms
acknowledgedalarms->set_default_properties(acknowledgedalarms_prop);
// Not Polled
acknowledgedalarms->set_disp_level(Tango::OPERATOR);
// Not Memorized
acknowledgedalarms->set_change_event(true, true);
acknowledgedalarms->set_archive_event(true, true);
att_list.push_back(acknowledgedalarms);
// Attribute : unacknowledgedNormalAlarms
unacknowledgedNormalAlarmsAttrib *unacknowledgednormalalarms = new unacknowledgedNormalAlarmsAttrib();
Tango::UserDefaultAttrProp unacknowledgednormalalarms_prop;
unacknowledgednormalalarms_prop.set_description("List of alarms in unacknowledged normal state");
// label not set for unacknowledgedNormalAlarms
// unit not set for unacknowledgedNormalAlarms
// standard_unit not set for unacknowledgedNormalAlarms
// display_unit not set for unacknowledgedNormalAlarms
// format not set for unacknowledgedNormalAlarms
// max_value not set for unacknowledgedNormalAlarms
// min_value not set for unacknowledgedNormalAlarms
// max_alarm not set for unacknowledgedNormalAlarms
// min_alarm not set for unacknowledgedNormalAlarms
// max_warning not set for unacknowledgedNormalAlarms
// min_warning not set for unacknowledgedNormalAlarms
// delta_t not set for unacknowledgedNormalAlarms
// delta_val not set for unacknowledgedNormalAlarms
unacknowledgednormalalarms->set_default_properties(unacknowledgednormalalarms_prop);
// Not Polled
unacknowledgednormalalarms->set_disp_level(Tango::OPERATOR);
// Not Memorized
unacknowledgednormalalarms->set_change_event(true, true);
unacknowledgednormalalarms->set_archive_event(true, true);
att_list.push_back(unacknowledgednormalalarms);
// Attribute : shelvedAlarms
shelvedAlarmsAttrib *shelvedalarms = new shelvedAlarmsAttrib();
Tango::UserDefaultAttrProp shelvedalarms_prop;
shelvedalarms_prop.set_description("List of alarms in shelved state");
// label not set for shelvedAlarms
// unit not set for shelvedAlarms
// standard_unit not set for shelvedAlarms
// display_unit not set for shelvedAlarms
// format not set for shelvedAlarms
// max_value not set for shelvedAlarms
// min_value not set for shelvedAlarms
// max_alarm not set for shelvedAlarms
// min_alarm not set for shelvedAlarms
// max_warning not set for shelvedAlarms
// min_warning not set for shelvedAlarms
// delta_t not set for shelvedAlarms
// delta_val not set for shelvedAlarms
shelvedalarms->set_default_properties(shelvedalarms_prop);
// Not Polled
shelvedalarms->set_disp_level(Tango::OPERATOR);
// Not Memorized
shelvedalarms->set_change_event(true, true);
shelvedalarms->set_archive_event(true, true);
att_list.push_back(shelvedalarms);
// Attribute : outOfServiceAlarms
outOfServiceAlarmsAttrib *outofservicealarms = new outOfServiceAlarmsAttrib();
Tango::UserDefaultAttrProp outofservicealarms_prop;
outofservicealarms_prop.set_description("List of alarms in out of service state");
// label not set for outOfServiceAlarms
// unit not set for outOfServiceAlarms
// standard_unit not set for outOfServiceAlarms
// display_unit not set for outOfServiceAlarms
// format not set for outOfServiceAlarms
// max_value not set for outOfServiceAlarms
// min_value not set for outOfServiceAlarms
// max_alarm not set for outOfServiceAlarms
// min_alarm not set for outOfServiceAlarms
// max_warning not set for outOfServiceAlarms
// min_warning not set for outOfServiceAlarms
// delta_t not set for outOfServiceAlarms
// delta_val not set for outOfServiceAlarms
outofservicealarms->set_default_properties(outofservicealarms_prop);
// Not Polled
outofservicealarms->set_disp_level(Tango::OPERATOR);
// Not Memorized
outofservicealarms->set_change_event(true, true);
outofservicealarms->set_archive_event(true, true);
att_list.push_back(outofservicealarms);
// Attribute : silencedAlarms
silencedAlarmsAttrib *silencedalarms = new silencedAlarmsAttrib();
Tango::UserDefaultAttrProp silencedalarms_prop;
silencedalarms_prop.set_description("List of alarms in silenced state");
// label not set for silencedAlarms
// unit not set for silencedAlarms
// standard_unit not set for silencedAlarms
// display_unit not set for silencedAlarms
// format not set for silencedAlarms
// max_value not set for silencedAlarms
// min_value not set for silencedAlarms
// max_alarm not set for silencedAlarms
// min_alarm not set for silencedAlarms
// max_warning not set for silencedAlarms
// min_warning not set for silencedAlarms
// delta_t not set for silencedAlarms
// delta_val not set for silencedAlarms
silencedalarms->set_default_properties(silencedalarms_prop);
// Not Polled
silencedalarms->set_disp_level(Tango::OPERATOR);
// Not Memorized
silencedalarms->set_change_event(true, true);
silencedalarms->set_archive_event(true, true);
att_list.push_back(silencedalarms);
// Attribute : listAlarms
listAlarmsAttrib *listalarms = new listAlarmsAttrib();
Tango::UserDefaultAttrProp listalarms_prop;
listalarms_prop.set_description("List of all alarms");
// label not set for listAlarms
// unit not set for listAlarms
// standard_unit not set for listAlarms
// display_unit not set for listAlarms
// format not set for listAlarms
// max_value not set for listAlarms
// min_value not set for listAlarms
// max_alarm not set for listAlarms
// min_alarm not set for listAlarms
// max_warning not set for listAlarms
// min_warning not set for listAlarms
// delta_t not set for listAlarms
// delta_val not set for listAlarms
listalarms->set_default_properties(listalarms_prop);
// Not Polled
listalarms->set_disp_level(Tango::OPERATOR);
// Not Memorized
listalarms->set_change_event(true, true);
listalarms->set_archive_event(true, true);
att_list.push_back(listalarms);
// Attribute : frequencyAlarms
frequencyAlarmsAttrib *frequencyalarms = new frequencyAlarmsAttrib();
Tango::UserDefaultAttrProp frequencyalarms_prop;
frequencyalarms_prop.set_description("List of frequency of evaluation of all alarms");
// label not set for frequencyAlarms
// unit not set for frequencyAlarms
// standard_unit not set for frequencyAlarms
// display_unit not set for frequencyAlarms
// format not set for frequencyAlarms
// max_value not set for frequencyAlarms
// min_value not set for frequencyAlarms
// max_alarm not set for frequencyAlarms
// min_alarm not set for frequencyAlarms
// max_warning not set for frequencyAlarms
// min_warning not set for frequencyAlarms
// delta_t not set for frequencyAlarms
// delta_val not set for frequencyAlarms
frequencyalarms->set_default_properties(frequencyalarms_prop);
// Not Polled
frequencyalarms->set_disp_level(Tango::OPERATOR);
// Not Memorized
frequencyalarms->set_change_event(true, true);
frequencyalarms->set_archive_event(true, true);
att_list.push_back(frequencyalarms);

Graziano Scalamera
committed
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
// Create a list of static attributes
create_static_attribute_list(get_class_attr()->get_attr_list());
/*----- PROTECTED REGION ID(AlarmClass::attribute_factory_after) ENABLED START -----*/
// Add your own code
/*----- PROTECTED REGION END -----*/ // AlarmClass::attribute_factory_after
}
//--------------------------------------------------------
/**
* Method : AlarmClass::pipe_factory()
* Description : Create the pipe object(s)
* and store them in the pipe list
*/
//--------------------------------------------------------
void AlarmClass::pipe_factory()
{
/*----- PROTECTED REGION ID(AlarmClass::pipe_factory_before) ENABLED START -----*/
// Add your own code
/*----- PROTECTED REGION END -----*/ // AlarmClass::pipe_factory_before
/*----- PROTECTED REGION ID(AlarmClass::pipe_factory_after) ENABLED START -----*/
// Add your own code
/*----- PROTECTED REGION END -----*/ // AlarmClass::pipe_factory_after
}
//--------------------------------------------------------
/**
* Method : AlarmClass::command_factory()
* Description : Create the command object(s)
* and store them in the command list
*/
//--------------------------------------------------------
void AlarmClass::command_factory()
{
/*----- PROTECTED REGION ID(AlarmClass::command_factory_before) ENABLED START -----*/
// Add your own code
/*----- PROTECTED REGION END -----*/ // AlarmClass::command_factory_before
// Command Ack
AckClass *pAckCmd =
new AckClass("Ack",
Tango::DEVVAR_STRINGARRAY, Tango::DEV_VOID,
"String array containing the alarms to be acknowledged",
"",
Tango::OPERATOR);
command_list.push_back(pAckCmd);
// Command Load
LoadClass *pLoadCmd =
new LoadClass("Load",
Tango::DEV_STRING, Tango::DEV_VOID,
"Alarm entry",
"",
Tango::OPERATOR);
command_list.push_back(pLoadCmd);
// Command Remove
RemoveClass *pRemoveCmd =
new RemoveClass("Remove",
Tango::DEV_STRING, Tango::DEV_VOID,
"Alarm name",
"",
Tango::OPERATOR);
command_list.push_back(pRemoveCmd);

Graziano Scalamera
committed
// Command SearchAlarm
SearchAlarmClass *pSearchAlarmCmd =
new SearchAlarmClass("SearchAlarm",

Graziano Scalamera
committed
Tango::DEV_STRING, Tango::DEVVAR_STRINGARRAY,

Graziano Scalamera
committed
"String containing a filter for output, if empty or * return all alarms",
"Configured alarms",

Graziano Scalamera
committed
Tango::OPERATOR);

Graziano Scalamera
committed
command_list.push_back(pSearchAlarmCmd);

Graziano Scalamera
committed

Graziano Scalamera
committed
// Command StopAudible
StopAudibleClass *pStopAudibleCmd =
new StopAudibleClass("StopAudible",

Graziano Scalamera
committed
Tango::DEV_VOID, Tango::DEV_VOID,
"",
"",
Tango::OPERATOR);

Graziano Scalamera
committed
command_list.push_back(pStopAudibleCmd);

Graziano Scalamera
committed
// Command Silence
SilenceClass *pSilenceCmd =
new SilenceClass("Silence",
Tango::DEVVAR_STRINGARRAY, Tango::DEV_VOID,
"String array containing the alarms to be silenced",
"",
Tango::OPERATOR);
command_list.push_back(pSilenceCmd);