📄 proxy.cpp
字号:
// Proxy.cpp,v 1.12 2003/07/06 21:41:59 pradeep Exp
#include "Proxy.h"
#if ! defined (__ACE_INLINE__)
#include "Proxy.inl"
#endif /* __ACE_INLINE__ */
ACE_RCSID(RT_Notify, TAO_Notify_Proxy, "Proxy.cpp,v 1.12 2003/07/06 21:41:59 pradeep Exp")
#include "Peer.h"
#include "Proxy.h"
#include "Method_Request_Updates.h"
#include "Worker_Task.h"
#include "Properties.h"
#include "POA_Helper.h"
TAO_Notify_Proxy::TAO_Notify_Proxy (void)
:updates_off_ (0)
{
}
TAO_Notify_Proxy::~TAO_Notify_Proxy ()
{
}
CORBA::Object_ptr
TAO_Notify_Proxy::activate (PortableServer::Servant servant ACE_ENV_ARG_DECL)
{
// Set the POA that we use to return our <ref>
this->poa_ = this->proxy_poa_;
return this->proxy_poa_->activate (servant, this->id_ ACE_ENV_ARG_PARAMETER);
}
void
TAO_Notify_Proxy::deactivate (ACE_ENV_SINGLE_ARG_DECL)
{
this->proxy_poa_->deactivate (this->id_ ACE_ENV_ARG_PARAMETER);
}
void
TAO_Notify_Proxy::subscribed_types (TAO_Notify_EventTypeSeq& subscribed_types ACE_ENV_ARG_DECL)
{
ACE_GUARD_THROW_EX (TAO_SYNCH_MUTEX, ace_mon, this->lock_,
CORBA::INTERNAL ());
ACE_CHECK;
// copy
subscribed_types = this->subscribed_types_;
}
void
TAO_Notify_Proxy::types_changed (const TAO_Notify_EventTypeSeq& added, const TAO_Notify_EventTypeSeq& removed ACE_ENV_ARG_DECL)
{
TAO_Notify_Method_Request_Updates_No_Copy request (added, removed, this);
if (TAO_Notify_PROPERTIES::instance()->asynch_updates () == 1) // if we should send the updates synchronously.
{
this->worker_task ()->execute (request ACE_ENV_ARG_PARAMETER);
}
else // execute in the current thread context.
{
request.execute (ACE_ENV_SINGLE_ARG_PARAMETER);
}
}
CosNotification::EventTypeSeq*
TAO_Notify_Proxy::obtain_types (CosNotifyChannelAdmin::ObtainInfoMode mode, const TAO_Notify_EventTypeSeq& types ACE_ENV_ARG_DECL)
ACE_THROW_SPEC ((
CORBA::SystemException
))
{
CosNotification::EventTypeSeq_var event_type_seq;
ACE_NEW_THROW_EX (event_type_seq,
CosNotification::EventTypeSeq (),
CORBA::NO_MEMORY ());
ACE_GUARD_THROW_EX (TAO_SYNCH_MUTEX, ace_mon, this->lock_, CORBA::INTERNAL ());
ACE_CHECK_RETURN (event_type_seq._retn ());
if (mode == CosNotifyChannelAdmin::ALL_NOW_UPDATES_OFF ||
mode == CosNotifyChannelAdmin::ALL_NOW_UPDATES_ON)
{
types.populate (event_type_seq);
}
if (mode == CosNotifyChannelAdmin::NONE_NOW_UPDATES_ON ||
mode == CosNotifyChannelAdmin::ALL_NOW_UPDATES_ON)
{
this->updates_off_ = 0;
}
else
{
this->updates_off_ = 1;
}
return event_type_seq._retn ();
}
void
TAO_Notify_Proxy::qos_changed (const TAO_Notify_QoSProperties& qos_properties)
{
//Inform Peers of qos changes.
TAO_Notify_Peer* peer = this->peer ();
if (peer != 0)
peer->qos_changed (qos_properties);
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -