Salome HOME
Merge branch 'abn/port_pv42' into abn/rearch
[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 #ifdef PARAVIS_WITH_FULL_CORBA
36   //------------------------------------------------------------
37   PARAVIS_Gen_i* GetParavisGen(const CAM_Module* theModule)
38   {
39     static PARAVIS_Gen_i* aGen = NULL;
40     if(!aGen){
41       SALOME_LifeCycleCORBA aLCC(SalomeApp_Application::namingService());
42       Engines::EngineComponent_var aComponent = aLCC.FindOrLoad_Component("FactoryServer","PARAVIS");
43       PARAVIS_Gen_var aPARAVIS = PARAVIS_Gen::_narrow(aComponent);
44       if(!CORBA::is_nil(aPARAVIS)){
45         aGen = PARAVIS_Gen_i::GetParavisGenImpl();
46       }
47     }
48     if(!aGen)
49       throw std::runtime_error("Can not create PARAVIS_Gen");
50     return aGen;
51   }
52 #endif
53
54   //------------------------------------------------------------
55   _PTR(Study) GetCStudy(const CAM_Module* theModule)
56   {
57     if (theModule && theModule->application()) {
58       SalomeApp_Study* activeStudy = 
59         dynamic_cast<SalomeApp_Study*>(theModule->application()->activeStudy());
60       if (activeStudy) {
61         return activeStudy->studyDS();
62       }
63     }
64     
65     return _PTR(Study)();
66   }
67 }