Salome HOME
Use a CORBA single thread model for study to avoid problems on concurrent access...
[modules/kernel.git] / src / SALOMEDS / SALOMEDS.cxx
1 // Copyright (C) 2007-2016  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 // Copyright (C) 2003-2007  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, or (at your option) any later version.
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.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22
23 //  SALOME SALOMEDS : data structure of SALOME and sources of Salome data server 
24 //  File   : SALOMEDS.cxx
25 //  Author : Sergey ANIKIN
26 //  Module : SALOME
27 //  $Header$
28 //
29 #include "SALOMEDS.hxx"
30 #include "SALOMEDS_StudyManager.hxx"
31 #include "SALOMEDS_Study.hxx"
32 #include "SALOMEDS_StudyBuilder.hxx"
33 #include "SALOMEDS_SObject.hxx"
34 #include "SALOMEDS_SComponent.hxx"
35 #include "SALOMEDSClient.hxx"
36 #include "SALOMEDSClient_IParameters.hxx"
37 #include "SALOMEDS_IParameters.hxx"
38 #include "SALOMEDS_StudyManager_i.hxx"
39 #include "utilities.h"
40
41 #include "SALOMEDS_Defines.hxx"
42
43 // IDL headers
44 #include <SALOMEconfig.h>
45 #include CORBA_SERVER_HEADER(SALOMEDS)
46 #include <SALOME_NamingService.hxx>
47
48 // PAL8065: san -- Global recursive mutex for SALOMEDS methods
49 Utils_Mutex SALOMEDS::Locker::MutexDS;
50
51 // PAL8065: san -- Global SALOMEDS locker
52 SALOMEDS::Locker::Locker()
53 : Utils_Locker( &MutexDS )
54 {}
55
56 SALOMEDS::Locker::~Locker()
57 {}
58
59 void SALOMEDS::lock()
60 {
61   Locker::MutexDS.lock();
62 }
63
64 void SALOMEDS::unlock()
65 {
66         SALOMEDS::Locker::MutexDS.unlock();
67 }
68
69
70
71 // srn: Added new library methods that create basic SALOMEDS objects (StudyManager, Study, SComponent, SObject)
72
73 //=============================================================================
74 /*!
75  * C factory, accessible with dlsym, after dlopen
76  */
77 //=============================================================================
78
79
80 extern "C"
81 {
82 SALOMEDS_EXPORT
83   SALOMEDSClient_StudyManager* StudyManagerFactory()
84 {
85   return new SALOMEDS_StudyManager();
86 }
87 SALOMEDS_EXPORT
88   SALOMEDSClient_Study* StudyFactory(SALOMEDS::Study_ptr theStudy)
89 {
90   if(CORBA::is_nil(theStudy)) return NULL;
91   return new SALOMEDS_Study(theStudy);
92 }
93
94 SALOMEDS_EXPORT
95   SALOMEDSClient_SObject* SObjectFactory(SALOMEDS::SObject_ptr theSObject)
96 {
97   if(CORBA::is_nil(theSObject)) return NULL;
98   return new SALOMEDS_SObject(theSObject);
99 }
100
101 SALOMEDS_EXPORT
102   SALOMEDSClient_SComponent* SComponentFactory(SALOMEDS::SComponent_ptr theSComponent)
103 {
104   if(CORBA::is_nil(theSComponent)) return NULL;
105   return new SALOMEDS_SComponent(theSComponent);
106 }
107
108 SALOMEDS_EXPORT
109   SALOMEDSClient_StudyBuilder* BuilderFactory(SALOMEDS::StudyBuilder_ptr theBuilder)
110 {
111   if(CORBA::is_nil(theBuilder)) return NULL;
112   return new SALOMEDS_StudyBuilder(theBuilder);
113 }
114
115 SALOMEDS_EXPORT
116   SALOMEDSClient_StudyManager* CreateStudyManager(CORBA::ORB_ptr orb, PortableServer::POA_ptr root_poa)
117 {
118   SALOME_NamingService namingService(orb);
119   CORBA::Object_var obj = namingService.Resolve( "/myStudyManager" );
120   SALOMEDS::StudyManager_var theManager = SALOMEDS::StudyManager::_narrow( obj );
121   if( CORBA::is_nil(theManager) )
122   {
123     PortableServer::POAManager_var pman = root_poa->the_POAManager();
124     CORBA::PolicyList policies;
125     policies.length(2);
126     PortableServer::ThreadPolicy_var threadPol(root_poa->create_thread_policy(PortableServer::SINGLE_THREAD_MODEL));
127     PortableServer::ImplicitActivationPolicy_var implicitPol(root_poa->create_implicit_activation_policy(PortableServer::IMPLICIT_ACTIVATION));
128     policies[0] = PortableServer::ThreadPolicy::_duplicate(threadPol);
129     policies[1] = PortableServer::ImplicitActivationPolicy::_duplicate(implicitPol);
130     PortableServer::POA_var poa = root_poa->create_POA("KERNELStudySingleThreadPOA",pman,policies);
131     MESSAGE("CreateStudyManager: KERNELStudySingleThreadPOA: "<< poa);
132     threadPol->destroy();
133
134     SALOMEDS_StudyManager_i * aStudyManager_i = new  SALOMEDS_StudyManager_i(orb, poa);
135     // Activate the objects.  This tells the POA that the objects are ready to accept requests.
136     PortableServer::ObjectId_var aStudyManager_iid =  poa->activate_object(aStudyManager_i);
137     //give ownership to the poa : the object will be deleted by the poa
138     aStudyManager_i->_remove_ref();
139     aStudyManager_i->register_name((char*)"/myStudyManager");
140   }
141   return new SALOMEDS_StudyManager();
142 }
143
144 SALOMEDS_EXPORT
145   SALOMEDSClient_IParameters* GetIParameters(const _PTR(AttributeParameter)& ap)
146 {
147   return new SALOMEDS_IParameters(ap);
148 }
149
150 SALOMEDS_EXPORT
151   SALOMEDS::SObject_ptr ConvertSObject(const _PTR(SObject)& theSObject)
152 {
153   
154   SALOMEDS_SObject* so = _CAST(SObject, theSObject);
155   if(!theSObject || !so) return SALOMEDS::SObject::_nil();
156   return so->GetSObject();
157 }
158
159 SALOMEDS_EXPORT
160   SALOMEDS::Study_ptr ConvertStudy(const _PTR(Study)& theStudy)
161 {
162   SALOMEDS_Study* study = _CAST(Study, theStudy);
163   if(!theStudy || !study) return SALOMEDS::Study::_nil();
164   return study->GetStudy();
165 }
166
167 SALOMEDS_EXPORT
168   SALOMEDS::StudyBuilder_ptr ConvertBuilder(const _PTR(StudyBuilder)& theBuilder)
169 {
170   SALOMEDS_StudyBuilder* builder = _CAST(StudyBuilder, theBuilder);
171   if(!theBuilder || !builder) return SALOMEDS::StudyBuilder::_nil(); 
172   return builder->GetBuilder();
173 }
174
175
176 }