source: XIOS/dev/dev_ym/XIOS_COUPLING/src/node/field.hpp @ 1784

Last change on this file since 1784 was 1784, checked in by ymipsl, 4 years ago
  • Preparing coupling functionalities.
  • Make some cleaner things

YM

  • 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.4 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"
[1021]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;
[1024]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
[1232]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
[1542]94         std::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
[1330]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
[1294]106         void setContextClient(CContextClient* newContextClient);
107         CContextClient* getContextClient();
108
[707]109       public:
[1158]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);
[1784]124         void solveOnlyReferenceEnabledField(void);
[823]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
[1129]133         void solveAllEnabledFieldsAndTransform();
[1024]134         void checkGridOfEnabledFields();
135         void sendGridOfEnabledFields();
[1278]136         void sendGridComponentOfEnabledFields();
[1024]137
[1278]138         /// Vérifications ///
[1405]139         void checkTimeAttributes(CDuration* freqOp=NULL);
[1278]140
[640]141         void buildFilterGraph(CGarbageCollector& gc, bool enableOutput);
[1215]142         size_t getGlobalWrittenSize(void) ;
143         
144         
[1542]145         std::shared_ptr<COutputPin> getFieldReference(CGarbageCollector& gc);
146         std::shared_ptr<COutputPin> getSelfReference(CGarbageCollector& gc);
147         std::shared_ptr<COutputPin> getTemporalDataFilter(CGarbageCollector& gc, CDuration outFreq);
148         std::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);
[1524]163        void sendAllAttributesToServer(CContextClient* client) ; 
[638]164        void sendUpdateData(const CArray<double,1>& data);
[1099]165        void sendUpdateData(const CArray<double,1>& data, CContextClient* client);
[651]166        static void recvUpdateData(CEventServer& event);
[1024]167        void recvUpdateData(std::map<int,CBufferIn*>& rankBuffers);
[651]168        void writeField(void);
[1158]169        bool sendReadDataRequest(const CDate& tsDataRequested);
[598]170        bool sendReadDataRequestIfNeeded(void);
171        static void recvReadDataRequest(CEventServer& event);
172        void recvReadDataRequest(void);
[1232]173        EReadField readField(void);
[598]174        static void recvReadDataReady(CEventServer& event);
175        void recvReadDataReady(vector<int> ranks, vector<CBufferIn*> buffers);
[1318]176        void checkForLateDataFromServer(void);
[1358]177        void checkIfMustAutoTrigger(void);
178        void autoTriggerIfNeeded(void);
[1158]179        void outputField(CArray<double,3>& fieldOut);
180        void outputField(CArray<double,2>& fieldOut);
[651]181        void outputField(CArray<double,1>& fieldOut);
[1158]182        void inputField(CArray<double,3>& fieldOut);
183        void inputField(CArray<double,2>& fieldOut);
[599]184        void inputField(CArray<double,1>& fieldOut);
[676]185        void outputCompressedField(CArray<double, 1>& fieldOut);
[651]186        void scaleFactorAddOffset(double scaleFactor, double addOffset);
[599]187        void invertScaleFactorAddOffset(double scaleFactor, double addOffset);
[651]188        void parse(xml::CXMLNode& node);
[509]189
[472]190        void setVirtualVariableGroup(CVariableGroup* newVVariableGroup);
191        CVariableGroup* getVirtualVariableGroup(void) const;
192        vector<CVariable*> getAllVariables(void) const;
[651]193        virtual void solveDescInheritance(bool apply, const CAttributeMap* const parent = 0);
[509]194
[651]195        CVariable* addVariable(const string& id = "");
[1144]196        CVariableGroup* addVariableGroup(const string& id = "");       
[1021]197        void sendAddVariable(const string& id, CContextClient* client);
[1144]198        void sendAddVariableGroup(const string& id, CContextClient* client);
[651]199        static void recvAddVariable(CEventServer& event);
200        void recvAddVariable(CBufferIn& buffer);
201        static void recvAddVariableGroup(CEventServer& event);
[1144]202        void recvAddVariableGroup(CBufferIn& buffer);       
[1021]203        void sendAddAllVariables(CContextClient* client);
[1024]204        void writeUpdateData(const CArray<double,1>& data);
[509]205
[887]206        const std::vector<StdString>& getRefDomainAxisIds();
[619]207
[1021]208        const string& getExpression(void);
209        bool hasExpression(void) const;
210
[1637]211        bool hasGridMask(void) const;
212
[707]213      public:
[219]214         /// Propriétés privées ///
[651]215         CVariableGroup* vVariableGroup;
[509]216
[651]217         CGrid*  grid;
[347]218         CFile*  file;
[219]219
[343]220         CDuration freq_operation_srv, freq_write_srv;
[219]221
[707]222         bool written; //<! Was the field written at least once
[952]223         int nstep, nstepMax;
[599]224         bool isEOF;
[651]225         CDate lastlast_Write_srv, last_Write_srv, last_operation_srv;
[1318]226         CDate lastDataRequestedFromServer, lastDataReceivedFromServer, dateEOF;
227         bool wasDataRequestedFromServer, wasDataAlreadyReceivedFromServer;
[1358]228         bool mustAutoTrigger;
[509]229
[1542]230         map<int,std::shared_ptr<func::CFunctor> > foperation_srv;
[509]231
[1144]232         // map<int, CArray<double,1> > data_srv;
[1024]233         CArray<double,1> recvDataSrv;
234         
[1542]235         std::shared_ptr<func::CFunctor> recvFoperationSrv;
[651]236         string content;
[509]237
[887]238         std::vector<StdString> domAxisScalarIds_;
[676]239         bool useCompressedOutput;
[645]240
[1021]241         // Two variables to identify the time_counter meta data written in file, which has no time_counter
242         bool hasTimeInstant;
243         bool hasTimeCentered;
244
[1129]245
[540]246         DECLARE_REF_FUNC(Field,field)
[219]247
[640]248      private:
[1294]249         CContextClient* client;
250
[1129]251         bool areAllReferenceSolved;
252         bool isReferenceSolved;
253         bool isReferenceSolvedAndTransformed;
[1417]254         bool isGridChecked;
[1232]255         bool nstepMaxRead;
[1129]256
257      private:
[645]258         //! The type of operation attached to the field
259         func::CFunctor::ETimeType operationTimeType;
260
[640]261         //! The output pin of the filter providing the instant data for the field
[1542]262         std::shared_ptr<COutputPin> instantDataFilter;
[643]263         //! The output pin of the filters providing the result of the field's temporal operation
[1542]264         std::map<CDuration, std::shared_ptr<COutputPin>, DurationFakeLessComparator> temporalDataFilters;
[737]265         //! The output pin of the filter providing the instant data for self references
[1542]266         std::shared_ptr<COutputPin> selfReferenceFilter;
[640]267         //! The source filter for data provided by the client
[1542]268         std::shared_ptr<CSourceFilter> clientSourceFilter;
[640]269         //! The source filter for data provided by the server
[1542]270         std::shared_ptr<CSourceFilter> serverSourceFilter;
[640]271         //! The terminal filter which stores the instant data
[1542]272         std::shared_ptr<CStoreFilter> storeFilter;
[1158]273         //! The terminal filter which writes the data to file
[1542]274         std::shared_ptr<CFileWriterFilter> fileWriterFilter;
[1024]275         //! The terminal filter which writes data to file
[1542]276         std::shared_ptr<CFileServerWriterFilter> fileServerWriterFilter;
[219]277   }; // class CField
278
279   ///--------------------------------------------------------------
280
281   // Declare/Define CFieldGroup and CFieldDefinition
282   DECLARE_GROUP(CField);
283
284   ///-----------------------------------------------------------------
285
286   template <>
287      void CGroupTemplate<CField, CFieldGroup, CFieldAttributes>::solveRefInheritance(void);
288
289   ///-----------------------------------------------------------------
[335]290} // namespace xios
[219]291
292
[591]293#endif // __XIOS_CField__
Note: See TracBrowser for help on using the repository browser.