source: XIOS/trunk/src/node/field.cpp @ 462

Last change on this file since 462 was 460, checked in by ymipsl, 10 years ago

New functionnalities : expression may combine fields after temporal operation (averaging, min, max ...) using the operator @

YM

File size: 23.2 KB
RevLine 
[219]1#include "field.hpp"
2
[352]3#include "attribute_template.hpp"
4#include "object_template.hpp"
5#include "group_template.hpp"
[219]6
7#include "node_type.hpp"
8#include "calendar_util.hpp"
[352]9#include "message.hpp"
10#include "xmlioserver_spl.hpp"
11#include "type.hpp"
12#include "context_client.hpp"
[459]13#include <set>
[219]14
[335]15namespace xios{
[219]16   
17   /// ////////////////////// Définitions ////////////////////// ///
18
19   CField::CField(void)
20      : CObjectTemplate<CField>(), CFieldAttributes()
21      , refObject(), baseRefObject()
22      , grid(), file()
23      , freq_operation(), freq_write()
[266]24      , nstep(0)
[219]25      , last_Write(), last_operation()
[459]26      , foperation(), hasInstantData(false), hasExpression(false)
[460]27      , active(false) , hasOutputFile(false),hasFieldOut(false), slotUpdateDate(NULL)
[459]28      , processed(false)
[369]29      { /* Ne rien faire de plus */ }
[219]30
31   CField::CField(const StdString & id)
32      : CObjectTemplate<CField>(id), CFieldAttributes()
33      , refObject(), baseRefObject()
34      , grid(), file()
35      , freq_operation(), freq_write()
[266]36      , nstep(0)
[219]37      , last_Write(), last_operation()
[459]38      , foperation(), hasExpression(false)
[460]39      , active(false), hasOutputFile(false), hasFieldOut(false), slotUpdateDate(NULL)
[459]40      , processed(false)
[219]41   { /* Ne rien faire de plus */ }
42
43   CField::~CField(void)
44   {
[347]45//      this->grid.reset() ;
46//      this->file.reset() ;
[219]47      this->foperation.reset() ;
[459]48      if (hasExpression) delete expression ;
49      if (slotUpdateDate!=NULL) delete slotUpdateDate ;
50       
[219]51   }
52
53   //----------------------------------------------------------------
54
55   bool CField::updateDataServer
[343]56      (const CDate & currDate,
[369]57       const std::deque< CArray<double, 1>* > storedClient)
[219]58   {
[343]59      const CDate opeDate      = *last_operation + freq_operation;
60      const CDate writeDate    = *last_Write     + freq_write; 
[278]61     
62      if (opeDate <= currDate)
[219]63      {
[369]64         if (this->data.numElements() != this->grid->storeIndex[0]->numElements())
[278]65         {
[369]66            this->data.resize(this->grid->storeIndex[0] ->numElements());
[278]67         } 
[369]68         CArray<double,1> input(data.numElements()) ;
[278]69         this->grid->inputFieldServer(storedClient, input);         
[219]70         (*this->foperation)(input);
71         *last_operation = currDate;
72      }
[278]73      if (writeDate < (currDate + freq_operation))
[219]74      {
[278]75         this->foperation->final();
76         this->incrementNStep();
77         *last_Write = writeDate;
78         return (true);       
[219]79      }
80      return (false);
81   }
[300]82   
83   bool CField::dispatchEvent(CEventServer& event)
84  {
85     
86    if (SuperClass::dispatchEvent(event)) return true ;
87    else
88    {
89      switch(event.type)
90      {
91        case EVENT_ID_UPDATE_DATA :
92          recvUpdateData(event) ;
93          return true ;
94          break ;
95 
96        default :
97          ERROR("bool CField::dispatchEvent(CEventServer& event)",<<"Unknown Event") ;
98          return false ;
99      }
100    }
101  }
102 
103  void CField::sendUpdateData(void)
104  {
[347]105    CContext* context = CContext::getCurrent() ;
[300]106    CContextClient* client=context->client ;
107   
108    CEventClient event(getType(),EVENT_ID_UPDATE_DATA) ;
109   
[369]110    map<int,CArray<int, 1>* >::iterator it ;
[300]111    list<shared_ptr<CMessage> > list_msg ;
[369]112    list< CArray<double,1>* > list_data ;
[300]113   
114    for(it=grid->storeIndex_toSrv.begin();it!=grid->storeIndex_toSrv.end();it++)
115    {
116      int rank=(*it).first ;
[369]117      CArray<int,1>& index = *(it->second) ;
118      CArray<double,1> data_tmp(index.numElements()) ;
119     
120      for(int n=0;n<data_tmp.numElements();n++) data_tmp(n)=data(index(n)) ;
[300]121      list_msg.push_back(shared_ptr<CMessage>(new CMessage)) ;
[369]122      list_data.push_back(new CArray<double,1>(data_tmp)) ;
123      *list_msg.back()<<getId()<<*list_data.back() ;
[300]124      event.push(rank,grid->nbSenders[rank],*list_msg.back()) ;
125    }
126    client->sendEvent(event) ;
[369]127   
128    for(list< CArray<double,1>* >::iterator it=list_data.begin();it!=list_data.end();it++) delete *it ;
[300]129  }
130 
131  void CField::recvUpdateData(CEventServer& event)
132  {
133    vector<int> ranks ;
134    vector<CBufferIn*> buffers ;
135     
136    list<CEventServer::SSubEvent>::iterator it ;
137    string fieldId ;
[219]138
[300]139    for (it=event.subEvents.begin();it!=event.subEvents.end();++it)
140    {
141      int rank=it->rank;
142      CBufferIn* buffer=it->buffer;
143      *buffer>>fieldId ;
144      ranks.push_back(rank) ;
145      buffers.push_back(buffer) ;
146    }
147    get(fieldId)->recvUpdateData(ranks,buffers) ;   
148  }
149 
150  void  CField::recvUpdateData(vector<int>& ranks, vector<CBufferIn*>& buffers)
151  {
152   
153    if (data_srv.empty())
154    {
[369]155      for(map<int, CArray<int, 1>* >::iterator it=grid->out_i_fromClient.begin();it!=grid->out_i_fromClient.end();it++)
[300]156      {
157        int rank=it->first ;
[369]158        CArray<double,1> data_tmp(it->second->numElements()) ;
159        data_srv.insert( pair<int, CArray<double,1>* >(rank, new CArray<double,1>(data_tmp) ) ) ;
160        foperation_srv.insert(pair<int,boost::shared_ptr<func::CFunctor> >(rank,boost::shared_ptr<func::CFunctor>(new func::CInstant(*data_srv[rank])))) ;
[300]161      }
162    }
163
[347]164    CContext* context = CContext::getCurrent() ;
[343]165    const CDate & currDate = context->getCalendar()->getCurrentDate();
166    const CDate opeDate      = *last_operation_srv + freq_operation_srv;
167    const CDate writeDate    = *last_Write_srv     + freq_write_srv; 
[300]168   
169
170   
171    if (opeDate <= currDate)
172    {
173      for(int n=0;n<ranks.size();n++)
174      {
[369]175        CArray<double,1> data_tmp ;
[300]176        *buffers[n]>>data_tmp ;
177        (*foperation_srv[ranks[n]])(data_tmp) ;
178      }
179      *last_operation_srv = currDate;
180    }
181     
182    if (writeDate < (currDate + freq_operation_srv))
183    {
184      for(int n=0;n<ranks.size();n++)
185      {
186        this->foperation_srv[ranks[n]]->final();
187      }
188     
189      *last_Write_srv = writeDate;
190      writeField() ;
[334]191      *lastlast_Write_srv=*last_Write_srv;
[300]192    }
193  }
194 
195  void CField::writeField(void)
196  {
[379]197    if (! getRelFile()->allDomainEmpty )
198      if (! grid->domain->isEmpty() || getRelFile()->type == CFile::type_attr::one_file)
199      {
200        getRelFile()->checkFile();
201        this->incrementNStep();
202        getRelFile()->getDataOutput()->writeFieldData(CField::get(this));
203      }
[300]204  }
[219]205   //----------------------------------------------------------------
206
[347]207   void CField::setRelFile(CFile* _file)
[219]208   { 
[459]209      this->file = _file;
210      hasOutputFile=true ; 
[219]211   }
212
213   //----------------------------------------------------------------
214
215   StdString CField::GetName(void)   { return (StdString("field")); }
216   StdString CField::GetDefName(void){ return (CField::GetName()); }
217   ENodeType CField::GetType(void)   { return (eField); }
218
219   //----------------------------------------------------------------
220
[347]221   CGrid* CField::getRelGrid(void) const
[219]222   { 
223      return (this->grid); 
224   }
225
226   //----------------------------------------------------------------
227
[347]228   CFile* CField::getRelFile(void) const
[219]229   { 
230      return (this->file);
231   }
[266]232   
233   StdSize CField::getNStep(void) const
234   {
235      return (this->nstep);
236   }
237   
238   void CField::incrementNStep(void)
239   {
240      this->nstep++;
241   }
[321]242 
243   void CField::resetNStep(void)
244   {
245      this->nstep=0;
246   }
[219]247
248   //----------------------------------------------------------------
249
[347]250   CField* CField::getDirectFieldReference(void) const
[219]251   {
252      if (this->field_ref.isEmpty())
253         return (this->getBaseFieldReference());
254
[346]255      if (! CField::has(this->field_ref.getValue()))
[219]256         ERROR("CField::getDirectFieldReference(void)",
257               << "[ ref_name = " << this->field_ref.getValue() << "]"
258               << " invalid field name !");
259
[346]260      return (CField::get(this->field_ref.getValue()));
[219]261   }
262
263   //----------------------------------------------------------------
264
[347]265   CField* CField::getBaseFieldReference(void) const
[219]266   { 
267      return (baseRefObject); 
268   }
269
270   //----------------------------------------------------------------
271
[347]272   const std::vector<CField*>& CField::getAllReference(void) const 
[219]273   { 
274      return (refObject);
275   }
276
277   //----------------------------------------------------------------
278
279   const StdString & CField::getBaseFieldId(void) const
280   { 
281      return (this->getBaseFieldReference()->getId());
282   }
283   
284   //----------------------------------------------------------------
285   
[343]286   const CDuration & CField::getFreqOperation(void) const
[219]287   {
288      return (this->freq_operation);
289   }
290   
291   //----------------------------------------------------------------
[343]292   const CDuration & CField::getFreqWrite(void) const
[219]293   {
294      return (this->freq_write);
295   }
296   
297   //----------------------------------------------------------------
298         
299   boost::shared_ptr<func::CFunctor> CField::getFieldOperation(void) const
300   {
301      return (this->foperation);
302   }
303
304   //----------------------------------------------------------------
305
306   bool CField::hasDirectFieldReference(void) const
307   { 
[310]308     return (!this->field_ref.isEmpty()); 
[219]309   }
310   
[310]311   bool CField::isActive(void) const
312   { 
313      return (!this->refObject.empty()); 
314   }
[219]315   //----------------------------------------------------------------
316   
[369]317   CArray<double, 1> CField::getData(void) const
[219]318   {
319      return(this->data);
320   }
321
322   //----------------------------------------------------------------
323
[343]324   boost::shared_ptr<CDate> CField::getLastWriteDate(void) const
[219]325   {
326      return(this->last_Write);
327   }
328
329   //----------------------------------------------------------------
330
[343]331   boost::shared_ptr<CDate> CField::getLastOperationDate(void) const
[219]332   {
333      return(this->last_operation);
334   }
335
336   //----------------------------------------------------------------
337
[459]338   void CField::processEnabledField(void)
339   {
340      if (!processed)
341      {
342        processed=true ;
343        solveRefInheritance(true) ;
344        solveOperation() ;
345        solveGridReference() ;
346     
347        if (hasDirectFieldReference()) baseRefObject->processEnabledField() ;
348        buildExpression(); 
349        active=true;
350      }
351    }
352   
[445]353   void CField::solveRefInheritance(bool apply)
[219]354   {
355      std::set<CField *> sset;
[347]356      CField* refer_sptr;
[219]357      CField * refer_ptr = this;
358     
[459]359      if (this->hasDirectFieldReference())  baseRefObject = getDirectFieldReference();
360      else  baseRefObject = CField::get(this);
[219]361     
362      while (refer_ptr->hasDirectFieldReference())
363      {
364         refer_sptr = refer_ptr->getDirectFieldReference();
[347]365         refer_ptr  = refer_sptr;
[219]366
367         if(sset.end() != sset.find(refer_ptr))
368         {
369            DEBUG (<< "Dépendance circulaire stoppée pour l'objet de type CField sur "
370                   << "\"" + refer_ptr->getId() + "\" !");
371            break;
372         }
373
[445]374         SuperClassAttribute::setAttributes(refer_ptr, apply);
[219]375         sset.insert(refer_ptr);
[459]376//ym         baseRefObject = refer_sptr;
[286]377//ym         refObject.push_back(refer_sptr);
[219]378      }
[459]379     
380      if (hasDirectFieldReference()) baseRefObject->addReference(this) ;
[219]381   }
382
383   //----------------------------------------------------------------
384
385   void  CField::solveOperation(void)
386   {
387      using namespace func;
[459]388     
[460]389      if (!hasOutputFile && !hasFieldOut) return ;
[459]390     
391      StdString id ;
392      if (hasId()) id=getId();
393      else if (!name.isEmpty()) id=name ;
394      else if (hasDirectFieldReference()) id=baseRefObject->getId() ;
395     
[347]396      CContext* context = CContext::getCurrent();
[436]397     
398      if (freq_op.isEmpty()) freq_op=string("1ts") ;
399     
[459]400      if (operation.isEmpty() )
[219]401      {
402         ERROR("CField::solveOperation(void)",
403               << "[ id = " << id << "]"
[421]404               << "Impossible to define an operation for this field !");
[219]405      }
[278]406     
407      CDuration freq_offset_ = NoneDu;
408      if (!freq_offset.isEmpty())
409      {
410         freq_offset_ = CDuration::FromString(freq_offset.getValue());
411      }
412      else
413      {
414         freq_offset.setValue(NoneDu.toString());
415      } 
[219]416
[300]417//      if (CXIOSManager::GetStatus() == CXIOSManager::LOC_SERVER)
418      if (context->hasServer)
[219]419      {
[460]420         if (hasOutputFile) 
421         {
422           this->freq_operation_srv =CDuration::FromString(this->file->output_freq.getValue());
423           this->freq_write_srv = CDuration::FromString(this->file->output_freq.getValue());
424         }
[343]425         this->lastlast_Write_srv     = boost::shared_ptr<CDate>
426                        (new CDate(context->getCalendar()->getInitDate()));
427         this->last_Write_srv     = boost::shared_ptr<CDate>
428                        (new CDate(context->getCalendar()->getInitDate()));
429         this->last_operation_srv = boost::shared_ptr<CDate>
430                        (new CDate(context->getCalendar()->getInitDate()));
[300]431//         this->foperation_srv     =
432//             boost::shared_ptr<func::CFunctor>(new CInstant(this->data_srv));
[278]433             
[460]434         if (hasOutputFile) 
435         {
436           const CDuration toffset = this->freq_operation_srv - freq_offset_ - context->getCalendar()->getTimeStep(); 
437           *this->last_operation_srv   = *this->last_operation_srv - toffset;
438         }
[219]439      }
[300]440     
[449]441//      if (context->hasClient)
442//      {                 
[219]443         this->freq_operation = CDuration::FromString(freq_op.getValue());
[460]444         if (hasOutputFile) this->freq_write     = CDuration::FromString(this->file->output_freq.getValue());
445         if (hasFieldOut) 
446         {
447           this->freq_write = CDuration::FromString(this->fieldOut->freq_op.getValue());
448         }
[343]449         this->last_Write     = boost::shared_ptr<CDate>
450                        (new CDate(context->getCalendar()->getInitDate()));
451         this->last_operation = boost::shared_ptr<CDate>
452                        (new CDate(context->getCalendar()->getInitDate()));
[278]453                       
[300]454         const CDuration toffset = this->freq_operation - freq_offset_ - context->getCalendar()->getTimeStep(); 
[278]455         *this->last_operation   = *this->last_operation - toffset; 
[436]456     
457        if (operation.get()=="once") isOnceOperation=true ;
458        else isOnceOperation=false;
459        isFirstOperation=true;
[439]460
[219]461#define DECLARE_FUNCTOR(MType, mtype)              \
462   if  (operation.getValue().compare(#mtype) == 0) \
463   {                                               \
464      boost::shared_ptr<func::CFunctor>            \
465            foperation_(new C##MType(this->data)); \
466      this->foperation = foperation_;              \
467      return;                                      \
468   }
469   
470#include "functor_type.conf"
471         
472         ERROR("CField::solveOperation(void)",
473               << "[ operation = " << operation.getValue() << "]"
[421]474               << "The operation is not defined !");
[449]475//      }
[436]476     
477
[219]478   }
479   
480   //----------------------------------------------------------------
[369]481/*
[219]482   void CField::fromBinary(StdIStream & is)
483   {
484      SuperClass::fromBinary(is);
485#define CLEAR_ATT(name_)\
[369]486      SuperClassAttribute::operator[](#name_)->reset()
[219]487
488         CLEAR_ATT(domain_ref);
489         CLEAR_ATT(axis_ref);
490#undef CLEAR_ATT
491
492   }
[369]493*/
[219]494   //----------------------------------------------------------------
495
496   void CField::solveGridReference(void)
497   {
[347]498      CDomain* domain;
499      CAxis* axis;
[219]500
501      if (!domain_ref.isEmpty())
502      {
[346]503         if (CDomain::has(domain_ref.getValue()))
504            domain = CDomain::get(domain_ref.getValue()) ;
[219]505         else
506            ERROR("CField::solveGridReference(void)",
[421]507                  << "Reference to the domain \'"
508                  << domain_ref.getValue() << "\' is wrong") ;
[219]509      }
510
511      if (!axis_ref.isEmpty())
512      {
[346]513         if (CAxis::has(axis_ref.getValue()))
514            axis = CAxis::get(axis_ref.getValue()) ;
[219]515         else
516            ERROR("CField::solveGridReference(void)",
[421]517                  << "Reference to the axis \'"
518                  << axis_ref.getValue() <<"\' is wrong") ;
[219]519      }
520
521      if (!grid_ref.isEmpty())
522      {
[346]523         if (CGrid::has(grid_ref.getValue()))
524            this->grid = CGrid::get(grid_ref.getValue()) ;
[219]525         else
526            ERROR("CField::solveGridReference(void)",
[421]527                  << "Reference to the grid \'"
528                  << grid_ref.getValue() << "\' is wrong");
[219]529      }
[418]530     
531      if (grid_ref.isEmpty() &&  domain_ref.isEmpty())
[219]532      {
533            ERROR("CField::solveGridReference(void)",
[421]534                  << "The horizontal domain for this field is not defined");
[418]535
536     }
537     
538     CType<string> goodDomain ;
539     CType<string> goodAxis ;
540     if (!grid_ref.isEmpty())
541     {
542       if (!grid->domain_ref.isEmpty()) goodDomain=grid->domain_ref ;
543       if (!grid->axis_ref.isEmpty()) goodAxis=grid->axis_ref ;
544     }
545     if (!domain_ref.isEmpty()) goodDomain=domain_ref ;
546     if (!axis_ref.isEmpty()) goodAxis=axis_ref ;
547     
548     
549     if (goodDomain.isEmpty()) 
550     {
[421]551       ERROR("CField::solveGridReference(void)", << "The horizontal domain for this field is not defined");
[418]552     }
553     else 
554     {
555       if (CDomain::has(goodDomain)) domain = CDomain::get(goodDomain) ;
[421]556       else ERROR("CField::solveGridReference(void)",<< "Reference to the domain \'"<<goodDomain.get() << "\' is wrong") ;
[418]557     }
558 
559     if (!goodAxis.isEmpty())
560     {
561       if (CAxis::has(goodAxis))  axis = CAxis::get(goodAxis) ;
[421]562       else  ERROR("CField::solveGridReference(void)", << "Reference to the axis \'"
563                  << goodAxis.get() <<"\' is wrong") ;
[418]564     } 
565   
566     bool nothingToDo=false ;
567     
568     if (!grid_ref.isEmpty())
569     {
570       if (!grid->domain_ref.isEmpty() && goodDomain.get() == grid->domain_ref.get())
571         if (goodAxis.isEmpty()) nothingToDo=true ;
572         else if (!grid->axis_ref.isEmpty()) 
573                 if (grid->axis_ref.get()==goodAxis.get()) nothingToDo=true ;
574     }
575     
576     if (!nothingToDo)
577     {
578       if (!goodAxis.isEmpty())
579       {
580         this->grid = CGrid::createGrid(domain, axis) ;
581         this->grid_ref.setValue(this->grid->getId());
582       }
583       else
584       {
585         this->grid = CGrid::createGrid(domain) ;
586         this->grid_ref.setValue(this->grid->getId());
587       }   
588     }
589
590     grid->solveReference() ;
[459]591
[219]592   }
593
594
595   ///-------------------------------------------------------------------
596
597   template <>
598      void CGroupTemplate<CField, CFieldGroup, CFieldAttributes>::solveRefInheritance(void)
599   {
600      if (this->group_ref.isEmpty()) return;
601      StdString gref = this->group_ref.getValue();
602
[346]603      if (!CFieldGroup::has(gref))
[219]604         ERROR("CGroupTemplate<CField, CFieldGroup, CFieldAttributes>::solveRefInheritance(void)",
605               << "[ gref = " << gref << "]"
606               << " invalid group name !");
607
[347]608      CFieldGroup* group = CFieldGroup::get(gref);
609      CFieldGroup* owner = CFieldGroup::get(boost::polymorphic_downcast<CFieldGroup*>(this));
[219]610
[347]611      std::vector<CField*> allChildren  = group->getAllChildren();
612      std::vector<CField*>::iterator
[219]613         it = allChildren.begin(), end = allChildren.end();
614     
615      for (; it != end; it++)
616      {
[347]617         CField* child = *it;
[346]618         if (child->hasId()) owner->createChild()->field_ref.setValue(child->getId()) ;
619           
[219]620      }
621   }
[300]622   
[369]623   void CField::outputField(CArray<double,3>& fieldOut)
[300]624   {
[369]625      map<int, CArray<double,1>* >::iterator it;
[300]626      for(it=data_srv.begin();it!=data_srv.end();it++)
[369]627         grid->outputField(it->first,*it->second, fieldOut) ;
[300]628     
629   }
630   
[369]631   void CField::outputField(CArray<double,2>& fieldOut)
[300]632   {
[369]633      map<int, CArray<double,1>* >::iterator it;
[219]634
[300]635      for(it=data_srv.begin();it!=data_srv.end();it++)
636      {
[369]637         grid->outputField(it->first,*it->second, fieldOut) ;
[300]638      }
639   }
[219]640   ///-------------------------------------------------------------------
641
[459]642   void CField::parse(xml::CXMLNode & node)
643   {
644      SuperClass::parse(node);
645      node.getContent(this->content) ;
646    }
647   
648  CArray<double,1>* CField::getInstantData(void)
649  {
650    if (!hasInstantData) 
651    {
652      instantData.resize(grid->storeIndex_client.numElements()) ;
653      hasInstantData=true ;
654    }
655    return &instantData ;
656  }
657 
658  void CField::addReference(CField* field)
659  {
660    refObject.push_back(field) ;
661  }
662 
663  void CField::addDependency(CField* field, int slotId)
664  {
665    fieldDependency.push_back(pair<CField*,int>(field,slotId)) ;
666  }
667 
668  void CField::buildExpression(void)
669  {
670    if (content.size() > 0) 
671    {
672      CSimpleNodeExpr* simpleExpr=parseExpr(content+'\0') ;
673      expression=CFieldNode::newNode(simpleExpr) ;
674      delete simpleExpr ;
[460]675      set<string> instantFieldIds ;
676      map<string,CField*> associatedInstantFieldIds ;
677      expression->getInstantFieldIds(instantFieldIds) ;
678      for (set<string>::iterator it=instantFieldIds.begin() ; it!=instantFieldIds.end();++it) 
679      {
680        if (*it!="this") 
681        {
682          if (CField::has(*it)) 
683          {
684            CField* field=CField::get(*it) ;
685            field->processEnabledField() ;
686            associatedInstantFieldIds[*it]=field ;
687          }
688          else  ERROR("void CField::buildExpression(void)",<<" Field "<<*it<<" does not exist") ;
689        }
690      }
[459]691     
[460]692      set<string> averageFieldIds ;
693      map<string,CField*> associatedAverageFieldIds ;
[459]694
[460]695      expression->getAverageFieldIds(averageFieldIds) ;
696      for (set<string>::iterator it=averageFieldIds.begin() ; it!=averageFieldIds.end();++it) 
697      {     
698        if (CField::has(*it)) 
699        {
700           CFieldGroup* root=CFieldGroup::get("field_definition") ;
701           CField* averageField=root->createChild() ;
702           CField* instantField=root->createChild() ;
703           averageField->field_ref=*it ;
704           averageField->hasFieldOut=true ;
705           averageField->fieldOut=instantField ;
706           instantField->freq_op=freq_op ;
707           averageField-> processEnabledField() ;
708           cout<<" outputfreq of averageField "<<  freq_op <<"  "<<instantField->freq_op<<"  "<< averageField->freq_write << endl ;
709           instantField->SuperClassAttribute::setAttributes(averageField, true);
710           instantField->field_ref.reset() ;
711           instantField->operation.reset() ;
712
713           instantField-> processEnabledField() ;
714           associatedAverageFieldIds[*it]=instantField  ;
715        }
716        else ERROR("void CField::buildExpression(void)",<<" Field "<<*it<<" does not exist") ;
717      }
718
719      expression->reduce(this,associatedInstantFieldIds,associatedAverageFieldIds) ;
720
721      slots.resize(instantFieldIds.size()+averageFieldIds.size()) ;
[459]722      resetSlots() ;
723      int slotId=0 ;
724      set<CField*> fields ;
725      expression->getFields(fields) ;
726      for (set<CField*>::iterator it=fields.begin() ; it!=fields.end();++it,++slotId) (*it)->addDependency(this,slotId) ;
727      hasExpression=true; 
728    }
729  }
730 
731  void CField::resetSlots(void)
732  {
733    for(vector<bool>::iterator it=slots.begin();it!=slots.end();++it) *it=false ;
734  }
735 
736  bool CField::slotsFull(void)
737  {
738    bool ret=true ;
739    for(vector<bool>::iterator it=slots.begin();it!=slots.end();++it) ret &= *it;
740    return ret ;
741  }
742
743 
744  void CField::setSlot(int slotId)
745  {
746    CContext* context = CContext::getCurrent() ;
747    const CDate & currDate = context->getCalendar()->getCurrentDate();
748    if (slotUpdateDate==NULL || currDate!=*slotUpdateDate) 
749    {
750      resetSlots() ;
751      if (slotUpdateDate==NULL) slotUpdateDate=new CDate(currDate) ;
752      else *slotUpdateDate=currDate ;
753    }
754    slots[slotId]=true ;
755    if (slotsFull())
756    {
757      CArray<double,1> expr(expression->compute()) ;
758     
759      if (hasInstantData) 
760      {
761        instantData=expr ;
762        for(list< pair<CField *,int> >::iterator it=fieldDependency.begin(); it!=fieldDependency.end(); ++it) 
763          if (it->first!=this) it->first->setSlot(it->second) ;
764      }
765     
766      if (hasOutputFile) updateDataFromExpression(expr) ;
767     
768    }
769  }
770 
[335]771} // namespace xios
Note: See TracBrowser for help on using the repository browser.