source: XIOS/trunk/src/node/domain.hpp @ 688

Last change on this file since 688 was 688, checked in by mhnguyen, 9 years ago

Integrating remap library into XIOS

+) Change name of some files of remap library to be compatible with XIOS
+) Implement function to fill in automatically boundary longitude and latitude

Test
+) On Curie
+) test_remap correct

  • 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: 7.2 KB
Line 
1#ifndef __XIOS_CDomain__
2#define __XIOS_CDomain__
3
4/// XIOS headers ///
5#include "xios_spl.hpp"
6#include "group_factory.hpp"
7
8#include "declare_group.hpp"
9#include "declare_ref_func.hpp"
10#include "event_client.hpp"
11#include "event_server.hpp"
12#include "buffer_in.hpp"
13#include "array_new.hpp"
14#include "attribute_array.hpp"
15#include "attribute_enum.hpp"
16#include "transformation.hpp"
17#include "transformation_enum.hpp"
18
19namespace xios {
20
21   /// ////////////////////// Déclarations ////////////////////// ///
22
23   class CDomainGroup;
24   class CDomainAttributes;
25   class CDomain;
26
27   ///--------------------------------------------------------------
28
29   // Declare/Define CDomainAttribute
30   BEGIN_DECLARE_ATTRIBUTE_MAP(CDomain)
31#  include "domain_attribute.conf"
32   END_DECLARE_ATTRIBUTE_MAP(CDomain)
33
34   ///--------------------------------------------------------------
35
36   class CDomain
37      : public CObjectTemplate<CDomain>
38      , public CDomainAttributes
39   {
40         enum EEventId
41         {
42           EVENT_ID_SERVER_ATTRIBUT, EVENT_ID_INDEX, EVENT_ID_LON, EVENT_ID_LAT, EVENT_ID_AREA
43         } ;
44
45         /// typedef ///
46         typedef CObjectTemplate<CDomain>   SuperClass;
47         typedef CDomainAttributes SuperClassAttribute;
48
49      public:
50
51         typedef CDomainAttributes RelAttributes;
52         typedef CDomainGroup      RelGroup;
53         typedef CTransformation<CDomain>::TransformationMapTypes TransMapTypes;
54
55         /// Constructeurs ///
56         CDomain(void);
57         explicit CDomain(const StdString & id);
58         CDomain(const CDomain & domain);       // Not implemented yet.
59         CDomain(const CDomain * const domain); // Not implemented yet.
60
61         static CDomain* createDomain();
62         void duplicateAttributes(CDomain* domain);
63
64         virtual void parse(xml::CXMLNode & node);
65
66         /// Vérifications ///
67         void checkAttributes(void);
68
69         void checkAttributesOnClient();
70         void checkAttributesOnClientAfterTransformation();
71
72         void checkEligibilityForCompressedOutput(void);
73
74         void sendCheckedAttributes();
75
76         bool hasTransformation();
77         void solveInheritanceTransformation();
78         void solveSrcInheritance();
79         CDomain* getDomainSrc();
80         TransMapTypes getAllTransformations();
81         void redistribute(int nbLocalDomain);
82
83      public:
84         const std::set<StdString> & getRelFiles(void) const;
85         bool IsWritten(const StdString & filename) const;
86         bool isWrittenCompressed(const StdString& filename) const;
87
88         const std::vector<int>& getIndexesToWrite(void) const;
89         int getNumberWrittenIndexes() const;
90         int getTotalNumberWrittenIndexes() const;
91         int getOffsetWrittenIndexes() const;
92
93         bool isEmpty(void) const;
94         bool isDistributed(void) const;
95         bool isCompressible(void) const;
96
97         int global_zoom_ibegin, global_zoom_ni;
98         int global_zoom_jbegin, global_zoom_nj;
99
100         int ni_srv,ibegin_srv,iend_srv ;
101         int zoom_ni_srv,zoom_ibegin_srv,zoom_iend_srv ;
102
103         int nj_srv,jbegin_srv,jend_srv ;
104         int zoom_nj_srv,zoom_jbegin_srv,zoom_jend_srv ;
105
106         CArray<double, 1> lonvalue_srv, latvalue_srv ;
107         CArray<double, 2> bounds_lon_srv, bounds_lat_srv ;
108         CArray<double, 1> lonvalue_client, latvalue_client;
109         CArray<double, 2> bounds_lon_client, bounds_lat_client;
110         CArray<double, 1> area_srv;
111
112        vector<int> connectedServer ; // list of connected server
113        vector<int> nbSenders ; // for each communication with a server, number of communicating client
114        vector<int> nbDataSrv ; // size of data to send to each server
115        vector< vector<int> > i_indSrv ; // for each server, i global index to send
116        vector< vector<int> > j_indSrv ; // for each server, j global index to send
117
118      public:
119         /// Mutateur ///
120         void addRelFile(const StdString & filename);
121         void addRelFileCompressed(const StdString& filename);
122         void completeLonLatClient(void);
123         void sendServerAttribut(void) ;
124         void sendLonLatArea(void);
125         void computeConnectedServer(void) ;
126         void fillInRectilinearBoundLonLat(CArray<double,2>& boundsLon, CArray<double,2>& boundsLat);
127
128         static bool dispatchEvent(CEventServer& event);
129         static void recvServerAttribut(CEventServer& event);
130         static void recvIndex(CEventServer& event);
131         static void recvLon(CEventServer& event);
132         static void recvLat(CEventServer& event);
133         static void recvArea(CEventServer& event);
134         void recvServerAttribut(CBufferIn& buffer);
135         void recvIndex(int rank, CBufferIn& buffer);
136         void recvLon(int rank, CBufferIn& buffer);
137         void recvLat(int rank, CBufferIn& buffer);
138         void recvArea(int rank, CBufferIn& buffer);
139
140         /// Destructeur ///
141         virtual ~CDomain(void);
142
143         /// Accesseurs statiques ///
144         static StdString GetName(void);
145         static StdString GetDefName(void);
146
147         static ENodeType GetType(void);
148         const std::map<int, vector<size_t> >& getIndexServer() const;
149         CArray<int, 2> local_mask;
150         bool isCurvilinear ;
151         bool hasBounds ;
152         bool hasArea;
153         bool hasLonLat;
154      private:
155         void checkDomain(void);
156         void checkLocalIDomain(void);
157         void checkLocalJDomain(void);
158
159         void checkMask(void);
160         void checkDomainData(void);
161         void checkCompression(void);
162
163         void checkBounds(void);
164         void checkArea(void);
165         void checkLonLat();
166
167         void checkTransformations();
168         void setTransformations(const TransMapTypes&);
169         void computeNGlobDomain();
170         void fillInRectilinearLonLat();
171
172         void sendIndex();
173         void sendArea();
174         void sendLonLat();
175
176       private:
177         bool isChecked;
178         std::set<StdString> relFiles, relFilesCompressed;
179         bool isClientChecked; // Verify whether all attributes of domain on the client side are good
180         bool isClientAfterTransformationChecked;
181         std::map<int, CArray<int,1> > indiSrv, indjSrv;
182         std::map<int,int> nbConnectedClients_; // Mapping of number of communicating client to a server
183         std::map<int, vector<size_t> > indSrv_; // Global index of each client sent to server
184         std::map<int, vector<int> > indWrittenSrv_; // Global written index of each client sent to server
185         std::vector<int> indexesToWrite;
186         int numberWrittenIndexes_, totalNumberWrittenIndexes_, offsetWrittenIndexes_;
187         std::vector<int> connectedServerRank_;
188         bool isDistributed_;
189         //! True if and only if the data defined on the domain can be outputted in a compressed way
190         bool isCompressible_;
191         TransMapTypes transformationMap_;
192         std::vector<int> nGlobDomain_;
193         bool isUnstructed_;
194         CDomain* srcObject_;
195
196         DECLARE_REF_FUNC(Domain,domain)
197
198   }; // class CDomain
199
200   ///--------------------------------------------------------------
201
202   // Declare/Define CDomainGroup and CDomainDefinition
203   DECLARE_GROUP(CDomain);
204
205   ///--------------------------------------------------------------
206
207} // namespace xios
208
209#endif // __XIOS_CDomain__
Note: See TracBrowser for help on using the repository browser.