Salome HOME
Merge 'master' branch into 'V9_dev' branch
[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_Study.hxx"
31 #include "SALOMEDS_Study_i.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
39 #include "SALOMEDS_Defines.hxx"
40
41 // IDL headers
42 #include <SALOMEconfig.h>
43 #include CORBA_SERVER_HEADER(SALOMEDS)
44 #include <SALOME_NamingService.hxx>
45
46 // PAL8065: san -- Global recursive mutex for SALOMEDS methods
47 Utils_Mutex SALOMEDS::Locker::MutexDS;
48
49 // PAL8065: san -- Global SALOMEDS locker
50 SALOMEDS::Locker::Locker()
51 : Utils_Locker( &MutexDS )
52 {}
53
54 SALOMEDS::Locker::~Locker()
55 {}
56
57 void SALOMEDS::lock()
58 {
59   Locker::MutexDS.lock();
60 }
61
62 void SALOMEDS::unlock()
63 {
64   SALOMEDS::Locker::MutexDS.unlock();
65 }
66
67 // srn: Added new library methods that create basic SALOMEDS objects (Study, SComponent, SObject)
68
69 //=============================================================================
70 /*!
71  * C factory, accessible with dlsym, after dlopen
72  */
73 //=============================================================================
74
75
76 extern "C"
77 {
78   SALOMEDS_EXPORT
79   SALOMEDSClient_Study* StudyFactory(SALOMEDS::Study_ptr theStudy)
80   {
81     if(CORBA::is_nil(theStudy)) return NULL;
82     return new SALOMEDS_Study(theStudy);
83   }
84
85   SALOMEDS_EXPORT
86   SALOMEDSClient_SObject* SObjectFactory(SALOMEDS::SObject_ptr theSObject)
87   {
88     if(CORBA::is_nil(theSObject)) return NULL;
89     return new SALOMEDS_SObject(theSObject);
90   }
91
92   SALOMEDS_EXPORT
93   SALOMEDSClient_SComponent* SComponentFactory(SALOMEDS::SComponent_ptr theSComponent)
94   {
95     if(CORBA::is_nil(theSComponent)) return NULL;
96     return new SALOMEDS_SComponent(theSComponent);
97   }
98
99   SALOMEDS_EXPORT
100   SALOMEDSClient_StudyBuilder* BuilderFactory(SALOMEDS::StudyBuilder_ptr theBuilder)
101   {
102     if(CORBA::is_nil(theBuilder)) return NULL;
103     return new SALOMEDS_StudyBuilder(theBuilder);
104   }
105
106   SALOMEDS_EXPORT
107   void CreateStudy(CORBA::ORB_ptr orb, PortableServer::POA_ptr root_poa)
108   {
109     SALOME_NamingService namingService(orb);
110     CORBA::Object_var obj = namingService.Resolve( "/Study" );
111     SALOMEDS::Study_var aStudy = SALOMEDS::Study::_narrow( obj );
112     if( CORBA::is_nil(aStudy) ) {
113       SALOMEDS_Study_i* aStudy_i = new SALOMEDS_Study_i(orb);
114
115       // Activate the objects.  This tells the POA that the objects are ready to accept requests.
116       PortableServer::ObjectId_var aStudy_iid =  root_poa->activate_object(aStudy_i);
117       aStudy = aStudy_i->_this();
118       namingService.Register(aStudy, "/Study");
119       aStudy_i->GetImpl()->GetDocument()->SetModified(false);
120       aStudy_i->_remove_ref();
121     }
122   }
123
124   SALOMEDS_EXPORT
125   SALOMEDSClient_IParameters* GetIParameters(const _PTR(AttributeParameter)& ap)
126   {
127     return new SALOMEDS_IParameters(ap);
128   }
129
130   SALOMEDS_EXPORT
131   SALOMEDS::SObject_ptr ConvertSObject(const _PTR(SObject)& theSObject)
132   {
133     SALOMEDS_SObject* so = _CAST(SObject, theSObject);
134     if ( !theSObject || !so )
135       return SALOMEDS::SObject::_nil();
136     return so->GetSObject();
137   }
138
139   SALOMEDS_EXPORT
140   SALOMEDS::StudyBuilder_ptr ConvertBuilder(const _PTR(StudyBuilder)& theBuilder)
141   {
142     SALOMEDS_StudyBuilder* builder = _CAST(StudyBuilder, theBuilder);
143     if ( !theBuilder || !builder )
144       return SALOMEDS::StudyBuilder::_nil();
145     return builder->GetBuilder();
146   }
147 }