source: XIOS/dev/dev_trunk_omp/src/node/file.cpp @ 1646

Last change on this file since 1646 was 1646, checked in by yushan, 5 years ago

branch merged with trunk @1645. arch file (ep&mpi) added for ADA

  • 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: 43.7 KB
Line 
1#include "file.hpp"
2
3#include "attribute_template.hpp"
4#include "object_template.hpp"
5#include "group_template.hpp"
6#include "object_factory.hpp"
7#include "context.hpp"
8#include "context_server.hpp"
9#include "nc4_data_output.hpp"
10#include "nc4_data_input.hpp"
11#include "calendar_util.hpp"
12#include "date.hpp"
13#include "message.hpp"
14#include "type.hpp"
15#include "xios_spl.hpp"
16#include "context_client.hpp"
17#include "mpi.hpp"
18#include "timer.hpp"
19#include "server.hpp"
20
21namespace xios {
22
23   /// ////////////////////// Dfinitions ////////////////////// ///
24
25   CFile::CFile(void)
26      : CObjectTemplate<CFile>(), CFileAttributes()
27      , vFieldGroup(), data_out(), enabledFields(), fileComm(MPI_COMM_NULL)
28      , isOpen(false), read_client(0), checkRead(false), allZoneEmpty(false)
29   {
30     setVirtualFieldGroup(CFieldGroup::create(getId() + "_virtual_field_group"));
31     setVirtualVariableGroup(CVariableGroup::create(getId() + "_virtual_variable_group"));
32   }
33
34   CFile::CFile(const StdString & id)
35      : CObjectTemplate<CFile>(id), CFileAttributes()
36      , vFieldGroup(), data_out(), enabledFields(), fileComm(MPI_COMM_NULL)
37      , isOpen(false), read_client(0), checkRead(false), allZoneEmpty(false)
38    {
39      setVirtualFieldGroup(CFieldGroup::create(getId() + "_virtual_field_group"));
40      setVirtualVariableGroup(CVariableGroup::create(getId() + "_virtual_variable_group"));
41    }
42
43   CFile::~CFile(void)
44   { /* Ne rien faire de plus */ }
45
46   ///---------------------------------------------------------------
47  //! Get name of file
48   StdString CFile::GetName(void)   { return (StdString("file")); }
49   StdString CFile::GetDefName(void){ return (CFile::GetName()); }
50   ENodeType CFile::GetType(void)   { return (eFile); }
51
52   //----------------------------------------------------------------
53
54   const StdString CFile::getFileOutputName(void) const
55   TRY
56   {
57     return (name.isEmpty() ? getId() : name) + (name_suffix.isEmpty() ? StdString("") :  name_suffix.getValue());
58   }
59   CATCH
60
61   //----------------------------------------------------------------
62   /*!
63   \brief Get data writer object.
64   Each enabled file in xml represents a physical netcdf file.
65   This function allows to access the data writer object.
66   \return data writer object.
67   */
68   std::shared_ptr<CDataOutput> CFile::getDataOutput(void) const
69   TRY
70   {
71      return data_out;
72   }
73   CATCH
74
75   /*!
76   \brief Get data reader object.
77   Each enabled file in xml represents a physical netcdf file.
78   This function allows to access the data reader object.
79   \return data reader object.
80   */
81   std::shared_ptr<CDataInput> CFile::getDataInput(void) const
82   TRY
83   {
84      return data_in;
85   }
86   CATCH
87
88   /*!
89   \brief Get virtual field group
90      In each file, there always exists a field group which is the ancestor of all
91   fields in the file. This is considered be virtual because it is created automatically during
92   file initialization and it normally doesn't appear on xml file
93   \return Pointer to field group
94   */
95   CFieldGroup* CFile::getVirtualFieldGroup(void) const
96   TRY
97   {
98      return (this->vFieldGroup);
99   }
100   CATCH
101
102   /*!
103   \brief Get virtual variable group
104      In each file, there always exists a variable group which is the ancestor of all
105   variable in the file. This is considered be virtual because it is created automatically during
106   file initialization and it normally doesn't appear on xml file
107   \return Pointer to variable group
108   */
109   CVariableGroup* CFile::getVirtualVariableGroup(void) const
110   TRY
111   {
112      return (this->vVariableGroup);
113   }
114   CATCH
115
116   //! Get all fields of a file
117   std::vector<CField*> CFile::getAllFields(void) const
118   TRY
119   {
120      return (this->vFieldGroup->getAllChildren());
121   }
122   CATCH
123
124   //! Get all variables of a file
125   std::vector<CVariable*> CFile::getAllVariables(void) const
126   TRY
127   {
128      return (this->vVariableGroup->getAllChildren());
129   }
130   CATCH
131
132   //----------------------------------------------------------------
133   /*!
134   \brief Get all enabled fields of file
135      A field is considered to be enabled if it fullfil these conditions: it is enabled, inside a enabled file
136   and its own level is not larger than file output level.
137   \param [in] default_outputlevel default value output level of file
138   \param [in] default_level default value level of field
139   \param [in] default_enabled flag determine by default if field is enabled
140   \return Vector of pointers of enabled fields
141   */
142   std::vector<CField*> CFile::getEnabledFields(int default_outputlevel,
143                                                int default_level,
144                                                bool default_enabled)
145   TRY
146   {
147      if (!this->enabledFields.empty())
148         return (this->enabledFields);
149
150      const int _outputlevel =
151         (!output_level.isEmpty()) ? output_level.getValue() : default_outputlevel;
152      std::vector<CField*>::iterator it;
153      this->enabledFields = this->getAllFields();
154
155      std::vector<CField*> newEnabledFields;
156
157      for ( it = this->enabledFields.begin(); it != this->enabledFields.end(); it++ )
158      {
159         if (!(*it)->enabled.isEmpty()) // Si l'attribut 'enabled' est dfini ...
160         {
161            if (! (*it)->enabled.getValue()) continue;
162         }
163         else // Si l'attribut 'enabled' n'est pas dfini ...
164         {
165            if (!default_enabled) continue;
166         }
167
168         if (!(*it)->level.isEmpty()) // Si l'attribut 'level' est dfini ...
169         {
170            if ((*it)->level.getValue() > _outputlevel) continue;
171         }
172         else // Si l'attribut 'level' n'est pas dfini ...
173         {
174            if (default_level > _outputlevel) continue;
175         }
176
177         newEnabledFields.push_back(*it);
178         // Le champ est finalement actif, on y ajoute la rfrence au champ de base.
179         (*it)->setRelFile(CFile::get(this));
180      }
181      enabledFields = newEnabledFields;
182
183      return (this->enabledFields);
184   }
185   CATCH_DUMP_ATTR
186
187   //----------------------------------------------------------------
188   //! Change virtual field group to a new one
189   void CFile::setVirtualFieldGroup(CFieldGroup* newVFieldGroup)
190   TRY
191   {
192      this->vFieldGroup = newVFieldGroup;
193   }
194   CATCH_DUMP_ATTR
195
196   //! Change virtual variable group to new one
197   void CFile::setVirtualVariableGroup(CVariableGroup* newVVariableGroup)
198   TRY
199   {
200      this->vVariableGroup = newVVariableGroup;
201   }
202   CATCH_DUMP_ATTR
203
204   //----------------------------------------------------------------
205   bool CFile::isSyncTime(void)
206   TRY
207   {
208     CContext* context = CContext::getCurrent();
209     const CDate& currentDate = context->calendar->getCurrentDate();
210     if (!sync_freq.isEmpty())
211     {
212       if (lastSync + sync_freq.getValue() < currentDate)
213       {
214         lastSync = currentDate;
215         return true;
216        }
217      }
218      return false;
219    }
220    CATCH_DUMP_ATTR
221
222   //! Initialize a file in order to write into it
223   void CFile::initWrite(void)
224   TRY
225   {
226      CContext* context = CContext::getCurrent();
227      const CDate& currentDate = context->calendar->getCurrentDate();
228      CContextServer* server = context->server;
229
230      lastSync  = currentDate;
231      lastSplit = currentDate;
232      if (!split_freq.isEmpty())
233      {
234        StdString keySuffix("CFile::"+getFileOutputName()+"::") ; 
235        if (context->registryIn->foundKey(keySuffix+"splitStart") && context->registryIn->foundKey(keySuffix+"splitEnd"))
236        {
237          CDate savedSplitStart(*context->getCalendar()), savedSplitEnd(*context->getCalendar());
238          context->registryIn->getKey(keySuffix+"splitStart", savedSplitStart);
239          context->registryIn->getKey(keySuffix+"splitEnd",   savedSplitEnd);
240
241          if (savedSplitStart <= lastSplit && lastSplit <= savedSplitEnd)
242            lastSplit = savedSplitStart;
243        }
244      }
245      isOpen = false;     
246
247//      if (!record_offset.isEmpty() && record_offset < 0)
248//        ERROR("void CFile::initFile(void)",
249//              "Invalid 'record_offset', this attribute cannot be negative.");
250      const int recordOffset = record_offset.isEmpty() ? 0 : record_offset;
251
252      set<StdString> setAxis;
253      set<StdString> setDomains;
254
255      std::vector<CField*>::iterator it, end = this->enabledFields.end();
256      for (it = this->enabledFields.begin(); it != end; it++)
257      {
258         CField* field = *it;         
259         std::vector<CAxis*> vecAxis = field->grid->getAxis();
260         for (size_t i = 0; i < vecAxis.size(); ++i)
261           setAxis.insert(vecAxis[i]->getAxisOutputName());
262         std::vector<CDomain*> vecDomains = field->grid->getDomains();
263         for (size_t i = 0; i < vecDomains.size(); ++i)
264           setDomains.insert(vecDomains[i]->getDomainOutputName());
265
266         field->resetNStep(recordOffset);
267      }
268      nbAxis = setAxis.size();
269      nbDomains = setDomains.size();
270
271      // create sub communicator for file
272      createSubComFile();
273
274      // if (time_counter.isEmpty()) time_counter.setValue(time_counter_attr::centered);
275      if (time_counter_name.isEmpty()) time_counter_name = "time_counter";
276    }
277    CATCH_DUMP_ATTR
278
279    //! Initialize a file in order to write into it
280    void CFile::initRead(void)
281    TRY
282    {
283      if (checkRead) return;
284      createSubComFile();
285      checkRead = true;
286    }
287    CATCH_DUMP_ATTR
288
289    /*!
290      Create a sub communicator in which processes participate in reading/opening file
291    */
292    void CFile::createSubComFile()
293    TRY
294    {
295      CContext* context = CContext::getCurrent();
296      CContextServer* server = context->server;
297
298      // create sub communicator for file
299      allZoneEmpty = true;     
300      std::vector<CField*>::iterator it, end = this->enabledFields.end();
301      for (it = this->enabledFields.begin(); it != end; it++)
302      {
303         CField* field = *it;
304         bool nullGrid = (0 == field->grid);
305         allZoneEmpty &= nullGrid ? false : !field->grid->doGridHaveDataToWrite();
306      }
307
308      int color = allZoneEmpty ? 0 : 1;
309      ep_lib::MPI_Comm_split(server->intraComm, color, server->intraCommRank, &fileComm);
310      if (allZoneEmpty) ep_lib::MPI_Comm_free(&fileComm);
311    }
312    CATCH_DUMP_ATTR
313
314    /*
315       Check condition to write into a file
316       For now, we only use the level-2 server to write files (if this mode is activated)
317       or classical server to do this job.
318    */
319    void CFile::checkWriteFile(void)
320    TRY
321    {
322      CContext* context = CContext::getCurrent();
323      // Done by classical server or secondary server
324      // This condition should be changed soon
325      if (CServer::serverLevel == 0 || CServer::serverLevel == 2)
326      {
327        if (mode.isEmpty() || mode.getValue() == mode_attr::write)
328        {
329          CTimer::get("Files : create headers").resume();
330          if (!isOpen) createHeader();
331          CTimer::get("Files : create headers").suspend();
332          checkSync();
333        }       
334        checkSplit(); // REally need this?
335      }
336    }
337    CATCH_DUMP_ATTR
338
339    /*
340       Check condition to read from a file
341       For now, we only use the level-1 server to write files (if this mode is activated)
342       or classical server to do this job.
343       This function can be used by client for reading metadata
344    */
345    void CFile::checkReadFile(void)
346    TRY
347    {
348      CContext* context = CContext::getCurrent();
349      // Done by classical server or secondary server
350      // TODO: This condition should be changed soon. It only works with maximum number of level as 2
351      if (CServer::serverLevel == 0 || CServer::serverLevel == 1)
352      {
353        if (!mode.isEmpty() && mode.getValue() == mode_attr::read)
354        {
355          CTimer::get("Files : open headers").resume();
356         
357          if (!isOpen) openInReadMode();
358
359          CTimer::get("Files : open headers").suspend();
360        }
361        //checkSplit(); // Really need for reading?
362      }
363    }
364    CATCH_DUMP_ATTR
365
366    /*!
367      Verify if a process participates in an opening-file communicator
368      \return true if the process doesn't participate in opening file
369    */
370    bool CFile::isEmptyZone()
371    TRY
372    {
373      return allZoneEmpty;
374    }
375    CATCH_DUMP_ATTR
376
377    /*!
378    \brief Verify if synchronisation should be done
379        If syn option is enabled, syn frequence and current time will be used to
380    calculate the moment to syn file(s)
381    \return True if it is the moment to synchronize file, otherwise false
382    */
383   bool CFile::checkSync(void)
384   TRY
385   {
386     CContext* context = CContext::getCurrent();
387     const CDate& currentDate = context->calendar->getCurrentDate();
388     if (!sync_freq.isEmpty())
389     {
390       if (lastSync + sync_freq.getValue() <= currentDate)
391       {
392         lastSync = currentDate;
393         data_out->syncFile();
394         return true;
395        }
396      }
397      return false;
398    }
399   CATCH_DUMP_ATTR
400
401    /*!
402    \brief Verify if splitting should be done
403        If split option is enabled, split frequence and current time will be used to
404    calculate the moment to split file
405    \return True if it is the moment to split file, otherwise false
406    */
407    bool CFile::checkSplit(void)
408    TRY
409    {
410      CContext* context = CContext::getCurrent();
411      const CDate& currentDate = context->calendar->getCurrentDate();
412      if (!split_freq.isEmpty())
413      {
414        if (currentDate > lastSplit + split_freq.getValue())
415        {
416          lastSplit = lastSplit + split_freq.getValue();
417          std::vector<CField*>::iterator it, end = this->enabledFields.end();
418          for (it = this->enabledFields.begin(); it != end; it++)
419          {
420            (*it)->resetNStep();
421            (*it)->resetNStepMax();
422          }
423          if (mode.isEmpty() || mode.getValue() == mode_attr::write)
424            createHeader();
425          else
426            openInReadMode();
427          return true;
428        }
429      }
430      return false;
431    }
432    CATCH_DUMP_ATTR
433
434   /*!
435   \brief Create header of netcdf file
436   There are some information to fill in header of each netcdf.
437   */
438   void CFile::createHeader(void)
439   TRY
440   {
441      CContext* context = CContext::getCurrent();
442      CContextServer* server = context->server;
443
444      if (!allZoneEmpty)
445      {
446         StdString filename = getFileOutputName();
447
448// determine splitting format in the file name  : firstPart%start_date%middlePart%end_date%lastPart
449
450         std::string strStartDate="%start_date%" ;
451         std::string strEndDate="%end_date%" ;
452
453         std::string firstPart ;
454         std::string middlePart ;
455         std::string lastPart ;
456         size_t pos1, pos2 ;
457         bool hasStartDate=false ;
458         bool hasEndDate=false ;
459         bool hasSplit = (!split_freq.isEmpty());
460                 
461         pos1=filename.find(strStartDate) ;
462         if (pos1!=std::string::npos)
463         {
464           firstPart=filename.substr(0,pos1) ;
465           pos1+=strStartDate.size() ;
466           hasStartDate=true ;
467         }
468         else pos1=0 ;
469
470         pos2=filename.find(strEndDate,pos1) ;
471         if (pos2!=std::string::npos)
472         {
473           middlePart=filename.substr(pos1,pos2-pos1) ;
474           pos2+=strEndDate.size() ;
475           lastPart=filename.substr(pos2,filename.size()-pos2) ;
476           hasEndDate=true ;
477         }
478         else middlePart=filename.substr(pos1,filename.size()) ;
479
480         if (!hasStartDate && !hasEndDate)
481         {
482           hasStartDate=true ;
483           hasEndDate=true;
484           firstPart=middlePart ;
485           if (hasSplit) firstPart +="_";
486           middlePart="-" ;
487         }
488   
489         StdOStringStream oss;
490
491         if (!split_freq.isEmpty())
492         {
493           CDate split_start ;
494           CDate splitEnd ;
495           if (!split_start_offset.isEmpty()) split_start=lastSplit + split_start_offset ;
496           else split_start=lastSplit ;
497
498           splitEnd = lastSplit + split_freq ;
499           if (!split_last_date.isEmpty())
500           {
501             CDate splitLastDate=CDate::FromString(split_last_date,*CContext::getCurrent()->getCalendar()) ;
502             if( splitLastDate < splitEnd)  splitEnd=splitLastDate ;
503           }
504           
505           if (!split_end_offset.isEmpty()) splitEnd = splitEnd + split_end_offset;
506           else splitEnd = splitEnd - 1 * Second;
507
508           string splitFormat;
509           if (split_freq_format.isEmpty())
510           {
511             CDuration splitFreq = split_freq.getValue();
512             splitFreq.solveTimeStep(*CContext::getCurrent()->getCalendar());
513             if (splitFreq.second != 0) splitFormat = "%y%mo%d%h%mi%s";
514             else if (splitFreq.minute != 0) splitFormat = "%y%mo%d%h%mi";
515             else if (splitFreq.hour != 0) splitFormat = "%y%mo%d%h";
516             else if (splitFreq.day != 0) splitFormat = "%y%mo%d";
517             else if (splitFreq.month != 0) splitFormat = "%y%mo";
518             else splitFormat = "%y";
519           }
520           else splitFormat = split_freq_format;
521
522           oss << firstPart ;
523           if (hasStartDate) oss << split_start.getStr(splitFormat) ;
524           oss << middlePart ;
525           if (hasEndDate) oss << splitEnd.getStr(splitFormat);
526           oss << lastPart ;
527
528           StdString keySuffix("CFile::"+getFileOutputName()+"::") ; 
529           context->registryOut->setKey(keySuffix+"splitStart", lastSplit);
530           context->registryOut->setKey(keySuffix+"splitEnd",   splitEnd);
531         }
532         else oss<<firstPart<<lastPart ;
533
534        bool append = !this->append.isEmpty() && this->append.getValue();
535
536         bool useClassicFormat = !format.isEmpty() && format == format_attr::netcdf4_classic;
537         bool useCFConvention = convention.isEmpty() || convention == convention_attr::CF;
538
539         bool multifile = true;
540         if (!type.isEmpty())
541         {
542           if (type == type_attr::one_file) multifile = false;
543           else if (type == type_attr::multiple_file) multifile = true;
544
545         }
546#ifndef USING_NETCDF_PAR
547         if (!multifile)
548         {
549            #pragma omp critical (_output)
550            {
551              info(0) << "!!! Warning -> Using non parallel version of netcdf, switching in multiple_file mode for file : " << filename << " ..." << endl;
552            }
553            multifile = true;
554          }
555#endif
556         if (multifile)
557         {
558            int commSize, commRank;
559            ep_lib::MPI_Comm_size(fileComm, &commSize);
560            ep_lib::MPI_Comm_rank(fileComm, &commRank);
561
562            if (server->intraCommSize > 1)
563            {
564              oss << "_" ;
565              int width=0; int n = commSize-1;
566              while (n != 0) { n = n / 10; width++;}
567              if (!min_digits.isEmpty())
568                if (width < min_digits) width = min_digits;
569              oss.width(width);
570              oss.fill('0');
571              oss << right << commRank;
572            }
573         }
574         oss << ".nc";
575
576         bool isCollective = par_access.isEmpty() ||  par_access == par_access_attr::collective;
577
578         if (isOpen) data_out->closeFile();
579
580        data_out = std::shared_ptr<CDataOutput>(new CNc4DataOutput(this, oss.str(), append, useClassicFormat, useCFConvention,
581                                                              fileComm, multifile, isCollective, time_counter_name));
582        isOpen = true;
583
584        data_out->writeFile(CFile::get(this));
585
586        if (!useCFConvention) sortEnabledFieldsForUgrid();
587
588        // Do not recreate the file structure if opening an existing file
589        if (!data_out->IsInAppendMode())
590        {
591          std::vector<CField*>::iterator it, end = this->enabledFields.end();
592          for (it = this->enabledFields.begin(); it != end; it++)
593          {
594            CField* field = *it;
595            this->data_out->writeFieldGrid(field);
596          }
597          this->data_out->writeTimeDimension();
598
599          for (it = this->enabledFields.begin(); it != end; it++)
600          {
601            CField* field = *it;
602            this->data_out->writeFieldTimeAxis(field);
603          }
604         
605          for (it = this->enabledFields.begin(); it != end; it++)
606          {
607            CField* field = *it;
608            this->data_out->writeField(field);
609          }
610
611          vector<CVariable*> listVars = getAllVariables();
612          for (vector<CVariable*>::iterator it = listVars.begin(); it != listVars.end(); it++)
613            this->data_out->writeAttribute(*it);
614
615          this->data_out->definition_end();
616        }
617        else
618        {
619          // check time axis even in append mode
620          std::vector<CField*>::iterator it, end = this->enabledFields.end();
621          for (it = this->enabledFields.begin(); it != end; it++)
622          {
623            CField* field = *it;
624            this->data_out->writeFieldTimeAxis(field);
625          }
626        }
627      }
628   }
629   CATCH_DUMP_ATTR
630
631  /*!
632  \brief Open an existing NetCDF file in read-only mode
633  */
634  void CFile::openInReadMode()
635  TRY
636  {
637    CContext* context = CContext::getCurrent();
638    CContextServer* server = context->server;
639    ep_lib::MPI_Comm readComm = this->fileComm;
640
641    if (!allZoneEmpty)
642    {
643      StdString filename = getFileOutputName();
644      StdOStringStream oss;
645      oss << filename;
646
647      if (!split_freq.isEmpty())
648      {
649        string splitFormat;
650        if (split_freq_format.isEmpty())
651        {
652          CDuration splitFreq = split_freq.getValue();
653          splitFreq.solveTimeStep(*CContext::getCurrent()->getCalendar());
654          if (splitFreq.second != 0) splitFormat = "%y%mo%d%h%mi%s";
655          else if (splitFreq.minute != 0) splitFormat = "%y%mo%d%h%mi";
656          else if (splitFreq.hour != 0) splitFormat = "%y%mo%d%h";
657          else if (splitFreq.day != 0) splitFormat = "%y%mo%d";
658          else if (splitFreq.month != 0) splitFormat = "%y%mo";
659          else splitFormat = "%y";
660        }
661        else splitFormat = split_freq_format;
662        oss << "_" << lastSplit.getStr(splitFormat)
663        << "-" << (lastSplit + split_freq.getValue() - 1 * Second).getStr(splitFormat);
664      }
665
666      bool multifile = true;
667      if (!type.isEmpty())
668      {
669        if (type == type_attr::one_file) multifile = false;
670        else if (type == type_attr::multiple_file) multifile = true;
671      }
672  #ifndef USING_NETCDF_PAR
673      if (!multifile)
674      {
675        #pragma omp critical (_output)
676        {
677          info(0) << "!!! Warning -> Using non parallel version of netcdf, switching in multiple_file mode for file : " << filename << " ..." << endl;
678        }
679        multifile = true;
680      }
681  #endif
682      if (multifile)
683      {
684        int commSize, commRank;
685        ep_lib::MPI_Comm_size(readComm, &commSize);
686        ep_lib::MPI_Comm_rank(readComm, &commRank);
687
688        if (server->intraCommSize > 1)
689        {
690          oss << "_";
691          int width = 0, n = commSize - 1;
692          while (n != 0) { n = n / 10; width++; }
693          if (!min_digits.isEmpty() && width < min_digits)
694            width = min_digits;
695          oss.width(width);
696          oss.fill('0');
697          oss << right << commRank;
698        }
699      }
700      oss << ".nc";
701
702      bool isCollective = par_access.isEmpty() || par_access == par_access_attr::collective;
703      bool readMetaDataPar = true;
704      if (!context->hasServer) readMetaDataPar = (read_metadata_par.isEmpty()) ? false : read_metadata_par;
705
706      if (isOpen) data_out->closeFile();
707      bool ugridConvention = !convention.isEmpty() ? (convention == convention_attr::UGRID) : false;
708      if (time_counter_name.isEmpty())
709        data_in = std::shared_ptr<CDataInput>(new CNc4DataInput(oss.str(), readComm, multifile, isCollective, readMetaDataPar, ugridConvention));
710      else
711        data_in = std::shared_ptr<CDataInput>(new CNc4DataInput(oss.str(), readComm, multifile, isCollective, readMetaDataPar, ugridConvention, time_counter_name));
712      isOpen = true;
713    }
714  }
715  CATCH_DUMP_ATTR
716
717   //! Close file
718   void CFile::close(void)
719   TRY
720   {
721     if (!allZoneEmpty)
722       if (isOpen)
723       {
724         if (mode.isEmpty() || mode.getValue() == mode_attr::write)
725          this->data_out->closeFile();
726         else
727          this->data_in->closeFile();
728        isOpen = false;
729       }
730      //if (fileComm != MPI_COMM_NULL) MPI_Comm_free(&fileComm);
731   }
732   CATCH_DUMP_ATTR
733
734   //----------------------------------------------------------------
735
736   void CFile::readAttributesOfEnabledFieldsInReadMode()
737   TRY
738   {
739     if (enabledFields.empty()) return;
740
741     // Just check file and try to open it
742     if (time_counter_name.isEmpty()) time_counter_name = "time_counter";
743
744     checkReadFile();
745
746     for (int idx = 0; idx < enabledFields.size(); ++idx)
747     {
748        // First of all, find out which domain and axis associated with this field
749        enabledFields[idx]->solveGridReference();
750
751        // Read attributes of domain and axis from this file
752        this->data_in->readFieldAttributesMetaData(enabledFields[idx]);
753
754        // Now complete domain and axis associated with this field
755        enabledFields[idx]->solveGenerateGrid();
756
757        // Read necessary value from file
758        #pragma omp critical (_func)
759        this->data_in->readFieldAttributesValues(enabledFields[idx]);
760
761        // Fill attributes for base reference
762        enabledFields[idx]->solveGridDomainAxisBaseRef();
763     }
764
765     // Now everything is ok, close it
766     close();
767   }
768   CATCH_DUMP_ATTR
769
770   /*!
771   \brief Parse xml file and write information into file object
772   \param [in] node xmld node corresponding in xml file
773   */
774   void CFile::parse(xml::CXMLNode & node)
775   TRY
776   {
777      SuperClass::parse(node);
778
779      if (node.goToChildElement())
780      {
781        do
782        {
783           if (node.getElementName()=="field" || node.getElementName()=="field_group") this->getVirtualFieldGroup()->parseChild(node);
784           else if (node.getElementName()=="variable" || node.getElementName()=="variable_group") this->getVirtualVariableGroup()->parseChild(node);
785        } while (node.goToNextElement());
786        node.goToParentElement();
787      }
788   }
789   CATCH_DUMP_ATTR
790
791   //----------------------------------------------------------------
792
793   /*!
794   \brief Represent a file in form of string with all its info
795   \return String
796   */
797   StdString CFile::toString(void) const
798   TRY
799   {
800      StdOStringStream oss;
801
802      oss << "<" << CFile::GetName() << " ";
803      if (this->hasId())
804         oss << " id=\"" << this->getId() << "\" ";
805      oss << SuperClassAttribute::toString() << ">" << std::endl;
806      if (this->getVirtualFieldGroup() != NULL)
807         oss << *this->getVirtualFieldGroup() << std::endl;
808      oss << "</" << CFile::GetName() << " >";
809      return (oss.str());
810   }
811   CATCH
812
813   //----------------------------------------------------------------
814
815   /*!
816   \brief Find all inheritace among objects in a file.
817   \param [in] apply (true) write attributes of parent into ones of child if they are empty
818                     (false) write attributes of parent into a new container of child
819   \param [in] parent
820   */
821   void CFile::solveDescInheritance(bool apply, const CAttributeMap * const parent)
822   TRY
823   {
824      SuperClassAttribute::setAttributes(parent,apply);
825      this->getVirtualFieldGroup()->solveDescInheritance(apply, NULL);
826      this->getVirtualVariableGroup()->solveDescInheritance(apply, NULL);
827   }
828   CATCH_DUMP_ATTR
829
830   //----------------------------------------------------------------
831
832   /*!
833   \brief Resolve all reference of active fields.
834      In order to know exactly which data each active field has, a search for all its
835   reference to find its parents or/and its base reference object must be done. Moreover
836   during this search, there are some information that can only be sent to server AFTER
837   all information of active fields are created on server side, e.g: checking mask or index
838   \param [in] sendToServer: Send all info to server (true) or only a part of it (false)
839   */
840   void CFile::solveOnlyRefOfEnabledFields(bool sendToServer)
841   TRY
842   {
843     int size = this->enabledFields.size();
844     for (int i = 0; i < size; ++i)
845     {
846       this->enabledFields[i]->solveOnlyReferenceEnabledField(sendToServer);
847     }
848   }
849   CATCH_DUMP_ATTR
850
851   void CFile::checkGridOfEnabledFields()
852   TRY
853   { 
854     int size = this->enabledFields.size();
855     for (int i = 0; i < size; ++i)
856     {
857       this->enabledFields[i]->checkGridOfEnabledFields();
858     }
859   }
860   CATCH_DUMP_ATTR
861
862   void CFile::sendGridComponentOfEnabledFields()
863   TRY
864   { 
865     int size = this->enabledFields.size();
866     for (int i = 0; i < size; ++i)
867     {
868       this->enabledFields[i]->sendGridComponentOfEnabledFields();
869     }
870   }
871   CATCH_DUMP_ATTR
872
873   /*!
874   \brief Sorting domains with the same name (= describing the same mesh) in the decreasing order of nvertex for UGRID files.
875   This insures that the domain with the highest nvertex is written first and thus all known mesh connectivity is generated at once by this domain.
876   */
877   void CFile::sortEnabledFieldsForUgrid()
878   TRY
879   {
880     int size = this->enabledFields.size();
881     std::vector<int> domainNvertices;
882     std::vector<StdString> domainNames;
883
884     for (int i = 0; i < size; ++i)
885     {
886       std::vector<CDomain*> domain = this->enabledFields[i]->getRelGrid()->getDomains();
887       if (domain.size() != 1)
888       {
889         ERROR("void CFile::sortEnabledFieldsForUgrid()",
890               "A domain, and only one, should be defined for grid "<< this->enabledFields[i]->getRelGrid()->getId() << ".");
891       }
892       StdString domainName = domain[0]->getDomainOutputName();
893       int nvertex;
894       if (domain[0]->nvertex.isEmpty())
895       {
896         ERROR("void CFile::sortEnabledFieldsForUgrid()",
897               "Attributes nvertex must be defined for domain "<< domain[0]->getDomainOutputName() << ".");
898       }
899       else
900         nvertex = domain[0]->nvertex;
901
902       for (int j = 0; j < i; ++j)
903       {
904         if (domainName == domainNames[j] && nvertex > domainNvertices[j])
905         {
906           CField* tmpSwap = this->enabledFields[j];
907           this->enabledFields[j] = this->enabledFields[i];
908           this->enabledFields[i] = tmpSwap;
909           domainNames.push_back(domainNames[j]);
910           domainNames[j] = domainName;
911           domainNvertices.push_back(domainNvertices[j]);
912           domainNvertices[j] = nvertex;
913         }
914         else
915         {
916           domainNames.push_back(domainName);
917           domainNvertices.push_back(nvertex);
918         }
919       }
920       if (i==0)
921       {
922         domainNames.push_back(domainName);
923         domainNvertices.push_back(nvertex);
924       }
925     }
926   }
927   CATCH_DUMP_ATTR
928
929   void CFile::sendGridOfEnabledFields()
930   TRY
931   { 
932     int size = this->enabledFields.size();
933     for (int i = 0; i < size; ++i)
934     {
935       this->enabledFields[i]->sendGridOfEnabledFields();
936     }
937   }
938   CATCH_DUMP_ATTR
939
940   void CFile::generateNewTransformationGridDest()
941   TRY
942   {
943     int size = this->enabledFields.size();
944     for (int i = 0; i < size; ++i)
945     {
946       this->enabledFields[i]->generateNewTransformationGridDest();
947     }
948   }
949   CATCH_DUMP_ATTR
950
951   /*!
952   \brief Resolve all reference of active fields.
953      In order to know exactly which data each active field has, a search for all its
954   reference to find its parents or/and its base reference object must be done. Moreover
955   during this search, there are some information that can only be sent to server AFTER
956   all information of active fields are created on server side, e.g: checking mask or index
957   \param [in] sendToServer: Send all info to server (true) or only a part of it (false)
958   */
959   void CFile::solveAllRefOfEnabledFieldsAndTransform(bool sendToServer)
960   TRY
961   {
962     int size = this->enabledFields.size();
963     for (int i = 0; i < size; ++i)
964     {       
965      this->enabledFields[i]->solveAllEnabledFieldsAndTransform();
966     }
967   }
968   CATCH_DUMP_ATTR
969
970   /*!
971    * Constructs the filter graph for each active field.
972    *
973    * \param gc the garbage collector to use when building the filter graph
974    */
975   void CFile::buildFilterGraphOfEnabledFields(CGarbageCollector& gc)
976   TRY
977   {
978     int size = this->enabledFields.size();
979     for (int i = 0; i < size; ++i)
980     {
981       this->enabledFields[i]->buildFilterGraph(gc, true);
982     }
983   }
984   CATCH_DUMP_ATTR
985
986   /*!
987    * Post-process the filter graph for each active field.
988    */
989   void CFile::postProcessFilterGraph()
990   TRY
991   {
992     int size = this->enabledFields.size();
993     for (int i = 0; i < size; ++i)
994     {
995       this->enabledFields[i]->checkIfMustAutoTrigger();
996     }
997   }
998   CATCH_DUMP_ATTR
999
1000   /*!
1001     Prefetching the data for enabled fields read from file.
1002   */
1003   void CFile::prefetchEnabledReadModeFields(void)
1004   TRY
1005   {
1006     if (mode.isEmpty() || mode.getValue() != mode_attr::read)
1007       return;
1008
1009     int size = this->enabledFields.size();
1010     for (int i = 0; i < size; ++i)
1011       this->enabledFields[i]->sendReadDataRequest(CContext::getCurrent()->getCalendar()->getCurrentDate());
1012   }
1013   CATCH_DUMP_ATTR
1014
1015   /*!
1016     Do all pre timestep operations for enabled fields in read mode:
1017      - Check that the data excepted from server has been received
1018      - Check if some filters must auto-trigger
1019   */
1020   void CFile::doPreTimestepOperationsForEnabledReadModeFields(void)
1021   TRY
1022   {
1023     if (mode.isEmpty() || mode.getValue() != mode_attr::read)
1024       return;
1025
1026     int size = this->enabledFields.size();
1027     for (int i = 0; i < size; ++i)
1028     {
1029       this->enabledFields[i]->checkForLateDataFromServer();
1030       this->enabledFields[i]->autoTriggerIfNeeded();
1031     }
1032   }
1033   CATCH_DUMP_ATTR
1034
1035   /*!
1036     Do all post timestep operations for enabled fields in read mode:
1037      - Prefetch the data read from file when needed
1038   */
1039   void CFile::doPostTimestepOperationsForEnabledReadModeFields(void)
1040   TRY
1041   {
1042     if (mode.isEmpty() || mode.getValue() != mode_attr::read)
1043       return;
1044
1045     int size = this->enabledFields.size();
1046     for (int i = 0; i < size; ++i)
1047     {
1048       this->enabledFields[i]->sendReadDataRequestIfNeeded();
1049     }
1050   }
1051   CATCH_DUMP_ATTR
1052
1053   void CFile::solveFieldRefInheritance(bool apply)
1054   TRY
1055   {
1056      // Rsolution des hritages par rfrence de chacun des champs contenus dans le fichier.
1057      std::vector<CField*> allF = this->getAllFields();
1058      for (unsigned int i = 0; i < allF.size(); i++)
1059         allF[i]->solveRefInheritance(apply);
1060   }
1061   CATCH_DUMP_ATTR
1062
1063   //----------------------------------------------------------------
1064
1065   /*!
1066   \brief Add a field into file.
1067      A field is added into file and it will be written out if the file is enabled and
1068   level of this field is smaller than level_output. A new field won't be created if one
1069   with id has already existed
1070   \param [in] id String identity of new field
1071   \return Pointer to added (or already existed) field
1072   */
1073   CField* CFile::addField(const string& id)
1074   TRY
1075   {
1076     return vFieldGroup->createChild(id);
1077   }
1078   CATCH_DUMP_ATTR
1079
1080   /*!
1081   \brief Add a field group into file.
1082      A field group is added into file and it will play a role as parents for fields.
1083   A new field group won't be created if one with id has already existed
1084   \param [in] id String identity of new field group
1085   \return Pointer to added (or already existed) field group
1086   */
1087   CFieldGroup* CFile::addFieldGroup(const string& id)
1088   TRY
1089   {
1090     return vFieldGroup->createChildGroup(id);
1091   }
1092   CATCH_DUMP_ATTR
1093
1094   /*!
1095   \brief Add a variable into file.
1096      A variable is added into file and if one with id has already existed, pointer to
1097   it will be returned.
1098      Variable as long as attributes are information container of file.
1099   However, whereas attributes are "fixed" information, variables provides a more flexible way to user
1100   to fill in (extra) information for a file.
1101   \param [in] id String identity of new variable
1102   \return Pointer to added (or already existed) variable
1103   */
1104   CVariable* CFile::addVariable(const string& id)
1105   TRY
1106   {
1107     return vVariableGroup->createChild(id);
1108   }
1109   CATCH_DUMP_ATTR
1110
1111   /*!
1112   \brief Add a variable group into file.
1113      A variable group is added into file and it will play a role as parents for variables.
1114   A new variable group won't be created if one with id has already existed
1115   \param [in] id String identity of new variable group
1116   \return Pointer to added (or already existed) variable group
1117   */
1118   CVariableGroup* CFile::addVariableGroup(const string& id)
1119   TRY
1120   {
1121     return vVariableGroup->createChildGroup(id);
1122   }
1123   CATCH_DUMP_ATTR
1124
1125   void CFile::setContextClient(CContextClient* newContextClient)
1126   TRY
1127   {
1128     client = newContextClient;
1129     size_t size = this->enabledFields.size();
1130     for (size_t i = 0; i < size; ++i)
1131     {
1132       this->enabledFields[i]->setContextClient(newContextClient);
1133     }
1134   }
1135   CATCH_DUMP_ATTR
1136
1137   CContextClient* CFile::getContextClient()
1138   TRY
1139   {
1140     return client;
1141   }
1142   CATCH_DUMP_ATTR
1143
1144   void CFile::setReadContextClient(CContextClient* readContextclient)
1145   TRY
1146   {
1147     read_client = readContextclient;
1148   }
1149   CATCH_DUMP_ATTR
1150
1151   CContextClient* CFile::getReadContextClient()
1152   TRY
1153   {
1154     return read_client;
1155   }
1156   CATCH_DUMP_ATTR
1157
1158   /*!
1159   \brief Send a message to create a field on server side
1160   \param[in] id String identity of field that will be created on server
1161   */
1162   void CFile::sendAddField(const string& id, CContextClient* client)
1163   TRY
1164   {
1165      sendAddItem(id, EVENT_ID_ADD_FIELD, client);
1166   }
1167   CATCH_DUMP_ATTR
1168
1169   /*!
1170   \brief Send a message to create a field group on server side
1171   \param[in] id String identity of field group that will be created on server
1172   */
1173   void CFile::sendAddFieldGroup(const string& id, CContextClient* client)
1174   TRY
1175   {
1176      sendAddItem(id, (int)EVENT_ID_ADD_FIELD_GROUP, client);
1177   }
1178   CATCH_DUMP_ATTR
1179
1180   /*!
1181   \brief Receive a message annoucing the creation of a field on server side
1182   \param[in] event Received event
1183   */
1184   void CFile::recvAddField(CEventServer& event)
1185   TRY
1186   {
1187
1188      CBufferIn* buffer = event.subEvents.begin()->buffer;
1189      string id;
1190      *buffer>>id;
1191      get(id)->recvAddField(*buffer);
1192   }
1193   CATCH
1194
1195   /*!
1196   \brief Receive a message annoucing the creation of a field on server side
1197   \param[in] buffer Buffer containing message
1198   */
1199   void CFile::recvAddField(CBufferIn& buffer)
1200   TRY
1201   {
1202      string id;
1203      buffer>>id;
1204      addField(id);
1205   }
1206   CATCH_DUMP_ATTR
1207
1208   /*!
1209   \brief Receive a message annoucing the creation of a field group on server side
1210   \param[in] event Received event
1211   */
1212   void CFile::recvAddFieldGroup(CEventServer& event)
1213   TRY
1214   {
1215
1216      CBufferIn* buffer = event.subEvents.begin()->buffer;
1217      string id;
1218      *buffer>>id;
1219      get(id)->recvAddFieldGroup(*buffer);
1220   }
1221   CATCH
1222
1223   /*!
1224   \brief Receive a message annoucing the creation of a field group on server side
1225   \param[in] buffer Buffer containing message
1226   */
1227   void CFile::recvAddFieldGroup(CBufferIn& buffer)
1228   TRY
1229   {
1230      string id;
1231      buffer>>id;
1232      addFieldGroup(id);
1233   }
1234   CATCH_DUMP_ATTR
1235
1236   /*!
1237   \brief Send messages to duplicate all variables on server side
1238      Because each variable has also its attributes. So first thing to do is replicate
1239   all these attributes on server side. Because variable can have a value, the second thing
1240   is to duplicate this value on server, too.
1241   */
1242   void CFile::sendAddAllVariables(CContextClient* client)
1243   TRY
1244   {
1245     std::vector<CVariable*> allVar = getAllVariables();
1246     std::vector<CVariable*>::const_iterator it = allVar.begin();
1247     std::vector<CVariable*>::const_iterator itE = allVar.end();
1248
1249     for (; it != itE; ++it)
1250     {
1251       this->sendAddVariable((*it)->getId(), client);
1252       (*it)->sendAllAttributesToServer(client);
1253       (*it)->sendValue(client);
1254     }
1255   }
1256   CATCH_DUMP_ATTR
1257
1258   /*!
1259   \brief Send a message to create a variable group on server side
1260   \param[in] id String identity of variable group that will be created on server
1261   \param [in] client client to which we will send this adding action
1262   */
1263   void CFile::sendAddVariableGroup(const string& id, CContextClient* client)
1264   TRY
1265   {
1266      sendAddItem(id, (int)EVENT_ID_ADD_VARIABLE_GROUP, client);
1267   }
1268   CATCH_DUMP_ATTR
1269
1270   /*
1271     Send message to add a variable into a file within a certain client
1272     \param [in] id String identity of a variable
1273     \param [in] client client to which we will send this adding action
1274   */
1275   void CFile::sendAddVariable(const string& id, CContextClient* client)
1276   TRY
1277   {
1278      sendAddItem(id, (int)EVENT_ID_ADD_VARIABLE, client);
1279   }
1280   CATCH_DUMP_ATTR
1281
1282   /*!
1283   \brief Receive a message annoucing the creation of a variable on server side
1284   \param[in] event Received event
1285   */
1286   void CFile::recvAddVariable(CEventServer& event)
1287   TRY
1288   {
1289      CBufferIn* buffer = event.subEvents.begin()->buffer;
1290      string id;
1291      *buffer>>id;
1292      get(id)->recvAddVariable(*buffer);
1293   }
1294   CATCH
1295
1296   /*!
1297   \brief Receive a message annoucing the creation of a variable on server side
1298   \param[in] buffer Buffer containing message
1299   */
1300   void CFile::recvAddVariable(CBufferIn& buffer)
1301   TRY
1302   {
1303      string id;
1304      buffer>>id;
1305      addVariable(id);
1306   }
1307   CATCH_DUMP_ATTR
1308
1309   /*!
1310   \brief Receive a message annoucing the creation of a variable group on server side
1311   \param[in] event Received event
1312   */
1313   void CFile::recvAddVariableGroup(CEventServer& event)
1314   TRY
1315   {
1316
1317      CBufferIn* buffer = event.subEvents.begin()->buffer;
1318      string id;
1319      *buffer>>id;
1320      get(id)->recvAddVariableGroup(*buffer);
1321   }
1322   CATCH
1323
1324   /*!
1325   \brief Receive a message annoucing the creation of a variable group on server side
1326   \param[in] buffer Buffer containing message
1327   */
1328   void CFile::recvAddVariableGroup(CBufferIn& buffer)
1329   TRY
1330   {
1331      string id;
1332      buffer>>id;
1333      addVariableGroup(id);
1334   }
1335   CATCH_DUMP_ATTR
1336
1337   /*!
1338     \brief Sending all active (enabled) fields from client to server.
1339   Each field is identified uniquely by its string identity. Not only should we
1340   send the id to server but also we need to send ids of reference domain and reference axis.
1341   With these two id, it's easier to make reference to grid where all data should be written.
1342   Remark: This function must be called AFTER all active (enabled) files have been created on the server side
1343   */
1344   void CFile::sendEnabledFields(CContextClient* client)
1345   TRY
1346   {
1347     size_t size = this->enabledFields.size();
1348     for (size_t i = 0; i < size; ++i)
1349     {
1350       CField* field = this->enabledFields[i];
1351       this->sendAddField(field->getId(), client);
1352       field->checkTimeAttributes();
1353       field->sendAllAttributesToServer(client);
1354       field->sendAddAllVariables(client);
1355     }
1356   }
1357   CATCH_DUMP_ATTR
1358
1359   /*!
1360   \brief Dispatch event received from client
1361      Whenever a message is received in buffer of server, it will be processed depending on
1362   its event type. A new event type should be added in the switch list to make sure
1363   it processed on server side.
1364   \param [in] event: Received message
1365   */
1366   bool CFile::dispatchEvent(CEventServer& event)
1367   TRY
1368   {
1369      if (SuperClass::dispatchEvent(event)) return true;
1370      else
1371      {
1372        switch(event.type)
1373        {
1374           case EVENT_ID_ADD_FIELD :
1375             recvAddField(event);
1376             return true;
1377             break;
1378
1379           case EVENT_ID_ADD_FIELD_GROUP :
1380             recvAddFieldGroup(event);
1381             return true;
1382             break;
1383
1384            case EVENT_ID_ADD_VARIABLE :
1385             recvAddVariable(event);
1386             return true;
1387             break;
1388
1389           case EVENT_ID_ADD_VARIABLE_GROUP :
1390             recvAddVariableGroup(event);
1391             return true;
1392             break;
1393           default :
1394              ERROR("bool CFile::dispatchEvent(CEventServer& event)", << "Unknown Event");
1395           return false;
1396        }
1397      }
1398   }
1399   CATCH
1400
1401   ///--------------------------------------------------------------
1402   /*!
1403   */
1404   StdString CFile::dumpClassAttributes(void)
1405   {
1406     StdString str;
1407     CContext* context = CContext::getCurrent();
1408     str.append("context=\"");
1409     str.append(context->getId());
1410     str.append("\"");
1411     str.append(" enabled fields=\"");
1412     int size = this->enabledFields.size();
1413     for (int i = 0; i < size; ++i)
1414     {
1415       str.append(this->enabledFields[i]->getId());
1416       str.append(" ");
1417     }
1418     str.append("\"");
1419     return str;
1420   }
1421
1422   ///---------------------------------------------------------------
1423
1424} // namespace xios
Note: See TracBrowser for help on using the repository browser.