Bug 2245

Summary: smart proxies destructor not working properly
Product: TAO Reporter: zhangw
Component: Smart ProxiesAssignee: zhangw
Status: REOPENED ---    
Severity: normal    
Priority: P3    
Version: 1.4.7   
Hardware: All   
OS: All   
Bug Depends on:    
Bug Blocks: 2440    

Description zhangw 2005-09-28 15:21:31 CDT
If we use smart proxy, the following narrow function call
will return a pointer to the created smart proxy object.

        TestSmart_var phello = TestSmart::_narrow(obj);

However the returned object is a local object with is_local_ = true.
When phello out of scope, it will go ahead invoking :

CORBA::Object::_remove_ref (void)
{
if (this->is_local_)
return;
...
}

Since is_local_ is true, it is just returned and never deleted, that's
why the destructor of the smart proxy was not invoked.

If we let the smart proxy class  inherit from
TAO_Local_RefCounted_Object, then the proxy object will have the correct
reference count and get deleted as expected. See the diff below.

------------------8<----------------8<----------------------------------
Index: Smart_Proxies.h
===================================================================
RCS file: /cvs/ACE_wrappers-repository/TAO/tao/SmartProxies/Smart_Proxies.h,v
retrieving revision 1.5
diff -u -r1.5 Smart_Proxies.h
--- Smart_Proxies.h     16 May 2005 18:24:22 -0000      1.5
+++ Smart_Proxies.h     28 Sep 2005 20:15:55 -0000
@@ -21,6 +21,7 @@
 #include "smartproxies_export.h"
 #include "tao/Object.h"
 #include "tao/TAO_Singleton.h"
+#include "tao/LocalObject.h"

 #if !defined (ACE_LACKS_PRAGMA_ONCE)
 # pragma once
@@ -33,7 +34,8 @@
  *
  * Contains the _var pointer to the real proxy.
  */
-class TAO_SmartProxies_Export TAO_Smart_Proxy_Base
+class TAO_SmartProxies_Export TAO_Smart_Proxy_Base :
+  public virtual TAO_Local_RefCounted_Object
 {

 public:

------------------8<----------------8<----------------------------------

Also this will fix the problem of getting crash when calling _non_existent()
with smart proxies.

I provided a test based on the two problems. The test is now in
$TAO_ROOT/tests/Smart_Proxies/dtor.
Comment 1 zhangw 2005-09-28 15:26:49 CDT
The bug is resolved. The fix is merged in.
Comment 2 Johnny Willemsen 2008-05-13 01:55:45 CDT
Reopening this one, local object is now refcounted also, so the check in the remove_ref is now gone, I think we can remove the inheritance again