Salome HOME
updating or adding when merging in the main trunk with the version in the
[modules/smesh.git] / src / SMESH_I / SMESH_HypothesisFactory_i.cxx
1 //  SMESH SMESH_I : idl implementation based on 'SMESH' unit's calsses
2 //
3 //  Copyright (C) 2003  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 //  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS 
5 // 
6 //  This library is free software; you can redistribute it and/or 
7 //  modify it under the terms of the GNU Lesser General Public 
8 //  License as published by the Free Software Foundation; either 
9 //  version 2.1 of the License. 
10 // 
11 //  This library is distributed in the hope that it will be useful, 
12 //  but WITHOUT ANY WARRANTY; without even the implied warranty of 
13 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU 
14 //  Lesser General Public License for more details. 
15 // 
16 //  You should have received a copy of the GNU Lesser General Public 
17 //  License along with this library; if not, write to the Free Software 
18 //  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
19 // 
20 //  See http://www.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org 
21 //
22 //
23 //
24 //  File   : SMESH_HypothesisFactory_i.cxx
25 //  Author : Paul RASCLE, EDF
26 //  Module : SMESH
27 //  $Header$
28
29 using namespace std;
30 using namespace std;
31 #include "SMESH_HypothesisFactory_i.hxx"
32 #include "SMESH_Hypothesis_i.hxx"
33
34 #include "Utils_CorbaException.hxx"
35 #include "utilities.h"
36
37 // Add new hypothesis here (include file)
38 //---------------------------------------
39 #include "SMESH_LocalLength_i.hxx"
40 #include "SMESH_NumberOfSegments_i.hxx"
41 #include "SMESH_LengthFromEdges_i.hxx"
42 #include "SMESH_MaxElementArea_i.hxx"
43 #include "SMESH_MaxElementVolume_i.hxx"
44 #include "SMESH_Regular_1D_i.hxx"
45 #include "SMESH_MEFISTO_2D_i.hxx"
46 #include "SMESH_Quadrangle_2D_i.hxx"
47 #include "SMESH_Hexa_3D_i.hxx"
48 #include "SMESH_NETGEN_3D_i.hxx"
49
50 //---------------------------------------
51
52 //=============================================================================
53 /*!
54  * Specific Hypothesis Creators are generated with a template which inherits a
55  * generic hypothesis creator. Each creator returns an hypothesis of the type
56  * given in the template. 
57  */
58 //=============================================================================
59
60 template <class T> class HypothesisCreator_i: public GenericHypothesisCreator_i
61 {
62 public:
63   virtual SMESH_Hypothesis_i* Create (const char* anHyp,
64                                       int studyId,
65                                       ::SMESH_Gen* genImpl) 
66   {
67     return new T(anHyp, studyId, genImpl);
68   };
69 };
70
71 //=============================================================================
72 /*!
73  * Constructor: instanciate specific hypothesis creators, fill a private map
74  * indexed by hypothesis names. THIS METHOD MUST BE COMPLETED WHEN A NEW
75  * HYPOTHESIS IS ADDED. 
76  * Specific hypothesis creator are defined with the above template.
77  * Hypothesis names are related to the corresponding class names:
78  * prefix = SMESH_ ; suffix = _i .
79  */
80 //=============================================================================
81
82 SMESH_HypothesisFactory_i::SMESH_HypothesisFactory_i()
83 {
84 // Add new hypothesis here (creators)
85 //---------------------------------------
86 _creatorMap["LocalLength"] = new HypothesisCreator_i<SMESH_LocalLength_i>;
87 _creatorMap["NumberOfSegments"] = new HypothesisCreator_i<SMESH_NumberOfSegments_i>;
88 _creatorMap["LengthFromEdges"] = new HypothesisCreator_i<SMESH_LengthFromEdges_i>;
89 _creatorMap["MaxElementArea"] = new HypothesisCreator_i<SMESH_MaxElementArea_i>;
90 _creatorMap["MaxElementVolume"] = new HypothesisCreator_i<SMESH_MaxElementVolume_i>;
91 _creatorMap["Regular_1D"] = new HypothesisCreator_i<SMESH_Regular_1D_i>;
92 _creatorMap["MEFISTO_2D"] = new HypothesisCreator_i<SMESH_MEFISTO_2D_i>;
93 _creatorMap["Quadrangle_2D"] = new HypothesisCreator_i<SMESH_Quadrangle_2D_i>;
94 _creatorMap["Hexa_3D"] = new HypothesisCreator_i<SMESH_Hexa_3D_i>;
95 _creatorMap["NETGEN_3D"] = new HypothesisCreator_i<SMESH_NETGEN_3D_i>;
96
97 //---------------------------------------
98 }
99
100 //=============================================================================
101 /*!
102  * Destructor: deletes specific hypothesis creators instanciated in the
103  * constructor.
104  */
105 //=============================================================================
106
107 SMESH_HypothesisFactory_i::~SMESH_HypothesisFactory_i()
108 {
109   map<string, GenericHypothesisCreator_i*>::iterator it;
110   for (it = _creatorMap.begin(); it !=  _creatorMap.end(); it++)
111     {
112       delete (*it).second;
113     }
114   _creatorMap.clear();
115 }
116
117 //=============================================================================
118 /*!
119  *
120  */
121 //=============================================================================
122
123 SMESH_Hypothesis_i* SMESH_HypothesisFactory_i::Create(const char* anHyp,
124                                                       CORBA::Long studyId,
125                                                       ::SMESH_Gen* genImpl)
126   throw (SALOME::SALOME_Exception)
127 {
128   MESSAGE("SMESH_HypothesisFactory::Create " << anHyp);
129   if (_creatorMap.find(anHyp) == _creatorMap.end())
130     {
131       MESSAGE("levee exception CORBA");
132       THROW_SALOME_CORBA_EXCEPTION("bad hypothesis type name", \
133                                    SALOME::BAD_PARAM);
134     }
135   SMESH_Hypothesis_i* myHyp = _creatorMap[anHyp]->Create(anHyp,
136                                                          studyId,
137                                                          genImpl);
138   return myHyp;
139 }
140
141