/usr/include/tao/Acceptor_Registry.h is in libtao-dev 6.0.1-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 | // -*- C++ -*-
//=============================================================================
/**
* @file Acceptor_Registry.h
*
* $Id: Acceptor_Registry.h 91640 2010-09-08 06:06:38Z johnnyw $
*
* Interface for the TAO pluggable protocol framework.
*
* @author Fred Kuhns <fredk@cs.wustl.edu>
* @author Ossama Othman <ossama@uci.edu>
*/
//=============================================================================
#ifndef TAO_ACCEPTOR_REGISTRY_H
#define TAO_ACCEPTOR_REGISTRY_H
#include /**/ "ace/pre.h"
#include "ace/Unbounded_Set.h"
#if !defined (ACE_LACKS_PRAGMA_ONCE)
# pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */
#include /**/ "tao/TAO_Export.h"
#include "tao/Exception.h"
#include "tao/params.h"
ACE_BEGIN_VERSIONED_NAMESPACE_DECL
class ACE_Addr;
class ACE_Reactor;
ACE_END_VERSIONED_NAMESPACE_DECL
TAO_BEGIN_VERSIONED_NAMESPACE_DECL
class TAO_ORB_Core;
class TAO_Acceptor;
class TAO_Acceptor_Filter;
class TAO_Stub;
class TAO_Profile;
class TAO_MProfile;
class TAO_Protocol_Factory;
class TAO_Protocol_Item;
typedef ACE_Unbounded_Set_Iterator<TAO_Protocol_Item *>
TAO_ProtocolFactorySetItor;
typedef TAO_Acceptor** TAO_AcceptorSetIterator;
/**
* @class TAO_Acceptor_Registry
*
* @brief Acceptor Registry and Generic Acceptor interface definitions.
* All loaded ESIOP or GIOP acceptor bridges must register with
* this object.
*
* This class maintains a list os acceptor factories for all loaded ORB
* protocols. There is one Acceptor_Registry per ORB_Core.
*/
class TAO_Export TAO_Acceptor_Registry : private ACE_Copy_Disabled
{
public:
// = Initialization and termination methods.
/// Default constructor.
TAO_Acceptor_Registry (void);
/// Default destructor.
~TAO_Acceptor_Registry (void);
/// Initialize all registered acceptors. Return -1 on error.
int open (TAO_ORB_Core *orb_core,
ACE_Reactor *reactor,
const TAO_EndpointSet &endpoint_set,
bool ignore_address);
/// Close all open acceptors.
int close_all (void);
/// Returns the total number of endpoints in all of its acceptors.
size_t endpoint_count (void);
/// Check if there is at least one profile in @a mprofile that
/// corresponds to a collocated object.
bool is_collocated (const TAO_MProfile& mprofile);
/// Return the acceptor bridges
TAO_Acceptor *get_acceptor (CORBA::ULong tag);
// = Iterator.
TAO_AcceptorSetIterator begin (void);
TAO_AcceptorSetIterator end (void);
private:
/// Create a default acceptor for all loaded protocols.
int open_default (TAO_ORB_Core *orb_core,
ACE_Reactor *reactor,
const char *options);
/// Create a default acceptor using the specified protocol factory.
int open_default (TAO_ORB_Core *orb_core,
ACE_Reactor *reactor,
int major,
int minor,
TAO_ProtocolFactorySetItor &factory,
const char *options);
/// Open a default acceptor.
int open_default_i (TAO_ORB_Core *orb_core,
ACE_Reactor *reactor,
int major,
int minor,
TAO_ProtocolFactorySetItor &factory,
TAO_Acceptor* acceptor,
const char *options);
/// Extract endpoint-specific options from the endpoint string.
void extract_endpoint_options (ACE_CString &addrs,
ACE_CString &options,
TAO_Protocol_Factory *factory);
/// Extract endpoint/address specific version from the endpoint
/// string.
void extract_endpoint_version (ACE_CString &address,
int &major,
int &minor);
/// Iterator through addrs in the string <iop>, and create an
/// acceptor for each one.
int open_i (TAO_ORB_Core *orb_core,
ACE_Reactor *reactor,
ACE_CString &address,
TAO_ProtocolFactorySetItor &factory,
bool ignore_address);
private:
/// List of acceptors that are currently open.
TAO_Acceptor **acceptors_;
/// Number of acceptors that are currently open.
size_t size_;
};
TAO_END_VERSIONED_NAMESPACE_DECL
#if defined(__ACE_INLINE__)
#include "tao/Acceptor_Registry.inl"
#endif /* __ACE_INLINE__ */
#include /**/ "ace/post.h"
#endif /* TAO_ACCEPTOR_REGISTRY_H */
|