summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/tests/Notify/lib/Peer_T.h
blob: 263b2df4803bb858587047199d80cb23bf03d3bb (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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
/* -*- C++ -*- */
/**
 *  @file Peer_T.h
 *
 *  @author Pradeep Gore <pradeep@oomworks.com>
 */

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

#if !defined (ACE_LACKS_PRAGMA_ONCE)
# pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */

#include "Peer.h"
#include "tao/PortableServer/Servant_Base.h"

/**
 * @class TAO_Notify_Tests_Peer_T
 *
 * @brief Base implementation for all Supplier and Consumer Classes.
 */
template <class Peer_Traits>
class TAO_Notify_Tests_Peer_T : public TAO_Notify_Tests_Peer, public Peer_Traits::SKELETON
{
  typedef typename Peer_Traits::Admin_Traits Admin_Traits;
  typedef typename Peer_Traits::Admin_Ext_Traits Admin_Ext_Traits;
  typedef typename Peer_Traits::Proxy_Traits Proxy_Traits;

  typedef typename Peer_Traits::PTR Peer_Traits_PTR;

  typedef typename Proxy_Traits::INTERFACE Proxy_Traits_INTERFACE;
  typedef typename Proxy_Traits::PTR Proxy_Traits_PTR;
  typedef typename Proxy_Traits::ID Proxy_Traits_ID;

  typedef typename Admin_Traits::PTR Admin_Traits_PTR;

  typedef typename Admin_Ext_Traits::INTERFACE Admin_Ext_Traits_INTERFACE;
  typedef typename Admin_Ext_Traits::PTR Admin_Ext_Traits_PTR;

public:
  /// Constructor
  TAO_Notify_Tests_Peer_T ();

  /// Destructor
  virtual ~TAO_Notify_Tests_Peer_T ();

  // Activates this servant with the POA supplied in init.
  // Connects to given proxy.
  void connect (Proxy_Traits_PTR proxy, Proxy_Traits_ID proxy_id);

  // Activates this servant with the POA supplied in init.
  // Creates a new proxy supplier and connects to it.
  void connect (Admin_Traits_PTR admin_ptr);

  /// Connect using options parsed and set initial QoS.
  virtual void connect ();

  // Disconnect from the Peer.
  void disconnect ();

  /// Set Qos
  void set_qos (CosNotification::QoSProperties& qos);

  /// Dump status
  void status ();

  // Accessor for <proxy_>.
  Proxy_Traits_PTR get_proxy ();

  /// Deactivate the object.
  void deactivate ();

  // = ServantBase operations
  virtual PortableServer::POA_ptr _default_POA ();

protected:
  /// Activate this object in the default POA.
  virtual Peer_Traits_PTR activate ();

  ///= To be implemented by specializations.

  /// Connect to Peer.
  virtual void connect_to_peer (Proxy_Traits_PTR proxy_ptr, Peer_Traits_PTR peer_ptr) = 0;

  /// Obtain Proxy.
  virtual Proxy_Traits_PTR obtain_proxy (Admin_Traits_PTR admin_ptr) = 0;

  /// Obtain Proxy with QoS.
  virtual Proxy_Traits_PTR obtain_proxy (Admin_Ext_Traits_PTR admin_ptr
                                         , CosNotification::QoSProperties& qos) = 0;

  /// Disconnect from proxy.
  virtual void disconnect_from_proxy () = 0;

  // = Data Members

  /// The proxy that we are connected to.
   typename Proxy_Traits::VAR proxy_;

  /// This <proxy_> id.
   typename Proxy_Traits::ID proxy_id_;
};

#if defined (ACE_TEMPLATES_REQUIRE_SOURCE)
#include "Peer_T.cpp"
#endif /* ACE_TEMPLATES_REQUIRE_SOURCE */

#if defined (ACE_TEMPLATES_REQUIRE_PRAGMA)
#pragma implementation ("Peer_T.cpp")
#endif /* ACE_TEMPLATES_REQUIRE_PRAGMA */

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