exceptionlist.cpp
来自「这是广泛使用的通信开源项目,对于大容量,高并发的通讯要求完全能够胜任,他广泛可用」· C++ 代码 · 共 119 行
CPP
119 行
#include "ExceptionList.h"
ACE_RCSID (DynamicInterface,
ExceptionList,
"ExceptionList.cpp,v 1.10 2003/02/20 21:07:38 ossama Exp")
#include "tao/Typecode.h"
#include "tao/Environment.h"
#if !defined (__ACE_INLINE__)
# include "ExceptionList.inl"
#endif /* __ACE_INLINE__ */
CORBA::ExceptionList::ExceptionList (CORBA::ULong len,
CORBA::TypeCode_ptr *tc_list)
: ref_count_ (1)
{
for (CORBA::ULong i = 0; i < len; ++i)
{
this->add (tc_list [i]);
}
}
CORBA::ExceptionList::~ExceptionList (void)
{
for (CORBA::ULong i = 0; i < this->count (); ++i)
{
CORBA::TypeCode_ptr *tc = 0;
if (this->tc_list_.get (tc, i) == -1)
{
return;
}
CORBA::release (*tc);
}
}
void
CORBA::ExceptionList::add (CORBA::TypeCode_ptr tc)
{
this->tc_list_.enqueue_tail (CORBA::TypeCode::_duplicate (tc));
}
void
CORBA::ExceptionList::add_consume (CORBA::TypeCode_ptr tc)
{
this->tc_list_.enqueue_tail (tc);
}
CORBA::TypeCode_ptr
CORBA::ExceptionList::item (CORBA::ULong slot
ACE_ENV_ARG_DECL)
{
CORBA::TypeCode_ptr *tc = 0;
if (this->tc_list_.get (tc, slot) == -1)
{
ACE_THROW_RETURN (CORBA::TypeCode::Bounds (),
CORBA::TypeCode::_nil ());
}
else
{
return CORBA::TypeCode::_duplicate (*tc);
}
}
void
CORBA::ExceptionList::remove (CORBA::ULong
ACE_ENV_ARG_DECL)
{
ACE_THROW (CORBA::NO_IMPLEMENT ());
}
CORBA::ExceptionList_ptr
CORBA::ExceptionList::_duplicate (void)
{
this->_incr_refcnt ();
return this;
}
void
CORBA::ExceptionList::_destroy (void)
{
this->_decr_refcnt ();
}
void
CORBA::ExceptionList::_incr_refcnt (void)
{
this->ref_count_++;
}
void
CORBA::ExceptionList::_decr_refcnt (void)
{
this->ref_count_--;
if (this->ref_count_ == 0)
{
delete this;
}
}
#if defined (ACE_HAS_EXPLICIT_TEMPLATE_INSTANTIATION)
template class ACE_Atomic_Op<TAO_SYNCH_MUTEX, CORBA::ULong>;
template class ACE_Atomic_Op_Ex<TAO_SYNCH_MUTEX, CORBA::ULong>;
template class ACE_Node<CORBA::TypeCode_ptr>;
template class ACE_Unbounded_Queue<CORBA::TypeCode_ptr>;
template class ACE_Unbounded_Queue_Iterator<CORBA::TypeCode_ptr>;
#elif defined (ACE_HAS_TEMPLATE_INSTANTIATION_PRAGMA)
#pragma instantiate ACE_Atomic_Op<TAO_SYNCH_MUTEX, CORBA::ULong>
#pragma instantiate ACE_Atomic_Op_Ex<TAO_SYNCH_MUTEX, CORBA::ULong>
#pragma instantiate ACE_Node<CORBA::TypeCode_ptr>
#pragma instantiate ACE_Unbounded_Queue<CORBA::TypeCode_ptr>
#pragma instantiate ACE_Unbounded_Queue_Iterator<CORBA::TypeCode_ptr>
#endif /* ACE_HAS_EXPLICIT_TEMPLATE_INSTANTIATION */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?