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