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
116
|
// -*- C++ -*-
//=============================================================================
/**
* @file Adapter.h
*
* $Id$
*
* @author Carlos O'Ryan (coryan@uci.edu)
*/
//=============================================================================
#ifndef TAO_ADAPTER_H
#define TAO_ADAPTER_H
#include /**/ "ace/pre.h"
#include "tao/SystemException.h"
#if !defined (ACE_LACKS_PRAGMA_ONCE)
# pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */
#include "tao/CORBA_methods.h"
#include "tao/Pseudo_VarOut_T.h"
TAO_BEGIN_VERSIONED_NAMESPACE_DECL
namespace CORBA
{
typedef TAO_Pseudo_Var_T<Object> Object_var;
typedef TAO_Pseudo_Out_T<Object> Object_out;
}
namespace TAO
{
class ObjectKey;
}
class TAO_ORB_Core;
class TAO_Stub;
class TAO_MProfile;
class TAO_ServerRequest;
class TAO_Export TAO_Adapter
{
public:
virtual ~TAO_Adapter (void);
/// Initialize the Adapter
virtual void open (ACE_ENV_SINGLE_ARG_DECL) = 0;
/// The ORB is shutting down, destroy any resources attached to this
/// adapter.
virtual void close (int wait_for_completion
ACE_ENV_ARG_DECL) = 0;
/// Check if the adapter can be closed in the current context, raise
/// an exception if not.
virtual void check_close (int wait_for_completion
ACE_ENV_ARG_DECL) = 0;
/**
* Return the priority assigned to this adapter.
* Adapters at higher priority are used first, the first adapter
* that matches a key is used to dispatch a request.
*/
virtual int priority (void) const = 0;
/// Return the status....
virtual int dispatch (TAO::ObjectKey &key,
TAO_ServerRequest &request,
CORBA::Object_out forward_to
ACE_ENV_ARG_DECL) = 0;
enum {
/// The operation was successfully dispatched, an exception may
/// have been raised, but that is a correct execution too.
DS_OK,
/// There was a problem in dispatching the operation.
DS_FAILED,
/// The key is not in the right format for this Adapter, try the
/// next one.
DS_MISMATCHED_KEY,
/// Forward the request to another object reference, this decouples
/// the ORB from the PortableServer::ForwardRequest exception
DS_FORWARD
};
/// Return the name, i.e. the object id used to resolve it in the
/// ORB.
virtual const char *name (void) const = 0;
/**
* Return the root of the Object Adapter.
* Each adapter defines its own IDL interface accessed through the
* method above.
*/
virtual CORBA::Object_ptr root (void) = 0;
/// Create a collocated object using the given profile and stub.
virtual CORBA::Object_ptr create_collocated_object (TAO_Stub *,
const TAO_MProfile &) = 0;
/// Initialize a collocated object using the given stub
/// pointer for lazily evaluated object references.
virtual CORBA::Long initialize_collocated_object (TAO_Stub *) = 0;
};
TAO_END_VERSIONED_NAMESPACE_DECL
#include /**/ "ace/post.h"
#endif /* TAO_ADAPTER_H */
|