Salome HOME
Merge changes from 'master' branch.
[modules/kernel.git] / src / KernelHelpers / SALOME_KernelServices.cxx
1 // Copyright (C) 2007-2016  CEA/DEN, EDF R&D, OPEN CASCADE
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 // Author: Guillaume Boulant (EDF/R&D) 
20
21 #include "SALOME_KernelServices.hxx"
22
23 namespace KERNEL {
24   
25   /**
26    * This function returns a static reference to the orb. The orb can
27    * be used for example to initialize CORBA variables or to serialize
28    * and unserialize the CORBA objet to/from an IOR string.
29    */
30   CORBA::ORB_ptr getORB() {
31     static CORBA::ORB_ptr orb;
32     if(CORBA::is_nil(orb)){
33       int argc=0;
34       orb = CORBA::ORB_init(argc,0);
35     }
36     return orb;
37   }
38   
39   /**
40    * This function returns a static reference to the SALOME naming service.
41    */
42   SALOME_NamingService * getNamingService() {
43     static SALOME_NamingService * namingService;
44     if ( namingService == NULL ) {
45       namingService = new SALOME_NamingService(getORB());
46     }
47     return namingService;
48   }
49   
50   /**
51    * This function returns a static reference to the SALOME life cycle CORBA.
52    */
53   SALOME_LifeCycleCORBA * getLifeCycleCORBA() {
54     static SALOME_LifeCycleCORBA * lifeCycleCORBA;
55     if ( lifeCycleCORBA == NULL ) {
56       SALOME_NamingService *aNamingService = getNamingService();
57       lifeCycleCORBA = new SALOME_LifeCycleCORBA(aNamingService);
58     }
59     return lifeCycleCORBA;
60   }
61
62
63   /**
64    * This returns a static reference to the SALOME study. The
65    * study can be used to get informations about it.
66    */
67   SALOMEDS::Study_ptr getStudyServant() {
68     static SALOMEDS::Study_ptr aStudy;
69     if(CORBA::is_nil(aStudy)){
70       SALOME_NamingService *aNamingService = getNamingService();
71       CORBA::Object_ptr anObject = aNamingService->Resolve("/Study");
72       aStudy = SALOMEDS::Study::_narrow(anObject);
73     }
74     return aStudy;
75   }
76
77   /**
78    * This returns a static reference to the SALOME session. The
79    * SALOME session can be used to retrieve some objects of the
80    * current session, as the SALOME study.
81    */
82   SALOME::Session_ptr getSalomeSession() {
83     static SALOME::Session_ptr salomeSession;
84     if(CORBA::is_nil(salomeSession)){
85       SALOME_NamingService *aNamingService = getNamingService();
86       CORBA::Object_ptr obj = aNamingService->Resolve("/Kernel/Session");
87       salomeSession = SALOME::Session::_narrow(obj);
88     }
89     return salomeSession;
90   }
91
92   /**
93    * This returns a static reference to the SALOME launcher. The
94    * SALOME launcher can be used to schedule jobs, local or remote,
95    * using a batch system or not (see SALOME documentation).
96    */
97   Engines::SalomeLauncher_ptr getSalomeLauncher() {
98     //LOG("KERNEL_services::getSalomeLauncher()");
99     static Engines::SalomeLauncher_ptr salomeLauncher;
100     if(CORBA::is_nil(salomeLauncher)){
101       //LOG("KERNEL_services::getSalomeLauncher(): creating the static instance");
102       SALOME_NamingService *aNamingService = getNamingService();
103       CORBA::Object_ptr obj = aNamingService->Resolve("/SalomeLauncher");
104       salomeLauncher = Engines::SalomeLauncher::_narrow(obj);
105     }
106     return salomeLauncher;
107   }
108
109   Engines::ResourcesManager_ptr getResourcesManager() {
110     static Engines::ResourcesManager_ptr resourcesManager;
111     if(CORBA::is_nil(resourcesManager)){
112       SALOME_NamingService *aNamingService = getNamingService();
113       CORBA::Object_ptr obj = aNamingService->Resolve("/ResourcesManager");
114       resourcesManager = Engines::ResourcesManager::_narrow(obj);
115     }
116     return resourcesManager;
117   }
118
119   /**
120    * This function retrieve the CORBA object reference from the study
121    * object wrapping it.
122    */
123   CORBA::Object_ptr SObjectToObject(SALOMEDS::SObject_ptr theSObject) {
124
125     SALOMEDS::GenericAttribute_var anAttr;
126     CORBA::Object_var anObject;
127     if(CORBA::is_nil(theSObject))
128       return anObject;
129     try{
130       if(theSObject->FindAttribute(anAttr, "AttributeIOR")){
131         SALOMEDS::AttributeIOR_var anIOR  = SALOMEDS::AttributeIOR::_narrow(anAttr);
132         CORBA::String_var aValue = anIOR->Value();
133         CORBA::ORB_ptr anORB = getORB();
134         if(strcmp(aValue,"") != 0)
135           anObject = anORB->string_to_object(aValue);
136       }
137     }catch(...){
138       INFOS("SObjectToObject - Unknown exception has occurred!!!");
139     }
140     return anObject._retn();
141   }
142
143   /*!
144    * This function provides a CORBA pointer to a servant from its IOR
145    * given as a string of characters.
146    */
147   CORBA::Object_ptr IORToObject(char * IOR) {
148     return getORB()->string_to_object(IOR);
149   }
150
151   //
152   // __GBO__ See the file ./src/SMESHGUI/SMESHGUI_Utils.h of SMESH_SRC
153   // for other helper functions
154   //
155
156   SALOME::SALOME_Exception createSalomeException(const char * text) {
157     SALOME::ExceptionStruct es;
158     es.type = SALOME::INTERNAL_ERROR;
159     es.text = CORBA::string_dup(text);
160     return SALOME::SALOME_Exception(es);
161   }
162
163 }