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
|
/*----- PROTECTED REGION ID(IfchangeServer.h) ENABLED START -----*/
//=============================================================================
//
// file : IfchangeServer.h
//
// description : Include file for the IfchangeServer class
//
// 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: $
//
// $Revision: $
// $Date: $
//
// $HeadURL: $
//
//=============================================================================
// This file is generated by POGO
// (Program Obviously used to Generate tango Object)
//=============================================================================
#ifndef IfchangeServer_H
#define IfchangeServer_H
#include <tango/tango.h>
/*----- PROTECTED REGION END -----*/ // IfchangeServer.h
/**
* IfchangeServer class description:
*
*/
namespace IfchangeServer_ns
{
/*----- PROTECTED REGION ID(IfchangeServer::Additional Class Declarations) ENABLED START -----*/
// Additional Class Declarations
/*----- PROTECTED REGION END -----*/ // IfchangeServer::Additional Class Declarations
class IfchangeServer : public TANGO_BASE_CLASS
{
/*----- PROTECTED REGION ID(IfchangeServer::Data Members) ENABLED START -----*/
// Add your own data members
/*----- PROTECTED REGION END -----*/ // IfchangeServer::Data Members
// Attribute data members
public:
Tango::DevBoolean *attr_busy_read;
// Constructors and destructors
public:
/**
* Constructs a newly device object.
*
* @param cl Class.
* @param s Device Name
*/
IfchangeServer(Tango::DeviceClass *cl, string &s);
/**
* Constructs a newly device object.
*
* @param cl Class.
* @param s Device Name
*/
IfchangeServer(Tango::DeviceClass *cl, const char *s);
/**
* Constructs a newly device object.
*
* @param cl Class.
* @param s Device name
* @param d Device description.
*/
IfchangeServer(Tango::DeviceClass *cl, const char *s, const char *d);
/**
* The device object destructor.
*/
~IfchangeServer()
{
delete_device();
}
// Miscellaneous methods
public:
/*
* will be called at device destruction or at init command.
*/
void delete_device();
/*
* Initialize the device
*/
virtual void init_device();
/*
* Always executed method before execution command method.
*/
virtual void always_executed_hook();
// Attribute methods
public:
//--------------------------------------------------------
/*
* Method : IfchangeServer::read_attr_hardware()
* Description : Hardware acquisition for attributes.
*/
//--------------------------------------------------------
virtual void read_attr_hardware(vector<long> &attr_list);
/**
* Attribute busy related methods
* Description:
*
* Data type: Tango::DevBoolean
* Attr type: Scalar
*/
virtual void read_busy(Tango::Attribute &attr);
virtual bool is_busy_allowed(Tango::AttReqType type);
// Dynamic attribute methods
public:
/**
* Attribute ioattr related methods
* Description:
*
* Data type: Tango::DevDouble
* Attr type: Scalar
*/
virtual void read_ioattr(Tango::Attribute &attr);
virtual bool is_ioattr_allowed(Tango::AttReqType type);
void add_ioattr_dynamic_attribute(string attname);
void remove_ioattr_dynamic_attribute(string attname);
Tango::DevDouble *get_ioattr_data_ptr(string &name);
map<string, Tango::DevDouble> ioattr_data;
//--------------------------------------------------------
/**
* Method : IfchangeServer::add_dynamic_attributes()
* Description : Add dynamic attributes if any.
*/
//--------------------------------------------------------
void add_dynamic_attributes();
// Command related methods
public:
/**
* Command Add_dynamic related method
* Description:
*
*/
virtual void add_dynamic();
virtual bool is_Add_dynamic_allowed(const CORBA::Any &any);
/**
* Command Delete_Dynamic related method
* Description:
*
*/
virtual void delete__dynamic();
virtual bool is_Delete_Dynamic_allowed(const CORBA::Any &any);
// Dynamic commands methods
public:
/**
* Command iocmd related method
* Description:
*
*/
virtual void iocmd(Tango::Command &command);
virtual bool is_iocmd_allowed(const CORBA::Any &any);
void add_iocmd_dynamic_command(string cmdname, bool device);
void remove_iocmd_dynamic_command(string cmdname);
//--------------------------------------------------------
/**
* Method : IfchangeServer::add_dynamic_commands()
* Description : Add dynamic commands if any.
*/
//--------------------------------------------------------
void add_dynamic_commands();
/*----- PROTECTED REGION ID(IfchangeServer::Additional Method prototypes) ENABLED START -----*/
// Additional Method prototypes
/*----- PROTECTED REGION END -----*/ // IfchangeServer::Additional Method prototypes
};
/*----- PROTECTED REGION ID(IfchangeServer::Additional Classes Definitions) ENABLED START -----*/
// Additional Classes Definitions
/*----- PROTECTED REGION END -----*/ // IfchangeServer::Additional Classes Definitions
} // namespace IfchangeServer_ns
#endif // IfchangeServer_H
|