diff options
Diffstat (limited to 'dep/ACE_wrappers/ace/Registry.h')
-rw-r--r-- | dep/ACE_wrappers/ace/Registry.h | 116 |
1 files changed, 0 insertions, 116 deletions
diff --git a/dep/ACE_wrappers/ace/Registry.h b/dep/ACE_wrappers/ace/Registry.h index 2fc7a37d6d1..3eb54c1b3e7 100644 --- a/dep/ACE_wrappers/ace/Registry.h +++ b/dep/ACE_wrappers/ace/Registry.h @@ -1,5 +1,4 @@ // -*- C++ -*- - //============================================================================= /** * @file Registry.h @@ -10,25 +9,18 @@ */ //============================================================================= - #ifndef ACE_REGISTRY_H #define ACE_REGISTRY_H #include /**/ "ace/pre.h" - #include /**/ "ace/config-all.h" - #if !defined (ACE_LACKS_PRAGMA_ONCE) # pragma once #endif /* ACE_LACKS_PRAGMA_ONCE */ - #if defined (ACE_WIN32) && !defined (ACE_LACKS_WIN32_REGISTRY) // This only works on registry-capable Win32 platforms. - #include "ace/Containers.h" #include "ace/SString.h" - ACE_BEGIN_VERSIONED_NAMESPACE_DECL - /** * @class ACE_Registry * @@ -44,81 +36,61 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL class ACE_Export ACE_Registry { public: - /// International string struct ACE_Export Name_Component { ACE_TString id_; ACE_TString kind_; - bool operator== (const Name_Component &rhs) const; bool operator!= (const Name_Component &rhs) const; // Comparison }; // The <id_> field is used, // but the <kind_> field is currently ignored - /// A Name is an ordered collections of components (ids) typedef ACE_Unbounded_Set<Name_Component> Name; - /// Separator for components in a name static const ACE_TCHAR STRING_SEPARATOR[]; - /// Convert a @a name to a @c string static ACE_TString make_string (const Name &name); - /// Convert a @a string to a @c name static Name make_name (const ACE_TString &string); - /// There are two types of bindings enum Binding_Type {INVALID, OBJECT, CONTEXT}; - struct ACE_Export Binding { /// Empty (default) constructor Binding (void); - /// Constructor /// (Name version) Binding (const Name &binding_name, Binding_Type binding_type); - /// Constructor /// (String version) Binding (const ACE_TString &binding_name, Binding_Type binding_type); - bool operator== (const Binding &rhs) const; bool operator!= (const Binding &rhs) const; // Comparison - /// Name accessor /// (Name version) void name (Name &name); - /// Set Name (String version) void name (ACE_TString &name); - /// Get Name (String version) ACE_TString name (void); - /// Type accessor Binding_Type type (void); - private: /// A binding has a name ACE_TString name_; - /// .... and a type Binding_Type type_; }; - /// A list of bindings typedef ACE_Unbounded_Set<Binding> Binding_List; - // Forward declaration of iterator class Binding_Iterator; - /** * @class Object * @@ -137,36 +109,26 @@ public: Object (void *data = 0, u_long size = 0, u_long type = REG_NONE); - /// Set data void data (void *data); - /// Get data void *data (void) const; - /// Set size void size (u_long size); - /// Get size u_long size (void) const; - /// Set type void type (u_long type); - /// Get type u_long type (void) const; - private: /// Pointer to data void *data_; - /// Size of the data u_long size_; - /// Type of data u_long type_; }; - /** * @class Naming_Context * @@ -180,27 +142,20 @@ public: public: /// Friend factory friend class ACE_Predefined_Naming_Contexts; - enum { /// Max sizes of names /// (Not too sure about this value) MAX_OBJECT_NAME_SIZE = BUFSIZ, - /// Max size of context name MAX_CONTEXT_NAME_SIZE = MAXPATHLEN + 1 }; - /// Empty constructor: keys will be NULL Naming_Context (void); - /// Constructor: key_ will be set to @a key Naming_Context (const HKEY &key); - /// Destructor will call <Naming_Context::close>. ~Naming_Context (void); - // The following interfaces are for objects - /** * Insert @a object with @a name into @c this context. * This will fail if @a name already exists @@ -208,7 +163,6 @@ public: */ int bind_new (const Name &name, const Object &object); - /** * Insert @a object with @a name into @c this context * This will fail if @a name already exists @@ -216,7 +170,6 @@ public: */ int bind_new (const ACE_TString &name, const Object &object); - /** * Insert or update @a object with @a name into @c this context * This will not fail if @a name already exists @@ -224,7 +177,6 @@ public: */ int bind (const Name &name, const Object &object); - /** * Insert or update <object> with @a name into @c this context * This will not fail if @a name already exists @@ -232,38 +184,29 @@ public: */ int bind (const ACE_TString &name, const Object &object); - /// Update <object> with @a name in @c this context /// (Name version) int rebind (const Name &name, const Object &object); - /// Update <object> with @a name in @c this context int rebind (const ACE_TString &name, const Object &object); - /// Find <object> with @a name in @c this context /// (Name version) int resolve (const Name &name, Object &object); - /// Find <object> with @a name in @c this context int resolve (const ACE_TString &name, Object &object); - /// Delete object with @a name in @c this context /// (Name version) int unbind (const Name &name); - /// Delete object with @a name in @c this context int unbind (const ACE_TString &name); - // The following interfaces are for Naming Context - /// Create new @c naming_context int new_context (Naming_Context &naming_context); - /** * Insert <naming_context> with @a name relative to @c this context * This will fail if @a name already exists @@ -274,7 +217,6 @@ public: u_long persistence = REG_OPTION_NON_VOLATILE, u_long security_access = KEY_ALL_ACCESS, LPSECURITY_ATTRIBUTES security_attributes = 0); - /// Insert <naming_context> with @a name relative to @c this context /// This will fail if @a name already exists int bind_new_context (const ACE_TString &name, @@ -282,7 +224,6 @@ public: u_long persistence = REG_OPTION_NON_VOLATILE, u_long security_access = KEY_ALL_ACCESS, LPSECURITY_ATTRIBUTES security_attributes = 0); - /** * Insert or update <naming_context> with @a name relative to @c this context * This will not fail if @a name already exists @@ -293,7 +234,6 @@ public: u_long persistence = REG_OPTION_NON_VOLATILE, u_long security_access = KEY_ALL_ACCESS, LPSECURITY_ATTRIBUTES security_attributes = 0); - /// Insert or update <naming_context> with @a name relative to @c this context /// This will not fail if @a name already exists int bind_context (const ACE_TString &name, @@ -301,37 +241,29 @@ public: u_long persistence = REG_OPTION_NON_VOLATILE, u_long security_access = KEY_ALL_ACCESS, LPSECURITY_ATTRIBUTES security_attributes = 0); - /// Rename <naming_context> to @a name /// (Name version) int rebind_context (const Name &name, /* const */ Naming_Context &naming_context); - /// Rename <naming_context> to @a name int rebind_context (const ACE_TString &name, /* const */ Naming_Context &naming_context); - /// Find <naming_context> with @a name in @c this context /// (Name version) int resolve_context (const Name &name, Naming_Context &naming_context, u_long security_access = KEY_ALL_ACCESS); - /// Find <naming_context> with @a name in @c this context int resolve_context (const ACE_TString &name, Naming_Context &naming_context, u_long security_access = KEY_ALL_ACCESS); - /// Remove naming_context with @a name from @c this context /// (Name version) int unbind_context (const Name &name); - /// Remove naming_context with @a name from @c this context int unbind_context (const ACE_TString &name); - /// Same as <unbind_context> with @c this as naming_context int destroy (void); - /** * listing function: iterator creator * This is useful when there are many objects and contexts @@ -341,72 +273,52 @@ public: int list (u_long how_many, Binding_List &list, Binding_Iterator &iterator); - /// listing function: iterator creator /// This gives back a listing of all entries in @c this context. int list (Binding_List &list); - // Some other necessary functions which are // not part of the CORBA interface - /// Sync content of context to disk int flush (void); - /// Close the handle of the context /// @note <close> does not call <flush> int close (void); - // Accessors - /// Get key HKEY key (void); - // void parent (HKEY parent); /// Get parent HKEY parent (void); - /// Get name /// (Name version) void name (Name &name); - /// Set name (String version) void name (ACE_TString &name); - /// Get name (String version) ACE_TString name (void); - protected: /// Set key void key (HKEY key); - /// Set parent void parent (HKEY parent); - /// Set name /// (Name version) void name (const Name &name); - /// Set name /// (String version) void name (const ACE_TString &name); - private: /// Disallow copy constructors Naming_Context (const Naming_Context &rhs); - /// Disallow assignment const Naming_Context &operator= (const Naming_Context &rhs); - /// Key for self HKEY key_; - /// Key for parent HKEY parent_key_; - /// Name of self ACE_TString name_; }; - /** * @class Binding_Iterator * @@ -419,38 +331,27 @@ public: public: /// Friend factory friend class Naming_Context; - /// Default constructor Binding_Iterator (void); - /// Next entry int next_one (Binding &binding); - /// Next <how_many> entries int next_n (u_long how_many, Binding_List &list); - /// Cleanup int destroy (void); - /// Reset the internal state of the iterator void reset (void); - /// Get naming_context that the iterator is iterating over Naming_Context &naming_context (void); - private: - /// Set naming_context that the iterator is iterating over void naming_context (Naming_Context& naming_context); - /// Reference to context Naming_Context *naming_context_; - public: // This should really be private // But the compiler is broken - /** * @class Iteration_State * @@ -461,24 +362,18 @@ public: public: /// Constructor Iteration_State (); - /// Set the iterator reference. void iterator (Binding_Iterator *iterator); - /// Next <how_many> entries virtual int next_n (u_long how_many, Binding_List &list) = 0; - /// Reset state void reset (void); - protected: /// Pointer to parent iterator Binding_Iterator *parent_; - u_long index_; }; - private: class ACE_Export Object_Iteration : public Iteration_State { @@ -486,7 +381,6 @@ public: int next_n (u_long how_many, Binding_List &list); }; - class ACE_Export Context_Iteration : public Iteration_State { public: @@ -494,7 +388,6 @@ public: int next_n (u_long how_many, Binding_List &list); }; - class ACE_Export Iteration_Complete : public Iteration_State { public: @@ -502,29 +395,23 @@ public: int next_n (u_long how_many, Binding_List &list); }; - /// Friend states friend class Iteration_State; friend class Object_Iteration; friend class Context_Iteration; friend class Iteration_Complete; - /// Instances of all states Object_Iteration object_iteration_; Context_Iteration context_iteration_; Iteration_Complete iteration_complete_; - /// Pointer to current state Iteration_State *current_enumeration_; - /// Set current_enumeration void current_enumeration (Iteration_State& current_enumeration); - /// Get current_enumeration Iteration_State ¤t_enumeration (void); }; }; - /** * @class ACE_Predefined_Naming_Contexts * @@ -546,14 +433,11 @@ public: static int connect (ACE_Registry::Naming_Context &naming_context, HKEY predefined = HKEY_LOCAL_MACHINE, const ACE_TCHAR *machine_name = 0); - private: /// Check if @a machine_name is the local host static int is_local_host (const ACE_TCHAR *machine_name); }; - ACE_END_VERSIONED_NAMESPACE_DECL - #endif /* ACE_WIN32 && !ACE_LACKS_WIN32_REGISTRY */ #include /**/ "ace/post.h" #endif /* ACE_REGISTRY_H */ |