source: XIOS/dev/branch_openmp/src/attribute_template.hpp @ 1460

Last change on this file since 1460 was 1460, checked in by yushan, 6 years ago

branch_openmp merged with XIOS_DEV_CMIP6@1459

  • Property copyright set to
    Software name : XIOS (Xml I/O Server)
    http://forge.ipsl.jussieu.fr/ioserver
    Creation date : January 2009
    Licence : CeCCIL version2
    see license file in root directory : Licence_CeCILL_V2-en.txt
    or http://www.cecill.info/licences/Licence_CeCILL_V2-en.html
    Holder : CEA/LSCE (Laboratoire des Sciences du CLimat et de l'Environnement)
    CNRS/IPSL (Institut Pierre Simon Laplace)
    Project Manager : Yann Meurdesoif
    yann.meurdesoif@cea.fr
File size: 4.4 KB
RevLine 
[591]1#ifndef __XIOS_CAttributeTemplate__
2#define __XIOS_CAttributeTemplate__
[219]3
4/// boost headers ///
5#include <boost/lexical_cast.hpp>
6
[591]7/// XIOS headers ///
8#include "xios_spl.hpp"
[219]9#include "exception.hpp"
10#include "attribute.hpp"
[300]11#include "buffer_in.hpp"
12#include "buffer_out.hpp"
[369]13#include "type.hpp"
[219]14
[335]15namespace xios
[219]16{
17      /// ////////////////////// Déclarations ////////////////////// ///
[1117]18  /*!
19    \class CAttributeTemplate
20    The class implements attribute of some basic types
21  */
[219]22      template <class T>
[778]23         class CAttributeTemplate : public CAttribute, public CType<T>
[219]24      {
25            typedef CAttribute SuperClass;
26
27         public :
28
29            /// Typedef ///
30            typedef T ValueType;
31
32            /// Constructeurs ///
33            explicit CAttributeTemplate(const StdString & id);
34            CAttributeTemplate(const StdString & id,
35                               xios_map<StdString, CAttribute*> & umap);
36            CAttributeTemplate(const StdString & id, const ValueType & value);
37            CAttributeTemplate(const StdString & id, const ValueType & value,
38                               xios_map<StdString, CAttribute*> & umap);
[369]39//            CAttributeTemplate(const CAttribute & attribut) throw (CException);
40//            CAttributeTemplate(const CAttribute * const attribut); // Not implemented.
[219]41
42          public :
43
44            /// Accesseur ///
[354]45            ValueType getValue(void) const;
[369]46//            ValueType* getRef(void) ;
[219]47
48            /// Mutateurs ///
[354]49            void setValue(const ValueType & value);
[775]50
[369]51            void set(const CAttribute& attr) ;
52            void set(const CAttributeTemplate& attr) ;
[460]53            void reset(void) ;
[445]54
55            void setInheritedValue(const CAttributeTemplate& attr );
56            void setInheritedValue(const CAttribute& attr );
57            T getInheritedValue(void) const ;
58            bool hasInheritedValue(void) const;
[1460]59           
[1105]60            bool isEqual(const CAttribute& attr );
[1117]61
[219]62            /// Destructeur ///
[369]63            virtual ~CAttributeTemplate(void) { }
[219]64
65            /// Operateur ///
[369]66            CAttributeTemplate& operator=(const ValueType & value);
[219]67
68            /// Autre ///
[369]69            virtual StdString toString(void) const { return _toString();}
[1112]70            virtual void fromString(const StdString & str) { if (str==resetInheritanceStr) { reset(); _canInherite=false ;}  else _fromString(str);}
[369]71//            virtual CAttributeTemplate* clone() const {}
72//            virtual void toBinary  (StdOStream & os) const;
[775]73//            virtual void fromBinary(StdIStream & is);
[219]74
[775]75            virtual bool toBuffer  (CBufferOut& buffer) const { return _toBuffer(buffer);}
76            virtual bool fromBuffer(CBufferIn& buffer) { return _fromBuffer(buffer); }
[369]77//            virtual size_t size(void) const;
[313]78            virtual void generateCInterface(ostream& oss,const string& className) ;
79            virtual void generateFortran2003Interface(ostream& oss,const string& className) ;
80            virtual void generateFortranInterfaceDeclaration_(ostream& oss,const string& className) ;
81            virtual void generateFortranInterfaceBody_(ostream& oss,const string& className) ;
82            virtual void generateFortranInterfaceDeclaration(ostream& oss,const string& className) ;
83            virtual void generateFortranInterfaceGetDeclaration_(ostream& oss,const string& className) ;
84            virtual void generateFortranInterfaceGetBody_(ostream& oss,const string& className) ;
85            virtual void generateFortranInterfaceGetDeclaration(ostream& oss,const string& className) ;
[432]86//            virtual void generateFortranInterfaceIsDefinedDeclaration_(ostream& oss,const string& className) ;
87//            virtual void generateFortranInterfaceIsDefinedBody_(ostream& oss,const string& className) ;
88//            virtual void generateFortranInterfaceIsDefinedDeclaration(ostream& oss,const string& className) ;
[300]89
[775]90
[219]91         protected :
92
93            /// Constructeurs ///
[369]94//            CAttributeTemplate(void); // Not implemented.
95         private :
[1460]96          bool isEqual_(const CAttributeTemplate& attr);
[369]97          StdString _toString(void) const;
98          void _fromString(const StdString & str);
99          bool _toBuffer  (CBufferOut& buffer) const;
100          bool _fromBuffer(CBufferIn& buffer) ;
[775]101
[445]102          CType<T> inheritedValue ;
[775]103      }; // class CAttribute
104
105
[219]106   template <class T>  void FromBinary(StdIStream & is, T & obj);
[775]107
[335]108} // namespace xios
[219]109
[591]110#endif // __XIOS_CAttributeTemplate__
Note: See TracBrowser for help on using the repository browser.