Skip to content
Snippets Groups Projects
MythenWAXSClass.h 7.74 KiB
Newer Older
Florent Langlois's avatar
Florent Langlois committed
/*----- PROTECTED REGION ID(MythenWAXSClass.h) ENABLED START -----*/
//=============================================================================
//
// file :        MythenWAXSClass.h
//
// description : Include for the MythenWAXS root class.
//               This class is the singleton class for
//                the MythenWAXS device class.
//               It contains all properties and methods which the 
//               MythenWAXS requires only once e.g. the commands.
//
// project :     Mythen Wide Angular Xray
//
// 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 MythenWAXSClass_H
#define MythenWAXSClass_H

#include <tango.h>
#include <MythenWAXS.h>

/*----- PROTECTED REGION END -----*/	//	MythenWAXSClass.h


namespace MythenWAXS_ns
{
/*----- PROTECTED REGION ID(MythenWAXSClass::classes for dynamic creation) ENABLED START -----*/


/*----- PROTECTED REGION END -----*/	//	MythenWAXSClass::classes for dynamic creation

//=========================================
//	Define classes for attributes
//=========================================
//	Attribute energy class definition
class energyAttrib: public Tango::Attr
{
public:
	energyAttrib():Attr("energy",
			Tango::DEV_DOUBLE, Tango::WRITE) {};
	~energyAttrib() {};
	virtual void write(Tango::DeviceImpl *dev,Tango::WAttribute &att)
		{(static_cast<MythenWAXS *>(dev))->write_energy(att);}
	virtual bool is_allowed(Tango::DeviceImpl *dev,Tango::AttReqType ty)
		{return (static_cast<MythenWAXS *>(dev))->is_energy_allowed(ty);}
};

//	Attribute threshold class definition
class thresholdAttrib: public Tango::Attr
{
public:
	thresholdAttrib():Attr("threshold",
			Tango::DEV_DOUBLE, Tango::WRITE) {};
	~thresholdAttrib() {};
	virtual void write(Tango::DeviceImpl *dev,Tango::WAttribute &att)
		{(static_cast<MythenWAXS *>(dev))->write_threshold(att);}
	virtual bool is_allowed(Tango::DeviceImpl *dev,Tango::AttReqType ty)
		{return (static_cast<MythenWAXS *>(dev))->is_threshold_allowed(ty);}
};

//	Attribute exposureTime class definition
class exposureTimeAttrib: public Tango::Attr
{
public:
	exposureTimeAttrib():Attr("exposureTime",
			Tango::DEV_DOUBLE, Tango::WRITE) {};
	~exposureTimeAttrib() {};
	virtual void write(Tango::DeviceImpl *dev,Tango::WAttribute &att)
		{(static_cast<MythenWAXS *>(dev))->write_exposureTime(att);}
	virtual bool is_allowed(Tango::DeviceImpl *dev,Tango::AttReqType ty)
		{return (static_cast<MythenWAXS *>(dev))->is_exposureTime_allowed(ty);}
};

//	Attribute nbFrames class definition
class nbFramesAttrib: public Tango::Attr
{
public:
	nbFramesAttrib():Attr("nbFrames",
			Tango::DEV_LONG, Tango::WRITE) {};
	~nbFramesAttrib() {};
	virtual void write(Tango::DeviceImpl *dev,Tango::WAttribute &att)
		{(static_cast<MythenWAXS *>(dev))->write_nbFrames(att);}
	virtual bool is_allowed(Tango::DeviceImpl *dev,Tango::AttReqType ty)
		{return (static_cast<MythenWAXS *>(dev))->is_nbFrames_allowed(ty);}
};

//	Attribute frameX class definition
class frameXAttrib: public Tango::SpectrumAttr
{
public:
	frameXAttrib():SpectrumAttr("frameX",
			Tango::DEV_DOUBLE, Tango::READ, 100000) {};
	~frameXAttrib() {};
	virtual void read(Tango::DeviceImpl *dev,Tango::Attribute &att)
		{(static_cast<MythenWAXS *>(dev))->read_frameX(att);}
	virtual bool is_allowed(Tango::DeviceImpl *dev,Tango::AttReqType ty)
		{return (static_cast<MythenWAXS *>(dev))->is_frameX_allowed(ty);}
};

//	Attribute frameY class definition
class frameYAttrib: public Tango::SpectrumAttr
{
public:
	frameYAttrib():SpectrumAttr("frameY",
			Tango::DEV_DOUBLE, Tango::READ, 100000) {};
	~frameYAttrib() {};
	virtual void read(Tango::DeviceImpl *dev,Tango::Attribute &att)
		{(static_cast<MythenWAXS *>(dev))->read_frameY(att);}
	virtual bool is_allowed(Tango::DeviceImpl *dev,Tango::AttReqType ty)
		{return (static_cast<MythenWAXS *>(dev))->is_frameY_allowed(ty);}
};


//=========================================
//	Define classes for commands
//=========================================
//	Command Snap class definition
class SnapClass : public Tango::Command
{
public:
	SnapClass(const char   *name,
	               Tango::CmdArgType in,
				   Tango::CmdArgType out,
				   const char        *in_desc,
				   const char        *out_desc,
				   Tango::DispLevel  level)
	:Command(name,in,out,in_desc,out_desc, level)	{};

