summaryrefslogtreecommitdiff
path: root/orbsvcs/examples/CosEC/RtEC_Based/lib/ProxyPushConsumer_i.h
blob: bfbdb60306f009d19a1a9d419a367657ebeb786b (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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
/* -*- C++ -*- */

//=============================================================================
/**
 *  @file   ProxyPushConsumer_i.h
 *
 *  $Id$
 *
 *  @author Pradeep Gore <pradeep@cs.wustl.edu>
 *
 * This has the implementation of the
 * CosEventChannelAdmin::ProxyPushConsumer interface.
 *
 *
 */
//=============================================================================


#ifndef _PROXYPUSHCONSUMER_I_H
#define _PROXYPUSHCONSUMER_I_H
#include /**/ "ace/pre.h"

#include "orbsvcs/RtecEventChannelAdminS.h"
#include "orbsvcs/CosEventChannelAdminS.h"
#include "rtec_cosec_export.h"

class TAO_CosEC_PushSupplierWrapper;

class TAO_RTEC_COSEC_Export TAO_CosEC_ProxyPushConsumer_i :
  public virtual POA_CosEventChannelAdmin::ProxyPushConsumer
{
  // = TITLE
  //   class TAO_CosEC_ProxyPushConsumer_i implements the ProxyPushConsumer
  //   interface.
  //
  // = DESCRIPTION
  //   This implementation of the ProxyPushConsumer uses the
  //   RtecEventChannelAdmin::ProxyPushConsumer.
  //
  //   NOTE:  RtecEventChannelAdmin::ProxyPushConsumer::push method is
  //   passed a RtecEventComm::EventSet.The <EventHeader> field in that is
  //   initialized using the  the 1st <publications> from the <SupplierQOS>.
  //   so we assume that publications[0] is initialized.
  //
public:
  // = Initialization and termination methods.
  /// Constructor.
  TAO_CosEC_ProxyPushConsumer_i (const RtecEventChannelAdmin::SupplierQOS &qos,
                                 RtecEventChannelAdmin::ProxyPushConsumer_ptr proxypushconsumer);

  /// Destructor.
  ~TAO_CosEC_ProxyPushConsumer_i (void);

  /// Suppliers call this method to pass data to connected consumers.
  virtual void push (const CORBA::Any &data);

  /// Disconnects the supplier from the event communication.
  virtual void disconnect_push_consumer (void);

  /// Connects a push supplier.
  virtual void connect_push_supplier(CosEventComm::PushSupplier_ptr push_supplier);

private:
  /// Returns 0 if a push_supplier is already connected to this
  /// ProxyPushConsumer, otherwise it returns a 1.
  int connected (void);

  /// The SupplierQOS specified by the user of this class.
  const RtecEventChannelAdmin::SupplierQOS &qos_;

  /// The Rtec ProxyPushConsumer specified by the user of this class.
  RtecEventChannelAdmin::ProxyPushConsumer_var proxypushconsumer_;

  /// The Rtec PushSupplier wrapper used by the Rtec ProxyPushConsumer.
  TAO_CosEC_PushSupplierWrapper *wrapper_;
};

#include /**/ "ace/post.h"
#endif /* _PROXYPUSHCONSUMER_I_H */