blob: 4abc3c5cb612def35e18d6df32f99eba4219aa6b (
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
|
// -*- C++ -*-
// ===================================================================
/**
* @file Connection_Descriptor_Interface.h
*
* $Id$
*
* @author Bala Natarajan <bala@cs.wustl.edu>
*/
// ===================================================================
#ifndef TAO_CONNECTION_DESCRIPTOR_INTERFACE_H
#define TAO_CONNECTION_DESCRIPTOR_INTERFACE_H
#include "ace/pre.h"
#include "tao/Endpoint.h"
#if !defined (ACE_LACKS_PRAGMA_ONCE)
# pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */
#if defined(_MSC_VER)
#if (_MSC_VER >= 1200)
#pragma warning(push)
#endif /* _MSC_VER >= 1200 */
#pragma warning(disable:4250)
#endif /* _MSC_VER */
/**
* @class TAO_Connection_Descriptor_Interface
*
* @brief An abstract base class for Connection Property
*
* This class provides an abstract interface and holds minimal info
* on which the Connection Caching scheme is based on. Concrete
* connection properties can be got by inheriting from this class and
* implementing the virtual functions.
* Note 1: Additional properties for connection like Qos,
* Priority that the RT folks would need, can be added by
* inheriting from this class and providing the following
* methods.
* 1. duplicate ()
* 2. is_equivalent ()
* 3. hash ()
*/
class TAO_Export TAO_Connection_Descriptor_Interface
{
public:
/// Destructor
virtual ~TAO_Connection_Descriptor_Interface (void);
/// This call allocates and copies the contents of this class and
/// returns the pointer
virtual TAO_Connection_Descriptor_Interface *duplicate (void) = 0;
/// Try to determine if this object is same as the <other_prop>.
virtual CORBA::Boolean is_equivalent (
const TAO_Connection_Descriptor_Interface *other_prop) = 0;
/// Generate hash value for our class
virtual u_long hash (void) const = 0;
/// Return the underlying endpoint object
TAO_Endpoint *endpoint (void);
/// Set the BiDir flag
void set_bidir_flag (CORBA::Boolean flag);
protected:
/// Default Constructor
TAO_Connection_Descriptor_Interface (void);
/// Constructor
TAO_Connection_Descriptor_Interface (TAO_Endpoint *endpoint,
CORBA::Boolean flag = 0);
/// The base property of the connection ie. the peer's endpoint
TAO_Endpoint *endpoint_;
/// Should the endpoint be used in either direction?
CORBA::Boolean bidir_flag_;
/// Is the endpoint allocated on the heap? If so, we will have to
/// delete it when we destruct ourselves.
CORBA::Boolean endpoint_from_heap_;
};
#if defined (__ACE_INLINE__)
# include "tao/Connection_Descriptor_Interface.inl"
#endif /* __ACE_INLINE__ */
#include "ace/post.h"
#endif /*TAO_CONNECTION_DESCRIPTOR_INTERFACE_H*/
|