Bug 3767 - CORBA/e could prevent full generation of _this
Summary: CORBA/e could prevent full generation of _this
Status: NEW
Alias: None
Product: TAO
Classification: Unclassified
Component: ORB (show other bugs)
Version: 1.7.4
Hardware: All Windows NT
: P3 normal
Assignee: DOC Center Support List (internal)
URL:
Depends on:
Blocks:
 
Reported: 2009-11-23 05:20 CST by Johnny Willemsen
Modified: 2009-12-17 06:53 CST (History)
0 users

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
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