source: XIOS/trunk/src/node/axis.hpp @ 1050

Last change on this file since 1050 was 1050, checked in by ymipsl, 7 years ago
  • Add label attribute for axis
  • if label attribute is present, then only only string label for each level will be output in netcdf file, ie value and bounds will not be output.

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: 6.7 KB
RevLine 
[591]1#ifndef __XIOS_CAxis__
2#define __XIOS_CAxis__
[219]3
[591]4/// XIOS headers ///
5#include "xios_spl.hpp"
[219]6#include "group_factory.hpp"
[619]7#include "virtual_node.hpp"
[219]8
9#include "declare_group.hpp"
[540]10#include "declare_ref_func.hpp"
[619]11#include "declare_virtual_node.hpp"
[369]12#include "attribute_array.hpp"
[399]13#include "attribute_enum.hpp"
14#include "attribute_enum_impl.hpp"
[567]15#include "server_distribution_description.hpp"
[619]16#include "transformation.hpp"
17#include "transformation_enum.hpp"
[219]18
[335]19namespace xios {
[219]20   /// ////////////////////// Déclarations ////////////////////// ///
21
22   class CAxisGroup;
23   class CAxisAttributes;
24   class CAxis;
25
26   ///--------------------------------------------------------------
27
28   // Declare/Define CAxisAttribute
29   BEGIN_DECLARE_ATTRIBUTE_MAP(CAxis)
[231]30#  include "axis_attribute.conf"
[821]31#  include "axis_attribute_private.conf"
[219]32   END_DECLARE_ATTRIBUTE_MAP(CAxis)
33
34   ///--------------------------------------------------------------
35
36   class CAxis
37      : public CObjectTemplate<CAxis>
38      , public CAxisAttributes
39   {
[567]40         enum EEventId
41         {
[633]42           EVENT_ID_SERVER_ATTRIBUT,
43           EVENT_ID_INDEX,
44           EVENT_ID_DISTRIBUTED_VALUE,
45           EVENT_ID_NON_DISTRIBUTED_VALUE
[567]46         } ;
47
[219]48         /// typedef ///
49         typedef CObjectTemplate<CAxis>   SuperClass;
50         typedef CAxisAttributes SuperClassAttribute;
51
52      public :
53
54         typedef CAxisAttributes RelAttributes;
55         typedef CAxisGroup      RelGroup;
[621]56         typedef CTransformation<CAxis>::TransformationMapTypes TransMapTypes;
[219]57
[621]58      public:
[219]59         /// Constructeurs ///
60         CAxis(void);
61         explicit CAxis(const StdString & id);
62         CAxis(const CAxis & axis);       // Not implemented yet.
63         CAxis(const CAxis * const axis); // Not implemented yet.
64
[622]65         static CAxis* createAxis();
66
[219]67         /// Accesseurs ///
68         const std::set<StdString> & getRelFiles(void) const;
69
[676]70         const std::vector<int>& getIndexesToWrite(void) const;
71         int getNumberWrittenIndexes() const;
72         int getTotalNumberWrittenIndexes() const;
73         int getOffsetWrittenIndexes() const;
74
[731]75         std::map<int, StdSize> getAttributesBufferSize();
76
[219]77         /// Test ///
78         bool IsWritten(const StdString & filename) const;
[676]79         bool isWrittenCompressed(const StdString& filename) const;
[594]80         bool isDistributed(void) const;
[676]81         bool isCompressible(void) const;
[219]82
83         /// Mutateur ///
84         void addRelFile(const StdString & filename);
[676]85         void addRelFileCompressed(const StdString& filename);
[219]86
87         /// Vérifications ///
88         void checkAttributes(void);
89
90         /// Destructeur ///
91         virtual ~CAxis(void);
92
[619]93         virtual void parse(xml::CXMLNode & node);
94
[219]95         /// Accesseurs statiques ///
96         static StdString GetName(void);
97         static StdString GetDefName(void);
98         static ENodeType GetType(void);
99
[595]100         void sendServerAttribut(const std::vector<int>& globalDim, int orderPositionInGrid,
101                                 CServerDistributionDescription::ServerDistributionType distType);
[567]102         static bool dispatchEvent(CEventServer& event);
103         static void recvServerAttribut(CEventServer& event);
104         void recvServerAttribut(CBufferIn& buffer) ;
[742]105         void checkAttributesOnClient();
[927]106         void checkAttributesOnClientAfterTransformation(const std::vector<int>& globalDim, int orderPositionInGrid,
107                                                         CServerDistributionDescription::ServerDistributionType distType = CServerDistributionDescription::BAND_DISTRIBUTION);
[567]108         void sendCheckedAttributes(const std::vector<int>& globalDim, int orderPositionInGrid,
109                                    CServerDistributionDescription::ServerDistributionType disType = CServerDistributionDescription::BAND_DISTRIBUTION);
[619]110
[676]111         void checkEligibilityForCompressedOutput();
112
[619]113         bool hasTransformation();
114         void solveInheritanceTransformation();
[621]115         TransMapTypes getAllTransformations();
[775]116         void fillInValues(const CArray<double,1>& values);
[836]117         void duplicateTransformation(CAxis*);
118         CTransformation<CAxis>* addTransformation(ETranformationType transType, const StdString& id="");
[619]119
[567]120      public:
121        int zoom_begin_srv, zoom_end_srv, zoom_size_srv;
122        int ni_srv, begin_srv, end_srv;
[633]123        CArray<double,1> value_srv;
124        CArray<double,2> bound_srv;
[1050]125        CArray<StdString,1> label_srv;
[816]126        bool hasValue;
[676]127
128      private:
[551]129         void checkData();
130         void checkMask();
[631]131         void checkZoom();
[633]132         void checkBounds();
[1050]133         void checkLabel();
[621]134         void checkTransformations();
[927]135         void sendValue();
[815]136         void computeConnectedServer(const std::vector<int>& globalDim, int orderPositionInGrid,
137                                     CServerDistributionDescription::ServerDistributionType distType);
[633]138         void sendDistributedValue();
139         void sendNonDistributedValue();
[595]140
[633]141         static void recvIndex(CEventServer& event);
142         static void recvDistributedValue(CEventServer& event);
143         static void recvNonDistributedValue(CEventServer& event);
144         void recvIndex(int rank, CBufferIn& buffer);
145         void recvDistributedValue(int rank, CBufferIn& buffer);
146         void recvNonDistributedValue(int rank, CBufferIn& buffer);
[619]147
[621]148         void setTransformations(const TransMapTypes&);
[676]149
[567]150      private:
[219]151         bool isChecked;
[567]152         bool areClientAttributesChecked_;
[927]153         bool isClientAfterTransformationChecked;
[676]154         std::set<StdString> relFiles, relFilesCompressed;
[621]155         TransMapTypes transformationMap_;
[594]156         bool isDistributed_;
[676]157         //! True if and only if the data defined on the axis can be outputted in a compressed way
158         bool isCompressible_;
[633]159         std::map<int,int> nbConnectedClients_; // Mapping of number of communicating client to a server
160         std::map<int, vector<size_t> > indSrv_; // Global index of each client sent to server
[676]161         std::map<int, vector<int> > indWrittenSrv_; // Global written index of each client sent to server
162         std::vector<int> indexesToWrite;
163         int numberWrittenIndexes_, totalNumberWrittenIndexes_, offsetWrittenIndexes_;
[633]164         std::vector<int> connectedServerRank_;
165         std::map<int, CArray<int,1> > indiSrv_;
166         bool hasBounds_;
[1050]167         bool hasLabel;
[836]168
169       private:
170         static bool initializeTransformationMap(std::map<StdString, ETranformationType>& m);
171         static std::map<StdString, ETranformationType> transformationMapList_;
172         static bool dummyTransformationMapList_;
173
[540]174         DECLARE_REF_FUNC(Axis,axis)
[219]175   }; // class CAxis
176
177   ///--------------------------------------------------------------
178
179   // Declare/Define CAxisGroup and CAxisDefinition
180   DECLARE_GROUP(CAxis);
[335]181} // namespace xios
[219]182
[591]183#endif // __XIOS_CAxis__
Note: See TracBrowser for help on using the repository browser.