Salome HOME
Updated copyright comment
[modules/kernel.git] / src / SALOMESDS / SALOMESDS_BasicDataServer.cxx
1 // Copyright (C) 2007-2024  CEA, EDF, 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 : Anthony GEAY (EDF R&D)
20
21 #include <sstream>
22 #include "SALOMESDS_BasicDataServer.hxx"
23 #include "SALOMESDS_DataScopeServer.hxx"
24 #include "SALOMESDS_Exception.hxx"
25
26 using namespace SALOMESDS;
27
28 BasicDataServer::BasicDataServer(DataScopeServerBase *father, const std::string& varName):_father(father),_var_name(varName)
29 {
30   /*PortableServer::POA_var poa(_father->getPOA());
31   PortableServer::POAManager_var pman(poa->the_POAManager());
32   CORBA::Object_var obj(_father->getORB()->resolve_initial_references("RootPOA"));
33   PortableServer::POA_var rootPOA(PortableServer::POA::_narrow(obj));
34   CORBA::PolicyList policies;
35   policies.length(1);
36   PortableServer::ThreadPolicy_var threadPol(rootPOA->create_thread_policy(PortableServer::SINGLE_THREAD_MODEL));
37   policies[0]=PortableServer::ThreadPolicy::_duplicate(threadPol);
38   std::ostringstream poaName; poaName << "POA_" <<  POA_CNT++ << "_" << _var_name;
39   _poa=rootPOA->create_POA(poaName.str().c_str(),pman,policies);
40   threadPol->destroy();*/
41 }
42
43 SALOME::DataScopeServer_ptr BasicDataServer::getMyDataScopeServer()
44 {
45   CORBA::Object_var obj(_father->getPOA()->servant_to_reference(_father));
46   return SALOME::DataScopeServer::_narrow(obj);
47 }
48
49 /*!
50  * Called remotely -> to protect against throw
51  */
52 char *BasicDataServer::getVarName()
53 {
54   return CORBA::string_dup(_var_name.c_str());
55 }
56
57 char *BasicDataServer::getScopeName()
58 {
59   return _father->getScopeName();
60 }
61
62 void BasicDataServer::Register()
63 {
64   incrRef();
65 }
66
67 void BasicDataServer::UnRegister()
68 {
69   decrRef();
70 }
71
72 void BasicDataServer::Destroy()
73 {
74   enforcedRelease();
75 }
76
77 CORBA::Long BasicDataServer::getRCValue()
78 {
79   return getCounter();
80 }
81
82 PortableServer::POA_var BasicDataServer::getPOA() const
83 {
84   return _father->getPOA();
85 }