source: XIOS/dev/branch_openmp/src/node/field.hpp @ 1460

Last change on this file since 1460 was 1460, checked in by yushan, 6 years ago

branch_openmp merged with XIOS_DEV_CMIP6@1459

  • 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
  • Property svn:executable set to *
File size: 10.3 KB
RevLine 
[591]1#ifndef __XIOS_CField__
2#define __XIOS_CField__
[219]3
[591]4/// XIOS headers ///
5#include "xios_spl.hpp"
[219]6#include "group_factory.hpp"
7#include "functor.hpp"
8#include "functor_type.hpp"
9#include "duration.hpp"
10#include "date.hpp"
11#include "declare_group.hpp"
[231]12#include "calendar_util.hpp"
[369]13#include "array_new.hpp"
14#include "attribute_array.hpp"
[540]15#include "declare_ref_func.hpp"
[619]16#include "transformation_enum.hpp"
[646]17#include "variable.hpp"
[1460]18#include "context_client.hpp"
[219]19
[300]20
[335]21namespace xios {
[509]22
[219]23   /// ////////////////////// Déclarations ////////////////////// ///
24
25   class CFieldGroup;
26   class CFieldAttributes;
27   class CField;
28
29   class CFile;
30   class CGrid;
[640]31   class CContext;
[619]32   class CGenericFilter;
33
[640]34   class CGarbageCollector;
35   class COutputPin;
36   class CSourceFilter;
37   class CStoreFilter;
38   class CFileWriterFilter;
[1460]39   class CFileServerWriterFilter;
[640]40
[219]41   ///--------------------------------------------------------------
42
43   // Declare/Define CFieldAttribute
44   BEGIN_DECLARE_ATTRIBUTE_MAP(CField)
45#  include "field_attribute.conf"
46   END_DECLARE_ATTRIBUTE_MAP(CField)
47
48   ///--------------------------------------------------------------
49   class CField
50      : public CObjectTemplate<CField>
51      , public CFieldAttributes
52   {
53         /// friend ///
54         friend class CFile;
55
56         /// typedef ///
57         typedef CObjectTemplate<CField>   SuperClass;
58         typedef CFieldAttributes SuperClassAttribute;
59
[1460]60         enum EReadField
61         {
62           RF_NODATA, RF_EOF, RF_DATA
63         };
64         
[707]65      public:
[219]66
67         typedef CFieldAttributes RelAttributes;
68         typedef CFieldGroup      RelGroup;
69
[300]70         enum EEventId
71         {
[598]72           EVENT_ID_UPDATE_DATA, EVENT_ID_READ_DATA, EVENT_ID_READ_DATA_READY,
73           EVENT_ID_ADD_VARIABLE, EVENT_ID_ADD_VARIABLE_GROUP
[651]74         };
[509]75
[219]76         /// Constructeurs ///
77         CField(void);
[651]78         explicit CField(const StdString& id);
79         CField(const CField& field);       // Not implemented yet.
80         CField(const CField* const field); // Not implemented yet.
[219]81
82         /// Accesseurs ///
83
[651]84         CGrid* getRelGrid(void) const;
85         CFile* getRelFile(void) const;
[219]86
[645]87         func::CFunctor::ETimeType getOperationTimeType() const;
88
[707]89      public:
[952]90         int getNStep(void) const;
[266]91
[593]92         template <int N> void getData(CArray<double, N>& _data) const;
[219]93
[641]94         boost::shared_ptr<COutputPin> getInstantDataFilter();
[219]95
96         /// Mutateur ///
[347]97         void setRelFile(CFile* _file);
[266]98         void incrementNStep(void);
[952]99         void resetNStep(int nstep = 0);
[599]100         void resetNStepMax();
[219]101
[1460]102         std::map<int, StdSize> getGridAttributesBufferSize(CContextClient* client, bool bufferForWriting = false);
103         // Grid data buffer size for each connection of contextclient
104         std::map<int, StdSize> getGridDataBufferSize(CContextClient* client, bool bufferForWriting = false);
[509]105
[1460]106         void setContextClient(CContextClient* newContextClient);
107         CContextClient* getContextClient();
108
[707]109       public:
[1119]110         bool isActive(bool atCurrentTimestep = false) const;
[651]111         bool hasOutputFile;
[219]112
[707]113         bool wasWritten() const;
114         void setWritten();
115
[676]116         bool getUseCompressedOutput() const;
117         void setUseCompressedOutput();
118
[219]119         /// Traitements ///
120         void solveGridReference(void);
[645]121         void solveServerOperation(void);
[509]122         void solveCheckMaskIndex(bool doSendingIndex);
[823]123         void solveAllReferenceEnabledField(bool doSending2Server);
124         void solveOnlyReferenceEnabledField(bool doSending2Server);
125         void generateNewTransformationGridDest();
126         void updateRef(CGrid* grid);
127         void buildGridTransformationGraph();
[509]128         void solveGridDomainAxisRef(bool checkAtt);
[619]129         void solveTransformedGrid();
[687]130         void solveGenerateGrid();
[775]131         void solveGridDomainAxisBaseRef();
[219]132
[1460]133         void solveAllEnabledFieldsAndTransform();
134         void checkGridOfEnabledFields();
135         void sendGridOfEnabledFields();
136         void sendGridComponentOfEnabledFields();
137
138         /// Vérifications ///
139         void checkTimeAttributes(CDuration* freqOp=NULL);
140
[640]141         void buildFilterGraph(CGarbageCollector& gc, bool enableOutput);
[1460]142         size_t getGlobalWrittenSize(void) ;
143         
144         
[1000]145         boost::shared_ptr<COutputPin> getFieldReference(CGarbageCollector& gc);
[642]146         boost::shared_ptr<COutputPin> getSelfReference(CGarbageCollector& gc);
[643]147         boost::shared_ptr<COutputPin> getTemporalDataFilter(CGarbageCollector& gc, CDuration outFreq);
[998]148         boost::shared_ptr<COutputPin> getSelfTemporalDataFilter(CGarbageCollector& gc, CDuration outFreq);
[640]149
[651]150//         virtual void fromBinary(StdIStream& is);
[219]151
152         /// Destructeur ///
153         virtual ~CField(void);
154
155         /// Accesseurs statiques ///
156         static StdString GetName(void);
157         static StdString GetDefName(void);
[509]158
[219]159         static ENodeType GetType(void);
[509]160
[651]161        template <int N> void setData(const CArray<double, N>& _data);
162        static bool dispatchEvent(CEventServer& event);
[638]163        void sendUpdateData(const CArray<double,1>& data);
[1460]164        void sendUpdateData(const CArray<double,1>& data, CContextClient* client);
[651]165        static void recvUpdateData(CEventServer& event);
[1460]166        void recvUpdateData(std::map<int,CBufferIn*>& rankBuffers);
[651]167        void writeField(void);
[1017]168        bool sendReadDataRequest(const CDate& tsDataRequested);
[598]169        bool sendReadDataRequestIfNeeded(void);
170        static void recvReadDataRequest(CEventServer& event);
171        void recvReadDataRequest(void);
[1460]172        EReadField readField(void);
[598]173        static void recvReadDataReady(CEventServer& event);
174        void recvReadDataReady(vector<int> ranks, vector<CBufferIn*> buffers);
[1328]175        void checkForLateDataFromServer(void);
[1460]176        void checkIfMustAutoTrigger(void);
177        void autoTriggerIfNeeded(void);
[651]178        void outputField(CArray<double,3>& fieldOut);
179        void outputField(CArray<double,2>& fieldOut);
180        void outputField(CArray<double,1>& fieldOut);
[599]181        void inputField(CArray<double,3>& fieldOut);
182        void inputField(CArray<double,2>& fieldOut);
183        void inputField(CArray<double,1>& fieldOut);
[676]184        void outputCompressedField(CArray<double, 1>& fieldOut);
[651]185        void scaleFactorAddOffset(double scaleFactor, double addOffset);
[599]186        void invertScaleFactorAddOffset(double scaleFactor, double addOffset);
[651]187        void parse(xml::CXMLNode& node);
[509]188
[472]189        void setVirtualVariableGroup(CVariableGroup* newVVariableGroup);
190        CVariableGroup* getVirtualVariableGroup(void) const;
191        vector<CVariable*> getAllVariables(void) const;
[651]192        virtual void solveDescInheritance(bool apply, const CAttributeMap* const parent = 0);
[509]193
[651]194        CVariable* addVariable(const string& id = "");
[1460]195        CVariableGroup* addVariableGroup(const string& id = "");       
196        void sendAddVariable(const string& id, CContextClient* client);
197        void sendAddVariableGroup(const string& id, CContextClient* client);
[651]198        static void recvAddVariable(CEventServer& event);
199        void recvAddVariable(CBufferIn& buffer);
200        static void recvAddVariableGroup(CEventServer& event);
[1460]201        void recvAddVariableGroup(CBufferIn& buffer);       
202        void sendAddAllVariables(CContextClient* client);
203        void writeUpdateData(const CArray<double,1>& data);
[509]204
[887]205        const std::vector<StdString>& getRefDomainAxisIds();
[619]206
[1000]207        const string& getExpression(void);
208        bool hasExpression(void) const;
209
[707]210      public:
[219]211         /// Propriétés privées ///
[651]212         CVariableGroup* vVariableGroup;
[509]213
[651]214         CGrid*  grid;
[347]215         CFile*  file;
[219]216
[343]217         CDuration freq_operation_srv, freq_write_srv;
[219]218
[707]219         bool written; //<! Was the field written at least once
[952]220         int nstep, nstepMax;
[599]221         bool isEOF;
[651]222         CDate lastlast_Write_srv, last_Write_srv, last_operation_srv;
[1328]223         CDate lastDataRequestedFromServer, lastDataReceivedFromServer, dateEOF;
224         bool wasDataRequestedFromServer, wasDataAlreadyReceivedFromServer;
[1460]225         bool mustAutoTrigger;
[509]226
[300]227         map<int,boost::shared_ptr<func::CFunctor> > foperation_srv;
[509]228
[1460]229         // map<int, CArray<double,1> > data_srv;
230         CArray<double,1> recvDataSrv;
231         
232         boost::shared_ptr<func::CFunctor> recvFoperationSrv;
[651]233         string content;
[509]234
[887]235         std::vector<StdString> domAxisScalarIds_;
[676]236         bool useCompressedOutput;
[645]237
[1460]238         // Two variables to identify the time_counter meta data written in file, which has no time_counter
[989]239         bool hasTimeInstant;
240         bool hasTimeCentered;
241
[1460]242
[540]243         DECLARE_REF_FUNC(Field,field)
[219]244
[640]245      private:
[1460]246         CContextClient* client;
247
248         bool areAllReferenceSolved;
249         bool isReferenceSolved;
250         bool isReferenceSolvedAndTransformed;
251         bool isGridChecked;
252         bool nstepMaxRead;
253
254      private:
[645]255         //! The type of operation attached to the field
256         func::CFunctor::ETimeType operationTimeType;
257
[640]258         //! The output pin of the filter providing the instant data for the field
259         boost::shared_ptr<COutputPin> instantDataFilter;
[643]260         //! The output pin of the filters providing the result of the field's temporal operation
261         std::map<CDuration, boost::shared_ptr<COutputPin>, DurationFakeLessComparator> temporalDataFilters;
[737]262         //! The output pin of the filter providing the instant data for self references
263         boost::shared_ptr<COutputPin> selfReferenceFilter;
[640]264         //! The source filter for data provided by the client
265         boost::shared_ptr<CSourceFilter> clientSourceFilter;
266         //! The source filter for data provided by the server
267         boost::shared_ptr<CSourceFilter> serverSourceFilter;
268         //! The terminal filter which stores the instant data
269         boost::shared_ptr<CStoreFilter> storeFilter;
270         //! The terminal filter which writes the data to file
271         boost::shared_ptr<CFileWriterFilter> fileWriterFilter;
[1460]272         //! The terminal filter which writes data to file
273         boost::shared_ptr<CFileServerWriterFilter> fileServerWriterFilter;
[219]274   }; // class CField
275
276   ///--------------------------------------------------------------
277
278   // Declare/Define CFieldGroup and CFieldDefinition
279   DECLARE_GROUP(CField);
280
281   ///-----------------------------------------------------------------
282
283   template <>
284      void CGroupTemplate<CField, CFieldGroup, CFieldAttributes>::solveRefInheritance(void);
285
286   ///-----------------------------------------------------------------
[335]287} // namespace xios
[219]288
289
[591]290#endif // __XIOS_CField__
Note: See TracBrowser for help on using the repository browser.