Bug 3767

Summary: CORBA/e could prevent full generation of _this
Product: TAO Reporter: Johnny Willemsen <jwillemsen>
Component: ORBAssignee: DOC Center Support List (internal) <tao-support>
Status: NEW ---    
Severity: normal    
Priority: P3    
Version: 1.7.4   
Hardware: All   
OS: Windows NT   

Description Johnny Willemsen 2009-11-23 05:20:47 CST
parts of CORBA/e (have to check which profile) forbids the use of _this. At this moment the IDL compiler generates a full _this, but we could generate this method to just generate an exception with some corba/e profiles

// TAO_IDL - Generated from
// c:\ace\latest\ace_wrappers\tao\tao_idl\be\be_visitor_interface/interface_ss.cpp:856

Components::KeylessCCMHome *
POA_Components::KeylessCCMHome::_this (void)
{
  TAO_Stub *stub = this->_create_stub ();
  
  TAO_Stub_Auto_Ptr safe_stub (stub);
  ::CORBA::Object_ptr tmp = CORBA::Object_ptr ();
  
  ::CORBA::Boolean const _tao_opt_colloc =
    stub->servant_orb_var ()->orb_core ()->optimize_collocation_objects ();
  
  ACE_NEW_RETURN (
      tmp,
      ::CORBA::Object (stub, _tao_opt_colloc, this),
      0
    );
  
  ::CORBA::Object_var obj = tmp;
  (void) safe_stub.release ();
  
  typedef ::Components::KeylessCCMHome STUB_SCOPED_NAME;
  return
    TAO::Narrow_Utils<STUB_SCOPED_NAME>::unchecked_narrow (
        obj.in (),
        Components__TAO_KeylessCCMHome_Proxy_Broker_Factory_function_pointer
      );
}
Comment 1 Johnny Willemsen 2009-12-17 06:53:41 CST
See TAO\tests\CORBA_e_Implicit_Activation, we can directly throw PortableServer::POA::WrongPolicy in _this with CORBA/e, only have to check if this is valid for CORBA/e micro and/or compact