Salome HOME
3443ed791a3a2d1d85d453c71519084b8246d48b
[modules/smesh.git] / src / SMESH_I / SMESH_2smeshpy.hxx
1 // Copyright (C) 2005  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
2 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
3 //
4 // This library is free software; you can redistribute it and/or
5 // modify it under the terms of the GNU Lesser General Public
6 // License as published by the Free Software Foundation; either
7 // version 2.1 of the License.
8 //
9 // This library is distributed in the hope that it will be useful
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12 // Lesser General Public License for more details.
13 //
14 // You should have received a copy of the GNU Lesser General Public
15 // License along with this library; if not, write to the Free Software
16 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
17 //
18 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
19 //
20 // File      : SMESH_smesh.hxx
21 // Created   : Fri Nov 18 12:05:18 2005
22 // Author    : Edward AGAPOV (eap)
23
24 #ifndef SMESH_smesh_HeaderFile
25 #define SMESH_smesh_HeaderFile
26
27 #include <Standard_DefineHandle.hxx>
28 #include <Standard_Type.hxx>
29 #include <Standard_Transient.hxx>
30 #include <TCollection_AsciiString.hxx>
31 #include <TColStd_SequenceOfAsciiString.hxx>
32 #include <TColStd_SequenceOfInteger.hxx>
33
34 #include <list>
35 #include <map>
36
37 // ===========================================================================================
38 /*!
39  * \brief Tool converting SMESH engine calls into commands defined in smesh.py
40  *
41  * This file was created in order to respond to requirement of bug PAL10494:
42  * SMESH python dump uses idl interface.
43  *
44  * The creation reason is that smesh.py commands defining hypotheses encapsulate
45  * several SMESH engine method calls. As well, the dependencies between smesh.py
46  * classes differ from ones between SMESH IDL interfaces.
47  * 
48  * The only API method here is SMESH_2smeshpy::ConvertScript(), the rest ones are
49  * for internal usage
50  *
51  * See comments to _pyHypothesis class to know how to assure convertion of a new hypothesis
52  */
53 // ===========================================================================================
54
55 class Resource_DataMapOfAsciiStringAsciiString;
56
57 class SMESH_2smeshpy
58 {
59 public:
60   /*!
61    * \brief Convert a python script using commands of smesh.py
62    * \param theScript - Input script
63    * \param theEntry2AccessorMethod - The returning method names to access to
64    *        objects wrapped with python class
65    * \retval TCollection_AsciiString - Convertion result
66    */
67   static TCollection_AsciiString
68   ConvertScript(const TCollection_AsciiString& theScript,
69                 Resource_DataMapOfAsciiStringAsciiString& theEntry2AccessorMethod);
70
71   /*!
72    * \brief Return the name of the python file wrapping IDL API
73     * \retval TCollection_AsciiString - The file name
74    */
75   static char* SmeshpyName() { return "smesh"; }
76   static char* GenName() { return "smesh.smesh"; }
77 };
78
79 // ===========================================================================================
80 // =====================
81 //    INTERNAL STUFF
82 // =====================
83 // ===========================================================================================
84
85 class _pyCommand;
86 class _pyObject;
87 class _pyGen;
88 class _pyMesh;
89 class _pyHypothesis;
90 class _pyAlgorithm;
91
92 DEFINE_STANDARD_HANDLE (_pyCommand   ,Standard_Transient);
93 DEFINE_STANDARD_HANDLE (_pyObject    ,Standard_Transient);
94 DEFINE_STANDARD_HANDLE (_pyGen       ,_pyObject);
95 DEFINE_STANDARD_HANDLE (_pyMesh      ,_pyObject);
96 DEFINE_STANDARD_HANDLE (_pyHypothesis,_pyObject);
97 DEFINE_STANDARD_HANDLE (_pyAlgorithm ,_pyHypothesis);
98
99 typedef TCollection_AsciiString _pyID;
100
101 // ===========================================================
102 /*!
103  * \brief Class operating on a command string looking like
104  *        ResultValue = Object.Method( Arg1, Arg2,...)
105  */
106 // ===========================================================
107
108 class _pyCommand: public Standard_Transient
109 {
110   int                             myOrderNb;            //!< position within the script
111   TCollection_AsciiString         myString;             //!< command text
112   TCollection_AsciiString         myRes, myObj, myMeth; //!< found parts of command
113   TColStd_SequenceOfAsciiString   myArgs;               //!< found arguments
114   TColStd_SequenceOfInteger       myBegPos;             //!< where myRes, myObj, ... begin
115   std::list< Handle(_pyCommand) > myDependentCmds; //!< commands that sould follow me in the script
116
117   enum { UNKNOWN=-1, EMPTY=0, RESULT_IND, OBJECT_IND, METHOD_IND, ARG1_IND };
118   int GetBegPos( int thePartIndex );
119   void SetBegPos( int thePartIndex, int thePosition );
120   void SetPart( int thePartIndex, const TCollection_AsciiString& theNewPart,
121                 TCollection_AsciiString& theOldPart);
122   void FindAllArgs() { GetArg(1); }
123
124 public:
125   _pyCommand() {};
126   _pyCommand( const TCollection_AsciiString& theString, int theNb )
127     : myString( theString ), myOrderNb( theNb ) {};
128   TCollection_AsciiString & GetString() { return myString; }
129   int GetOrderNb() const { return myOrderNb; }
130   void SetOrderNb( int theNb ) { myOrderNb = theNb; }
131   int Length() { return myString.Length(); }
132   void Clear() { myString.Clear(); myBegPos.Clear(); }
133   bool IsEmpty() const { return myString.IsEmpty(); }
134   TCollection_AsciiString GetIndentation();
135   const TCollection_AsciiString & GetResultValue();
136   const TCollection_AsciiString & GetObject();
137   const TCollection_AsciiString & GetMethod();
138   const TCollection_AsciiString & GetArg( int index );
139   int GetNbArgs() { FindAllArgs(); return myArgs.Length(); }
140   //Handle(TColStd_HSequenceOfAsciiString) GetArgs();
141   void SetResultValue( const TCollection_AsciiString& theResult )
142   { GetResultValue(); SetPart( RESULT_IND, theResult, myRes ); }
143   void SetObject(const TCollection_AsciiString& theObject)
144   { GetObject(); SetPart( OBJECT_IND, theObject, myObj ); }
145   void SetMethod(const TCollection_AsciiString& theMethod)
146   { GetMethod(); SetPart( METHOD_IND, theMethod, myMeth ); }
147   void SetArg( int index, const TCollection_AsciiString& theArg);
148   void RemoveArgs();
149   static bool SkipSpaces( const TCollection_AsciiString & theSring, int & thePos );
150   static TCollection_AsciiString GetWord( const TCollection_AsciiString & theSring,
151                                           int & theStartPos, const bool theForward,
152                                           const bool dotIsWord = false);
153   void AddDependantCmd( Handle(_pyCommand) cmd)
154   { return myDependentCmds.push_back( cmd ); }
155   bool SetDependentCmdsAfter() const;
156
157   bool AddAccessorMethod( _pyID theObjectID, const char* theAcsMethod );
158
159   DEFINE_STANDARD_RTTI (_pyCommand)
160 };
161
162 // -------------------------------------------------------------------------------------
163 /*!
164  * \brief Root of all objects
165  */
166 // -------------------------------------------------------------------------------------
167
168 class _pyObject: public Standard_Transient
169 {
170   Handle(_pyCommand)              myCreationCmd;
171 public:
172   _pyObject(const Handle(_pyCommand)& theCreationCmd): myCreationCmd(theCreationCmd) {}
173   const _pyID& GetID() { return myCreationCmd->GetResultValue(); }
174   const Handle(_pyCommand)& GetCreationCmd() { return myCreationCmd; }
175   void  SetCreationCmd( Handle(_pyCommand) cmd ) { myCreationCmd = cmd; }
176   int GetCommandNb() { return myCreationCmd->GetOrderNb(); }
177   virtual void Process(const Handle(_pyCommand) & theCommand) = 0;
178   virtual void Flush() = 0;
179   virtual const char* AccessorMethod() const;
180
181   DEFINE_STANDARD_RTTI (_pyObject)
182 };
183
184 // -------------------------------------------------------------------------------------
185 /*!
186  * \brief Class corresponding to SMESH_Gen. It holds info on existing
187  *        meshes and hypotheses
188  */
189 // -------------------------------------------------------------------------------------
190 class _pyGen: public _pyObject
191 {
192 public:
193   _pyGen(Resource_DataMapOfAsciiStringAsciiString& theEntry2AccessorMethod);
194   //~_pyGen();
195   Handle(_pyCommand) AddCommand( const TCollection_AsciiString& theCommand );
196   void Process( const Handle(_pyCommand)& theCommand );
197   void Flush();
198   Handle(_pyHypothesis) FindHyp( const _pyID& theHypID );
199   Handle(_pyHypothesis) FindAlgo( const _pyID& theGeom, const _pyID& theMesh,
200                                  const TCollection_AsciiString& theAlgoType);
201   void ExchangeCommands( Handle(_pyCommand) theCmd1, Handle(_pyCommand) theCmd2 );
202   void SetCommandAfter( Handle(_pyCommand) theCmd, Handle(_pyCommand) theAfterCmd );
203   std::list< Handle(_pyCommand) >& GetCommands() { return myCommands; }
204   void SetAccessorMethod(const _pyID& theID, const char* theMethod );
205   bool AddMeshAccessorMethod( Handle(_pyCommand) theCmd ) const;
206   bool AddAlgoAccessorMethod( Handle(_pyCommand) theCmd ) const;
207   const char* AccessorMethod() const { return SMESH_2smeshpy::GenName(); }
208 private:
209   std::map< _pyID, Handle(_pyMesh) > myMeshes;
210   std::list< Handle(_pyHypothesis) > myHypos;
211   std::list< Handle(_pyCommand) >    myCommands;
212   int                                myNbCommands;
213   bool                               myHasPattern;
214   Resource_DataMapOfAsciiStringAsciiString& myID2AccessorMethod;
215
216   DEFINE_STANDARD_RTTI (_pyGen)
217 };
218
219 // -------------------------------------------------------------------------------------
220 /*!
221  * \brief Contains commands concerning mesh substructures
222  */
223 // -------------------------------------------------------------------------------------
224 #define _pyMesh_ACCESS_METHOD "GetMesh()"
225 class _pyMesh: public _pyObject
226 {
227   std::list< Handle(_pyHypothesis) > myHypos;
228   std::list< Handle(_pyCommand) > myAddHypCmds;
229   std::list< Handle(_pyCommand) > mySubmeshes;
230   bool                            myHasEditor;
231 public:
232   _pyMesh(const Handle(_pyCommand) theCreationCmd);
233   const _pyID& GetGeom() { return GetCreationCmd()->GetArg(1); }
234   void Process( const Handle(_pyCommand)& theCommand);
235   void Flush();
236   const char* AccessorMethod() const { return _pyMesh_ACCESS_METHOD; }
237 private:
238   static void AddMeshAccess( const Handle(_pyCommand)& theCommand )
239   { theCommand->SetObject( theCommand->GetObject() + "." _pyMesh_ACCESS_METHOD ); }
240
241   DEFINE_STANDARD_RTTI (_pyMesh)
242 };
243 #undef _pyMesh_ACCESS_METHOD 
244
245 // -------------------------------------------------------------------------------------
246 /*!
247  * \brief Root class for hypothesis
248  *
249  * HOWTO assure convertion of a new hypothesis
250  * In NewHypothesis():
251  * 1. add a case for the name of the new hypothesis and
252  * 2. initialize _pyHypothesis fields:
253  *    . myDim - hypothesis dimention;
254  *    . myType - type name of the algorithm creating the hypothesis;
255  *    . myCreationMethod - method name of the algorithm creating the hypothesis;
256  *    . append to myArgMethods interface methods setting param values in the
257  *    order they are used when myCreationMethod is called. It is supposed that
258  *    each interface method sets only one parameter, if it is not so, you are
259  *    to derive a specific class from _pyHypothesis that would redefine Process(),
260  *    see _pyComplexParamHypo for example
261  */
262 // -------------------------------------------------------------------------------------
263 class _pyHypothesis: public _pyObject
264 {
265 protected:
266   bool    myIsAlgo, /*myIsLocal, */myIsWrapped, myIsConverted;
267   int     myDim/*, myAdditionCmdNb*/;
268   _pyID    myGeom, myMesh;
269   TCollection_AsciiString       myCreationMethod, myType;
270   TColStd_SequenceOfAsciiString myArgs;
271   TColStd_SequenceOfAsciiString myArgMethods;
272   TColStd_SequenceOfInteger     myNbArgsByMethod;
273   std::list<Handle(_pyCommand)>  myArgCommands;
274   std::list<Handle(_pyCommand)>  myUnknownCommands;
275 public:
276   _pyHypothesis(const Handle(_pyCommand)& theCreationCmd);
277   void SetDimMethodType(const int dim, const char* creationMethod, const char* type=0)
278   { myDim = dim; myCreationMethod = (char*)creationMethod; if ( type ) myType = (char*)type; }
279   void AddArgMethod(const char* method, const int nbArgs = 1)
280   { myArgMethods.Append( (char*)method ); myNbArgsByMethod.Append( nbArgs ); }
281   const TColStd_SequenceOfAsciiString& GetArgs() const { return myArgs; }
282   const TCollection_AsciiString& GetCreationMethod() const { return myCreationMethod; }
283   const std::list<Handle(_pyCommand)>& GetArgCommands() const { return myArgCommands; }
284   void ClearAllCommands();
285   virtual bool IsAlgo() const { return myIsAlgo; }
286   bool IsWrapped() const { return myIsWrapped; }
287   bool & IsConverted() { return myIsConverted; }
288   int GetDim() const { return myDim; }
289   const _pyID & GetGeom() const { return myGeom; }
290   void SetMesh( const _pyID& theMeshId) { if ( myMesh.IsEmpty() ) myMesh = theMeshId; }
291   const _pyID & GetMesh() const { return myMesh; }
292   const TCollection_AsciiString GetType() { return myType; }
293   bool IsWrappable(const _pyID& theMesh) { return !myIsWrapped && myMesh == theMesh; }
294   virtual bool Addition2Creation( const Handle(_pyCommand)& theAdditionCmd,
295                                   const _pyID&              theMesh);
296   static Handle(_pyHypothesis) NewHypothesis( const Handle(_pyCommand)& theCreationCmd);
297   //     bool HasMesh() const { return !myMesh.IsEmpty(); }
298   //     void SetGeom( const _pyID& theGeomID ) { myGeom = theGeomID; }
299   void Process( const Handle(_pyCommand)& theCommand);
300   void Flush();
301
302   DEFINE_STANDARD_RTTI (_pyHypothesis)
303 };
304
305 // -------------------------------------------------------------------------------------
306 /*!
307  * \brief Class for hypotheses having several parameters modified by one method
308  */
309 // -------------------------------------------------------------------------------------
310 class _pyComplexParamHypo: public _pyHypothesis
311 {
312 public:
313   _pyComplexParamHypo(const Handle(_pyCommand)& theCreationCmd): _pyHypothesis(theCreationCmd) {}
314   void Process( const Handle(_pyCommand)& theCommand);
315
316   DEFINE_STANDARD_RTTI (_pyComplexParamHypo)
317 };
318 DEFINE_STANDARD_HANDLE (_pyComplexParamHypo, _pyHypothesis);
319
320 // -------------------------------------------------------------------------------------
321 /*!
322  * \brief Class for LayerDistribution hypothesis conversion
323  */
324 // -------------------------------------------------------------------------------------
325 class _pyLayerDistributionHypo: public _pyHypothesis
326 {
327   Handle(_pyHypothesis) my1dHyp;
328 public:
329   _pyLayerDistributionHypo(const Handle(_pyCommand)& theCreationCmd):
330     _pyHypothesis(theCreationCmd) {}
331   void Process( const Handle(_pyCommand)& theCommand);
332   void Flush();
333   bool Addition2Creation( const Handle(_pyCommand)& theAdditionCmd,
334                           const _pyID&              theMesh);
335
336   DEFINE_STANDARD_RTTI (_pyLayerDistributionHypo)
337 };
338 DEFINE_STANDARD_HANDLE (_pyLayerDistributionHypo, _pyHypothesis);
339
340
341 // -------------------------------------------------------------------------------------
342 /*!
343  * \brief Class representing NumberOfSegments hypothesis
344  */
345 // -------------------------------------------------------------------------------------
346 class _pyNumberOfSegmentsHyp: public _pyHypothesis
347 {
348 public:
349   _pyNumberOfSegmentsHyp(const Handle(_pyCommand)& theCrCmd): _pyHypothesis(theCrCmd) {}
350   virtual bool Addition2Creation( const Handle(_pyCommand)& theAdditionCmd,
351                                   const _pyID&              theMesh);
352   void Flush();
353
354   DEFINE_STANDARD_RTTI (_pyNumberOfSegmentsHyp)
355 };
356 DEFINE_STANDARD_HANDLE (_pyNumberOfSegmentsHyp, _pyHypothesis);
357
358 // -------------------------------------------------------------------------------------
359 /*!
360  * \brief Class representing smesh.Mesh_Algorithm
361  */
362 // -------------------------------------------------------------------------------------
363 class _pyAlgorithm: public _pyHypothesis
364 {
365 public:
366   _pyAlgorithm(const Handle(_pyCommand)& theCreationCmd);
367   virtual bool Addition2Creation( const Handle(_pyCommand)& theAdditionCmd,
368                                   const _pyID&              theMesh);
369   const char* AccessorMethod() const { return "GetAlgorithm()"; }
370
371   DEFINE_STANDARD_RTTI (_pyAlgorithm)
372 };
373
374 #endif