summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/tests/Notify/lib/Direct_Supplier.cpp
blob: af7cf9fa69a487f3c0eb32aee65a88bfd3fad156 (plain)
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
// $Id$

#include "Direct_Supplier.h"

#if ! defined (__ACE_INLINE__)
#include "Direct_Supplier.inl"
#endif /* __ACE_INLINE__ */

ACE_RCSID(Notify, TAO_NS_Direct_Supplier, "$id$")

#include "LookupManager.h"

TAO_NS_Direct_Supplier::TAO_NS_Direct_Supplier (ACE_CString& target)
  : target_ (target)
{
}

TAO_NS_Direct_Supplier::~TAO_NS_Direct_Supplier ()
{
}

void
TAO_NS_Direct_Supplier::connect (ACE_ENV_SINGLE_ARG_DECL)
{
  // Get the POA
  PortableServer::POA_var poa;
  LOOKUP_MANAGER->resolve (poa, this->poa_name_.c_str () ACE_ENV_ARG_PARAMETER);
  ACE_CHECK;

  // set the POA
  this->set_poa (poa.in () ACE_ENV_ARG_PARAMETER);
  ACE_CHECK;

  // Get hold of the reference.
  CosNotifyComm::StructuredPushSupplier_var supplier_ref =
    this->_this (ACE_ENV_SINGLE_ARG_PARAMETER);
  ACE_CHECK;

  // Register the activated object.
  LOOKUP_MANAGER->_register (supplier_ref.in (), this->name_.c_str () ACE_ENV_ARG_PARAMETER);
  ACE_CHECK;

  // Resolve the target object.
  LOOKUP_MANAGER->resolve (this->target_object_, this->target_.c_str () ACE_ENV_ARG_PARAMETER);
  ACE_CHECK;
}

void
TAO_NS_Direct_Supplier::send_event (const CosNotification::StructuredEvent& event
                                   ACE_ENV_ARG_DECL)
{
  ACE_ASSERT (!CORBA::is_nil (this->target_object_.in ()));

  this->target_object_->push_structured_event (event ACE_ENV_ARG_PARAMETER);
  ACE_CHECK;
}