Salome HOME
Kernel evolution for salome gui without neither NS nor other servers.
[modules/kernel.git] / src / NamingService / SALOME_NamingService.hxx
1 // Copyright (C) 2007-2020  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 // Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 //
6 // This library is free software; you can redistribute it and/or
7 // modify it under the terms of the GNU Lesser General Public
8 // License as published by the Free Software Foundation; either
9 // version 2.1 of the License, or (at your option) any later version.
10 //
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 // Lesser General Public License for more details.
15 //
16 // You should have received a copy of the GNU Lesser General Public
17 // License along with this library; if not, write to the Free Software
18 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 //
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22
23 //  SALOME NamingService : wrapping NamingService services
24 //  File   : SALOME_NamingService.hxx
25 //  Author : Estelle Deville
26 //  Module : SALOME
27 //  $Header$
28 //
29 #ifndef SALOME_NAMINGSERVICE_H
30 #define SALOME_NAMINGSERVICE_H
31
32 #include <SALOMEconfig.h>
33 #include CORBA_CLIENT_HEADER(SALOME_ContainerManager)
34 #include CORBA_CLIENT_HEADER(SALOME_Component)
35
36 #include <vector>
37 #include <string>
38 #include "Utils_Mutex.hxx"
39 #include "ServiceUnreachable.hxx"
40
41 #include "SALOME_NamingService_Abstract.hxx"
42
43 #ifdef WIN32
44 //#pragma warning(disable:4290) // Warning Exception ...
45 #endif
46
47 class NAMINGSERVICE_EXPORT SALOME_NamingService : public SALOME_NamingService_Abstract
48 {
49 public:
50   SALOME_NamingService();
51   SALOME_NamingService(CORBA::ORB_ptr orb);
52
53   virtual ~SALOME_NamingService();
54   
55   static SALOME_NamingService *GetTraditionalNS(SALOME_NamingService_Abstract *ns);
56
57   void init_orb(CORBA::ORB_ptr orb=0) override;
58   void Register(CORBA::Object_ptr ObjRef, const char* Path) override;
59   CORBA::Object_ptr Resolve(const char* Path) override; 
60   CORBA::Object_ptr ResolveFirst(const char* Path) ; 
61   CORBA::Object_ptr ResolveComponent(const char* hostname,
62                                      const char* containerName,
63                                      const char* componentName,
64                                      const int nbproc=0) override;
65   std::string ContainerName(const Engines::ContainerParameters& params);
66   std::string BuildContainerNameForNS(const Engines::ContainerParameters& params, const char *hostname);
67
68   int Find(const char* name) ;
69   bool Create_Directory(const char* Path) ;
70   bool Change_Directory(const char* Path) override;
71   char* Current_Directory() ;
72   void list() ;
73   std::vector<std::string> list_directory() override;
74   std::vector<std::string> list_subdirs() override;
75   std::vector<std::string> list_directory_recurs() ;
76   void Destroy_Name(const char* Path) override;
77   void Destroy_Directory(const char* Path) override;
78   void Destroy_FullDirectory(const char* Path) override;
79   char *getIORaddr();
80   CORBA::ORB_ptr orb();
81   SALOME_NamingService_Abstract *clone() override;
82
83 protected:
84   Utils_Mutex _myMutex;
85   CORBA::ORB_var _orb;
86   CosNaming::NamingContext_var _root_context, _current_context;
87
88   void _initialize_root_context();
89   int _createContextNameDir(std::string path,
90                             CosNaming::Name& context_name,
91                             std::vector<std::string>& splitPath,
92                             bool onlyDir);
93   void _Find(const char* name, CORBA::Long& occurence_number);
94   void _current_directory(std::vector<std::string>& splitPath,
95                           int& lengthResult,
96                           CosNaming::NamingContext_var contextToFind,
97                           bool& notFound);
98   void _list_directory_recurs(std::vector<std::string>& myList,
99                               std::string relativeSubDir,
100                               std::string absCurDirectory);
101
102 };
103
104 #endif // SALOME_NAMINGSERVICE_H
105