Salome HOME
Frontière analytique torique
[modules/homard.git] / src / HOMARD_I / HOMARD_Gen_i.hxx
1 // // Copyright (C) 2011-2013  CEA/DEN, EDF R&D
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 //
19
20 #ifndef _HOMARD_GEN_I_HXX_
21 #define _HOMARD_GEN_I_HXX_
22
23 #include <SALOMEconfig.h>
24 #include CORBA_SERVER_HEADER(HOMARD_Gen)
25 #include CORBA_SERVER_HEADER(HOMARD_Cas)
26 #include CORBA_SERVER_HEADER(HOMARD_Hypothesis)
27 #include CORBA_SERVER_HEADER(HOMARD_Iteration)
28 #include CORBA_SERVER_HEADER(HOMARD_Zone)
29 #include CORBA_SERVER_HEADER(HOMARD_Boundary)
30 #include CORBA_SERVER_HEADER(HOMARD_YACS)
31 #include CORBA_CLIENT_HEADER(SALOMEDS)
32 #include CORBA_CLIENT_HEADER(SALOMEDS_Attributes)
33
34 #include "HOMARD_i.hxx"
35 #include "HOMARD_Gen.hxx"
36 #include "HomardDriver.hxx"
37 #include "YACSDriver.hxx"
38 #include "SALOME_Component_i.hxx"
39 #include "SALOME_NamingService.hxx"
40 #include "Utils_CorbaException.hxx"
41
42
43 #include <string>
44 #include <map>
45
46 class HOMARDENGINE_EXPORT HOMARD_Gen_i:
47   public virtual Engines_Component_i,
48   public virtual POA_HOMARD::HOMARD_Gen
49 {
50 public:
51   HOMARD_Gen_i( CORBA::ORB_ptr orb,
52                 PortableServer::POA_ptr poa,
53                 PortableServer::ObjectId* contId,
54                 const char* instanceName,
55                 const char* interfaceName );
56   virtual ~HOMARD_Gen_i();
57
58
59 // Generalites
60
61 // Les creations
62   HOMARD::HOMARD_Boundary_ptr     CreateBoundary (const char* nomBoundary, CORBA::Long typeBoundary);
63   HOMARD::HOMARD_Boundary_ptr     CreateBoundaryDi (const char* nomBoundary,
64                                                     const char* MeshName, const char* FileName);
65   HOMARD::HOMARD_Boundary_ptr     CreateBoundaryCylinder (const char* nomBoundary,
66                                       CORBA::Double Xcentre, CORBA::Double Ycentre, CORBA::Double Zcentre,
67                                       CORBA::Double Xaxis, CORBA::Double Yaxis, CORBA::Double Zaxis,
68                                       CORBA::Double Rayon);
69   HOMARD::HOMARD_Boundary_ptr     CreateBoundarySphere (const char* nomBoundary,
70                                       CORBA::Double Xcentre, CORBA::Double Ycentre, CORBA::Double Zcentre,
71                                       CORBA::Double Rayon);
72   HOMARD::HOMARD_Boundary_ptr     CreateBoundaryConeR (const char* nomBoundary,
73                                       CORBA::Double Xcentre1, CORBA::Double Ycentre1, CORBA::Double Zcentre1, CORBA::Double Rayon1,
74                                       CORBA::Double Xcentre2, CORBA::Double Ycentre2, CORBA::Double Zcentre2, CORBA::Double Rayon2);
75   HOMARD::HOMARD_Boundary_ptr     CreateBoundaryConeA (const char* nomBoundary,
76                                       CORBA::Double Xaxis, CORBA::Double Yaxis, CORBA::Double Zaxis, CORBA::Double Angle,
77                                       CORBA::Double Xcentre, CORBA::Double Ycentre, CORBA::Double Zcentre);
78   HOMARD::HOMARD_Boundary_ptr     CreateBoundaryTorus (const char* nomBoundary,
79                                       CORBA::Double Xcentre, CORBA::Double Ycentre, CORBA::Double Zcentre,
80                                       CORBA::Double Xaxis, CORBA::Double Yaxis, CORBA::Double Zaxis,
81                                       CORBA::Double RayonRev, CORBA::Double RayonPri);
82
83   HOMARD::HOMARD_Cas_ptr          CreateCase (const char* nomCas, const char* MeshName, const char* FileName);
84   HOMARD::HOMARD_Cas_ptr          CreateCaseFromIteration (const char* nomCas, const char* DirNameStart);
85   HOMARD::HOMARD_Cas_ptr          CreateCaseFromCaseLastIteration (const char* nomCas, const char* DirNameStart);
86   HOMARD::HOMARD_Cas_ptr          CreateCaseFromCaseIteration (const char* nomCas, const char* DirNameStart, CORBA::Long Number);
87   HOMARD::HOMARD_Cas_ptr          CreateCase0 (const char* nomCas, const char* MeshName, const char* FileName, CORBA::Long MeshOption, CORBA::Long NumeIter, CORBA::Long Option);
88   std::string                     CreateCase1 (const char* DirNameStart, CORBA::Long Number);
89
90   HOMARD::HOMARD_Hypothesis_ptr   CreateHypothesis(const char* nomHypothesis);
91
92   HOMARD::HOMARD_Iteration_ptr    CreateIteration (const char* nomIter, const char* nomIterParent);
93
94   HOMARD::HOMARD_Zone_ptr         CreateZone (const char* nomZone, CORBA::Long typeZone);
95   HOMARD::HOMARD_Zone_ptr         CreateZoneBox (const char* nomZone,
96                                       CORBA::Double Xmini, CORBA::Double Xmaxi,
97                                       CORBA::Double Ymini, CORBA::Double Ymaxi,
98                                       CORBA::Double Zmini, CORBA::Double Zmaxi);
99   HOMARD::HOMARD_Zone_ptr         CreateZoneBox2D (const char* nomZone,
100                                       CORBA::Double Umini, CORBA::Double Umaxi,
101                                       CORBA::Double Vmini, CORBA::Double Vmaxi,
102                                       CORBA::Long Orient);
103   HOMARD::HOMARD_Zone_ptr         CreateZoneCylinder (const char* nomZone,
104                                       CORBA::Double Xcentre, CORBA::Double Ycentre, CORBA::Double Zcentre,
105                                       CORBA::Double Xaxe, CORBA::Double Yaxe, CORBA::Double Zaxe,
106                                       CORBA::Double Rayon, CORBA::Double Haut);
107   HOMARD::HOMARD_Zone_ptr         CreateZoneDisk (const char* nomZone,
108                                       CORBA::Double Ucentre, CORBA::Double Vcentre,
109                                       CORBA::Double Rayon,
110                                       CORBA::Long Orient);
111   HOMARD::HOMARD_Zone_ptr         CreateZoneDiskWithHole (const char* nomZone,
112                                       CORBA::Double Ucentre, CORBA::Double Vcentre,
113                                       CORBA::Double Rayon, CORBA::Double Rayonint,
114                                       CORBA::Long Orient);
115   HOMARD::HOMARD_Zone_ptr         CreateZonePipe (const char* nomZone,
116                                       CORBA::Double Xcentre, CORBA::Double Ycentre, CORBA::Double Zcentre,
117                                       CORBA::Double Xaxe, CORBA::Double Yaxe, CORBA::Double Zaxe,
118                                       CORBA::Double Rayon, CORBA::Double Haut, CORBA::Double Rayonint);
119   HOMARD::HOMARD_Zone_ptr         CreateZoneSphere (const char* nomZone,
120                                       CORBA::Double Xcentre, CORBA::Double Ycentre, CORBA::Double Zcentre, CORBA::Double Rayon);
121
122 // Les informations
123   HOMARD::HOMARD_Boundary_ptr     GetBoundary   (const char* nomBoundary);
124   HOMARD::HOMARD_Cas_ptr          GetCase       (const char* nomCas);
125   HOMARD::HOMARD_Hypothesis_ptr   GetHypothesis (const char* nomHypothesis);
126   HOMARD::HOMARD_Iteration_ptr    GetIteration  (const char* nomIteration);
127   HOMARD::HOMARD_YACS_ptr         GetYACS       (const char* nomYACS);
128   HOMARD::HOMARD_Zone_ptr         GetZone       (const char* nomZone);
129
130   HOMARD::listeBoundarys*         GetAllBoundarysName();
131   HOMARD::listeCases*             GetAllCasesName();
132   HOMARD::listeHypotheses*        GetAllHypothesesName();
133   HOMARD::listeIterations*        GetAllIterationsName();
134   HOMARD::listeYACSs*             GetAllYACSsName();
135   HOMARD::listeZones*             GetAllZonesName();
136
137   void                            MeshInfo      (const char* nomCas,
138                                                  const char* MeshName, const char* FileName, const char* DirName,
139                                                  CORBA::Long Qual, CORBA::Long Diam, CORBA::Long Conn, CORBA::Long Tail, CORBA::Long Inte);
140
141   HOMARD::HOMARD_Iteration_ptr    LastIteration  (const char* nomCas);
142
143 // L'etude
144   SALOMEDS::Study_ptr             GetCurrentStudy();
145   void                            SetCurrentStudy(SALOMEDS::Study_ptr theStudy);
146   CORBA::Long                     GetCurrentStudyID();
147   void                            IsValidStudy();
148
149 // Liens entre structures
150   void                            InvalideBoundary(const char* nomBoundary);
151   void                            InvalideHypo(const char* nomHypo);
152   void                            InvalideIter(const char* nomIter);
153   void                            InvalideIterOption(const char* nomIter, CORBA::Long Option);
154   void                            InvalideIterInfo(const char* nomIter);
155   void                            InvalideZone(const char* nomZone);
156
157   CORBA::Long                     DeleteBoundary(const char* nomBoundary);
158   CORBA::Long                     DeleteCase(const char* nomCas, CORBA::Long Option);
159   CORBA::Long                     DeleteHypo(const char* nomHypothesis);
160   CORBA::Long                     DeleteIteration(const char* nomIter, CORBA::Long Option);
161   CORBA::Long                     DeleteIterationOption(const char* nomIter, CORBA::Long Option1, CORBA::Long Option2);
162   CORBA::Long                     DeleteYACS(const char* nomYACS, CORBA::Long Option);
163   CORBA::Long                     DeleteZone(const char* nomZone);
164
165   void                            AssociateIterHypo(const char* nomIter, const char* nomHypothesis);
166
167   void                            AssociateHypoZone(const char* nomHypothesis, const char* nomZone, CORBA::Long TypeUse);
168   void                            DissociateHypoZone(const char* nomHypothesis, const char* nomZone);
169
170   void                            AssociateCaseIter(const char* nomCas, const char* nomIter,
171                                                     const char* labelIter);
172
173 // Actions
174   void                            SetEtatIter(const char* nomIter,const CORBA::Long Etat);
175   char*                           CreateDirNameIter(const char* nomrep, CORBA::Long num );
176
177   CORBA::Long                     Compute(const char* nomIteration, CORBA::Long etatMenage, CORBA::Long modeHOMARD, CORBA::Long Option1, CORBA::Long Option2);
178   CORBA::Long                     ComputeAdap(HOMARD::HOMARD_Cas_var myCase, HOMARD::HOMARD_Iteration_var myIteration, CORBA::Long etatMenage, HomardDriver* myDriver, CORBA::Long Option1, CORBA::Long Option2);
179   char*                           ComputeDirManagement(HOMARD::HOMARD_Cas_var myCase, HOMARD::HOMARD_Iteration_var myIteration, CORBA::Long etatMenage);
180   char*                           ComputeDirPaManagement(HOMARD::HOMARD_Cas_var myCase, HOMARD::HOMARD_Iteration_var myIteration);
181   void                            DriverTexteZone(HOMARD::HOMARD_Hypothesis_var myHypo, HomardDriver* myDriver);
182   void                            DriverTexteField(HOMARD::HOMARD_Iteration_var myIteration, HOMARD::HOMARD_Hypothesis_var myHypo, HomardDriver* myDriver);
183   void                            DriverTexteBoundary(HOMARD::HOMARD_Cas_var myCase, HomardDriver* myDriver);
184   void                            DriverTexteFieldInterp(HOMARD::HOMARD_Iteration_var myIteration, HOMARD::HOMARD_Hypothesis_var myHypo, HomardDriver* myDriver);
185
186   char*                           VerifieDir(const char* nomDir);
187
188   void                            PublishFileUnderIteration(const char* NomIter, const char* NomFich, const char* Commentaire);
189   void                            PublishFileUnderYACS(const char* NomYACS, const char* NomFich, const char* Commentaire);
190   void                            PublishBoundaryUnderCase(const char* CaseName, const char* BoundaryName);
191   void                            PublishCaseUnderYACS(const char* YACSName, const char* CaseName);
192   void                            PublishResultInSmesh(const char* NomFich, CORBA::Long Option);
193   void                            DeleteResultInSmesh(std::string NomFich, std::string MeshName);
194   void                            PublishMeshIterInSmesh(const char* NomIter);
195
196 // YACS
197   HOMARD::HOMARD_YACS_ptr         CreateYACSSchema (const char* YACSName, const char* nomCas, const char* ScriptFile, const char* DirName, const char* MeshFile);
198   CORBA::Long                     YACSWrite(const char* nomYACS);
199   CORBA::Long                     YACSWriteOnFile(const char* nomYACS, const char* XMLFile);
200   std::string                     YACSDriverTexteZone(HOMARD::HOMARD_Hypothesis_var myHypo, YACSDriver* myDriver);
201   std::string                     YACSDriverTexteBoundary(HOMARD::HOMARD_Cas_var myCase, YACSDriver* myDriver);
202
203 // Preferences
204   void                            SetPreferences() ;
205   void                            SetLanguageShort(const char* LanguageShort);
206   char*                           GetLanguageShort();
207   void                            SetPublisMesh(CORBA::Long PublisMeshIN, CORBA::Long PublisMeshOUT);
208   CORBA::Long                     GetPublisMeshIN();
209   CORBA::Long                     GetPublisMeshOUT();
210   void                            SetYACSMaximum(CORBA::Long YACSMaxIter, CORBA::Long YACSMaxNode, CORBA::Long YACSMaxElem);
211   CORBA::Long                     GetYACSMaxIter();
212   CORBA::Long                     GetYACSMaxNode();
213   CORBA::Long                     GetYACSMaxElem();
214
215
216   // ---------------------------------------------------------------
217   // next functions are inherited from SALOMEDS::Driver interface
218   // ---------------------------------------------------------------
219
220   // --> Persistence
221   virtual SALOMEDS::TMPFile*      Save(SALOMEDS::SComponent_ptr theComponent,
222                                         const char* theURL,
223                                         CORBA::Boolean isMultiFile);
224
225   virtual SALOMEDS::TMPFile*      SaveASCII(SALOMEDS::SComponent_ptr theComponent,
226                                              const char* theURL,
227                                              CORBA::Boolean isMultiFile);
228
229   virtual CORBA::Boolean          Load(SALOMEDS::SComponent_ptr theComponent,
230                                         const SALOMEDS::TMPFile& theStream,
231                                         const char* theURL,
232                                         CORBA::Boolean isMultiFile);
233
234   virtual CORBA::Boolean          LoadASCII(SALOMEDS::SComponent_ptr theComponent,
235                                              const SALOMEDS::TMPFile& theStream,
236                                              const char* theURL,
237                                              CORBA::Boolean isMultiFile);
238
239   virtual void                    Close(SALOMEDS::SComponent_ptr IORSComponent);
240
241   virtual char*                   ComponentDataType();
242
243   virtual char*                   IORToLocalPersistentID(SALOMEDS::SObject_ptr theSObject,
244                                                           const char* IORString,
245                                                           CORBA::Boolean isMultiFile,
246                                                           CORBA::Boolean isASCII);
247
248   virtual char*                   LocalPersistentIDToIOR(SALOMEDS::SObject_ptr theSObject,
249                                                           const char* aLocalPersistentID,
250                                                           CORBA::Boolean isMultiFile,
251                                                           CORBA::Boolean isASCII);
252
253   // --> Data publishing
254   virtual CORBA::Boolean          CanPublishInStudy(CORBA::Object_ptr theIOR);
255
256   virtual SALOMEDS::SObject_ptr   PublishInStudy(SALOMEDS::Study_ptr theStudy,
257                                                  SALOMEDS::SObject_ptr theSObject,
258                                                  CORBA::Object_ptr theObject,
259                                                  const char* theName);
260
261   // --> Copy/Paste
262   virtual CORBA::Boolean          CanCopy(SALOMEDS::SObject_ptr theObject);
263
264   virtual SALOMEDS::TMPFile*      CopyFrom(SALOMEDS::SObject_ptr theObject,
265                                             CORBA::Long& theObjectID);
266
267   virtual CORBA::Boolean          CanPaste(const char* theComponentName, CORBA::Long theObjectID);
268
269   virtual SALOMEDS::SObject_ptr   PasteInto(const SALOMEDS::TMPFile& theStream,
270                                              CORBA::Long theObjectID,
271                                              SALOMEDS::SObject_ptr theObject);
272
273 //   virtual void SALOMEException( std::string message );
274
275 private:
276   void                            addInStudy(SALOMEDS::Study_ptr theStudy);
277   SALOMEDS::SObject_ptr           PublishBoundaryInStudy(SALOMEDS::Study_ptr theStudy, SALOMEDS::StudyBuilder_var aStudyBuilder,
278                                                      HOMARD::HOMARD_Boundary_ptr theObject, const char* theName);
279   SALOMEDS::SObject_ptr           PublishCaseInStudy(SALOMEDS::Study_ptr theStudy, SALOMEDS::StudyBuilder_var aStudyBuilder,
280                                                      HOMARD::HOMARD_Cas_ptr theObject, const char* theName);
281   SALOMEDS::SObject_ptr           PublishHypotheseInStudy(SALOMEDS::Study_ptr theStudy, SALOMEDS::StudyBuilder_var aStudyBuilder,
282                                                      HOMARD::HOMARD_Hypothesis_ptr theObject, const char* theName);
283   SALOMEDS::SObject_ptr           PublishYACSInStudy(SALOMEDS::Study_ptr theStudy, SALOMEDS::StudyBuilder_var aStudyBuilder,
284                                                      HOMARD::HOMARD_YACS_ptr theObject, const char* theName);
285   SALOMEDS::SObject_ptr           PublishZoneInStudy(SALOMEDS::Study_ptr theStudy, SALOMEDS::StudyBuilder_var aStudyBuilder,
286                                                      HOMARD::HOMARD_Zone_ptr theObject, const char* theName);
287   virtual void                    PublishInStudyAttr(SALOMEDS::StudyBuilder_var aStudyBuilder,
288                                                      SALOMEDS::SObject_var aResultSO,
289                                                      const char* theName, const char* comment, const char* icone, const char* ior);
290
291   PortableServer::ServantBase_var GetServant(CORBA::Object_ptr theObject);
292
293   HOMARD::HOMARD_Boundary_ptr     newBoundary();
294   HOMARD::HOMARD_Cas_ptr          newCase();
295   HOMARD::HOMARD_Hypothesis_ptr   newHypothesis();
296   HOMARD::HOMARD_Iteration_ptr    newIteration();
297   HOMARD::HOMARD_YACS_ptr         newYACS();
298   HOMARD::HOMARD_Zone_ptr         newZone();
299
300
301   virtual Engines::TMPFile*       DumpPython(CORBA::Object_ptr theStudy,
302                                              CORBA::Boolean isPublished,
303                                              CORBA::Boolean isMultiFile,
304                                              CORBA::Boolean& isValidScript);
305
306   virtual char*                   getVersion();
307   std::string GetStringInTexte( const std::string Texte, const std::string String, int option ) ;
308
309 private:
310   struct StudyContext
311   {
312     std::map<std::string, HOMARD::HOMARD_Boundary_var>   _mesBoundarys;
313     std::map<std::string, HOMARD::HOMARD_Cas_var>        _mesCas;
314     std::map<std::string, HOMARD::HOMARD_Hypothesis_var> _mesHypotheses;
315     std::map<std::string, HOMARD::HOMARD_Iteration_var>  _mesIterations;
316     std::map<std::string, HOMARD::HOMARD_YACS_var>       _mesYACSs;
317     std::map<std::string, HOMARD::HOMARD_Zone_var>       _mesZones;
318     std::map<int, PortableServer::ServantBase*>          _idmap;
319   };
320   typedef std::map<int, StudyContext> ContextMap;
321
322   ::HOMARD_Gen*                 myHomard;
323   SALOMEDS::Study_var           myCurrentStudy;
324   ContextMap                    myContextMap;
325   SALOME_NamingService*         _NS;
326
327   int _tag_gene ;
328   int _tag_boun ;
329   int _tag_hypo ;
330   int _tag_yacs ;
331   int _tag_zone ;
332
333 // Preferences
334   std::string _Langue ;
335   std::string _LangueShort ;
336   int _PublisMeshIN ;
337   int _PublisMeshOUT ;
338   int _YACSMaxIter ;
339   int _YACSMaxNode ;
340   int _YACSMaxElem ;
341  ;
342
343 };
344
345 #endif