source: XIOS/trunk/src/node/grid.cpp @ 459

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

enhancement : error message more explicit with non compliant mask size

YM

File size: 17.8 KB
Line 
1
2#include "grid.hpp"
3
4#include "attribute_template.hpp"
5#include "object_template.hpp"
6#include "group_template.hpp"
7#include "message.hpp"
8#include <iostream>
9#include "xmlioserver_spl.hpp"
10#include "type.hpp"
11#include "context.hpp"
12#include "context_client.hpp"
13#include "array_new.hpp"
14
15namespace xios {
16
17   /// ////////////////////// Définitions ////////////////////// ///
18
19   CGrid::CGrid(void)
20      : CObjectTemplate<CGrid>(), CGridAttributes()
21      , withAxis(false), isChecked(false), axis(), domain()
22      , storeIndex(1), out_i_index(1), out_j_index(1), out_l_index(1)
23   { /* Ne rien faire de plus */ }
24
25   CGrid::CGrid(const StdString & id)
26      : CObjectTemplate<CGrid>(id), CGridAttributes()
27      , withAxis(false), isChecked(false), axis(), domain()
28      , storeIndex(1), out_i_index(1), out_j_index(1), out_l_index(1)
29   { /* Ne rien faire de plus */ }
30
31   CGrid::~CGrid(void)
32   { 
33 //     this->axis.reset() ;
34//      this->domain.reset() ;
35    deque< CArray<int, 1>* >::iterator it ;
36   
37    for(deque< CArray<int,1>* >::iterator it=storeIndex.begin(); it!=storeIndex.end();it++)  delete *it ;
38    for(deque< CArray<int,1>* >::iterator it=out_i_index.begin();it!=out_i_index.end();it++) delete *it ;
39    for(deque< CArray<int,1>* >::iterator it=out_j_index.begin();it!=out_j_index.end();it++) delete *it ;
40    for(deque< CArray<int,1>* >::iterator it=out_l_index.begin();it!=out_l_index.end();it++) delete *it ;
41
42    for(map<int,CArray<int,1>* >::iterator it=out_i_fromClient.begin();it!=out_i_fromClient.end();it++) delete it->second ;
43    for(map<int,CArray<int,1>* >::iterator it=out_j_fromClient.begin();it!=out_j_fromClient.end();it++) delete it->second ;
44    for(map<int,CArray<int,1>* >::iterator it=out_l_fromClient.begin();it!=out_l_fromClient.end();it++) delete it->second ;
45
46   }
47
48   ///---------------------------------------------------------------
49
50   StdString CGrid::GetName(void)    { return (StdString("grid")); }
51   StdString CGrid::GetDefName(void) { return (CGrid::GetName()); }
52   ENodeType CGrid::GetType(void)    { return (eGrid); }
53
54   //----------------------------------------------------------------
55
56   const std::deque< CArray<int,1>* > & CGrid::getStoreIndex(void) const
57   { 
58      return (this->storeIndex );
59   }
60
61   //---------------------------------------------------------------
62
63   const std::deque< CArray<int,1>* > & CGrid::getOutIIndex(void)  const
64   { 
65      return (this->out_i_index ); 
66   }
67
68   //---------------------------------------------------------------
69
70   const std::deque< CArray<int,1>* > & CGrid::getOutJIndex(void)  const
71   { 
72      return (this->out_j_index ); 
73   }
74
75   //---------------------------------------------------------------
76
77   const std::deque< CArray<int,1>* > & CGrid::getOutLIndex(void)  const
78   { 
79      return (this->out_l_index ); 
80   }
81
82   //---------------------------------------------------------------
83
84   const CAxis*   CGrid::getRelAxis  (void) const
85   { 
86      return (this->axis ); 
87   }
88
89   //---------------------------------------------------------------
90
91   const CDomain* CGrid::getRelDomain(void) const
92   { 
93      return (this->domain ); 
94   }
95
96   //---------------------------------------------------------------
97
98   bool CGrid::hasAxis(void) const 
99   { 
100      return (this->withAxis); 
101   }
102
103   //---------------------------------------------------------------
104
105   StdSize CGrid::getDimension(void) const
106   {
107      return ((this->withAxis)?3:2);
108   }
109
110   //---------------------------------------------------------------
111
112/*
113   std::vector<StdSize> CGrid::getLocalShape(void) const
114   {
115      std::vector<StdSize> retvalue;
116      retvalue.push_back(domain->zoom_ni_loc.getValue());
117      retvalue.push_back(domain->zoom_nj_loc.getValue());
118      if (this->withAxis)
119         retvalue.push_back(this->axis->zoom_size.getValue());
120      return (retvalue);
121   }
122*/
123   //---------------------------------------------------------------
124   
125/*
126   StdSize CGrid::getLocalSize(void) const
127   {
128      StdSize retvalue = 1;
129      std::vector<StdSize> shape_ = this->getLocalShape();
130      for (StdSize s = 0; s < shape_.size(); s++)
131         retvalue *= shape_[s];
132      return (retvalue);
133   }
134*/
135   //---------------------------------------------------------------
136/*
137   std::vector<StdSize> CGrid::getGlobalShape(void) const
138   {
139      std::vector<StdSize> retvalue;
140      retvalue.push_back(domain->ni.getValue());
141      retvalue.push_back(domain->nj.getValue());
142      if (this->withAxis)
143         retvalue.push_back(this->axis->size.getValue());
144      return (retvalue);
145   }
146*/
147   //---------------------------------------------------------------
148
149/*   
150   StdSize CGrid::getGlobalSize(void) const
151   {
152      StdSize retvalue = 1;
153      std::vector<StdSize> shape_ = this->getGlobalShape();
154      for (StdSize s = 0; s < shape_.size(); s++)
155         retvalue *= shape_[s];
156      return (retvalue);
157   }
158*/
159   StdSize CGrid::getDataSize(void) const
160   {
161      StdSize retvalue=domain->data_ni.getValue() ;
162      if (domain->data_dim.getValue()==2) retvalue*=domain->data_nj.getValue() ;
163      if (this->withAxis) retvalue*=this->axis->size.getValue() ;
164
165      return (retvalue);
166   }
167
168   //---------------------------------------------------------------
169
170   void CGrid::solveReference(void)
171   {
172      if (this->isChecked) return;
173      CContext* context = CContext::getCurrent() ;
174      CContextClient* client=context->client ;
175     
176      this->solveDomainRef() ;
177      this->solveAxisRef() ;
178       
179      if (context->hasClient)
180      {
181         checkMask() ;
182         this->computeIndex() ;
183
184         this->storeIndex.push_front(new CArray<int,1>() );
185         this->out_i_index.push_front(new CArray<int,1>());
186         this->out_j_index.push_front(new CArray<int,1>());
187         this->out_l_index.push_front(new CArray<int,1>());
188      }
189//      this->computeIndexServer();
190      this->isChecked = true;
191   }
192
193
194   void CGrid::checkMask(void)
195   {
196      using namespace std;
197
198      unsigned int niu = domain->ni, nju = domain->nj;
199      unsigned int nlu = 1 ;
200      if (hasAxis()) nlu=axis->size ;
201
202      if (!mask.isEmpty())
203      {
204         if ((mask.extent(0) != niu) ||
205             (mask.extent(1) != nju) ||
206             (mask.extent(2) != nlu))
207             ERROR("CGrid::checkAttributes(void)",
208                  <<"The mask has not the same size than the local grid"<<endl
209                  <<"Local size is "<<niu<<"x"<<nju<<"x"<<nlu<<endl
210                  <<"Mask size is "<<mask.extent(0)<<"x"<<mask.extent(1)<<"x"<<mask.extent(2));
211      }
212      else 
213      {
214        mask.resize(niu,nju,nlu) ;
215        mask=true  ;
216      }
217     
218      CArray<bool,2>& domainMask = domain->mask ;
219      for (int l=0; l < nlu ; l++)
220        for (int j=0; j < nju ; j++)
221          for(int i=0; i<niu ; i++) mask(i,j,l) = mask(i,j,l) && domainMask(i,j) ;
222       
223     
224   }
225   
226   //---------------------------------------------------------------
227
228   void CGrid::solveDomainRef(void)
229   {
230      if (!domain_ref.isEmpty())
231      {
232         if (CDomain::has(domain_ref.getValue()))
233         {
234            this->domain = CDomain::get(domain_ref.getValue()) ;
235            domain->checkAttributes() ;
236         }
237         else ERROR("CGrid::solveDomainRef(void)",
238                     << "Wrong domain reference") ;
239      }
240      else ERROR("CGrid::solveDomainRef(void)",
241                  << "Domain reference is not defined") ;
242   }
243
244   //---------------------------------------------------------------
245
246   void CGrid::solveAxisRef(void)
247   {
248      if (!axis_ref.isEmpty())
249      {
250         this->withAxis = true ;
251         if (CAxis::get(axis_ref.getValue()))
252         {
253            this->axis = CAxis::get(axis_ref.getValue()) ;
254            axis->checkAttributes() ;
255         }
256         else ERROR("CGrid::solveAxisRef(void)",
257                    << "Wrong axis reference") ;
258      }
259      else withAxis = false ;
260   }
261
262   //---------------------------------------------------------------
263
264   void CGrid::computeIndex(void)
265   {   
266   
267      const int ni   = domain->ni.getValue() ,
268                nj   = domain->nj.getValue() ,
269                size = (this->hasAxis()) ? axis->size.getValue() : 1 ,
270                lbegin = (this->hasAxis()) ? axis->zoom_begin.getValue()-1 : 0 ,
271                lend = (this->hasAxis()) ? axis->zoom_end.getValue()-1 : 0 ;
272
273
274      const int data_dim     = domain->data_dim.getValue() ,
275                data_n_index = domain->data_n_index.getValue() ,
276                data_ibegin  = domain->data_ibegin.getValue() ,
277                data_jbegin  = (data_dim == 2)
278                             ? domain->data_jbegin.getValue() : -1;
279
280      CArray<int,1> data_i_index = domain->data_i_index ;
281      CArray<int,1> data_j_index = domain->data_j_index ;
282     
283
284      int indexCount = 0;
285
286      for(int l = 0; l < size ; l++)
287      {
288         for(int n = 0, i = 0, j = 0; n < data_n_index; n++)
289         {
290            int temp_i = data_i_index(n) + data_ibegin,
291                temp_j = (data_dim == 1) ? -1
292                       : data_j_index(n) + data_jbegin;
293            i = (data_dim == 1) ? (temp_i - 1) % ni
294                                : (temp_i - 1) ;
295            j = (data_dim == 1) ? (temp_i - 1) / ni
296                                : (temp_j - 1) ;
297
298            if ((l >=lbegin && l<= lend) &&
299                (i >= 0 && i < ni) &&
300                (j >= 0 && j < nj) && mask(i,j,l))
301               indexCount++ ;
302         }
303      }
304     
305      storeIndex[0]  = new CArray<int,1>(indexCount) ;
306      out_i_index[0] = new CArray<int,1>(indexCount) ;
307      out_j_index[0] = new CArray<int,1>(indexCount) ;
308      out_l_index[0] = new CArray<int,1>(indexCount) ;
309     
310      storeIndex_client.resize(indexCount) ;
311      out_i_client.resize(indexCount) ;
312      out_j_client.resize(indexCount) ;
313      out_l_client.resize(indexCount) ;
314     
315     
316      for(int count = 0, indexCount = 0,  l = 0; l < size; l++)
317      {
318         for(int n = 0, i = 0, j = 0; n < data_n_index; n++, count++)
319         {
320            int temp_i = data_i_index(n) + data_ibegin,
321                temp_j = (data_dim == 1) ? -1
322                       : data_j_index(n) + data_jbegin;
323            i = (data_dim == 1) ? (temp_i - 1) % ni
324                                : (temp_i - 1) ;
325            j = (data_dim == 1) ? (temp_i - 1) / ni
326                                : (temp_j - 1) ;
327
328            if ((l >= lbegin && l <= lend) &&
329                (i >= 0 && i < ni) &&
330                (j >= 0 && j < nj) && mask(i,j,l))
331            {
332               (*storeIndex[0])(indexCount) = count ;
333               (*out_l_index[0])(indexCount) = l ;
334               (*out_i_index[0])(indexCount) = i ;
335               (*out_j_index[0])(indexCount) = j ;
336               
337               storeIndex_client(indexCount) = count ;
338               out_i_client(indexCount)=i+domain->ibegin_client-1 ;
339               out_j_client(indexCount)=j+domain->jbegin_client-1 ;
340               out_l_client(indexCount)=l-lbegin ;
341               indexCount++ ;
342            }
343         }
344      }
345      sendIndex() ;
346
347
348   }
349
350   //----------------------------------------------------------------
351
352   CGrid* CGrid::createGrid(CDomain* domain)
353   {
354      StdString new_id = StdString("__") + domain->getId() + StdString("__") ;
355      CGrid* grid = CGridGroup::get("grid_definition")->createChild(new_id) ;
356      grid->domain_ref.setValue(domain->getId());
357      return (grid);
358   }
359
360   CGrid* CGrid::createGrid(CDomain* domain, CAxis* axis)
361   {
362      StdString new_id = StdString("__") + domain->getId() +
363                         StdString("_") + axis->getId() + StdString("__") ;
364      CGrid* grid = CGridGroup::get("grid_definition")->createChild(new_id) ;
365      grid->domain_ref.setValue(domain->getId());
366      grid->axis_ref.setValue(axis->getId());
367      return (grid);
368   }
369
370   //----------------------------------------------------------------
371
372   void CGrid::outputField(int rank, const CArray<double, 1>& stored,  CArray<double, 3>& field) 
373   {
374      CArray<int,1>& out_i=*out_i_fromClient[rank] ;
375      CArray<int,1>& out_j=*out_j_fromClient[rank] ;
376      CArray<int,1>& out_l=*out_l_fromClient[rank] ;
377     
378      for(StdSize n = 0; n < stored.numElements(); n++)
379         field(out_i(n), out_j(n), out_l(n)) = stored(n) ;
380   }
381
382   void CGrid::outputField(int rank, const CArray<double, 1>& stored,  CArray<double, 2>& field) 
383   {
384      CArray<int,1>& out_i=*out_i_fromClient[rank] ;
385      CArray<int,1>& out_j=*out_j_fromClient[rank] ;
386     
387      for(StdSize n = 0; n < stored.numElements(); n++)
388         field(out_i(n), out_j(n)) = stored(n) ;   }
389
390   //---------------------------------------------------------------
391
392   void CGrid::outputField(int rank,const CArray<double, 1>& stored,  CArray<double, 1>& field)
393   {
394      CArray<int,1>& out_i=*out_i_fromClient[rank] ;
395 
396      for(StdSize n = 0; n < stored.numElements(); n++)
397         field(out_i(n)) = stored(n) ;
398   }
399
400   //----------------------------------------------------------------
401 
402
403   void CGrid::storeField_arr
404      (const double * const data, CArray<double, 1>& stored) const
405   {
406      const StdSize size = storeIndex_client.numElements() ;
407
408      stored.resize(size) ;
409      for(StdSize i = 0; i < size; i++) stored(i) = data[storeIndex_client(i)] ;
410   }
411   
412   //---------------------------------------------------------------
413
414  void CGrid::sendIndex(void)
415  {
416    CContext* context = CContext::getCurrent() ;
417    CContextClient* client=context->client ;
418   
419    CEventClient event(getType(),EVENT_ID_INDEX) ;
420    int rank ;
421    list<shared_ptr<CMessage> > list_msg ;
422    list< CArray<int,1>* > list_out_i,list_out_j,list_out_l ;
423     
424    for(int ns=0;ns<domain->connectedServer.size();ns++)
425    {
426       rank=domain->connectedServer[ns] ;
427       int ib=domain->ib_srv[ns] ;
428       int ie=domain->ie_srv[ns] ;
429       int jb=domain->jb_srv[ns] ;
430       int je=domain->je_srv[ns] ;
431       
432       int i,j ;
433       int nb=0 ;
434       for(int k=0;k<storeIndex_client.numElements();k++)
435       {
436         i=out_i_client(k) ;
437         j=out_j_client(k) ;
438         if (i>=ib-1 && i<=ie-1 && j>=jb-1 && j<=je-1) nb++ ; 
439       }
440       
441       CArray<int,1> storeIndex(nb) ;
442       CArray<int,1> out_i(nb) ;
443       CArray<int,1> out_j(nb) ;
444       CArray<int,1> out_l(nb) ;
445 
446       
447       nb=0 ;
448       for(int k=0;k<storeIndex_client.numElements();k++)
449       {
450         i=out_i_client(k) ;
451         j=out_j_client(k) ;
452         if (i>=ib-1 && i<=ie-1 && j>=jb-1 && j<=je-1) 
453         {
454            storeIndex(nb)=k ;
455            out_i(nb)=out_i_client(k) ;
456            out_j(nb)=out_j_client(k) ;
457            out_l(nb)=out_l_client(k) ;
458            nb++ ;
459         }
460       }
461       
462       storeIndex_toSrv.insert( pair<int,CArray<int,1>* >(rank,new CArray<int,1>(storeIndex) )) ;
463       nbSenders.insert(pair<int,int>(rank,domain->nbSenders[ns])) ;
464       list_msg.push_back(shared_ptr<CMessage>(new CMessage)) ;
465       list_out_i.push_back(new CArray<int,1>(out_i)) ;
466       list_out_j.push_back(new CArray<int,1>(out_j)) ;
467       list_out_l.push_back(new CArray<int,1>(out_l)) ;
468
469       *list_msg.back()<<getId()<<*list_out_i.back()<<*list_out_j.back()<<*list_out_l.back() ;
470       event.push(rank,domain->nbSenders[ns],*list_msg.back()) ;
471    }
472    client->sendEvent(event) ;
473
474    for(list<CArray<int,1>* >::iterator it=list_out_i.begin();it!=list_out_i.end();it++) delete *it ;
475    for(list<CArray<int,1>* >::iterator it=list_out_j.begin();it!=list_out_j.end();it++) delete *it ;
476    for(list<CArray<int,1>* >::iterator it=list_out_l.begin();it!=list_out_l.end();it++) delete *it ;
477   
478  }
479 
480  void CGrid::recvIndex(CEventServer& event)
481  {
482    list<CEventServer::SSubEvent>::iterator it ;
483    for (it=event.subEvents.begin();it!=event.subEvents.end();++it)
484    {
485      int rank=it->rank;
486      CBufferIn* buffer=it->buffer;
487      string domainId ;
488      *buffer>>domainId ;
489      get(domainId)->recvIndex(rank,*buffer) ;
490    }
491  }
492 
493  void CGrid::recvIndex(int rank, CBufferIn& buffer)
494  {
495    CArray<int,1> out_i ;
496    CArray<int,1> out_j ;
497    CArray<int,1> out_l ;
498   
499    buffer>>out_i>>out_j>>out_l ;
500   
501    out_i -= domain->zoom_ibegin_srv-1 ;
502    out_j -= domain->zoom_jbegin_srv-1 ;
503   
504    out_i_fromClient.insert(pair< int,CArray<int,1>* >(rank,new CArray<int,1>(out_i) )) ;
505    out_j_fromClient.insert(pair< int,CArray<int,1>* >(rank,new CArray<int,1>(out_j) )) ;
506    out_l_fromClient.insert(pair< int,CArray<int,1>* >(rank,new CArray<int,1>(out_l) )) ;
507  }
508
509  bool CGrid::dispatchEvent(CEventServer& event)
510  {
511     
512    if (SuperClass::dispatchEvent(event)) return true ;
513    else
514    {
515      switch(event.type)
516      {
517        case EVENT_ID_INDEX :
518          recvIndex(event) ;
519          return true ;
520          break ;
521 
522        default :
523          ERROR("bool CDomain::dispatchEvent(CEventServer& event)",
524                <<"Unknown Event") ;
525          return false ;
526      }
527    }
528  }
529
530   void CGrid::inputFieldServer(const std::deque< CArray<double, 1>* > storedClient, CArray<double, 1>&  storedServer) const
531   {
532      if ((this->storeIndex.size()-1 ) != storedClient.size())
533         ERROR("void CGrid::inputFieldServer(const std::deque< CArray<double, 1>* > storedClient, CArray<double, 1>&  storedServer) const",
534                << "[ Expected received field = " << (this->storeIndex.size()-1) << ", "
535                << "[ received fiedl = "    << storedClient.size() << "] "
536                << "Data from clients are missing!") ;
537      storedServer.resize(storeIndex[0]->numElements());
538         
539      for (StdSize i = 0, n = 0; i < storedClient.size(); i++)
540         for (StdSize j = 0; j < storedClient[i]->numElements(); j++)
541            storedServer(n++) = (*storedClient[i])(j);
542   }
543
544   void CGrid::outputFieldToServer(CArray<double,1>& fieldIn, int rank, CArray<double,1>& fieldOut)
545   {
546     CArray<int,1>& index = *storeIndex_toSrv[rank] ;
547     int nb=index.numElements() ;
548     fieldOut.resize(nb) ;
549     
550     for(int k=0;k<nb;k++) fieldOut(k)=fieldIn(index(k)) ;
551    }
552   ///---------------------------------------------------------------
553
554} // namespace xios
Note: See TracBrowser for help on using the repository browser.