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

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

Making changes in domain to make sure unstructed grid work with new method of index distribution

+) Change the way define i_index and j_index of a domain
+) Remove some redundant attributes of domain
+) Adjust the way to calculate index distribution on server side

Test
+) Make some minor change to test_unstruct_complete to work with new XIOS
+) On Curie
+) All test pass and 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: 6.4 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 sendCheckedAttributes();
73
74         bool hasTransformation();
75         void solveInheritanceTransformation();
76         TransMapTypes getAllTransformations();
77
78      private :
79
80         void checkDomain(void);
81
82         void checkLocalIDomain(void);
83         void checkLocalJDomain(void);
84
85         void checkMask(void);
86         void checkDomainData(void);
87         void checkCompression(void);
88
89         void checkZoom(void);
90         void checkBounds(void);
91         void checkArea(void);
92
93
94      public :
95
96         /// Autres ///
97
98         const std::set<StdString> & getRelFiles(void) const;
99
100
101         /// Test ///
102         bool IsWritten(const StdString & filename) const;
103//         bool hasZoom(void) const;
104         bool isEmpty(void) const;
105         bool isDistributed(void) const;
106
107
108         int ni_client,ibegin_client,iend_client ;
109         int zoom_ni_client,zoom_ibegin_client,zoom_iend_client ;
110
111         int nj_client,jbegin_client,jend_client ;
112         int zoom_nj_client,zoom_jbegin_client,zoom_jend_client ;
113
114         int ni_srv,ibegin_srv,iend_srv ;
115         int zoom_ni_srv,zoom_ibegin_srv,zoom_iend_srv ;
116
117         int nj_srv,jbegin_srv,jend_srv ;
118         int zoom_nj_srv,zoom_jbegin_srv,zoom_jend_srv ;
119
120         CArray<double, 1> lonvalue_srv, latvalue_srv ;
121         CArray<double, 2> bounds_lon_srv, bounds_lat_srv ;
122         CArray<double, 1> area_srv;
123
124
125        vector<int> connectedServer ; // list of connected server
126        vector<int> nbSenders ; // for each communication with a server, number of communicating client
127        vector<int> nbDataSrv ; // size of data to send to each server
128        vector< vector<int> > i_indSrv ; // for each server, i global index to send
129        vector< vector<int> > j_indSrv ; // for each server, j global index to send
130
131
132        CArray<int,2> mapConnectedServer ;  // (ni,nj) => mapped to connected server number, -1 if no server is target
133
134        int global_zoom_ibegin, global_zoom_ni;
135        int global_zoom_jbegin, global_zoom_nj;
136//        vector<int> ib_srv, ie_srv, in_srv ;
137//        vector<int> jb_srv, je_srv, jn_srv ;
138
139      public :
140
141         /// Mutateur ///
142         void addRelFile(const StdString & filename);
143         void completeLonLatClient(void);
144         void sendServerAttribut(void) ;
145         void sendLonLatArea(void);
146         void computeConnectedServer(void) ;
147
148         static bool dispatchEvent(CEventServer& event);
149         static void recvServerAttribut(CEventServer& event);
150         static void recvIndex(CEventServer& event);
151         static void recvLon(CEventServer& event);
152         static void recvLat(CEventServer& event);
153         static void recvArea(CEventServer& event);
154         void recvServerAttribut(CBufferIn& buffer);
155         void recvIndex(int rank, CBufferIn& buffer);
156         void recvLon(int rank, CBufferIn& buffer);
157         void recvLat(int rank, CBufferIn& buffer);
158         void recvArea(int rank, CBufferIn& buffer);
159
160         /// Destructeur ///
161         virtual ~CDomain(void);
162
163         /// Accesseurs statiques ///
164         static StdString GetName(void);
165         static StdString GetDefName(void);
166
167         static ENodeType GetType(void);
168         const std::map<int, vector<size_t> >& getIndexServer() const;
169         CArray<int, 2> local_mask;
170         bool isCurvilinear ;
171         bool hasBounds ;
172         bool hasArea;
173      private:
174         void checkTransformations();
175         void setTransformations(const TransMapTypes&);
176         void computeNGlobDomain();
177
178       private :
179         bool isChecked;
180         std::set<StdString> relFiles;
181         bool isClientChecked; // Verify whether all attributes of domain on the client side are good
182         bool isClientAfterTransformationChecked;
183         std::map<int, CArray<int,1> > indiSrv, indjSrv;
184         std::map<int,int> nbConnectedClients_; // Mapping of number of communicating client to a server
185         std::map<int, vector<size_t> > indSrv_; // Global index of each client sent to server
186         std::vector<int> connectedServerRank_;
187         bool isDistributed_;
188         TransMapTypes transformationMap_;
189         std::vector<int> nGlobDomain_;
190         bool isUnstructed_;
191         CArray<bool,1> maskInter_;
192
193
194         DECLARE_REF_FUNC(Domain,domain)
195
196   }; // class CDomain
197
198   ///--------------------------------------------------------------
199
200   // Declare/Define CDomainGroup and CDomainDefinition
201   DECLARE_GROUP(CDomain);
202
203   ///--------------------------------------------------------------
204
205} // namespace xios
206
207#endif // __XIOS_CDomain__
Note: See TracBrowser for help on using the repository browser.