Salome HOME
Fixed incorrect check in method DefineComponentInstance
[modules/kernel.git] / src / SALOMEDS / SALOMEDS.cxx
1 //  SALOME SALOMEDS : data structure of SALOME and sources of Salome data server 
2 //
3 //  Copyright (C) 2003  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. 
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 //
24 //  File   : SALOMEDS.cxx
25 //  Author : Sergey ANIKIN
26 //  Module : SALOME
27 //  $Header$
28
29 #ifdef WNT
30 #include <SALOMEDS.hxx>
31 #include <SALOMEDS_StudyManager.hxx>
32 #include <SALOMEDS_Study.hxx>
33 #include <SALOMEDS_SObject.hxx>
34 #include <SALOMEDS_StudyBuilder.hxx>
35 #include <SALOMEDS_SComponent.hxx>
36 #include <SALOMEDSClient.hxx>
37 #include <SALOMEDSClient_IParameters.hxx>
38 #include <SALOMEDS_IParameters.hxx>
39 #include <SALOMEDS_StudyManager_i.hxx>
40 #else
41 #include "SALOMEDS.hxx"
42 #include "SALOMEDS_StudyManager.hxx"
43 #include "SALOMEDS_Study.hxx"
44 #include "SALOMEDS_StudyBuilder.hxx"
45 #include "SALOMEDS_SObject.hxx"
46 #include "SALOMEDS_SComponent.hxx"
47 #include "SALOMEDSClient.hxx"
48 #include "SALOMEDSClient_IParameters.hxx"
49 #include "SALOMEDS_IParameters.hxx"
50 #include "SALOMEDS_StudyManager_i.hxx"
51 #endif
52
53 #include "SALOMEDS_Defines.hxx"
54
55 // IDL headers
56 #include <SALOMEconfig.h>
57 #include CORBA_SERVER_HEADER(SALOMEDS)
58 #include <SALOME_NamingService.hxx>
59
60 using namespace SALOMEDS;
61
62 // PAL8065: san -- Global recursive mutex for SALOMEDS methods
63 Utils_Mutex Locker::MutexDS;
64
65 // PAL8065: san -- Global SALOMEDS locker
66 Locker::Locker()
67 : Utils_Locker( &MutexDS )
68 {}
69
70 Locker::~Locker()
71 {}
72
73 void SALOMEDS::lock()
74 {
75   Locker::MutexDS.lock();
76 }
77
78 void SALOMEDS::unlock()
79 {
80   Locker::MutexDS.unlock();
81 }
82
83
84
85 // srn: Added new library methods that create basic SALOMEDS objects (StudyManager, Study, SComponent, SObject)
86
87 //=============================================================================
88 /*!
89  * C factory, accessible with dlsym, after dlopen
90  */
91 //=============================================================================
92
93
94 extern "C"
95 {
96 SALOMEDS_EXPORT
97   SALOMEDSClient_StudyManager* StudyManagerFactory()
98 {
99   return new SALOMEDS_StudyManager();
100 }
101 SALOMEDS_EXPORT
102   SALOMEDSClient_Study* StudyFactory(SALOMEDS::Study_ptr theStudy)
103 {
104   if(CORBA::is_nil(theStudy)) return NULL;
105   return new SALOMEDS_Study(theStudy);
106 }
107
108 SALOMEDS_EXPORT
109   SALOMEDSClient_SObject* SObjectFactory(SALOMEDS::SObject_ptr theSObject)
110 {
111   if(CORBA::is_nil(theSObject)) return NULL;
112   return new SALOMEDS_SObject(theSObject);
113 }
114
115 SALOMEDS_EXPORT
116   SALOMEDSClient_SComponent* SComponentFactory(SALOMEDS::SComponent_ptr theSComponent)
117 {
118   if(CORBA::is_nil(theSComponent)) return NULL;
119   return new SALOMEDS_SComponent(theSComponent);
120 }
121
122 SALOMEDS_EXPORT
123   SALOMEDSClient_StudyBuilder* BuilderFactory(SALOMEDS::StudyBuilder_ptr theBuilder)
124 {
125   if(CORBA::is_nil(theBuilder)) return NULL;
126   return new SALOMEDS_StudyBuilder(theBuilder);
127 }
128
129 SALOMEDS_EXPORT
130   SALOMEDSClient_StudyManager* CreateStudyManager(CORBA::ORB_ptr orb, PortableServer::POA_ptr root_poa)
131 {
132   SALOME_NamingService namingService(orb);
133   CORBA::Object_var obj = namingService.Resolve( "/myStudyManager" );
134   SALOMEDS::StudyManager_var theManager = SALOMEDS::StudyManager::_narrow( obj );
135   if( CORBA::is_nil(theManager) ) {
136     SALOMEDS_StudyManager_i * aStudyManager_i = new  SALOMEDS_StudyManager_i(orb, root_poa);
137     // Activate the objects.  This tells the POA that the objects are ready to accept requests.
138     PortableServer::ObjectId_var aStudyManager_iid =  root_poa->activate_object(aStudyManager_i);
139     aStudyManager_i->register_name("/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 }