	SnapClass(const char   *name,
	               Tango::CmdArgType in,
				   Tango::CmdArgType out)
	:Command(name,in,out)	{};
	~SnapClass() {};
	
	virtual CORBA::Any *execute (Tango::DeviceImpl *dev, const CORBA::Any &any);
	virtual bool is_allowed (Tango::DeviceImpl *dev, const CORBA::Any &any)
	{return (static_cast<MythenWAXS *>(dev))->is_Snap_allowed(any);}
};

//	Command Stop class definition
class StopClass : public Tango::Command
{
public:
	StopClass(const char   *name,
	               Tango::CmdArgType in,
				   Tango::CmdArgType out,
				   const char        *in_desc,
				   const char        *out_desc,
				   Tango::DispLevel  level)
	:Command(name,in,out,in_desc,out_desc, level)	{};

	StopClass(const char   *name,
	               Tango::CmdArgType in,
				   Tango::CmdArgType out)
	:Command(name,in,out)	{};
	~StopClass() {};
	
	virtual CORBA::Any *execute (Tango::DeviceImpl *dev, const CORBA::Any &any);
	virtual bool is_allowed (Tango::DeviceImpl *dev, const CORBA::Any &any)
	{return (static_cast<MythenWAXS *>(dev))->is_Stop_allowed(any);}
};


/**
 *	The MythenWAXSClass singleton definition
 */

#ifdef _TG_WINDOWS_
class __declspec(dllexport)  MythenWAXSClass : public Tango::DeviceClass
#else
class MythenWAXSClass : public Tango::DeviceClass
#endif
{
	/*----- PROTECTED REGION ID(MythenWAXSClass::Additionnal DServer data members) ENABLED START -----*/
	
	
	/*----- PROTECTED REGION END -----*/	//	MythenWAXSClass::Additionnal DServer data members

	public:
		//	write class properties data members
		Tango::DbData	cl_prop;
		Tango::DbData	cl_def_prop;
		Tango::DbData	dev_def_prop;
	
		//	Method prototypes
		static MythenWAXSClass *init(const char *);
		static MythenWAXSClass *instance();
		~MythenWAXSClass();
		Tango::DbDatum	get_class_property(string &);
		Tango::DbDatum	get_default_device_property(string &);
		Tango::DbDatum	get_default_class_property(string &);
	
	protected:
		MythenWAXSClass(string &);
		static MythenWAXSClass *_instance;
		void command_factory();
		void attribute_factory(vector<Tango::Attr *> &);
		void write_class_property();
		void set_default_property();
		void get_class_property();
		string get_cvstag();
		string get_cvsroot();
	
	private:
		void device_factory(const Tango::DevVarStringArray *);
		void create_static_attribute_list(vector<Tango::Attr *> &);
		void erase_dynamic_attributes(const Tango::DevVarStringArray *,vector<Tango::Attr *> &);
		vector<string>	defaultAttList;
		Tango::Attr *get_attr_object_by_name(vector<Tango::Attr *> &att_list, string attname);
};

}	//	End of namespace

#endif   //	MythenWAXS_H