Salome HOME
Merge branch V7_3_1_BR
[modules/paravis.git] / src / PVGUI / PVGUI_Tools.cxx
1 // Copyright (C) 2010-2014  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 //  File   : PVGUI_Tools.cxx
20 //  Author : Vitaly Smetannikov
21 //  Module : PARAVIS
22
23 #include "PVGUI_Tools.h"
24 #include "CAM_Module.h"
25 #include "SALOME_LifeCycleCORBA.hxx"
26 #include "SalomeApp_Application.h"
27 #include "SalomeApp_Study.h"
28 #include <stdexcept>
29
30 using namespace std;
31
32 //=============================================================================
33 namespace PARAVIS
34 {
35   //------------------------------------------------------------
36   PARAVIS_Gen_i* GetParavisGen(const CAM_Module* theModule)
37   {
38     static PARAVIS_Gen_i* aGen = NULL;
39     if(!aGen){
40       SALOME_LifeCycleCORBA aLCC(SalomeApp_Application::namingService());
41       Engines::EngineComponent_var aComponent = aLCC.FindOrLoad_Component("FactoryServer","PARAVIS");
42       PARAVIS_Gen_var aPARAVIS = PARAVIS_Gen::_narrow(aComponent);
43       if(!CORBA::is_nil(aPARAVIS)){
44         aGen = PARAVIS_Gen_i::GetParavisGenImpl();
45       }
46     }
47     if(!aGen)
48       throw std::runtime_error("Can not create PARAVIS_Gen");
49     return aGen;
50   }
51
52   //------------------------------------------------------------
53   _PTR(Study) GetCStudy(const CAM_Module* theModule)
54   {
55     if (theModule && theModule->application()) {
56       SalomeApp_Study* activeStudy = 
57         dynamic_cast<SalomeApp_Study*>(theModule->application()->activeStudy());
58       if (activeStudy) {
59         return activeStudy->studyDS();
60       }
61     }
62     
63     return _PTR(Study)();
64   }
65 }