Salome HOME
[MEDCalc] Bug fix on ParaVis dump.
[modules/med.git] / src / MEDCalc / cmp / MEDPresentationManager_i.cxx
1 // Copyright (C) 2011-2016  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, or (at your option) any later version.
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 #include "MEDPresentationManager_i.hxx"
21 #include "MEDFactoryClient.hxx"
22 #include "Basics_Utils.hxx"
23
24 // presentations
25 #include "MEDPresentationMeshView.hxx"
26 #include "MEDPresentationScalarMap.hxx"
27 #include "MEDPresentationContour.hxx"
28 #include "MEDPresentationSlices.hxx"
29 #include "MEDPresentationVectorField.hxx"
30 #include "MEDPresentationDeflectionShape.hxx"
31 #include "MEDPresentationPointSprite.hxx"
32
33 #include <SALOME_KernelServices.hxx>
34
35 #include <iostream>
36 #include <sstream>
37
38 MEDPresentationManager_i* MEDPresentationManager_i::_instance = NULL;
39
40 MEDPresentationManager_i*
41 MEDPresentationManager_i::getInstance() {
42   if ( _instance == NULL )
43     _instance = new MEDPresentationManager_i();
44   return _instance;
45 }
46
47 MEDPresentationManager_i::MEDPresentationManager_i() :
48     _presentations(),
49     _activeViewPythonId(-1)
50 {
51 }
52
53 MEDPresentationManager_i::~MEDPresentationManager_i()
54 {
55   /*
56   std::vector<MEDPresentation*>::iterator itr = this->_presentations.begin();
57   for ( ; itr != this->_presentations.end(); ++itr) {
58     delete *itr;
59     *itr = NULL;
60   }
61   this->_presentations.clear();
62   */
63 }
64
65 MEDPresentation::TypeID
66 MEDPresentationManager_i::GenerateID()
67 {
68   static MEDPresentation::TypeID START_ID = -1;
69   START_ID++;
70   return START_ID;
71 }
72
73 MEDPresentation*
74 MEDPresentationManager_i::_getPresentation(MEDPresentation::TypeID presentationID) const
75 {
76   std::map<MEDPresentation::TypeID, MEDPresentation*>::const_iterator citr = _presentations.find(presentationID);
77   if (citr == _presentations.end())
78     return NULL;
79   return (*citr).second;
80 }
81
82 void
83 MEDPresentationManager_i::setPresentationStringProperty(MEDPresentation::TypeID presentationID, const char* propName, const char* propValue)
84 {
85   MEDPresentation* pres = _getPresentation(presentationID);
86   if (pres)
87     pres->setStringProperty(propName, propValue);
88   else
89     throw KERNEL::createSalomeException("setPresentationStringProperty(): presentation not found!!");
90 }
91
92 char*
93 MEDPresentationManager_i::getPresentationStringProperty(MEDPresentation::TypeID presentationID, const char* propName)
94 {
95   MEDPresentation* pres = _getPresentation(presentationID);
96   if (pres) {
97     return (char*) pres->getStringProperty(propName).c_str();
98   }
99   else
100     throw KERNEL::createSalomeException("getPresentationStringProperty(): presentation not found!!");
101 }
102
103 void
104 MEDPresentationManager_i::setPresentationIntProperty(MEDPresentation::TypeID presentationID, const char* propName,
105                                                      const CORBA::Long propValue)
106 {
107   MEDPresentation* pres = _getPresentation(presentationID);
108   if (pres)
109     pres->setIntProperty(propName, propValue);
110   else
111     throw KERNEL::createSalomeException("setPresentationIntProperty(): presentation not found!!");
112 }
113
114 CORBA::Long
115 MEDPresentationManager_i::getPresentationIntProperty(MEDPresentation::TypeID presentationID, const char* propName)
116 {
117   MEDPresentation* pres = _getPresentation(presentationID);
118   if (pres) {
119     return (CORBA::Long) pres->getIntProperty(propName);
120   }
121   else
122     throw KERNEL::createSalomeException("getPresentationIntProperty(): presentation not found!!");
123
124 }
125
126 MEDPresentation::TypeID
127 MEDPresentationManager_i::makeMeshView(const MEDCALC::MeshViewParameters& params, const MEDCALC::ViewModeType viewMode)
128 {
129   return _makePresentation<MEDPresentationMeshView>(params, viewMode);
130 }
131
132 MEDPresentation::TypeID
133 MEDPresentationManager_i::makeScalarMap(const MEDCALC::ScalarMapParameters& params, const MEDCALC::ViewModeType viewMode)
134 {
135   return _makePresentation<MEDPresentationScalarMap>(params, viewMode);
136 }
137
138 MEDPresentation::TypeID
139 MEDPresentationManager_i::makeContour(const MEDCALC::ContourParameters& params, const MEDCALC::ViewModeType viewMode)
140 {
141   return _makePresentation<MEDPresentationContour>(params, viewMode);
142 }
143
144 MEDPresentation::TypeID
145 MEDPresentationManager_i::makeVectorField(const MEDCALC::VectorFieldParameters& params, const MEDCALC::ViewModeType viewMode)
146 {
147   return _makePresentation<MEDPresentationVectorField>(params, viewMode);
148 }
149
150 MEDPresentation::TypeID
151 MEDPresentationManager_i::makeSlices(const MEDCALC::SlicesParameters& params, const MEDCALC::ViewModeType viewMode)
152 {
153   return _makePresentation<MEDPresentationSlices>(params, viewMode);
154 }
155
156 MEDPresentation::TypeID
157 MEDPresentationManager_i::makeDeflectionShape(const MEDCALC::DeflectionShapeParameters& params, const MEDCALC::ViewModeType viewMode)
158 {
159   return _makePresentation<MEDPresentationDeflectionShape>(params, viewMode);
160 }
161
162 MEDPresentation::TypeID
163 MEDPresentationManager_i::makePointSprite(const MEDCALC::PointSpriteParameters& params, const MEDCALC::ViewModeType viewMode)
164 {
165   return _makePresentation<MEDPresentationPointSprite>(params, viewMode);
166 }
167
168 MEDCALC::MeshViewParameters
169 MEDPresentationManager_i::getMeshViewParameters(MEDPresentation::TypeID presentationID)
170 {
171   MEDCALC::MeshViewParameters p;
172   _getParameters<MEDPresentationMeshView>(presentationID, p);
173   return p;
174 }
175
176
177 MEDCALC::ScalarMapParameters*
178 MEDPresentationManager_i::getScalarMapParameters(MEDPresentation::TypeID presentationID)
179 {
180   MEDCALC::ScalarMapParameters* p = new MEDCALC::ScalarMapParameters();
181   _getParameters<MEDPresentationScalarMap>(presentationID, *p);
182   MEDCALC::ScalarMapParameters_var tmp(p);
183   return tmp._retn();
184 }
185
186 MEDCALC::ContourParameters
187 MEDPresentationManager_i::getContourParameters(MEDPresentation::TypeID presentationID)
188 {
189   MEDCALC::ContourParameters p;
190   _getParameters<MEDPresentationContour>(presentationID, p);
191   return p;
192 }
193
194 MEDCALC::SlicesParameters*
195 MEDPresentationManager_i::getSlicesParameters(MEDPresentation::TypeID presentationID)
196 {
197   MEDCALC::SlicesParameters* p = new MEDCALC::SlicesParameters();
198   _getParameters<MEDPresentationSlices>(presentationID, *p);
199   MEDCALC::SlicesParameters_var tmp(p);
200   return tmp._retn();
201 }
202
203 MEDCALC::VectorFieldParameters
204 MEDPresentationManager_i::getVectorFieldParameters(MEDPresentation::TypeID presentationID)
205 {
206   MEDCALC::VectorFieldParameters p;
207   _getParameters<MEDPresentationVectorField>(presentationID, p);
208   return p;
209 }
210
211 MEDCALC::PointSpriteParameters*
212 MEDPresentationManager_i::getPointSpriteParameters(MEDPresentation::TypeID presentationID)
213 {
214   MEDCALC::PointSpriteParameters* p = new MEDCALC::PointSpriteParameters();
215   _getParameters<MEDPresentationPointSprite>(presentationID, *p);
216   MEDCALC::PointSpriteParameters_var tmp(p);
217   return tmp._retn();
218 }
219
220 MEDCALC::DeflectionShapeParameters
221 MEDPresentationManager_i::getDeflectionShapeParameters(MEDPresentation::TypeID presentationID)
222 {
223   MEDCALC::DeflectionShapeParameters p;
224   _getParameters<MEDPresentationDeflectionShape>(presentationID, p);
225   return p;
226 }
227
228
229 void
230 MEDPresentationManager_i::updateMeshView(MEDPresentation::TypeID presentationID, const MEDCALC::MeshViewParameters& params)
231 {
232   return _updatePresentation<MEDPresentationMeshView>(presentationID, params);
233 }
234
235 void
236 MEDPresentationManager_i::updateScalarMap(MEDPresentation::TypeID presentationID, const MEDCALC::ScalarMapParameters& params)
237 {
238   return _updatePresentation<MEDPresentationScalarMap>(presentationID, params);
239 }
240
241 void
242 MEDPresentationManager_i::updateContour(MEDPresentation::TypeID presentationID, const MEDCALC::ContourParameters& params)
243 {
244   return _updatePresentation<MEDPresentationContour>(presentationID, params);
245 }
246
247 void
248 MEDPresentationManager_i::updateVectorField(MEDPresentation::TypeID presentationID, const MEDCALC::VectorFieldParameters& params)
249 {
250   return _updatePresentation<MEDPresentationVectorField>(presentationID, params);
251 }
252
253 void
254 MEDPresentationManager_i::updateSlices(MEDPresentation::TypeID presentationID, const MEDCALC::SlicesParameters& params)
255 {
256   return _updatePresentation<MEDPresentationSlices>(presentationID, params);
257 }
258
259 void
260 MEDPresentationManager_i::updateDeflectionShape(MEDPresentation::TypeID presentationID, const MEDCALC::DeflectionShapeParameters& params)
261 {
262   return _updatePresentation<MEDPresentationDeflectionShape>(presentationID, params);
263 }
264
265 void
266 MEDPresentationManager_i::updatePointSprite(MEDPresentation::TypeID presentationID, const MEDCALC::PointSpriteParameters& params)
267 {
268   return _updatePresentation<MEDPresentationPointSprite>(presentationID, params);
269 }
270
271 CORBA::Boolean
272 MEDPresentationManager_i::removePresentation(MEDPresentation::TypeID presentationID)
273 {
274   std::map<MEDPresentation::TypeID, MEDPresentation*>::const_iterator citr = _presentations.find(presentationID);
275   if (citr == _presentations.end()) {
276     std::cerr << "removePresentation(): presentation not found!!" << std::endl;
277     return false;
278   }
279   MEDPresentation* presentation = (*citr).second;
280   if (presentation)
281     delete presentation;
282   _presentations.erase(presentationID);
283
284   STDLOG("Presentation " << presentationID << " has been removed.");
285   return true;
286 }
287
288 CORBA::Boolean
289 MEDPresentationManager_i::activateView(MEDPresentation::TypeID presentationID)
290 {
291   std::map<MEDPresentation::TypeID, MEDPresentation*>::const_iterator citr = _presentations.find(presentationID);
292   if (citr == _presentations.end()) {
293     std::cerr << "activateView(): presentation not found!!" << std::endl;
294     return false;
295   }
296   MEDPresentation* presentation = (*citr).second;
297
298   presentation->activateView();
299   _activeViewPythonId = presentation->getPyViewID();
300   STDLOG("Activated view " << _activeViewPythonId);
301   return true;
302 }
303
304 CORBA::Long
305 MEDPresentationManager_i::getActiveViewPythonId()
306 {
307   //TODO: should be more elaborate to re-identify the active ParaView view when another
308   //mechanism than MED module has activated another view.
309   // Idea: 1/ call Python to current active view
310   //       2/ compare with all id(__viewX) from currently existing presentations
311   return _activeViewPythonId;
312 }
313
314
315 //MEDCALC::ViewModeType
316 //MEDPresentationManager_i::getPresentationViewMode(MEDPresentation::TypeID presentationID)
317 //{
318 //  MEDPresentation* pres = _getPresentation(presentationID);
319 //  if (pres) {
320 //    return pres->getViewMode();
321 //  } else {
322 //    std::cerr << "setPresentationProperty(): presentation not found!!" << std::endl;
323 //    return MEDCALC::VIEW_MODE_DEFAULT;
324 //  }
325 //}
326
327 char *
328 MEDPresentationManager_i::getParavisDump(MEDPresentation::TypeID presentationID)
329 {
330   MEDPresentation* pres = _getPresentation(presentationID);
331   if (pres) {
332     return CORBA::string_dup(pres->paravisDump().c_str());
333   }
334   else
335     throw KERNEL::createSalomeException("getParavisDump(): presentation not found!!");
336 }
337
338 MEDCALC::PresentationsList*
339 MEDPresentationManager_i::getAllPresentations()
340 {
341   MEDCALC::PresentationsList* presList = new MEDCALC::PresentationsList;
342   presList->length(_presentations.size());
343   std::map<MEDPresentation::TypeID, MEDPresentation*>::const_iterator it;
344   int i;
345   for (i = 0, it = _presentations.begin(); it != _presentations.end(); ++it, ++i)
346     (*presList)[i] = it->first;
347   return presList;
348 }