poa.h
来自「这是广泛使用的通信开源项目,对于大容量,高并发的通讯要求完全能够胜任,他广泛可用」· C头文件 代码 · 共 1,088 行 · 第 1/3 页
H
1,088 行
PortableServer::POA::WrongPolicy));
PortableServer::ObjectId *servant_to_id (PortableServer::Servant p_servant
ACE_ENV_ARG_DECL_WITH_DEFAULTS)
ACE_THROW_SPEC ((CORBA::SystemException,
PortableServer::POA::ServantNotActive,
PortableServer::POA::WrongPolicy));
CORBA::Object_ptr servant_to_reference (PortableServer::Servant p_servant
ACE_ENV_ARG_DECL_WITH_DEFAULTS)
ACE_THROW_SPEC ((CORBA::SystemException,
PortableServer::POA::ServantNotActive,
PortableServer::POA::WrongPolicy));
PortableServer::Servant reference_to_servant (
CORBA::Object_ptr reference
ACE_ENV_ARG_DECL_WITH_DEFAULTS
)
ACE_THROW_SPEC ((CORBA::SystemException,
PortableServer::POA::ObjectNotActive,
PortableServer::POA::WrongAdapter,
PortableServer::POA::WrongPolicy));
PortableServer::ObjectId *reference_to_id (CORBA::Object_ptr reference
ACE_ENV_ARG_DECL_WITH_DEFAULTS)
ACE_THROW_SPEC ((CORBA::SystemException,
PortableServer::POA::WrongAdapter,
PortableServer::POA::WrongPolicy));
PortableServer::Servant id_to_servant (const PortableServer::ObjectId &oid
ACE_ENV_ARG_DECL_WITH_DEFAULTS)
ACE_THROW_SPEC ((CORBA::SystemException,
PortableServer::POA::ObjectNotActive,
PortableServer::POA::WrongPolicy));
CORBA::Object_ptr id_to_reference (const PortableServer::ObjectId &oid
ACE_ENV_ARG_DECL_WITH_DEFAULTS)
ACE_THROW_SPEC ((CORBA::SystemException,
PortableServer::POA::ObjectNotActive,
PortableServer::POA::WrongPolicy));
CORBA::OctetSeq *id (ACE_ENV_SINGLE_ARG_DECL_WITH_DEFAULTS)
ACE_THROW_SPEC ((CORBA::SystemException));
#if (TAO_HAS_MINIMUM_POA == 0)
// Methods added by the MIOP specification.
virtual PortableServer::ObjectId * create_id_for_reference (
CORBA::Object_ptr the_ref
ACE_ENV_ARG_DECL_WITH_DEFAULTS
)
ACE_THROW_SPEC ((
CORBA::SystemException,
PortableServer::NotAGroupObject
));
virtual PortableServer::IDs * reference_to_ids (
CORBA::Object_ptr the_ref
ACE_ENV_ARG_DECL_WITH_DEFAULTS
)
ACE_THROW_SPEC ((
CORBA::SystemException,
PortableServer::NotAGroupObject
));
virtual void associate_reference_with_id (
CORBA::Object_ptr ref,
const PortableServer::ObjectId & oid
ACE_ENV_ARG_DECL_WITH_DEFAULTS
)
ACE_THROW_SPEC ((
CORBA::SystemException,
PortableServer::NotAGroupObject
));
virtual void disassociate_reference_with_id (
CORBA::Object_ptr ref,
const PortableServer::ObjectId & oid
ACE_ENV_ARG_DECL_WITH_DEFAULTS
)
ACE_THROW_SPEC ((
CORBA::SystemException,
PortableServer::NotAGroupObject
));
// End methods added by MIOP.
#endif /* TAO_HAS_MINIMUM_POA == 0 */
/// Accessor for POA policies.
TAO_POA_Policy_Set &policies (void);
/// Accessor for cached POA policies.
TAO_POA_Cached_Policies &cached_policies (void);
virtual CORBA::PolicyList *client_exposed_policies (
CORBA::Short object_priority
ACE_ENV_ARG_DECL
);
// This method gives the policies that are exposed to the client.
// These policies are shipped within the IOR.
// Utility functions for the other
static char* ObjectId_to_string (const PortableServer::ObjectId &id);
static CORBA::WChar* ObjectId_to_wstring (
const PortableServer::ObjectId &id
);
static PortableServer::ObjectId *string_to_ObjectId (const char *id);
static PortableServer::ObjectId *string_to_ObjectId (const char *string,
int size);
static PortableServer::ObjectId *wstring_to_ObjectId (
const CORBA::WChar *id
);
TAO_POA (const String &name,
TAO_POA_Manager &poa_manager,
const TAO_POA_Policy_Set &policies,
TAO_POA *parent,
ACE_Lock &lock,
TAO_SYNCH_MUTEX &thread_lock,
TAO_ORB_Core &orb_core,
TAO_Object_Adapter *object_adapter
ACE_ENV_ARG_DECL);
virtual ~TAO_POA (void);
static char name_separator (void);
static CORBA::ULong name_separator_length (void);
enum
{
TAO_OBJECTKEY_PREFIX_SIZE = 4
};
static CORBA::Octet objectkey_prefix[TAO_OBJECTKEY_PREFIX_SIZE];
const TAO_Object_Adapter::poa_name &folded_name (void) const;
const TAO_Object_Adapter::poa_name &system_name (void) const;
static void check_for_valid_wait_for_completions (
const TAO_ORB_Core &orb_core,
CORBA::Boolean wait_for_completion
ACE_ENV_ARG_DECL
);
TAO_ORB_Core &orb_core (void) const;
// ORB Core for POA.
CORBA::Boolean cleanup_in_progress (void);
static int parse_ir_object_key (const TAO::ObjectKey &object_key,
PortableServer::ObjectId &user_id);
// Calls protected static method used when POACurrent is not appropriate.
TAO_Object_Adapter &object_adapter (void);
ACE_Lock &lock (void);
/// Create the correct stub, properly initialized with the
/// attributes and policies attached to the current POA.
TAO_Stub* key_to_stub (const TAO::ObjectKey &key,
const char *type_id,
CORBA::Short priority
ACE_ENV_ARG_DECL);
/// Accessor for the current thread policy of this POA.
PortableServer::ThreadPolicyValue thread_policy (void) const;
///Accessor methods to POA state.
/**
* The POA can be in one of HOLDING, ACTIVE, DISCARDING, INACTIVE
* and NON_EXISTENT states.
*/
PortableInterceptor::AdapterState get_adapter_state (
ACE_ENV_SINGLE_ARG_DECL);
virtual void *thread_pool (void) const;
virtual CORBA::Policy *server_protocol (void);
CORBA::ULong outstanding_requests (void) const;
const ACE_CString &name (void) const;
TAO_Active_Object_Map &active_object_map (void) const;
CORBA::Boolean waiting_destruction (void) const;
protected:
/// Template method for creating new POA's of this type.
virtual TAO_POA *new_POA (const String &name,
TAO_POA_Manager &poa_manager,
const TAO_POA_Policy_Set &policies,
TAO_POA *parent,
ACE_Lock &lock,
TAO_SYNCH_MUTEX &thread_lock,
TAO_ORB_Core &orb_core,
TAO_Object_Adapter *object_adapter
ACE_ENV_ARG_DECL);
PortableServer::POA_ptr create_POA_i (
const char *adapter_name,
PortableServer::POAManager_ptr poa_manager,
const CORBA::PolicyList &policies
ACE_ENV_ARG_DECL
)
ACE_THROW_SPEC ((CORBA::SystemException,
PortableServer::POA::AdapterAlreadyExists,
PortableServer::POA::InvalidPolicy));
TAO_POA *create_POA_i (const String &adapter_name,
TAO_POA_Manager &poa_manager,
const TAO_POA_Policy_Set &policies
ACE_ENV_ARG_DECL)
ACE_THROW_SPEC ((CORBA::SystemException,
PortableServer::POA::AdapterAlreadyExists,
PortableServer::POA::InvalidPolicy));
TAO_POA *find_POA_i (const ACE_CString &child_name,
CORBA::Boolean activate_it
ACE_ENV_ARG_DECL)
ACE_THROW_SPEC ((CORBA::SystemException,
PortableServer::POA::AdapterNonExistent));
void destroy_i (CORBA::Boolean etherealize_objects,
CORBA::Boolean wait_for_completion
ACE_ENV_ARG_DECL)
ACE_THROW_SPEC ((CORBA::SystemException));
void complete_destruction_i (ACE_ENV_SINGLE_ARG_DECL);
PortableServer::POAList *the_children_i (ACE_ENV_SINGLE_ARG_DECL)
ACE_THROW_SPEC ((CORBA::SystemException));
/// This method returns the adapter_name as a sequence of strings of
/// length one or more or just a fixed name depending on the Object
/// Adapter. Added wrt to ORT Spec.
PortableInterceptor::AdapterName *adapter_name_i (ACE_ENV_SINGLE_ARG_DECL)
ACE_THROW_SPEC ((CORBA::SystemException));
/// Method to notify the IOR Interceptors when there is a state
/// changed not related to POAManager.
void adapter_state_changed (
const PortableInterceptor::ObjectReferenceTemplateSeq &seq_obj_ref_template,
PortableInterceptor::AdapterState state
ACE_ENV_ARG_DECL
)
ACE_THROW_SPEC ((CORBA::SystemException));
/// Add the given tagged component to all profiles.
void add_ior_component (TAO_MProfile & mprofile,
const IOP::TaggedComponent & component
ACE_ENV_ARG_DECL)
ACE_THROW_SPEC ((CORBA::SystemException));
/// Add the given tagged component to all profiles matching the given
/// ProfileId.
void add_ior_component_to_profile (TAO_MProfile & mprofile,
const IOP::TaggedComponent & component,
IOP::ProfileId profile_id
ACE_ENV_ARG_DECL)
ACE_THROW_SPEC ((CORBA::SystemException));
#if (TAO_HAS_MINIMUM_POA == 0)
PortableServer::ServantManager_ptr get_servant_manager_i (
ACE_ENV_SINGLE_ARG_DECL
)
ACE_THROW_SPEC ((CORBA::SystemException,
PortableServer::POA::WrongPolicy));
void set_servant_manager_i (PortableServer::ServantManager_ptr imgr
ACE_ENV_ARG_DECL)
ACE_THROW_SPEC ((CORBA::SystemException,
PortableServer::POA::WrongPolicy));
PortableServer::Servant get_servant_i (ACE_ENV_SINGLE_ARG_DECL)
ACE_THROW_SPEC ((CORBA::SystemException,
PortableServer::POA::NoServant,
PortableServer::POA::WrongPolicy));
void set_servant_i (PortableServer::Servant servant
ACE_ENV_ARG_DECL)
ACE_THROW_SPEC ((CORBA::SystemException,
PortableServer::POA::WrongPolicy));
#endif /* TAO_HAS_MINIMUM_POA == 0 */
//
// ImplRepo related.
//
#if (TAO_HAS_MINIMUM_CORBA == 0)
void imr_notify_startup (ACE_ENV_SINGLE_ARG_DECL);
// ImplRepo helper method, notify the ImplRepo on startup
void imr_notify_shutdown (void);
// ImplRepo helper method, notify the ImplRepo on shutdown
#endif /* TAO_HAS_MINIMUM_CORBA */
CORBA::Object_ptr invoke_key_to_object (ACE_ENV_SINGLE_ARG_DECL);
CORBA::Object_ptr key_to_object (const TAO::ObjectKey &key,
const char *type_id,
TAO_ServantBase *servant,
CORBA::Boolean collocated,
CORBA::Short priority
ACE_ENV_ARG_DECL);
// Wrapper for the ORB's key_to_object that will alter the object pointer
// if the ImplRepo is used.
virtual TAO_Stub* key_to_stub_i (const TAO::ObjectKey &key,
const char *type_id,
CORBA::Short priority
ACE_ENV_ARG_DECL);
// Like key_to_stub() but assume that the ORB is not shutting down.
TAO_Stub *create_stub_object (const TAO::ObjectKey &object_key,
const char *type_id,
CORBA::PolicyList *policy_list,
TAO_Acceptor_Filter *filter,
TAO_Acceptor_Registry &acceptor_registry
ACE_ENV_ARG_DECL);
int is_servant_in_map (PortableServer::Servant servant,
int &wait_occurred_restart_call);
int is_user_id_in_map (const PortableServer::ObjectId &user_id,
CORBA::Short priority,
int &priorities_match,
int &wait_occurred_restart_call);
PortableServer::ObjectId *activate_object_i (
PortableServer::Servant p_servant,
CORBA::Short priority,
int &wait_occurred_restart_call
ACE_ENV_ARG_DECL
)
ACE_THROW_SPEC ((CORBA::SystemException,
PortableServer::POA::ServantAlreadyActive,
PortableServer::POA::WrongPolicy));
void activate_object_with_id_i (const PortableServer::ObjectId &id,
PortableServer::Servant p_servant,
CORBA::Short priority,
int &wait_occurred_restart_call
ACE_ENV_ARG_DECL)
ACE_THROW_SPEC ((CORBA::SystemException,
PortableServer::POA::ServantAlreadyActive,
PortableServer::POA::ObjectAlreadyActive,
PortableServer::POA::WrongPolicy));
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?