source: XIOS/trunk/src/type/type.hpp @ 785

Last change on this file since 785 was 748, checked in by rlacroix, 9 years ago

CType<T>: Add a conversion operator to const reference.

  • 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.6 KB
RevLine 
[308]1#ifndef __XIOS_TYPE__
2#define __XIOS_TYPE__
3
[591]4#include "xios_spl.hpp"
[308]5#include "exception.hpp"
6#include "buffer_in.hpp"
7#include "buffer_out.hpp"
8#include "base_type.hpp"
9
10
[335]11namespace xios
[308]12{
13
[369]14  template <typename T> class CType_ref ;
[748]15
16  template <typename T>
[369]17  class CType : public  virtual CBaseType
[308]18  {
19    public:
[748]20
[308]21    CType(void) ;
22    CType(const T& val) ;
23    CType(const CType& type) ;
[369]24    CType(const CType_ref<T>& type) ;
25    virtual ~CType() { _reset() ; }
[308]26
[369]27    T& get(void) ;
28    const T& get(void) const;
[308]29
[369]30    void set(const T& val) ;
31    void set(const CType& val) ;
32    void set(const CType_ref<T>& val) ;
33    CType& operator = (const T& val) ;
34    CType& operator = (const CType& val) ;
35    CType& operator = (const CType_ref<T>& val) ;
36    operator T&() ;
[748]37    operator const T&() const ;
38
[394]39    inline virtual CBaseType* clone(void) const   { return _clone(); }
[369]40    virtual void fromString(const string& str)   { _fromString(str); }
41    virtual string toString(void) const { return _toString(); }
42    virtual bool fromBuffer(CBufferIn& buffer) { return _fromBuffer(buffer) ; }
43    virtual bool toBuffer(CBufferOut& buffer) const { return _toBuffer(buffer); }
44    virtual void reset(void) { _reset(); }
[748]45    virtual bool isEmpty() const { return _isEmpty(); }
[369]46    virtual size_t size(void) const { return _size(); }
[748]47
[369]48    void allocate(void) ;
49    void checkEmpty(void) const;
[748]50
[369]51    T* ptrValue ;
52    bool empty ;
[748]53
54    friend class CType_ref<T> ;
55
[369]56    private :
[748]57
[369]58    CType* _clone(void) const;
59    void _fromString(const string& str) ;
60    string _toString(void) const;
61    bool _fromBuffer(CBufferIn& buffer) ;
62    bool _toBuffer(CBufferOut& buffer) const;
63    void _reset(void) ;
[748]64    bool _isEmpty() const ;
[369]65    size_t _size(void) const ;
[748]66
[369]67  } ;
[308]68
[369]69
70  template<typename T> class CType ;
[748]71
72  template <typename T>
[369]73  class CType_ref : public virtual CBaseType
74  {
75    public:
[748]76
[369]77    CType_ref(void) ;
78    CType_ref(T& val) ;
79    CType_ref(CType<T>& type) ;
80    CType_ref(const CType_ref& type) ;
81    virtual ~CType_ref() {};
82
83    T& get(void) const;
84
85    void set(const T& val) const ;
86    void set(const CType<T>& val) const ;
87    void set(const CType_ref& val) const ;
88
89    void set_ref(T& val) ;
90    void set_ref(CType<T>& val) ;
91    void set_ref(const CType_ref& val) ;
[748]92
[369]93    const CType_ref& operator = (T& val) const ;
94    const CType_ref& operator = (CType<T>& val) const ;
95    const CType_ref& operator = (const CType_ref& val) const;
96    operator T&() const;
97
[394]98    inline virtual CBaseType* clone(void) const   { return _clone(); }
[369]99    virtual void fromString(const string& str)   { _fromString(str); }
100    virtual void fromString(const string& str) const  { _fromString(str); }
101    virtual string toString(void) const { return _toString(); }
102    virtual bool fromBuffer(CBufferIn& buffer) { return _fromBuffer(buffer) ; }
103    virtual bool fromBuffer(CBufferIn& buffer) const { return _fromBuffer(buffer); }
104    virtual bool toBuffer(CBufferOut& buffer) const { return _toBuffer(buffer); }
105    virtual void reset(void) { _reset(); }
[748]106    virtual bool isEmpty() const { return _isEmpty(); }
[369]107    virtual size_t size(void) const { return _size(); }
108
109    void checkEmpty(void) const;
110
[748]111
[369]112    T mutable * ptrValue ;
113    bool empty ;
114    friend class CType<T> ;
[748]115
[369]116    private :
[748]117
[369]118    CType_ref* _clone(void) const;
119    void _fromString(const string& str) ;
120    void _fromString(const string& str) const;
121    string _toString(void) const;
122    bool _fromBuffer(CBufferIn& buffer) ;
123    bool _fromBuffer(CBufferIn& buffer) const ;
124    bool _toBuffer(CBufferOut& buffer) const;
125    void _reset(void) ;
[748]126    bool _isEmpty() const ;
[369]127    size_t _size(void) const ;
[308]128  } ;
[748]129
130
[352]131  class CMessage ;
[748]132
[352]133  template <typename T>
134  CBufferOut& operator<<(CBufferOut& buffer, const CType<T>& type) ;
135
136  template <typename T>
[369]137  CBufferOut& operator<<(CBufferOut& buffer, const CType_ref<T>& type) ;
[748]138
[352]139  template <typename T>
140  CBufferOut& operator<<(CBufferOut& buffer, const T& type) ;
[748]141
[352]142  template <typename T>
[369]143  CBufferOut& operator<<(CBufferOut& buffer, T& type) ;
144
145
[352]146  template <typename T>
[369]147  CBufferIn& operator>>(CBufferIn& buffer, CType<T>& type) ;
[352]148
[369]149  template <typename T>
150  CBufferIn& operator>>(CBufferIn& buffer, const CType_ref<T>& type) ;
[352]151
152  template <typename T>
[369]153  CBufferIn& operator>>(CBufferIn& buffer, T& type) ;
154
[401]155/*
[369]156  template <typename T>
[352]157  CMessage& operator<<(CMessage& msg, const CType<T>& type) ;
[369]158
[352]159  template <typename T>
[369]160  CMessage& operator<<(CMessage& msg, const CType_ref<T>& type) ;
[748]161*/
162
[352]163  template <typename T>
164  CMessage& operator<<(CMessage& msg, const T& type) ;
[369]165
[352]166  template <typename T>
167  CMessage& operator<<(CMessage& msg, T& type) ;
[369]168
[308]169}
170
171
[369]172//#include "test_type_impl.hpp"
173//#include "test_type_specialisation.hpp"
[352]174
[308]175#endif
[369]176
Note: See TracBrowser for help on using the repository browser.