source: XIOS/trunk/src/attribute_template_impl.hpp @ 432

Last change on this file since 432 was 432, checked in by ymipsl, 11 years ago

Enhancement : Add fortran interface to know if an attribute is set or not
ex : CALL xios_is_defined_field_attr("field_A",enabled=ok)

YM

File size: 9.9 KB
Line 
1#ifndef __XMLIO_CAttributeTemplate_impl__
2#define __XMLIO_CAttributeTemplate_impl__
3
4#include "type.hpp"
5#include "buffer_in.hpp"
6#include "buffer_out.hpp"
7#include "generate_interface.hpp"
8#include "attribute_template.hpp"
9
10 
11namespace xios
12{
13
14      /// ////////////////////// Définitions ////////////////////// ///
15      template <class T>
16         CAttributeTemplate<T>::CAttributeTemplate(const StdString & id)
17         : CAttribute(id)
18      { /* Ne rien faire de plus */ }
19
20      template <class T>
21         CAttributeTemplate<T>::CAttributeTemplate(const StdString & id, const T & value)
22         : CAttribute(id)
23      {
24         this->setValue(value);
25      }
26/*
27      template <class T>
28         CAttributeTemplate<T>::CAttributeTemplate(const CAttribute & attribut)
29         throw (CException)
30         : CAttribute(attribut)
31      {
32         if (!attribut.isEmpty() && !attribut.isType<T>())
33            ERROR("CAttributeTemplate", << "Invalid instantiation !");
34      }
35*/
36      template <class T>
37         CAttributeTemplate<T>::CAttributeTemplate(const StdString & id,
38                              xios_map<StdString, CAttribute*> & umap)
39         : CAttribute(id)
40      {
41         umap.insert(umap.end(), std::make_pair(id, this));
42      }
43
44      template <class T>
45         CAttributeTemplate<T>::CAttributeTemplate
46            (const StdString & id, const T & value,
47             xios_map<StdString, CAttribute*> & umap)
48         : CAttribute(id)
49      {
50         this->setValue(value);
51         umap.insert(umap.end(), std::make_pair(id, this));
52      }
53/*
54      template <class T>
55      CAttributeTemplate<T>::~CAttributeTemplate(void)
56      {
57//         this->CType<T>::reset() ;
58//         this->clear();
59      }
60*/
61      ///--------------------------------------------------------------
62
63      template <class T>
64         T CAttributeTemplate<T>::getValue(void) const
65      {
66         return CType<T>::get() ;
67/*
68         if (SuperClass::isEmpty())
69         {
70            ERROR("T CAttributeTemplate<T>::getValue(void) const",
71                  << "[ id = " << this->getId() << "]"
72                  << " L'attribut est requis mais n'est pas défini !");
73          }
74         return (SuperClass::getValue<T>());
75*/
76      }
77
78/*
79      template <class T>
80         T* CAttributeTemplate<T>::getRef(void)
81      {
82         if (SuperClass::isEmpty())
83         {
84            ERROR("T CAttributeTemplate<T>::getValue(void) const",
85                  << "[ id = " << this->getId() << "]"
86                  << " L'attribut est requis mais n'est pas défini !");
87          }
88         return (SuperClass::getRef<T>());
89      }
90*/
91
92      template <class T>
93         void CAttributeTemplate<T>::setValue(const T & value)
94      {
95         CType<T>::set(value) ;
96//         SuperClass::setValue<T>(value);
97      }
98
99    template <class T>
100    void CAttributeTemplate<T>::set(const CAttribute& attr)
101    {
102      this->set(dynamic_cast<const CAttributeTemplate<T>& >(attr)) ;
103    } 
104
105   template <class T>
106    void CAttributeTemplate<T>::set(const CAttributeTemplate& attr)
107    {
108      CType<T>::set(attr) ;
109    } 
110
111      //---------------------------------------------------------------
112
113      template <class T>
114         CAttributeTemplate<T>& CAttributeTemplate<T>::operator=(const T & value)
115      {
116         this->setValue(value);
117//         return (this->getValue());
118         return *this;
119      }
120
121      //---------------------------------------------------------------
122
123      template <class T>
124         StdString CAttributeTemplate<T>::_toString(void) const
125      {
126         StdOStringStream oss;
127         if (!CType<T>::isEmpty() && this->hasId())
128            oss << this->getName() << "=\"" << CType<T>::toString() << "\"";
129         return (oss.str());
130      }
131
132      template <class T>
133         void CAttributeTemplate<T>::_fromString(const StdString & str)
134      {
135        CType<T>::fromString(str) ;
136      }
137
138      //---------------------------------------------------------------
139/*
140      template <class T>
141         void CAttributeTemplate<T>::toBinary (StdOStream & os) const
142      {
143         this->getValue()->toBinary(os);
144      }
145
146      template <class T>
147         void CAttributeTemplate<T>::fromBinary(StdIStream & is)
148      {
149         T value;
150         FromBinary(is, value);
151         this->setValue(value);
152      }
153*/
154      template <class T>
155         bool CAttributeTemplate<T>::_toBuffer (CBufferOut& buffer) const
156      {
157         return CType<T>::toBuffer(buffer) ;
158/*         
159         if (isEmpty()) return buffer.put(true) ;
160         else
161         {
162           bool ret=true ;
163           CType<T> val(*boost::any_cast<T>(&value)) ;
164           ret&=buffer.put(false) ;
165           ret&=val.toBuffer(buffer) ;
166           return ret ;
167         }
168*/
169      }
170
171      template <class T>
172      bool CAttributeTemplate<T>::_fromBuffer(CBufferIn& buffer)
173      {
174        return CType<T>::fromBuffer(buffer) ;
175/*       
176        bool empty ;
177        bool ret=true ;
178        ret&=buffer.get(empty) ;
179        if (empty)
180        {
181          clear() ;
182          return ret ;
183        }
184        else
185        {
186          if (isEmpty())
187          {
188            T val ;
189            setValue(val) ;
190          }
191          T* V=const_cast<T*>(boost::any_cast<T>(&value)) ;
192          CType<T> val(*V) ;
193          return val.fromBuffer(buffer) ;
194        }
195*/
196      }
197/*
198      template <class T>
199      size_t CAttributeTemplate<T>::size(void) const
200      {
201        return CType<T>::size() ;*/
202/*       
203        if (isEmpty()) return sizeof(bool) ;
204        else
205        {
206          CType<T> val(*const_cast<T*>(boost::any_cast<T>(&value))) ;
207          return val.size()+sizeof(bool) ;
208        }
209*/
210 /*     }*/
211
212      template <typename T>
213      void CAttributeTemplate<T>::generateCInterface(ostream& oss,const string& className)
214      {
215        CInterface::AttributeCInterface<T>(oss, className, this->getName()) ;
216//        CInterface::AttributeIsDefinedCInterface(oss, className, this->getName()) ;
217      }
218     
219      template <typename T>
220      void CAttributeTemplate<T>::generateFortran2003Interface(ostream& oss,const string& className)
221      {
222        CInterface::AttributeFortran2003Interface<T>(oss, className, this->getName()) ;
223//        CInterface::AttributeIsDefinedFortran2003Interface(oss, className, this->getName()) ;
224      }
225     
226      template <typename T>
227      void CAttributeTemplate<T>::generateFortranInterfaceDeclaration_(ostream& oss,const string& className)
228      {
229        CInterface::AttributeFortranInterfaceDeclaration<T>(oss, className, this->getName()+"_") ;
230      }
231 
232      template <typename T>
233      void CAttributeTemplate<T>::generateFortranInterfaceBody_(ostream& oss,const string& className)
234      {
235        CInterface::AttributeFortranInterfaceBody<T>(oss, className, this->getName()) ;
236      }
237
238      template <typename T>
239      void CAttributeTemplate<T>::generateFortranInterfaceDeclaration(ostream& oss,const string& className)
240      {
241        CInterface::AttributeFortranInterfaceDeclaration<T>(oss, className, this->getName()) ;
242      }
243     
244      template <typename T>
245      void CAttributeTemplate<T>::generateFortranInterfaceGetDeclaration_(ostream& oss,const string& className)
246      {
247        CInterface::AttributeFortranInterfaceGetDeclaration<T>(oss, className, this->getName()+"_") ;
248      }
249 
250 
251      template <typename T>
252      void CAttributeTemplate<T>::generateFortranInterfaceGetBody_(ostream& oss,const string& className)
253      {
254        CInterface::AttributeFortranInterfaceGetBody<T>(oss, className, this->getName()) ;
255      }
256
257      template <typename T>
258      void CAttributeTemplate<T>::generateFortranInterfaceGetDeclaration(ostream& oss,const string& className)
259      {
260        CInterface::AttributeFortranInterfaceGetDeclaration<T>(oss, className, this->getName()) ;
261      }
262
263 
264/*     
265      //---------------------------------------------------------------
266
267      // Spécialisations des templates pour la fonction [toString]
268
269      template <>
270         StdString CAttributeTemplate<bool>::toString(void) const;
271
272      //---------------------------------------------------------------
273
274      // Spécialisations des templates pour la fonction [fromString]
275
276      template <> // Chaîne de caractÚres.
277         void CAttributeTemplate<StdString>::fromString(const StdString & str);
278
279      template <> // Entier
280         void CAttributeTemplate<int>::fromString(const StdString & str);
281
282      template <> // Booléen
283         void CAttributeTemplate<bool>::fromString(const StdString & str);
284
285      template <> // Double
286         void CAttributeTemplate<double>::fromString(const StdString & str);
287
288      template<> // Tableau
289         void CAttributeTemplate<ARRAY(double, 1)>::fromString(const StdString & str);
290
291      //---------------------------------------------------------------
292
293      // Spécialisations des templates pour la fonction [toBinary] //
294
295      template <> // Chaîne de caractÚres.
296         void CAttributeTemplate<StdString>::toBinary (StdOStream & os) const;
297
298      template <> // Entier
299         void CAttributeTemplate<int>::toBinary(StdOStream & os) const;
300
301      template <> // Booléen
302         void CAttributeTemplate<bool>::toBinary(StdOStream & os) const;
303         
304      template <> // Double
305         void CAttributeTemplate<double>::toBinary(StdOStream & os) const;
306
307      //---------------------------------------------------------------
308
309      // Spécialisations des templates pour la fonction [fromBinary] //
310
311      template <> // Chaîne de caractÚres.
312         void CAttributeTemplate<StdString>::fromBinary(StdIStream & is);
313
314      template <> // Entier
315         void CAttributeTemplate<int>::fromBinary(StdIStream & is);
316
317      template <> // Booléen
318         void CAttributeTemplate<bool>::fromBinary(StdIStream & is);
319         
320      template <> // Double
321         void CAttributeTemplate<double>::fromBinary(StdIStream & is);
322
323      ///--------------------------------------------------------------
324*/     
325} // namespace xios
326
327#endif // __XMLIO_CAttributeTemplate_impl__
Note: See TracBrowser for help on using the repository browser.