rt_transport_descriptor.cpp
来自「这是广泛使用的通信开源项目,对于大容量,高并发的通讯要求完全能够胜任,他广泛可用」· C++ 代码 · 共 116 行
CPP
116 行
// RT_Transport_Descriptor.cpp,v 1.4 2003/10/29 16:52:06 bala Exp
#include "RT_Transport_Descriptor.h"
#include "ace/OS_Memory.h"
#if ! defined (__ACE_INLINE__)
#include "RT_Transport_Descriptor.inl"
#endif /* __ACE_INLINE__ */
ACE_RCSID(RTCORBA, TAO_RT_Transport_Descriptor, "RT_Transport_Descriptor.cpp,v 1.4 2003/10/29 16:52:06 bala Exp")
#include "RT_Transport_Descriptor_Property.h"
#include "tao/Endpoint.h"
TAO_RT_Transport_Descriptor::~TAO_RT_Transport_Descriptor ()
{
if (this->delete_properties_ == 1)
{
TAO_RT_Transport_Descriptor_Property *current =
this->property_list_;
while (current)
{
TAO_RT_Transport_Descriptor_Property *next =
current->next_;
delete current;
current = next;
}
}
}
TAO_Transport_Descriptor_Interface *
TAO_RT_Transport_Descriptor::duplicate (void)
{
// Get a copy of the underlying endpoint
TAO_Endpoint *endpoint =
this->endpoint_->duplicate ();
if (endpoint == 0)
return 0;
TAO_RT_Transport_Descriptor *new_descriptor = 0;
ACE_NEW_RETURN (new_descriptor,
TAO_RT_Transport_Descriptor (endpoint, 1),
0);
// Copy the Properties.
TAO_RT_Transport_Descriptor_Property *current_property =
this->property_list_;
TAO_RT_Transport_Descriptor_Property *current_new_property = 0;
TAO_RT_Transport_Descriptor_Property *new_property = 0;
while (current_property)
{
new_property =
current_property->duplicate ();
// Note that we cannot use <insert> because that will reverse the stack.
if (new_descriptor->property_list_ == 0)
new_descriptor->property_list_ = new_property;
else
current_new_property->next_ = new_property;
current_new_property = new_property;
current_property = current_property->next_;
}
return new_descriptor;
}
CORBA::Boolean
TAO_RT_Transport_Descriptor::is_equivalent (const TAO_Transport_Descriptor_Interface *other_prop)
{
const TAO_RT_Transport_Descriptor *rhs =
ACE_dynamic_cast (const TAO_RT_Transport_Descriptor*,
other_prop);
if (rhs == 0)
return 0;
// Check if endpoint is equivalent.
if (this->endpoint_->is_equivalent (rhs->endpoint_) == 0)
return 0;
// Check the property_list_.
TAO_RT_Transport_Descriptor_Property *current =
this->property_list_;
TAO_RT_Transport_Descriptor_Property *rhs_current =
rhs->property_list_;
while (current || rhs_current)
{
if (rhs_current == 0 ||
current == 0)
return 0;
if (current->is_equivalent (rhs_current) == 0)
return 0;
current = current->next_;
rhs_current = rhs_current->next_;
}
return 1;
}
u_long
TAO_RT_Transport_Descriptor::hash (void) const
{
return this->endpoint_->hash ();
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?