Salome HOME
Revert "Synchronize adm files"
[modules/kernel.git] / src / NamingService / SALOME_NamingService.hxx
1 // Copyright (C) 2007-2014  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 "utilities.h"
39 #include "Utils_Mutex.hxx"
40 #include "ServiceUnreachable.hxx"
41
42 #include "SALOME_NamingService_defs.hxx"
43
44 #ifdef WIN32
45 #pragma warning(disable:4290) // Warning Exception ...
46 #endif
47
48 class NAMINGSERVICE_EXPORT SALOME_NamingService
49 {
50 public:
51   SALOME_NamingService();
52   SALOME_NamingService(CORBA::ORB_ptr orb);
53
54   virtual ~SALOME_NamingService();
55
56   void init_orb(CORBA::ORB_ptr orb=0);
57   void Register(CORBA::Object_ptr ObjRef,
58                 const char* Path) 
59     throw(ServiceUnreachable);
60   CORBA::Object_ptr Resolve(const char* Path)
61     throw( ServiceUnreachable); 
62   CORBA::Object_ptr ResolveFirst(const char* Path)
63     throw( ServiceUnreachable); 
64   CORBA::Object_ptr ResolveComponent(const char* hostname,
65                                      const char* containerName,
66                                      const char* componentName,
67                                      const int nbproc=0)
68     throw(ServiceUnreachable);
69   std::string ContainerName(const char *ContainerName);
70   std::string ContainerName(const Engines::ContainerParameters& params);
71   std::string BuildContainerNameForNS(const char *ContainerName,
72                                       const char *hostname);
73   std::string 
74   BuildContainerNameForNS(const Engines::ContainerParameters& params,
75                           const char *hostname);
76
77   int Find(const char* name)
78     throw(ServiceUnreachable);
79   bool Create_Directory(const char* Path)
80     throw(ServiceUnreachable);
81   bool Change_Directory(const char* Path)
82     throw(ServiceUnreachable);
83   char* Current_Directory()
84     throw(ServiceUnreachable);
85   void list()
86     throw(ServiceUnreachable);
87   std::vector<std::string> list_directory()
88     throw(ServiceUnreachable);
89   std::vector<std::string> list_subdirs()
90     throw(ServiceUnreachable);
91   std::vector<std::string> list_directory_recurs()
92     throw(ServiceUnreachable);
93   void Destroy_Name(const char* Path)
94     throw(ServiceUnreachable);
95   virtual void Destroy_Directory(const char* Path)
96     throw(ServiceUnreachable);
97   virtual void Destroy_FullDirectory(const char* Path)
98     throw(ServiceUnreachable);
99   char* getIORaddr();
100   CORBA::ORB_ptr orb();
101
102 protected:
103   Utils_Mutex _myMutex;
104   CORBA::ORB_var _orb;
105   CosNaming::NamingContext_var _root_context, _current_context;
106
107   void _initialize_root_context();
108   int _createContextNameDir(std::string path,
109                             CosNaming::Name& context_name,
110                             std::vector<std::string>& splitPath,
111                             bool onlyDir);
112   void _Find(const char* name, CORBA::Long& occurence_number);
113   void _current_directory(std::vector<std::string>& splitPath,
114                           int& lengthResult,
115                           CosNaming::NamingContext_var contextToFind,
116                           bool& notFound);
117   void _list_directory_recurs(std::vector<std::string>& myList,
118                               std::string relativeSubDir,
119                               std::string absCurDirectory);
120
121 };
122
123 #endif // SALOME_NAMINGSERVICE_H
124