advanced_resource.cpp
字号:
if (TAO_debug_level > 0)
{
ACE_DEBUG ((LM_DEBUG,
ACE_LIB_TEXT("TAO (%P|%t) Loaded default ")
ACE_LIB_TEXT("protocol <SHMIOP_Factory>\n")));
}
#endif /* TAO_HAS_SHMIOP && TAO_HAS_SHMIOP != 0 */
#if defined (TAO_HAS_DIOP) && (TAO_HAS_DIOP != 0)
protocol_factory =
ACE_Dynamic_Service<TAO_Protocol_Factory>::instance ("DIOP_Factory");
if (protocol_factory == 0)
{
if (TAO_debug_level > 0)
ACE_ERROR ((LM_WARNING,
ACE_LIB_TEXT("(%P|%t) WARNING - No %s found in Service Repository.")
ACE_LIB_TEXT(" Using default instance.\n"),
ACE_LIB_TEXT("DIOP Protocol Factory")));
ACE_NEW_RETURN (protocol_factory,
TAO_DIOP_Protocol_Factory,
-1);
ACE_AUTO_PTR_RESET (safe_protocol_factory,
protocol_factory,
TAO_Protocol_Factory);
transfer_ownership = 1;
}
else
{
transfer_ownership = 0;
}
ACE_NEW_RETURN (item, TAO_Protocol_Item ("DIOP_Factory"), -1);
// If the TAO_Protocol_Item retains ownership of the
// TAO_Protocol_Factory then we used an auto_ptr<> above, so
// release the TAO_Protocol_Factory from it. Otherwise, we
// obtained the TAO_Protocol_Factory from the Service
// Configurator so an auto_ptr<> wasn't used since the Service
// Configurator retains ownership, hence there was no need to
// use an auto_ptr<> in this method.
item->factory ((transfer_ownership ?
safe_protocol_factory.release () :
protocol_factory),
transfer_ownership);
if (this->protocol_factories_.insert (item) == -1)
{
ACE_ERROR ((LM_ERROR,
ACE_LIB_TEXT("TAO (%P|%t) Unable to add ")
ACE_LIB_TEXT("<%s> to protocol factory set.\n"),
ACE_TEXT_CHAR_TO_TCHAR(item->protocol_name ().c_str ())));
delete item;
if (transfer_ownership == 0)
delete protocol_factory;
return -1;
}
if (TAO_debug_level > 0)
{
ACE_DEBUG ((LM_DEBUG,
ACE_LIB_TEXT("TAO (%P|%t) Loaded default ")
ACE_LIB_TEXT("protocol <DIOP_Factory>\n")));
}
#endif /* TAO_HAS_DIOP && TAO_HAS_DIOP != 0 */
#if defined (TAO_HAS_SCIOP) && (TAO_HAS_SCIOP != 0)
protocol_factory =
ACE_Dynamic_Service<TAO_Protocol_Factory>::instance ("SCIOP_Factory");
if (protocol_factory == 0)
{
if (TAO_debug_level > 0)
ACE_ERROR ((LM_WARNING,
ACE_LIB_TEXT("(%P|%t) WARNING - No %s found in Service Repository.")
ACE_LIB_TEXT(" Using default instance.\n"),
ACE_LIB_TEXT("SCIOP Protocol Factory")));
ACE_NEW_RETURN (protocol_factory,
TAO_SCIOP_Protocol_Factory,
-1);
ACE_AUTO_PTR_RESET (safe_protocol_factory,
protocol_factory,
TAO_Protocol_Factory);
transfer_ownership = 1;
}
else
{
transfer_ownership = 0;
}
ACE_NEW_RETURN (item, TAO_Protocol_Item ("SCIOP_Factory"), -1);
// If the TAO_Protocol_Item retains ownership of the
// TAO_Protocol_Factory then we used an auto_ptr<> above, so
// release the TAO_Protocol_Factory from it. Otherwise, we
// obtained the TAO_Protocol_Factory from the Service
// Configurator so an auto_ptr<> wasn't used since the Service
// Configurator retains ownership, hence there was no need to
// use an auto_ptr<> in this method.
item->factory ((transfer_ownership ?
safe_protocol_factory.release () :
protocol_factory),
transfer_ownership);
if (this->protocol_factories_.insert (item) == -1)
{
ACE_ERROR ((LM_ERROR,
ACE_LIB_TEXT("TAO (%P|%t) Unable to add ")
ACE_LIB_TEXT("<%s> to protocol factory set.\n"),
ACE_TEXT_CHAR_TO_TCHAR(item->protocol_name ().c_str ())));
delete item;
if (transfer_ownership == 0)
delete protocol_factory;
return -1;
}
if (TAO_debug_level > 0)
{
ACE_DEBUG ((LM_DEBUG,
ACE_LIB_TEXT("TAO (%P|%t) Loaded default ")
ACE_LIB_TEXT("protocol <SCIOP_Factory>\n")));
}
#endif /* TAO_HAS_SCIOP && TAO_HAS_SCIOP != 0 */
return 0;
}
for (; factory != end; factory++)
{
const ACE_CString &name = (*factory)->protocol_name ();
(*factory)->factory (
ACE_Dynamic_Service<TAO_Protocol_Factory>::instance (name.c_str ()));
if ((*factory)->factory () == 0)
{
ACE_ERROR_RETURN ((LM_ERROR,
ACE_LIB_TEXT("TAO (%P|%t) Unable to load ")
ACE_LIB_TEXT("protocol <%s>, %p\n"),
ACE_TEXT_CHAR_TO_TCHAR(name.c_str ()), ""),
-1);
}
if (TAO_debug_level > 0)
{
ACE_DEBUG ((LM_DEBUG,
ACE_LIB_TEXT("TAO (%P|%t) Loaded protocol <%s>\n"),
ACE_TEXT_CHAR_TO_TCHAR(name.c_str ())));
}
}
return 0;
}
TAO_ProtocolFactorySet *
TAO_Advanced_Resource_Factory::get_protocol_factories (void)
{
return &protocol_factories_;
}
ACE_Reactor_Impl *
TAO_Advanced_Resource_Factory::allocate_reactor_impl (void) const
{
ACE_Reactor_Impl *impl = 0;
switch (this->reactor_type_)
{
case TAO_REACTOR_SELECT_MT:
ACE_NEW_RETURN (impl,
TAO_REACTOR ((ACE_Sig_Handler*)0,
(ACE_Timer_Queue*)0,
0,
(ACE_Reactor_Notify*)0,
this->reactor_mask_signals_),
0);
break;
case TAO_REACTOR_SELECT_ST:
ACE_NEW_RETURN (impl,
TAO_NULL_LOCK_REACTOR ((ACE_Sig_Handler*)0,
(ACE_Timer_Queue*)0,
0,
(ACE_Reactor_Notify*)0,
this->reactor_mask_signals_),
0);
break;
case TAO_REACTOR_FL:
#if defined(ACE_HAS_FL)
ACE_NEW_RETURN (impl, ACE_FlReactor, 0);
#endif /* ACE_HAS_FL */
break;
case TAO_REACTOR_TK:
#if defined(ACE_HAS_TK)
ACE_NEW_RETURN (impl, ACE_TkReactor, 0);
#endif /* ACE_HAS_TK */
break;
case TAO_REACTOR_WFMO:
#if defined(ACE_WIN32) && !defined (ACE_LACKS_MSG_WFMO)
ACE_NEW_RETURN (impl, ACE_WFMO_Reactor, 0);
#endif /* ACE_WIN32 && !ACE_LACKS_MSG_WFMO */
break;
case TAO_REACTOR_MSGWFMO:
#if defined(ACE_WIN32) && !defined (ACE_HAS_WINCE)
ACE_NEW_RETURN (impl, ACE_Msg_WFMO_Reactor, 0);
#endif /* ACE_WIN32 && !ACE_HAS_WINCE */
break;
default:
case TAO_REACTOR_TP:
ACE_NEW_RETURN (impl, ACE_TP_Reactor ((ACE_Sig_Handler*)0,
(ACE_Timer_Queue*)0,
this->reactor_mask_signals_,
this->threadqueue_type_ == TAO_THREAD_QUEUE_FIFO ?
ACE_Select_Reactor_Token::FIFO :
ACE_Select_Reactor_Token::LIFO),
0);
break;
}
return impl;
}
typedef ACE_Malloc<ACE_LOCAL_MEMORY_POOL,ACE_Null_Mutex> NULL_LOCK_MALLOC;
typedef ACE_Allocator_Adapter<NULL_LOCK_MALLOC> NULL_LOCK_ALLOCATOR;
typedef ACE_Malloc<ACE_LOCAL_MEMORY_POOL,TAO_SYNCH_MUTEX> LOCKED_MALLOC;
typedef ACE_Allocator_Adapter<LOCKED_MALLOC> LOCKED_ALLOCATOR;
ACE_Allocator *
TAO_Advanced_Resource_Factory::input_cdr_dblock_allocator (void)
{
ACE_Allocator *allocator = 0;
switch (this->cdr_allocator_type_)
{
case TAO_ALLOCATOR_NULL_LOCK:
ACE_NEW_RETURN (allocator,
NULL_LOCK_ALLOCATOR,
0);
break;
default:
return
this->TAO_Default_Resource_Factory::input_cdr_dblock_allocator();
}
return allocator;
}
ACE_Allocator *
TAO_Advanced_Resource_Factory::input_cdr_buffer_allocator (void)
{
ACE_Allocator *allocator = 0;
switch (this->cdr_allocator_type_)
{
case TAO_ALLOCATOR_NULL_LOCK:
ACE_NEW_RETURN (allocator,
NULL_LOCK_ALLOCATOR,
0);
break;
case TAO_ALLOCATOR_THREAD_LOCK:
default:
ACE_NEW_RETURN (allocator,
LOCKED_ALLOCATOR,
0);
break;
}
return allocator;
}
ACE_Allocator *
TAO_Advanced_Resource_Factory::input_cdr_msgblock_allocator (void)
{
ACE_Allocator *allocator = 0;
switch (this->cdr_allocator_type_)
{
case TAO_ALLOCATOR_NULL_LOCK:
ACE_NEW_RETURN (allocator,
NULL_LOCK_ALLOCATOR,
0);
break;
default:
return
this->TAO_Default_Resource_Factory::input_cdr_msgblock_allocator();
}
return allocator;
}
int
TAO_Advanced_Resource_Factory::input_cdr_allocator_type_locked (void)
{
return this->cdr_allocator_type_ == TAO_ALLOCATOR_NULL_LOCK ? 0 : 1;
}
TAO_Connection_Purging_Strategy *
TAO_Advanced_Resource_Factory::create_purging_strategy (void)
{
TAO_Connection_Purging_Strategy *strategy = 0;
switch(this->connection_purging_type_)
{
case TAO_Resource_Factory::LFU:
ACE_NEW_RETURN (strategy,
TAO_LFU_Connection_Purging_Strategy (
this->cache_maximum ()),
0);
break;
case TAO_Resource_Factory::FIFO:
ACE_NEW_RETURN (strategy,
TAO_FIFO_Connection_Purging_Strategy (
this->cache_maximum ()),
0);
break;
case TAO_Resource_Factory::NOOP:
ACE_NEW_RETURN (strategy,
TAO_NULL_Connection_Purging_Strategy (
this->cache_maximum ()),
0);
break;
case TAO_Resource_Factory::LRU:
ACE_NEW_RETURN (strategy,
TAO_LRU_Connection_Purging_Strategy (
this->cache_maximum ()),
0);
break;
default:
ACE_ERROR ((LM_ERROR,
ACE_LIB_TEXT("TAO (%P|%t) - ")
ACE_LIB_TEXT("Unknown connection purging strategy ")
ACE_LIB_TEXT("type was found.\n")));
}
return strategy;
}
TAO_LF_Strategy *
TAO_Advanced_Resource_Factory::create_lf_strategy (void)
{
TAO_LF_Strategy *strategy = 0;
if (this->reactor_type_ == TAO_REACTOR_SELECT_ST)
{
ACE_NEW_RETURN (strategy,
TAO_LF_Strategy_Null,
0);
}
else
{
ACE_NEW_RETURN (strategy,
TAO_LF_Strategy_Complete,
0);
}
return strategy;
}
void
TAO_Advanced_Resource_Factory::report_option_value_error (
const ACE_TCHAR* option_name,
const ACE_TCHAR* option_value)
{
ACE_DEBUG((LM_DEBUG,
ACE_LIB_TEXT("Advanced_Resource_Factory - unknown argument")
ACE_LIB_TEXT(" <%s> for <%s>\n"),
option_value,
option_name));
}
void
TAO_Advanced_Resource_Factory::report_unsupported_error (
const ACE_TCHAR* option_name)
{
ACE_DEBUG((LM_DEBUG,
ACE_LIB_TEXT("Advanced_Resource_Factory - <%s>")
ACE_LIB_TEXT(" not supported on this platform\n"),
option_name));
}
// ****************************************************************
ACE_STATIC_SVC_DEFINE (TAO_Advanced_Resource_Factory,
ACE_LIB_TEXT("Advanced_Resource_Factory"),
ACE_SVC_OBJ_T,
&ACE_SVC_NAME (TAO_Advanced_Resource_Factory),
ACE_Service_Type::DELETE_THIS | ACE_Service_Type::DELETE_OBJ,
0)
ACE_FACTORY_DEFINE (TAO_Strategies, TAO_Advanced_Resource_Factory)
// ****************************************************************
#if defined (ACE_HAS_EXPLICIT_TEMPLATE_INSTANTIATION)
template class ACE_Dynamic_Service<TAO_Advanced_Resource_Factory>;
template class ACE_Select_Reactor_Token_T<ACE_Noop_Token>;
template class ACE_Lock_Adapter<ACE_Select_Reactor_Token_T<ACE_Noop_Token> >;
template class ACE_Select_Reactor_T< ACE_Select_Reactor_Token_T<ACE_Noop_Token> >;
#elif defined (ACE_HAS_TEMPLATE_INSTANTIATION_PRAGMA)
#pragma instantiate ACE_Dynamic_Service<TAO_Advanced_Resource_Factory>
#pragma instantiate ACE_Select_Reactor_Token_T<ACE_Noop_Token>
#pragma instantiate ACE_Lock_Adapter< ACE_Select_Reactor_Token_T<ACE_Noop_Token> >
#pragma instantiate ACE_Select_Reactor_T< ACE_Select_Reactor_Token_T<ACE_Noop_Token> >
#endif /* ACE_HAS_EXPLICIT_TEMPLATE_INSTANTIATION */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -