Salome HOME
yfr : merge 1.2
[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_MaxElementArea_i.hxx"
42 #include "SMESH_Regular_1D_i.hxx"
43 #include "SMESH_MEFISTO_2D_i.hxx"
44 #include "SMESH_Quadrangle_2D_i.hxx"
45 #include "SMESH_Hexa_3D_i.hxx"
46
47 //---------------------------------------
48
49 //=============================================================================
50 /*!
51  * Specific Hypothesis Creators are generated with a template which inherits a
52  * generic hypothesis creator. Each creator returns an hypothesis of the type
53  * given in the template. 
54  */
55 //=============================================================================
56
57 template <class T> class HypothesisCreator_i: public GenericHypothesisCreator_i
58 {
59 public:
60   virtual SMESH_Hypothesis_i* Create (const char* anHyp,
61                                       int studyId,
62                                       ::SMESH_Gen* genImpl) 
63   {
64     return new T(anHyp, studyId, genImpl);
65   };
66 };
67
68 //=============================================================================
69 /*!
70  * Constructor: instanciate specific hypothesis creators, fill a private map
71  * indexed by hypothesis names. THIS METHOD MUST BE COMPLETED WHEN A NEW
72  * HYPOTHESIS IS ADDED. 
73  * Specific hypothesis creator are defined with the above template.
74  * Hypothesis names are related to the corresponding class names:
75  * prefix = SMESH_ ; suffix = _i .
76  */
77 //=============================================================================
78
79 SMESH_HypothesisFactory_i::SMESH_HypothesisFactory_i()
80 {
81 // Add new hypothesis here (creators)
82 //---------------------------------------
83 _creatorMap["LocalLength"] = new HypothesisCreator_i<SMESH_LocalLength_i>;
84 _creatorMap["NumberOfSegments"] = new HypothesisCreator_i<SMESH_NumberOfSegments_i>;
85 _creatorMap["MaxElementArea"] = new HypothesisCreator_i<SMESH_MaxElementArea_i>;
86 _creatorMap["Regular_1D"] = new HypothesisCreator_i<SMESH_Regular_1D_i>;
87 _creatorMap["MEFISTO_2D"] = new HypothesisCreator_i<SMESH_MEFISTO_2D_i>;
88 _creatorMap["Quadrangle_2D"] = new HypothesisCreator_i<SMESH_Quadrangle_2D_i>;
89 _creatorMap["Hexa_3D"] = new HypothesisCreator_i<SMESH_Hexa_3D_i>;
90
91 //---------------------------------------
92 }
93
94 //=============================================================================
95 /*!
96  * Destructor: deletes specific hypothesis creators instanciated in the
97  * constructor.
98  */
99 //=============================================================================
100
101 SMESH_HypothesisFactory_i::~SMESH_HypothesisFactory_i()
102 {
103   map<string, GenericHypothesisCreator_i*>::iterator it;
104   for (it = _creatorMap.begin(); it !=  _creatorMap.end(); it++)
105     {
106       delete (*it).second;
107     }
108   _creatorMap.clear();
109 }
110
111 //=============================================================================
112 /*!
113  *
114  */
115 //=============================================================================
116
117 SMESH_Hypothesis_i* SMESH_HypothesisFactory_i::Create(const char* anHyp,
118                                                       CORBA::Long studyId,
119                                                       ::SMESH_Gen* genImpl)
120   throw (SALOME::SALOME_Exception)
121 {
122   MESSAGE("SMESH_HypothesisFactory::Create " << anHyp);
123   if (_creatorMap.find(anHyp) == _creatorMap.end())
124     {
125       MESSAGE("levee exception CORBA");
126       THROW_SALOME_CORBA_EXCEPTION("bad hypothesis type name", \
127                                    SALOME::BAD_PARAM);
128     }
129   SMESH_Hypothesis_i* myHyp = _creatorMap[anHyp]->Create(anHyp,
130                                                          studyId,
131                                                          genImpl);
132   return myHyp;
133 }
134
135