Salome HOME
1147ba66586834e89fd05e10d293e10a2ccf7246
[modules/kernel.git] / src / SALOMESDS / SALOMESDS_DataScopeServer.hxx
1 // Copyright (C) 2007-2014  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 #ifndef __SALOMESDS_DATASCOPEERVER_HXX__
22 #define __SALOMESDS_DATASCOPEERVER_HXX__
23
24 #include "SALOMEconfig.h"
25 #include CORBA_SERVER_HEADER(SALOME_SDS)
26
27 #include "SALOMESDS_RefCountServ.hxx"
28 #include "SALOMESDS_AutoRefCountPtr.hxx"
29 #include "SALOMESDS_BasicDataServer.hxx"
30
31 #include <Python.h>
32
33 #include <string>
34 #include <vector>
35 #include <list>
36
37 namespace SALOMESDS
38 {
39   class DataScopeServer : public virtual POA_SALOME::DataScopeServer
40   {
41   public:
42     DataScopeServer(CORBA::ORB_ptr orb, const std::string& scopeName);
43     DataScopeServer(const DataScopeServer& other);
44     void ping();
45     char *getScopeName();
46     SALOME::StringVec *listVars();
47     SALOME::BasicDataServer_ptr retrieveVar(const char *varName);
48     void deleteVar(const char *varName);
49     SALOME::PickelizedPyObjRdOnlyServer_ptr createRdOnlyVar(const char *varName, const SALOME::ByteVec& constValue);
50     SALOME::PickelizedPyObjRdExtServer_ptr createRdExtVar(const char *varName, const SALOME::ByteVec& constValue);
51     SALOME::PickelizedPyObjRdWrServer_ptr createRdWrVar(const char *typeName, const char *varName);
52     void shutdownIfNotHostedByDSM();
53     ~DataScopeServer();
54   public:
55     void initializePython(int argc, char *argv[]);
56     void registerToSalomePiDict() const;
57     void setPOAAndRegister(PortableServer::POA_var poa, SALOME::DataScopeServer_ptr ptr);
58     PyObject *getGlobals() const { return _globals; }
59     PyObject *getLocals() const { return _locals; }
60     PyObject *getPickler() const { return _pickler; }
61     PortableServer::POA_var getPOA() { return _poa; }
62     static std::string BuildTmpVarNameFrom(const std::string& varName);
63   private:
64     std::vector< std::string> getAllVarNames() const;
65     CORBA::Object_var activateWithDedicatedPOA(BasicDataServer *ds);
66     void checkNotAlreadyExistingVar(const std::string& varName);
67   private:
68     PyObject *_globals;
69     PyObject *_locals;
70     PyObject *_pickler;
71     PortableServer::POA_var _poa;
72     CORBA::ORB_var _orb;
73     std::string _name;
74     std::list< std::pair< SALOME::BasicDataServer_var, BasicDataServer * > > _vars;
75     static std::size_t COUNTER;
76   };
77 }
78
79 #endif