blob: 04a87da98e767cb1b740f06edf137889aeb176ea (
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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
|
// -*- C++ -*-
//=============================================================================
/**
* @file AbstractBase.h
*
* $Id$
*
* @author Jeff Parsons <parsons@cs.wust.edu>
*/
//=============================================================================
#ifndef TAO_ABSTRACTBASE_H
#define TAO_ABSTRACTBASE_H
#include "ace/pre.h"
#include "tao/corbafwd.h"
#if !defined (ACE_LACKS_PRAGMA_ONCE)
# pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */
#include "tao/Pseudo_VarOut_T.h"
#include "ace/CORBA_macros.h"
class TAO_Stub;
class TAO_Abstract_ServantBase;
namespace CORBA
{
class AbstractBase;
typedef TAO_Pseudo_Var_T<AbstractBase> AbstractBase_var;
typedef TAO_Pseudo_Out_T<AbstractBase, AbstractBase_var> AbstractBase_out;
/**
* @class AbstractBase
*
* @brief Abstract base class for Interfaces and Valuetypes
*
* Allows the determination of whether an object has been passed by
* reference or by value to be deferred until runtime.
*/
class TAO_Export AbstractBase
{
public:
/// Constructor.
/**
* This constructor is only meant to be called by the
* corresponding CDR stream extraction operator.
*/
AbstractBase (TAO_Stub * p,
CORBA::Boolean collocated,
TAO_Abstract_ServantBase * servant);
typedef CORBA::AbstractBase_ptr _ptr_type;
typedef CORBA::AbstractBase_var _var_type;
static int _tao_class_id;
static CORBA::AbstractBase_ptr _narrow (CORBA::AbstractBase_ptr obj
ACE_ENV_ARG_DECL_WITH_DEFAULTS);
static CORBA::AbstractBase_ptr _unchecked_narrow (
CORBA::AbstractBase_ptr obj
ACE_ENV_ARG_DECL_WITH_DEFAULTS
);
static CORBA::AbstractBase_ptr _duplicate (CORBA::AbstractBase_ptr obj);
static CORBA::AbstractBase_ptr _nil (void);
/// Used in the implementation of CORBA::Any
static void _tao_any_destructor (void*);
CORBA::Object_ptr _to_object (void);
CORBA::ValueBase *_to_value (void);
virtual CORBA::Boolean _is_a (const char * type_id
ACE_ENV_ARG_DECL_WITH_DEFAULTS);
virtual void * _tao_QueryInterface (ptrdiff_t type);
virtual const char * _interface_repository_id (void) const;
virtual const char * _tao_obv_repository_id (void) const;
virtual void * _tao_obv_narrow (ptrdiff_t type_id);
virtual CORBA::Boolean _tao_marshal_v (TAO_OutputCDR & strm);
virtual CORBA::Boolean _tao_unmarshal_v (TAO_InputCDR & strm);
virtual void _add_ref (void);
virtual void _remove_ref (void);
CORBA::Boolean _is_objref (void) const;
TAO_Stub * _stubobj (void) const;
CORBA::Boolean _is_collocated (void) const;
TAO_Abstract_ServantBase * _servant (void) const;
CORBA::Boolean _is_local (void) const;
protected:
AbstractBase (void);
AbstractBase (const AbstractBase &);
virtual ~AbstractBase (void);
protected:
CORBA::Boolean is_objref_;
private:
AbstractBase & operator= (const AbstractBase &);
virtual CORBA::ValueBase * _tao_to_value (void);
private:
TAO_Stub * concrete_stubobj_;
CORBA::Boolean is_collocated_;
TAO_Abstract_ServantBase * servant_;
CORBA::Boolean is_local_;
};
}
TAO_Export CORBA::Boolean
operator<< (TAO_OutputCDR &, const CORBA::AbstractBase_ptr);
TAO_Export CORBA::Boolean
operator>> (TAO_InputCDR &, CORBA::AbstractBase_ptr &);
#if defined (__ACE_INLINE__)
# include "tao/AbstractBase.inl"
#endif /* __ACE_INLINE__) */
#include "ace/post.h"
#endif /* TAO_ABSTRACTBASE_H */
|