Newer
Older
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
/*----- PROTECTED REGION ID(USB2Class.cpp) ENABLED START -----*/
static const char *TagName = "USB2 $Name: $";
static const char *CvsPath = "$Source: /home/cvsadm/cvsroot/fermi/servers/usb2/src/USB2Class.cpp,v $";
static const char *SvnPath = "$HeadURL: $";
static const char *HttpServer = "http://www.esrf.eu/computing/cs/tango/tango_doc/ds_doc/";
//=============================================================================
//
// file : USB2Class.cpp
//
// description : C++ source for the USB2Class.
// A singleton class derived from DeviceClass.
// It implements the command and attribute list
// and all properties and methods required
// by the USB2 once per process.
//
// project :
//
// 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: alessio $
//
// $Revision: 1.2 $
// $Date: 2018-01-23 12:42:42 $
//
// $HeadURL: $
//
//=============================================================================
// This file is generated by POGO
// (Program Obviously used to Generate tango Object)
//=============================================================================
#include <USB2Class.h>
/*----- PROTECTED REGION END -----*/ // USB2Class.cpp
//-------------------------------------------------------------------
/**
* Create USB2Class singleton and
* return it in a C function for Python usage
*/
//-------------------------------------------------------------------
extern "C" {
#ifdef _TG_WINDOWS_
__declspec(dllexport)
#endif
Tango::DeviceClass *_create_USB2_class(const char *name) {
return USB2_ns::USB2Class::init(name);
}
}
namespace USB2_ns
{
//===================================================================
// Initialize pointer for singleton pattern
//===================================================================
USB2Class *USB2Class::_instance = NULL;
//===================================================================
// Class constants
//===================================================================
//--------------------------------------------------------
/**
* method : USB2Class::USB2Class(std::string &s)
* description : constructor for the USB2Class
*
* @param s The class name
*/
//--------------------------------------------------------
USB2Class::USB2Class(std::string &s):Tango::DeviceClass(s)
TANGO_LOG_INFO << "Entering USB2Class constructor" << std::endl;
set_default_property();
write_class_property();
/*----- PROTECTED REGION ID(USB2Class::constructor) ENABLED START -----*/
/*----- PROTECTED REGION END -----*/ // USB2Class::constructor
TANGO_LOG_INFO << "Leaving USB2Class constructor" << std::endl;
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
}
//--------------------------------------------------------
/**
* method : USB2Class::~USB2Class()
* description : destructor for the USB2Class
*/
//--------------------------------------------------------
USB2Class::~USB2Class()
{
/*----- PROTECTED REGION ID(USB2Class::destructor) ENABLED START -----*/
/*----- PROTECTED REGION END -----*/ // USB2Class::destructor
_instance = NULL;
}
//--------------------------------------------------------
/**
* method : USB2Class::init
* description : Create the object if not already done.
* Otherwise, just return a pointer to the object
*
* @param name The class name
*/
//--------------------------------------------------------
USB2Class *USB2Class::init(const char *name)
{
if (_instance == NULL)
{
try
{
{
throw;
}
}
return _instance;
}
//--------------------------------------------------------
/**
* method : USB2Class::instance
* description : Check if object already created,
* and return a pointer to the object
*/
//--------------------------------------------------------
USB2Class *USB2Class::instance()
{
if (_instance == NULL)
{
std::cerr << "Class is not initialized !!" << std::endl;
exit(-1);
}
return _instance;
}
//===================================================================
// Command execution method calls
//===================================================================
//--------------------------------------------------------
/**
* method : WriteClass::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 *WriteClass::execute(Tango::DeviceImpl *device, const CORBA::Any &in_any)
{
TANGO_LOG_INFO << "WriteClass::execute(): arrived" << std::endl;
const Tango::DevVarCharArray *argin;
extract(in_any, argin);
((static_cast<USB2 *>(device))->write(argin));
return new CORBA::Any();
}
//--------------------------------------------------------
/**
* method : ReadClass::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 *ReadClass::execute(Tango::DeviceImpl *device, const CORBA::Any &in_any)
{
TANGO_LOG_INFO << "ReadClass::execute(): arrived" << std::endl;
Tango::DevLong argin;
extract(in_any, argin);
return insert((static_cast<USB2 *>(device))->read(argin));
}
//--------------------------------------------------------
/**
* method : ReadUntilClass::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 *ReadUntilClass::execute(Tango::DeviceImpl *device, const CORBA::Any &in_any)
{
TANGO_LOG_INFO << "ReadUntilClass::execute(): arrived" << std::endl;
const Tango::DevVarCharArray *argin;
extract(in_any, argin);
return insert((static_cast<USB2 *>(device))->read_until(argin));
}
//===================================================================
// Properties management
//===================================================================
//--------------------------------------------------------
/**
* Method : USB2Class::get_class_property()
* Description: Get the class property for specified name.
*/
//--------------------------------------------------------
Tango::DbDatum USB2Class::get_class_property(std::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 : USB2Class::get_default_device_property()
* Description: Return the default value for device property.
*/
//--------------------------------------------------------
Tango::DbDatum USB2Class::get_default_device_property(std::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 : USB2Class::get_default_class_property()
* Description: Return the default value for class property.
*/
//--------------------------------------------------------
Tango::DbDatum USB2Class::get_default_class_property(std::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 : USB2Class::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 USB2Class::set_default_property()
{
std::string prop_name;
std::string prop_desc;
std::string prop_def;
std::vector<std::string> vect_data;
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
// Set Default Class Properties
// Set Default device Properties
prop_name = "Timeout";
prop_desc = "";
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);
prop_name = "VendorID";
prop_desc = "";
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);
prop_name = "ProductID";
prop_desc = "";
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);
prop_name = "Interface";
prop_desc = "";
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);
prop_name = "EndpointUP";
prop_desc = "";
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);
prop_name = "EndpointDOWN";
prop_desc = "";
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);
prop_name = "MaxPacketSize";
prop_desc = "";
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);
}
//--------------------------------------------------------
/**
* Method : USB2Class::write_class_property()
* Description: Set class description fields as property in database
*/
//--------------------------------------------------------
void USB2Class::write_class_property()
{
// First time, check if database used
if (Tango::Util::_UseDb == false)
return;
Tango::DbData data;
std::string classname = get_name();
std::string header;
// Put title
Tango::DbDatum title("ProjectTitle");
title << str_title;
data.push_back(title);
// Put Description
Tango::DbDatum description("Description");
str_desc.push_back("");
description << str_desc;
data.push_back(description);
// Put inheritance
Tango::DbDatum inher_datum("InheritedFrom");
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 : USB2Class::device_factory()
* Description: Create the device object(s)
* and store them in the device list
*/
//--------------------------------------------------------
void USB2Class::device_factory(const Tango::DevVarStringArray *devlist_ptr)
{
/*----- PROTECTED REGION ID(USB2Class::device_factory_before) ENABLED START -----*/
// Add your own code
/*----- PROTECTED REGION END -----*/ // USB2Class::device_factory_before
// Create devices and add it into the device list
for (unsigned long i=0 ; i<devlist_ptr->length() ; i++)
{
TANGO_LOG_DEBUG << "Device name : " << (*devlist_ptr)[i].in() << std::endl;
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
device_list.push_back(new USB2(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
USB2 *dev = static_cast<USB2 *>(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(USB2Class::device_factory_after) ENABLED START -----*/
// Add your own code
/*----- PROTECTED REGION END -----*/ // USB2Class::device_factory_after
}
//--------------------------------------------------------
/**
* Method : USB2Class::attribute_factory()
* Description: Create the attribute object(s)
* and store them in the attribute list
*/
//--------------------------------------------------------
void USB2Class::attribute_factory(std::vector<Tango::Attr *> &att_list)
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
{
/*----- PROTECTED REGION ID(USB2Class::attribute_factory_before) ENABLED START -----*/
// Add your own code
/*----- PROTECTED REGION END -----*/ // USB2Class::attribute_factory_before
// Attribute : InputLength
InputLengthAttrib *inputlength = new InputLengthAttrib();
Tango::UserDefaultAttrProp inputlength_prop;
// description not set for InputLength
// label not set for InputLength
// unit not set for InputLength
// standard_unit not set for InputLength
// display_unit not set for InputLength
// format not set for InputLength
// max_value not set for InputLength
// min_value not set for InputLength
// max_alarm not set for InputLength
// min_alarm not set for InputLength
// max_warning not set for InputLength
// min_warning not set for InputLength
// delta_t not set for InputLength
// delta_val not set for InputLength
inputlength->set_default_properties(inputlength_prop);
// Not Polled
inputlength->set_disp_level(Tango::OPERATOR);
// Not Memorized
att_list.push_back(inputlength);
// Attribute : OutputLength
OutputLengthAttrib *outputlength = new OutputLengthAttrib();
Tango::UserDefaultAttrProp outputlength_prop;
// description not set for OutputLength
// label not set for OutputLength
// unit not set for OutputLength
// standard_unit not set for OutputLength
// display_unit not set for OutputLength
// format not set for OutputLength
// max_value not set for OutputLength
// min_value not set for OutputLength
// max_alarm not set for OutputLength
// min_alarm not set for OutputLength
// max_warning not set for OutputLength
// min_warning not set for OutputLength
// delta_t not set for OutputLength
// delta_val not set for OutputLength
outputlength->set_default_properties(outputlength_prop);
// Not Polled
outputlength->set_disp_level(Tango::OPERATOR);
// Not Memorized
att_list.push_back(outputlength);
// Attribute : Reconnections
ReconnectionsAttrib *reconnections = new ReconnectionsAttrib();
Tango::UserDefaultAttrProp reconnections_prop;
// description not set for Reconnections
// label not set for Reconnections
// unit not set for Reconnections
// standard_unit not set for Reconnections
// display_unit not set for Reconnections
// format not set for Reconnections
// max_value not set for Reconnections
// min_value not set for Reconnections
// max_alarm not set for Reconnections
// min_alarm not set for Reconnections
// max_warning not set for Reconnections
// min_warning not set for Reconnections
// delta_t not set for Reconnections
// delta_val not set for Reconnections
reconnections->set_default_properties(reconnections_prop);
// Not Polled
reconnections->set_disp_level(Tango::OPERATOR);
// Not Memorized
att_list.push_back(reconnections);
// Create a list of static attributes
create_static_attribute_list(get_class_attr()->get_attr_list());
/*----- PROTECTED REGION ID(USB2Class::attribute_factory_after) ENABLED START -----*/
// Add your own code
/*----- PROTECTED REGION END -----*/ // USB2Class::attribute_factory_after
}
//--------------------------------------------------------
/**
* Method : USB2Class::pipe_factory()
* Description: Create the pipe object(s)
* and store them in the pipe list
*/
//--------------------------------------------------------
void USB2Class::pipe_factory()
{
/*----- PROTECTED REGION ID(USB2Class::pipe_factory_before) ENABLED START -----*/
// Add your own code
/*----- PROTECTED REGION END -----*/ // USB2Class::pipe_factory_before
/*----- PROTECTED REGION ID(USB2Class::pipe_factory_after) ENABLED START -----*/
// Add your own code
/*----- PROTECTED REGION END -----*/ // USB2Class::pipe_factory_after
}
//--------------------------------------------------------
/**
* Method : USB2Class::command_factory()
* Description: Create the command object(s)
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
* and store them in the command list
*/
//--------------------------------------------------------
void USB2Class::command_factory()
{
/*----- PROTECTED REGION ID(USB2Class::command_factory_before) ENABLED START -----*/
// Add your own code
/*----- PROTECTED REGION END -----*/ // USB2Class::command_factory_before
// Command Write
WriteClass *pWriteCmd =
new WriteClass("Write",
Tango::DEVVAR_CHARARRAY, Tango::DEV_VOID,
"",
"",
Tango::OPERATOR);
command_list.push_back(pWriteCmd);
// Command Read
ReadClass *pReadCmd =
new ReadClass("Read",
Tango::DEV_LONG, Tango::DEVVAR_CHARARRAY,
"",
"",
Tango::OPERATOR);
command_list.push_back(pReadCmd);
// Command ReadUntil
ReadUntilClass *pReadUntilCmd =
new ReadUntilClass("ReadUntil",
Tango::DEVVAR_CHARARRAY, Tango::DEVVAR_CHARARRAY,
"",
"",
Tango::OPERATOR);
command_list.push_back(pReadUntilCmd);
/*----- PROTECTED REGION ID(USB2Class::command_factory_after) ENABLED START -----*/
// Add your own code
/*----- PROTECTED REGION END -----*/ // USB2Class::command_factory_after
}
//===================================================================
// Dynamic attributes related methods
//===================================================================
//--------------------------------------------------------
/**
* method : USB2Class::create_static_attribute_list
* description : Create the a list of static attributes
*
* @param att_list the created attribute list
*/
//--------------------------------------------------------
void USB2Class::create_static_attribute_list(std::vector<Tango::Attr *> &att_list)
{
for (unsigned long i=0 ; i<att_list.size() ; i++)
{
std::string att_name(att_list[i]->get_name());
transform(att_name.begin(), att_name.end(), att_name.begin(), ::tolower);
defaultAttList.push_back(att_name);
}
TANGO_LOG_INFO << defaultAttList.size() << " attributes in default list" << std::endl;
/*----- PROTECTED REGION ID(USB2Class::create_static_att_list) ENABLED START -----*/
/*----- PROTECTED REGION END -----*/ // USB2Class::create_static_att_list
}
//--------------------------------------------------------
/**
* method : USB2Class::erase_dynamic_attributes
* description : delete the dynamic attributes if any.
*
* @param devlist_ptr the device list pointer
* @param list of all attributes
*/
//--------------------------------------------------------
void USB2Class::erase_dynamic_attributes(const Tango::DevVarStringArray *devlist_ptr, std::vector<Tango::Attr *> &att_list)
{
Tango::Util *tg = Tango::Util::instance();
for (unsigned long i=0 ; i<devlist_ptr->length() ; i++)
{
Tango::DeviceImpl *dev_impl = tg->get_device_by_name(((std::string)(*devlist_ptr)[i]).c_str());
std::vector<Tango::Attribute *> &dev_att_list = dev->get_device_attr()->get_attribute_list();
std::vector<Tango::Attribute *>::iterator ite_att;
for (ite_att=dev_att_list.begin() ; ite_att != dev_att_list.end() ; ++ite_att)
{
std::string att_name((*ite_att)->get_name_lower());
if ((att_name == "state") || (att_name == "status"))
continue;
std::vector<std::string>::iterator ite_str = find(defaultAttList.begin(), defaultAttList.end(), att_name);
TANGO_LOG_INFO << att_name << " is a UNWANTED dynamic attribute for device " << (*devlist_ptr)[i] << std::endl;
Tango::Attribute &att = dev->get_device_attr()->get_attr_by_name(att_name.c_str());
dev->remove_attribute(att_list[att.get_attr_idx()], true, false);
--ite_att;
}
}
}
/*----- PROTECTED REGION ID(USB2Class::erase_dynamic_attributes) ENABLED START -----*/
/*----- PROTECTED REGION END -----*/ // USB2Class::erase_dynamic_attributes
}
//--------------------------------------------------------
/**
* Method : USB2Class::get_attr_object_by_name()
* Description: returns Tango::Attr * object found by name
*/
//--------------------------------------------------------
Tango::Attr *USB2Class::get_attr_object_by_name(std::vector<Tango::Attr *> &att_list, std::string attname)
std::vector<Tango::Attr *>::iterator it;
for (it=att_list.begin() ; it<att_list.end() ; ++it)
if ((*it)->get_name()==attname)
return (*it);
// Attr does not exist
return NULL;
}
/*----- PROTECTED REGION ID(USB2Class::Additional Methods) ENABLED START -----*/
/*----- PROTECTED REGION END -----*/ // USB2Class::Additional Methods
} // namespace