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