summaryrefslogtreecommitdiff
path: root/TAO/tao/Object.cpp
blob: da975f7635bbac39782710688d081df8c6770fb7 (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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
// @(#) $Id$
//
// Copyright 1994-1995 by Sun Microsystems Inc.
// All Rights Reserved
//
// ORB:         CORBA_Object operations

#include "tao/corba.h"

#if !defined (__ACE_INLINE__)
# include "tao/Object.i"
#endif /* ! __ACE_INLINE__ */

ACE_RCSID(tao, Object, "$Id$")

CORBA_Object::~CORBA_Object (void)
{
  this->protocol_proxy_->_decr_refcnt ();
}

CORBA_Object::CORBA_Object (STUB_Object *protocol_proxy,
                            TAO_ServantBase *servant,
                            CORBA_Boolean collocated)
  : servant_ (servant),
    is_collocated_ (collocated),
    protocol_proxy_ (protocol_proxy),
    refcount_ (1)
{
  // Notice that the refcount_ above is initialized to 1 because
  // the semantics of CORBA Objects are such that obtaining one
  // implicitly takes a reference.
}

// CORBA dup/release.

void
CORBA::release (CORBA_Object_ptr obj)
{
  if (obj)
    obj->_decr_refcnt ();
}

CORBA::InterfaceDef_ptr
CORBA_Object::_get_interface (CORBA::Environment &env)
{
  static const TAO_Param_Data Object_get_interface_params [] =
  {
    { CORBA::_tc_Object, PARAM_RETURN, 0 }
    // XXX should be tc_InterfaceDef
  };

  static const TAO_Call_Data Object_get_interface_calldata =
  {
    "_interface",
    1,
    1,
    &Object_get_interface_params [0],
    0, 0
  };

  CORBA::InterfaceDef_ptr retval = 0;

  // NOTE: If istub->type_id is nonzero, we could try asking a "local"
  // interface repository and avoid costly network I/O.  (It's wrong
  // to have different data associated with the same interface ID in
  // different repositories; the interface is the interface, it
  // doesn't change!)
  //
  // We need to be prepared to ask the object itself for this
  // information though, since there's no guarantee that any local
  // interface repository will really have records of this particular
  // interface.
  void* _tao_arguments[1];
  void** _tao_current_arg = _tao_arguments;
  *_tao_current_arg = &retval; _tao_current_arg++;
  this->_stubobj ()->do_static_call (env,
				     &Object_get_interface_calldata,
				     _tao_arguments);
  return retval;
}

// IS_A ... ask the object if it's an instance of the type whose
// logical type ID is passed as a parameter.

CORBA::Boolean
CORBA_Object::_is_a (const CORBA::Char *type_id,
                     CORBA::Environment &env)
{
  static const TAO_Param_Data Object_is_a_params [] =
  {
    { CORBA::_tc_boolean, PARAM_RETURN, 0 },
    { CORBA::_tc_string, PARAM_IN, 0 }
  };

  static const TAO_Call_Data Object_is_a_calldata =
  {
    "_is_a", 1,
    2, &Object_is_a_params [0],
    0, 0
  };

  // If the object is collocated then try locally....
  if (this->is_collocated_ && this->servant_ != 0)
    return this->servant_->_is_a (type_id, env);


  // NOTE: if istub->type_id is nonzero and we have local knowledge of
  // it, we can answer this question without a costly remote call.
  //
  // That "local knowledge" could come from stubs or skeletons linked
  // into this process in the best case, or a "near" repository in a
  // slightly worse case.  Or in a trivial case, if the ID being asked
  // about is the ID we have recorded, we don't need to ask about the
  // inheritance relationships at all!
  //
  // In real systems having local knowledge will be common, though as
  // the systems built atop ORBs become richer it'll also become
  // common to have the "real type ID" not be directly understood
  // because it's more deeply derived than any locally known types.
  //
  // XXX if type_id is that of CORBA_Object, "yes, we comply" :-)

  if ( ACE_static_cast(const char *, this->_stubobj ()->type_id) != 0
      && ACE_OS::strcmp ((char *) type_id, (char *) this->_stubobj ()->type_id) == 0)
    return 1;

  // Our local knowledge about this type is insufficient to say
  // whether this reference is to an object of a type which "is_a"
  // subtype of the type whose ID is passed as a parameter.  The
  // implementation always knows the answer to that question, however!

  CORBA::Boolean retval = 0;

  void* _tao_arguments[2];
  void** _tao_current_arg = _tao_arguments;
  *_tao_current_arg = &retval; _tao_current_arg++;
  *_tao_current_arg = &type_id; _tao_current_arg++;
  this->_stubobj ()->do_static_call (env,
				     &Object_is_a_calldata,
				     _tao_arguments);
  return retval;
}

const char*
CORBA_Object::_interface_repository_id (void) const
{
  return "IDL:omg.org/CORBA/Object:1.0";
}

TAO_ServantBase *
CORBA_Object::_servant (void) const
{
  return this->servant_;
}

CORBA::Boolean
CORBA_Object::_is_collocated (void) const
{
  return this->is_collocated_;
}

CORBA::ImplementationDef_ptr
CORBA_Object::_get_implementation (CORBA::Environment &env)
{
  return 0;
}

// NON_EXISTENT ... send a simple call to the object, which will
// either elicit a FALSE response or a OBJECT_NOT_EXIST exception.  In
// the latter case, return FALSE.

CORBA::Boolean
CORBA_Object::_non_existent (CORBA::Environment &env)
{
  static const TAO_Param_Data Object_non_existent_params [] =
  {
    { CORBA::_tc_boolean, PARAM_RETURN, 0 }
  };

  static const TAO_Call_Data Object_non_existent_calldata =
  {
    "_non_existent", 1,
    1, &Object_non_existent_params [0],
    0, 0
  };

  CORBA::Boolean retval = 0;

  void* _tao_arguments[1];
  void** _tao_current_arg = _tao_arguments;
  *_tao_current_arg = &retval; _tao_current_arg++;

  TAO_TRY_VAR (env)
    {
      this->_stubobj ()->do_static_call (env,
                                         &Object_non_existent_calldata,
                                         _tao_arguments);
      TAO_CHECK_ENV;
    }
  TAO_CATCH (CORBA::OBJECT_NOT_EXIST, ex)
    {
      ACE_UNUSED_ARG (ex);
      env.clear ();
      return 1;
    }
  TAO_ENDTRY;

  return 0;
}

// Quickly hash an object reference's representation data.  Used to
// create hash tables.

CORBA::ULong
CORBA_Object::_hash (CORBA::ULong maximum,
                     CORBA::Environment &env)
{
  return this->_stubobj ()->hash (maximum, env);
}

// Compare two object references to see if they point to the same
// object.  Used in linear searches, as in hash buckets.
//
// XXX would be useful to also have a trivalued comparison predicate,
// such as strcmp(), to allow more comparison algorithms.

CORBA::Boolean
CORBA_Object::_is_equivalent (CORBA_Object_ptr other_obj,
                              CORBA::Environment &env)
{
  if (other_obj == this)
    {
      env.clear ();
      return 1;
    }

  return this->_stubobj ()->is_equivalent (other_obj, env);
}

// TAO's extensions

TAO_ObjectKey *
CORBA::Object::_key (CORBA::Environment &env)
{
  return this->_stubobj ()->key (env);
}


void 
CORBA::Object::_use_locate_requests (CORBA::Boolean use_it)
{
  IIOP_Object *iiopobj =
    ACE_dynamic_cast (IIOP_Object *, this->_stubobj ());
  
  if (iiopobj == 0)
    {
      return;
    }

  iiopobj->use_locate_requests (use_it);
}

// ****************************************************************

TAO_Object_Field::~TAO_Object_Field (void)
{
}

#if defined (ACE_HAS_EXPLICIT_TEMPLATE_INSTANTIATION)

template class TAO_Object_Field_T<CORBA_Object>;

#elif defined (ACE_HAS_TEMPLATE_INSTANTIATION_PRAGMA)

#pragma instantiate TAO_Object_Field_T<CORBA_Object>

#endif /* ACE_HAS_EXPLICIT_TEMPLATE_INSTANTIATION */