Salome HOME
import SalomePro v1.2c
[modules/kernel.git] / src / NamingService / SALOME_NamingService.hxx
1 //  SALOME NamingService : wrapping NamingService services
2 //
3 //  Copyright (C) 2003  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. 
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.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org 
21 //
22 //
23 //
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 "utilities.h"
33 //#include <omniORB4/CORBA.h>
34 #include <omniORB3/CORBA.h>
35 #include <vector>
36 #include <string>
37
38 //class ServiceUnreachable;
39 #include "ServiceUnreachable.hxx"
40
41 class SALOME_NamingService
42 {
43 public:
44   //! default constructor
45   SALOME_NamingService();
46
47   //! standard constructor
48   SALOME_NamingService(CORBA::ORB_ptr orb);
49
50   //! standard destructor
51   virtual ~SALOME_NamingService();
52
53   //! initialize ORB reference after default constructor
54   void init_orb(CORBA::ORB_ptr orb);
55  
56   //! method to create an association in the NamingService between an object reference and a path
57   void Register(CORBA::Object_ptr ObjRef, const char* Path) 
58     throw(ServiceUnreachable);
59
60   //! method to get the ObjRef of a symbolic name
61   CORBA::Object_ptr Resolve(const char* Path)
62     throw( ServiceUnreachable); 
63
64   //! method to research a name from the naming service's current directory 
65   int Find(const char* name)
66     throw(ServiceUnreachable);
67   
68   //! method to create a directory from the current directory
69   bool Create_Directory(const char* Path)
70     throw(ServiceUnreachable);
71   
72   //! method to change the current directory to the directory Path indicated in "in" Parameter
73   bool Change_Directory(const char* Path)
74     throw(ServiceUnreachable);
75  
76   //!method to get the current directory
77   char* Current_Directory()
78     throw(ServiceUnreachable);
79
80   //!method to print all the contexts contained from the current directory
81   void list()
82     throw(ServiceUnreachable);
83
84   //!method to get all the contexts contained in the current direcotry
85   // Get only objects, isn't iterative
86   vector<string> list_directory()
87     throw(ServiceUnreachable);
88  
89   //! method to destroy an association Path-Object Reference
90   void Destroy_Name(const char* Path)
91     throw(ServiceUnreachable);
92  
93   //! method to destroy a directory if it is empty
94   virtual void Destroy_Directory(const char* Path)
95     throw(ServiceUnreachable);
96
97 protected:
98   CORBA::ORB_ptr _orb;
99   CosNaming::NamingContext_var _root_context, _current_context;
100
101   //! method called by constructor to initialize _root_context
102   void _initialize_root_context();
103   
104   //! method to decompose a Path : /Kernel/Services/Sessions
105   char* _resolve_Path(char* Path);
106
107   //! method to decompose a Path : /Kernel/Services/Sessions
108   void _result_resolve_Path(const char* Path, int& j,
109                             char ** resultat_resolve_Path);
110
111   //! internal method called by Find to research a name from the naming service's current directory 
112   void _Find(const char* name, CORBA::Long& occurence_number);
113
114   //! internal method to create a context name from a Path
115   void _create_context_name_dir(char** resultat_resolve_Path,
116                                 int length_copy,
117                                 CosNaming::Name& _context_name);
118
119   //! internal method to create a parse the naming service tree 
120   void _current_directory(char** result_path,
121                           int& length_result,
122                           CosNaming::NamingContext_var context_to_found,
123                           CORBA::Boolean& _continue);
124 };
125
126 #endif // SALOME_NAMINGSERVICE_H