00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018 #ifndef TAO_CORBA_OBJECT_H
00019 #define TAO_CORBA_OBJECT_H
00020
00021 #include "ace/pre.h"
00022
00023 #include "tao/IOP_IORC.h"
00024
00025 #if !defined (ACE_LACKS_PRAGMA_ONCE)
00026 # pragma once
00027 #endif
00028
00029 #include "tao/CORBA_methods.h"
00030 #include "tao/Policy_ForwardC.h"
00031 #include "tao/Pseudo_VarOut_T.h"
00032 #include "tao/Object_Argument_T.h"
00033 #include "tao/Arg_Traits_T.h"
00034 #include "tao/Any_Insert_Policy_T.h"
00035 #include "tao/Configurable_Refcount.h"
00036
00037 #if defined (HPUX) && defined (IOR)
00038
00039
00040 # undef IOR
00041 #endif
00042
00043 ACE_BEGIN_VERSIONED_NAMESPACE_DECL
00044 class ACE_Lock;
00045 ACE_END_VERSIONED_NAMESPACE_DECL
00046
00047 TAO_BEGIN_VERSIONED_NAMESPACE_DECL
00048
00049 class TAO_Stub;
00050 class TAO_Abstract_ServantBase;
00051 class TAO_ORB_Core;
00052
00053 namespace TAO
00054 {
00055 class ObjectKey;
00056 class Object_Proxy_Broker;
00057 }
00058
00059 namespace CORBA
00060 {
00061 class InterfaceDef;
00062 typedef InterfaceDef *InterfaceDef_ptr;
00063
00064 class ImplementationDef;
00065 typedef ImplementationDef *ImplementationDef_ptr;
00066
00067 class Context;
00068 typedef Context *Context_ptr;
00069
00070 class Request;
00071 typedef Request *Request_ptr;
00072
00073 class NVList;
00074 typedef NVList *NVList_ptr;
00075
00076 class NamedValue;
00077 typedef NamedValue * NamedValue_ptr;
00078
00079 typedef ULong Flags;
00080
00081 class ExceptionList;
00082 typedef ExceptionList *ExceptionList_ptr;
00083
00084 class ContextList;
00085 typedef ContextList *ContextList_ptr;
00086
00087 class Object;
00088 typedef Object *Object_ptr;
00089 typedef TAO_Pseudo_Var_T<Object> Object_var;
00090 typedef TAO_Pseudo_Out_T<Object> Object_out;
00091
00092
00093
00094
00095
00096
00097
00098
00099
00100
00101 class TAO_Export Object
00102 {
00103 public:
00104
00105
00106 virtual ~Object (void);
00107
00108
00109
00110
00111
00112
00113
00114
00115
00116 static CORBA::Object_ptr _duplicate (CORBA::Object_ptr obj);
00117
00118
00119 static CORBA::Object_ptr _nil (void);
00120
00121
00122 static CORBA::Object_ptr _narrow (CORBA::Object_ptr obj);
00123
00124
00125
00126
00127
00128
00129
00130
00131 virtual CORBA::Boolean _is_a (const char *logical_type_id);
00132
00133
00134
00135 virtual const char* _interface_repository_id (void) const;
00136
00137
00138
00139
00140
00141
00142
00143
00144 virtual CORBA::ULong _hash (CORBA::ULong maximum);
00145
00146
00147
00148
00149
00150
00151
00152 virtual CORBA::Boolean _is_equivalent (CORBA::Object_ptr other_obj);
00153
00154 #if (TAO_HAS_MINIMUM_CORBA == 0)
00155
00156 virtual CORBA::Boolean _non_existent (void);
00157
00158 #if ! defined (CORBA_E_COMPACT) && ! defined (CORBA_E_MICRO)
00159
00160
00161 virtual CORBA::ImplementationDef_ptr _get_implementation (void);
00162
00163
00164 virtual InterfaceDef_ptr _get_interface (void);
00165
00166
00167 virtual CORBA::Object_ptr _get_component (void);
00168 #endif
00169
00170
00171 virtual char * _repository_id (void);
00172
00173 #if ! defined (CORBA_E_COMPACT) && ! defined (CORBA_E_MICRO)
00174
00175
00176
00177
00178
00179
00180 virtual void _create_request (CORBA::Context_ptr ctx,
00181 const char *operation,
00182 CORBA::NVList_ptr arg_list,
00183 CORBA::NamedValue_ptr result,
00184 CORBA::Request_ptr &request,
00185 CORBA::Flags req_flags);
00186
00187 virtual void _create_request (CORBA::Context_ptr ctx,
00188 const char *operation,
00189 CORBA::NVList_ptr arg_list,
00190 CORBA::NamedValue_ptr result,
00191 CORBA::ExceptionList_ptr exclist,
00192 CORBA::ContextList_ptr ctxtlist,
00193 CORBA::Request_ptr &request,
00194 CORBA::Flags req_flags);
00195 #endif
00196
00197
00198
00199
00200
00201
00202
00203 virtual CORBA::Request_ptr _request (const char *operation);
00204
00205 #endif
00206
00207 #if (TAO_HAS_CORBA_MESSAGING == 1)
00208
00209 CORBA::Policy_ptr _get_policy (CORBA::PolicyType type);
00210
00211 CORBA::Policy_ptr _get_cached_policy (TAO_Cached_Policy_Type type);
00212
00213 CORBA::Object_ptr _set_policy_overrides (
00214 const CORBA::PolicyList & policies,
00215 CORBA::SetOverrideType set_add);
00216
00217 CORBA::PolicyList * _get_policy_overrides (
00218 const CORBA::PolicyTypeSeq & types);
00219
00220 CORBA::Boolean _validate_connection (
00221 CORBA::PolicyList_out inconsistent_policies);
00222
00223 #endif
00224
00225 virtual CORBA::ORB_ptr _get_orb (void);
00226
00227
00228
00229
00230
00231
00232
00233
00234
00235 virtual void _add_ref (void);
00236
00237
00238 virtual void _remove_ref (void);
00239
00240
00241
00242 typedef Object_ptr _ptr_type;
00243 typedef Object_var _var_type;
00244 typedef Object_out _out_type;
00245
00246
00247
00248
00249
00250
00251
00252
00253
00254
00255
00256
00257 protected:
00258 void _tao_actual_add_ref (void);
00259 void _tao_actual_remove_ref (void);
00260
00261 public:
00262
00263
00264 static CORBA::Boolean marshal (const Object_ptr x,
00265 TAO_OutputCDR &cdr);
00266
00267
00268
00269 virtual TAO_Abstract_ServantBase *_servant (void) const;
00270
00271
00272
00273
00274 virtual CORBA::Boolean _is_collocated (void) const;
00275
00276
00277 virtual CORBA::Boolean _is_local (void) const;
00278
00279
00280 static void _tao_any_destructor (void*);
00281
00282
00283 static CORBA::Boolean is_nil_i (CORBA::Object_ptr obj);
00284
00285
00286 static void tao_object_initialize (Object *);
00287
00288
00289
00290 virtual TAO::ObjectKey *_key (void);
00291
00292
00293 Object (TAO_Stub *p,
00294 CORBA::Boolean collocated = 0,
00295 TAO_Abstract_ServantBase *servant = 0,
00296 TAO_ORB_Core *orb_core = 0);
00297
00298 Object (IOP::IOR *ior, TAO_ORB_Core *orb_core = 0);
00299
00300
00301 virtual TAO_Stub *_stubobj (void) const;
00302 virtual TAO_Stub *_stubobj (void);
00303
00304
00305 virtual void _proxy_broker (TAO::Object_Proxy_Broker *proxy_broker);
00306
00307 public:
00308
00309
00310 virtual CORBA::Boolean marshal (TAO_OutputCDR &cdr);
00311
00312 #if defined (GEN_OSTREAM_OPS)
00313
00314
00315
00316 static std::ostream& _tao_stream (std::ostream &strm,
00317 const Object_ptr _tao_objref);
00318 virtual std::ostream& _tao_stream_v (std::ostream &strm) const;
00319
00320 #endif
00321
00322
00323 CORBA::Boolean is_evaluated (void) const;
00324
00325
00326
00327
00328
00329
00330
00331
00332 void set_collocated_servant (TAO_Abstract_ServantBase *);
00333
00334
00335 TAO_ORB_Core *orb_core (void) const;
00336
00337
00338
00339
00340
00341
00342
00343 IOP::IOR *steal_ior (void);
00344
00345 const IOP::IOR &ior (void) const;
00346
00347
00348
00349
00350 virtual bool can_convert_to_ior (void) const;
00351
00352
00353
00354
00355 virtual char* convert_to_ior (bool use_omg_ior_format,
00356 const char* ior_prefix) const;
00357
00358 protected:
00359
00360
00361 Object (int dummy = 0);
00362
00363
00364
00365 TAO::Object_Proxy_Broker *proxy_broker () const;
00366
00367
00368 TAO_Configurable_Refcount refcount_;
00369
00370 private:
00371
00372
00373 Object (const Object &);
00374 Object &operator = (const Object &);
00375
00376 private:
00377
00378
00379 CORBA::Boolean is_local_;
00380
00381
00382 CORBA::Boolean is_evaluated_;
00383
00384
00385
00386 IOP::IOR_var ior_;
00387
00388
00389
00390
00391
00392
00393
00394
00395
00396
00397
00398
00399
00400
00401 TAO_ORB_Core * orb_core_;
00402
00403
00404
00405
00406
00407
00408
00409 TAO_Stub * protocol_proxy_;
00410
00411
00412
00413
00414
00415
00416
00417
00418 ACE_Lock * object_init_lock_;
00419 };
00420 }
00421
00422 namespace TAO
00423 {
00424 template<>
00425 class TAO_Export Arg_Traits<CORBA::Object>
00426 : public Object_Arg_Traits_T<CORBA::Object_ptr,
00427 CORBA::Object_var,
00428 CORBA::Object_out,
00429 TAO::Objref_Traits<CORBA::Object>,
00430 TAO::Any_Insert_Policy_CORBA_Object <CORBA::Object_ptr> >
00431 {
00432 };
00433
00434 template<>
00435 struct TAO_Export Objref_Traits<CORBA::Object>
00436 {
00437 static CORBA::Object_ptr duplicate (CORBA::Object_ptr);
00438 static void release (CORBA::Object_ptr);
00439 static CORBA::Object_ptr nil (void);
00440 static CORBA::Boolean marshal (const CORBA::Object_ptr p,
00441 TAO_OutputCDR & cdr);
00442 };
00443
00444 template<>
00445 struct TAO_Export In_Object_Argument_Cloner_T<CORBA::InterfaceDef_ptr>
00446 {
00447 static void duplicate(CORBA::InterfaceDef_ptr objref);
00448 static void release(CORBA::InterfaceDef_ptr objref);
00449 };
00450 }
00451
00452
00453
00454 extern
00455 TAO_Export TAO::Object_Proxy_Broker *
00456 (*_TAO_Object_Proxy_Broker_Factory_function_pointer) (void);
00457
00458 TAO_Export CORBA::Boolean
00459 operator<< (TAO_OutputCDR&, const CORBA::Object*);
00460
00461 TAO_Export CORBA::Boolean
00462 operator>> (TAO_InputCDR&, CORBA::Object *&);
00463
00464 #if defined (GEN_OSTREAM_OPS)
00465
00466 TAO_Export std::ostream&
00467 operator<< (std::ostream&, CORBA::Object_ptr);
00468
00469 #endif
00470
00471 TAO_END_VERSIONED_NAMESPACE_DECL
00472
00473 #if defined (__ACE_INLINE__)
00474 # include "tao/Object.inl"
00475 #endif
00476
00477 #include "ace/post.h"
00478 #endif