Salome HOME
Merge branch 'omu/SalomeLauncher'
[modules/kernel.git] / src / SALOMESDS / SALOMESDS_BasicDataServer.cxx
1 // Copyright (C) 2007-2015  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(DataScopeServer *father, const std::string& varName):_father(father),_var_name(varName)
30 {
31 }
32
33 SALOME::DataScopeServer_ptr BasicDataServer::getMyDataScopeServer()
34 {
35   CORBA::Object_var obj(getPOA()->servant_to_reference(_father));
36   return SALOME::DataScopeServer::_narrow(obj);
37 }
38
39 /*!
40  * Called remotely -> to protect against throw
41  */
42 char *BasicDataServer::getVarName()
43 {
44   return CORBA::string_dup(_var_name.c_str());
45 }
46
47 char *BasicDataServer::getScopeName()
48 {
49   return _father->getScopeName();
50 }
51
52 void BasicDataServer::Register()
53 {
54   incrRef();
55 }
56
57 void BasicDataServer::UnRegister()
58 {
59   decrRef();
60 }
61
62 void BasicDataServer::Destroy()
63 {
64   enforcedRelease();
65 }
66
67 PortableServer::POA_var BasicDataServer::getPOA()
68 {
69   return _father->getPOA();
70 }