Bug 2440

Summary: Smart Proxy _non_existent() and string_to_object() problems
Product: TAO Reporter: Andrew Goodwin <andrew_goodwin>
Component: Smart ProxiesAssignee: DOC Center Support List (internal) <tao-support>
Status: REOPENED ---    
Severity: normal CC: elliott_c
Priority: P3    
Version: 1.4.7   
Hardware: SPARC   
OS: Solaris   
Bug Depends on: 2245    
Bug Blocks: 2443    
Attachments: Trivial test zipped: IDL, server/client & smart proxy source (C++), README
README.txt missing from previous attachment

Description Andrew Goodwin 2006-03-07 09:36:57 CST
Smart proxy objects are never _non_existent(), with the result that you can 
test for existence, get a 'still exists' response then get OBJECT_NOT_EXIST 
thrown when you make a subsequent remote invocation. Also, object_to_string() 
throws a MARSHAL exception for a smart proxy object. Both problems may stem 
from the fact that the smart proxy object is a 'local' object, i.e. 
attribute 'is_local_' is set to true. Is this the expected behaviour? 
PS My TAO installation includes bug# 2245 fix (Smart proxy destructor does not 
run). 
Thanks for your help,
Andrew
Comment 1 Andrew Goodwin 2006-03-07 10:49:35 CST
To be more precise:

I find that a smart proxy always returns false to _non_existent() even when a 
dumb proxy for the same object returns true (e.g. when the associated CORBA 
object has been deactivated).

Also I should say the smart proxy is a 'locality-constrained' object rather 
than 'local'.
Comment 2 Johnny Willemsen 2006-03-07 12:55:03 CST
can you provide an automated regression to reproduce this? 
Comment 3 Johnny Willemsen 2006-03-08 01:50:15 CST
because things are now derived from local object besides the is_local_ several
more operations do behave different, see tao/Local_Object.cpp
Comment 4 Andrew Goodwin 2006-03-08 05:00:38 CST
Created attachment 486 [details]
Trivial test zipped: IDL, server/client & smart proxy source (C++), README
Comment 5 Johnny Willemsen 2006-03-08 05:31:36 CST
added depends on 2245, this seems to change the behaviour. I have my doubts
about the fix of 2245, adding this extra base does much more then just a simple
refcount. 
Comment 6 Andrew Goodwin 2006-03-08 05:46:57 CST
Created attachment 487 [details]
README.txt missing from previous attachment
Comment 7 Chad Elliott 2006-11-27 07:36:21 CST
I have committed a change that allows users to override the default IOR
conversion for Smart Proxies.  Users can provide an alternate implementation for
 "virtual bool can_convert_to_ior (void) const" in their Smart Proxy
implementation to allow the object reference to be converted to an IOR.

Mon Nov 27 12:50:48 UTC 2006  Chad Elliott  <elliott_c@ociweb.com>

        * tao/Object.h:
        * tao/Object.cpp:
                         
          Provide hooks to enable custom Object to IOR conversion or
          allowing local objects (such as Smart Proxies) to be converted to
          an IOR string.                                                   
        
        * tao/ORB.cpp:
                      
          Utilize the new hooks when performing the Object to IOR string
          conversion.                                                   
        
        * tests/Smart_Proxies/Smart_Proxy_Impl.h:
        * tests/Smart_Proxies/Smart_Proxy_Impl.cpp:
        * tests/Smart_Proxies/client.cpp:
        * tests/Smart_Proxies/run_test.pl:
                                          
          This test has been modified to implement both aforementioned
          hooks and perform comparisons to ensure that the right thing has
          been done.                                                      

Comment 8 Johnny Willemsen 2006-11-27 12:58:35 CST
Disadvantage is that the addition of this virtual method seems to increase
footprint between 1 to 2% for a lot of files in the core libs. 
Comment 9 Johnny Willemsen 2008-05-16 13:34:13 CDT
Now localobject are refcounted by default, do we need to have the mentioned change, the can_convert_to_ior method is now the only real user of the local flag in object.
Comment 10 Chad Elliott 2008-05-16 13:48:34 CDT
(In reply to comment #9)
> Now localobject are refcounted by default, do we need to have the mentioned
> change, the can_convert_to_ior method is now the only real user of the local
> flag in object.
> 

I may have missed your point, but I don't see what having the local object being ref counted has to do with the _is_local() method.  Prior to the addition of the can_convert_to_ior() method, the ORB called _is_local() on the Object directly.

Comment 11 Johnny Willemsen 2008-05-16 14:08:47 CDT
I am looking if we still need the is_local flag in object, it was used in the past in object itself to control whether we have refcounting or not. Now we always have refcounting I wonder if we still need this flag or whether there are other ways to control this.
Comment 12 Chad Elliott 2008-05-16 14:10:19 CDT
(In reply to comment #11)
> I am looking if we still need the is_local flag in object, it was used in the
> past in object itself to control whether we have refcounting or not. Now we
> always have refcounting I wonder if we still need this flag or whether there
> are other ways to control this.
> 

Oh, ok.  Well, then I would think that it is still needed.  I don't know of any other way to tell if an Object is local or not.