source: XIOS/trunk/src/object_template_impl.hpp @ 509

Last change on this file since 509 was 509, checked in by mhnguyen, 9 years ago

Implementing buffer size auto-detection for mode client -server

+) Process xml tree in client side then send all the information to server
+) Only information enabled fields in enabled files are sent to server
+) Some important change in structure of code which must be refactored

Test
+) On Curie
+) Only mode client-server
+) Passed for all tests

  • 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: 12.7 KB
Line 
1#ifndef __XMLIO_CObjectTemplate_impl__
2#define __XMLIO_CObjectTemplate_impl__
3
4#include "xmlioserver_spl.hpp"
5#include "context_client.hpp"
6#include "object_factory.hpp"
7#include "context.hpp"
8#include "buffer_in.hpp"
9#include "attribute.hpp"
10#include "event_client.hpp"
11#include "object_template.hpp"
12#include "context_client.hpp"
13#include "indent.hpp"
14#include "type_util.hpp"
15#include "message.hpp"
16#include "type.hpp"
17#include "type_util.hpp"
18#include "group_template.hpp"
19
20namespace xios
21{
22   /// ////////////////////// Définitions ////////////////////// ///
23   template <class T>
24      xios_map<StdString,
25      xios_map<StdString,
26      boost::shared_ptr<T> > > CObjectTemplate<T>::AllMapObj;
27
28   template <class T>
29      xios_map<StdString,
30      std::vector<boost::shared_ptr<T> > > CObjectTemplate<T>::AllVectObj;
31
32   template <class T>
33      xios_map<StdString,long int> CObjectTemplate<T>::GenId;
34
35   template <class T>
36      CObjectTemplate<T>::CObjectTemplate(void)
37         : CAttributeMap()
38         , CObject()
39   { /* Ne rien faire de plus */ }
40
41   template <class T>
42      CObjectTemplate<T>::CObjectTemplate(const StdString & id)
43         : CAttributeMap()
44         , CObject(id)
45   { /* Ne rien faire de plus */ }
46
47   template <class T>
48      CObjectTemplate<T>::CObjectTemplate
49         (const CObjectTemplate<T> & object, bool withAttrList, bool withId)
50         : CAttributeMap()
51         , CObject()
52   {
53      if (object.hasId() && withId)
54         this->setId(object.getId());
55      ERROR("CObjectTemplate<T> construtor 3", << "Not completly implemented yet !");
56   }
57
58   template <class T>
59      CObjectTemplate<T>::~CObjectTemplate(void)
60   { /* Ne rien faire de plus */ }
61
62   ///--------------------------------------------------------------
63
64   template <class T>
65      std::vector<boost::shared_ptr<T> > &
66         CObjectTemplate<T>::GetAllVectobject(const StdString & contextId)
67   {
68      return (CObjectTemplate<T>::AllVectObj[contextId]);
69   }
70
71   //---------------------------------------------------------------
72
73   template <class T>
74      StdString CObjectTemplate<T>::toString(void) const
75   {
76      StdOStringStream oss;
77      oss << "<" << T::GetName();
78      if (this->hasId())
79         oss << " id=\"" << this->getId() << "\"";
80      oss << " " << SuperClassMap::toString() << "/>";
81      return (oss.str());
82   }
83
84   template <class T>
85      void CObjectTemplate<T>::fromString(const StdString & str)
86   {
87      ERROR("CObjectTemplate<T>::fromString(str)",
88            << "[ str = " << str << "] Not implemented yet !");
89   }
90
91   //---------------------------------------------------------------
92
93/*
94   template <class T>
95      void CObjectTemplate<T>::toBinary(StdOStream & os) const
96   {
97      SuperClassMap::toBinary(os);
98   }
99
100   template <class T>
101      void CObjectTemplate<T>::fromBinary(StdIStream & is)
102   {
103      SuperClassMap::fromBinary(is);
104   }
105*/
106
107   //---------------------------------------------------------------
108
109   template <class T>
110      void CObjectTemplate<T>::parse(xml::CXMLNode & node)
111   {
112      xml::THashAttributes attributes = node.getAttributes();
113      CAttributeMap::setAttributes(attributes);
114   }
115
116   //---------------------------------------------------------------
117
118   template <class T>
119      ENodeType CObjectTemplate<T>::getType(void) const
120   {
121      return (T::GetType());
122   }
123
124   template <class T>
125   string CObjectTemplate<T>::getName(void) const
126   {
127      return (T::GetName());
128   }
129
130   //---------------------------------------------------------------
131
132   template <class T>
133      bool CObjectTemplate<T>::hasChild(void) const
134   {
135      return (false);
136   }
137
138   //---------------------------------------------------------------
139
140   template <class T>
141      void CObjectTemplate<T>::solveDescInheritance(bool apply, const CAttributeMap * const parent)
142   {
143      SuperClassMap::setAttributes(parent, apply);
144   }
145
146   //---------------------------------------------------------------
147
148   template <class T>
149      void CObjectTemplate<T>::ClearAllAttributes(void)
150   {
151      vector<T*> avect = CObjectTemplate<T>::getAll() ;
152      typename vector<T*>::iterator
153            it = avect.begin(), end = avect.end();
154
155      for (;it != end; it++)
156      {
157         CAttributeMap & amap = **it;
158         amap.clearAllAttributes();
159      }
160   }
161
162   template<typename T>
163   void CObjectTemplate<T>::sendAllAttributesToServer()
164   {
165     CAttributeMap& attrMap = *this;
166     CAttributeMap::const_iterator it = attrMap.begin(), itE = attrMap.end();
167     for (; it != itE; ++it)
168     {
169       if (!(it->second)->isEmpty()) sendAttributToServer(*(it->second));
170     }
171
172   }
173
174   template <class T>
175   void CObjectTemplate<T>::sendAttributToServer(const string& id)
176   {
177      CAttributeMap & attrMap = *this;
178      CAttribute* attr=attrMap[id] ;
179      sendAttributToServer(*attr) ;
180   }
181
182  template <class T>
183  void CObjectTemplate<T>::sendAttributToServer(CAttribute& attr)
184  {
185    CContext* context=CContext::getCurrent() ;
186
187    if (!context->hasServer)
188    {
189       CContextClient* client=context->client ;
190
191       CEventClient event(getType(),EVENT_ID_SEND_ATTRIBUTE) ;
192       if (client->isServerLeader())
193       {
194         CMessage msg ;
195         msg<<this->getId() ;
196         msg<<attr.getName() ;
197         msg<<attr ;
198         event.push(client->getServerLeader(),1,msg) ;
199         client->sendEvent(event) ;
200       }
201       else client->sendEvent(event) ;
202    }
203
204  }
205
206  template <class T>
207  void CObjectTemplate<T>::recvAttributFromClient(CEventServer& event)
208  {
209
210    CBufferIn* buffer=event.subEvents.begin()->buffer;
211    string id,attrId;
212    *buffer>>id ;
213    CAttributeMap & attrMap = *get(id);
214    *buffer>>attrId ;
215    CAttribute* attr=attrMap[attrId] ;
216    info(50)<<"attribut recu "<<attrId<<"  " ;
217    if (attr->isEmpty()) info(50)<<"--> empty"<<endl ;
218    else info(50) /*<attr->getValue()*/<<endl ;
219    *buffer>>*attr ;
220     info(50)<<"attribut recu "<<attrId<<"  " ;
221    if (attr->isEmpty()) info(50)<<"--> empty"<<endl ;
222    else info(50) /*attr->getValue()*/<<endl ;
223  }
224
225   template <class T>
226   bool CObjectTemplate<T>::dispatchEvent(CEventServer& event)
227   {
228      switch(event.type)
229      {
230         case EVENT_ID_SEND_ATTRIBUTE :
231           recvAttributFromClient(event) ;
232           return true ;
233           break ;
234
235         default :
236         return false ;
237//           ERROR("void CObjectTemplate<T>::recvEvent(CEventServer& event)",
238//                 <<"Unknown Event") ;
239      }
240   }
241
242   template <typename T>
243   bool CObjectTemplate<T>::has(const string & id)
244   {
245     return CObjectFactory::HasObject<T>(id) ;
246   }
247
248   template <typename T>
249   bool CObjectTemplate<T>::has(const string& contextId, const string & id)
250   {
251     return CObjectFactory::HasObject<T>(contextId,id) ;
252   }
253
254   template <typename T>
255   T* CObjectTemplate<T>::get(const string & id)
256   {
257     return CObjectFactory::GetObject<T>(id).get() ;
258   }
259
260   template <typename T>
261   T* CObjectTemplate<T>::get(const T* ptr)
262   {
263     return CObjectFactory::GetObject<T>(ptr).get() ;
264   }
265
266   template <typename T>
267   shared_ptr<T> CObjectTemplate<T>::getShared(const T* ptr)
268   {
269     return CObjectFactory::GetObject<T>(ptr) ;
270   }
271
272   template <typename T>
273   shared_ptr<T> CObjectTemplate<T>::getShared(void)
274   {
275     return CObjectFactory::GetObject<T>((T*)this) ;
276   }
277
278   template <typename T>
279   const vector<T*> CObjectTemplate<T>::getAll()
280   {
281     const vector< shared_ptr<T> >& shared_vect= CObjectFactory::GetObjectVector<T>();
282     vector<T*> vect ;
283
284     typename vector<shared_ptr<T> >::const_iterator it;
285     for(it=shared_vect.begin();it!=shared_vect.end();++it) vect.push_back(it->get()) ;
286     return vect ;
287   }
288
289   template <typename T>
290   const vector<T*> CObjectTemplate<T>::getAll(const string & id)
291   {
292     const vector< shared_ptr<T> >& shared_vect= CObjectFactory::GetObjectVector<T>(id);
293     vector<T*> vect ;
294
295     typename vector<shared_ptr<T> >::const_iterator it;
296     for(it=shared_vect.begin();it!=shared_vect.end();++it) vect.push_back(it->get()) ;
297     return vect ;
298   }
299
300   template <typename T>
301   T* CObjectTemplate<T>::get(const string& contextId, const string & id)
302   {
303     return CObjectFactory::GetObject<T>(contextId,id).get() ;
304   }
305
306   template <typename T>
307   T* CObjectTemplate<T>::create(const string & id)
308   {
309     return CObjectFactory::CreateObject<T>(id).get() ;
310   }   ///--------------------------------------------------------------
311
312  template <typename T>
313  T* CObjectTemplate<T>::get(void)
314  {
315    return CObjectFactory::GetObject<T>((T*)this).get() ;
316  }
317
318   template <typename T>
319   void CObjectTemplate<T>::generateCInterface(ostream& oss)
320   {
321     string className=getName() ;
322     int found=className.find_first_of("_") ;
323     if (found!=string::npos) className.replace(found,1,0,'x') ;
324
325     oss<<"/* ************************************************************************** *"<<iendl ;
326     oss<<" *               Interface auto generated - do not modify                   *"<<iendl ;
327     oss<<" * ************************************************************************** */"<<iendl;
328     oss<<iendl ;
329     oss<<"#include <boost/multi_array.hpp>"<<iendl ;
330     oss<<"#include <boost/shared_ptr.hpp>"<<iendl ;
331     oss<<"#include \"xmlioserver.hpp\""<<iendl;
332     oss<<"#include \"attribute_template.hpp\""<<iendl ;
333     oss<<"#include \"object_template.hpp\""<<iendl;
334     oss<<"#include \"group_template.hpp\""<<iendl ;
335     oss<<"#include \"icutil.hpp\""<<iendl ;
336     oss<<"#include \"timer.hpp\""<<iendl ;
337     oss<<"#include \"node_type.hpp\""<<iendl ;
338     oss<<iendl ;
339     oss<<"extern \"C\""<<iendl ;
340     oss<<"{"<<iendl++ ;
341     oss<<"typedef xios::"<<getStrType<T>()<<"*  "<<className<<"_Ptr;"<<iendl;
342     oss<<iendl ;
343     SuperClassMap::generateCInterface(oss,className) ;
344     oss<<iendl-- ;
345     oss<<"}"<<iendl ;
346   }
347
348   template <typename T>
349   void CObjectTemplate<T>::generateFortran2003Interface(ostream& oss)
350   {
351     string className=getName() ;
352     int found=className.find_first_of("_") ;
353     if (found!=string::npos) className.replace(found,1,0,'x') ;
354
355     oss<<"! * ************************************************************************** *"<<iendl ;
356     oss<<"! *               Interface auto generated - do not modify                     *"<<iendl ;
357     oss<<"! * ************************************************************************** *"<<iendl;
358     oss<<iendl ;
359     oss<<"MODULE "<<className<<"_interface_attr"<<iendl++ ;
360     oss<<"USE, INTRINSIC :: ISO_C_BINDING"<<iendl ;
361     oss<<iendl ;
362     oss<<"INTERFACE ! Do not call directly / interface FORTRAN 2003 <-> C99"<<iendl++ ;
363     oss<<iendl ;
364     oss<<iendl ;
365     SuperClassMap::generateFortran2003Interface(oss,className) ;
366     oss<<"END INTERFACE"<<iendl-- ;
367     oss<<iendl-- ;
368     oss<<"END MODULE "<<className<<"_interface_attr"<<iendl ;
369   }
370
371   template <typename T>
372   void CObjectTemplate<T>::generateFortranInterface(ostream& oss)
373   {
374     string className=getName() ;
375     int found=className.find_first_of('_') ;
376     if (found!=string::npos) className.erase(found,1) ;
377     string superClassName=getName();
378     found=superClassName.find("_group") ;
379     if (found!=string::npos) superClassName.erase(found,6) ;
380
381     oss<<"! * ************************************************************************** *"<<iendl ;
382     oss<<"! *               Interface auto generated - do not modify                     *"<<iendl ;
383     oss<<"! * ************************************************************************** *"<<iendl;
384     oss<<"#include \"xios_fortran_prefix.hpp\""<<iendl ;
385     oss<<iendl ;
386     oss<<"MODULE i"<<className<<"_attr"<<iendl++ ;
387     oss<<"USE, INTRINSIC :: ISO_C_BINDING"<<iendl ;
388     oss<<"USE i"<<superClassName<<iendl ;
389     oss<<"USE "<<className<<"_interface_attr"<<iendl ;
390//     oss<<"TYPE txios("<<className<<")"<<iendl ;
391//     oss<<"  INTEGER(kind = C_INTPTR_T) :: daddr"<<iendl ;
392//     oss<<"END TYPE txios("<<className<<")"<<iendl ;
393     oss<<iendl-- ;
394     oss<<"CONTAINS"<<iendl++ ;
395     oss<<iendl ;
396     SuperClassMap::generateFortranInterface_id(oss,className) ;
397     oss<<iendl ;
398     SuperClassMap::generateFortranInterface_hdl(oss,className) ;
399     oss<<iendl ;
400     SuperClassMap::generateFortranInterface_hdl_(oss,className) ;
401     oss<<iendl ;
402     SuperClassMap::generateFortranInterfaceGet_id(oss,className) ;
403     oss<<iendl ;
404     SuperClassMap::generateFortranInterfaceGet_hdl(oss,className) ;
405     oss<<iendl ;
406     SuperClassMap::generateFortranInterfaceGet_hdl_(oss,className) ;
407     oss<<iendl ;
408     SuperClassMap::generateFortranInterfaceIsDefined_id(oss,className) ;
409     oss<<iendl ;
410     SuperClassMap::generateFortranInterfaceIsDefined_hdl(oss,className) ;
411     oss<<iendl ;
412     SuperClassMap::generateFortranInterfaceIsDefined_hdl_(oss,className) ;
413     oss<<iendl-- ;
414     oss<<"END MODULE i"<<className<<"_attr"<<iendl ;
415   }
416
417
418} // namespace xios
419
420#endif // __XMLIO_CObjectTemplate_impl__
Note: See TracBrowser for help on using the repository browser.