Bug 2888 - ORB Manager Enhanements
Summary: ORB Manager Enhanements
Status: RESOLVED FIXED
Alias: None
Product: TAO
Classification: Unclassified
Component: other (show other bugs)
Version: 1.5.7
Hardware: All All
: P3 normal
Assignee: Abdul Sowayan
URL:
Depends on: 993
Blocks:
  Show dependency tree
 
Reported: 2007-04-08 11:01 CDT by Abdul Sowayan
Modified: 2007-05-11 06:41 CDT (History)
1 user (show)

See Also:


Attachments
Proposed new implementation (6.86 KB, text/plain)
2007-04-08 11:35 CDT, Abdul Sowayan
Details
Proposed new implementation (7.24 KB, text/plain)
2007-04-08 11:36 CDT, Abdul Sowayan
Details
Proposed new implementation of ORB_Manager.cpp (1.43 KB, patch)
2007-04-18 09:14 CDT, Abdul Sowayan
Details
Proposed new implementation of ORB_Manager.h (1.85 KB, patch)
2007-04-18 09:15 CDT, Abdul Sowayan
Details

Note You need to log in before you can comment on or make changes to this bug.
Description Abdul Sowayan 2007-04-08 11:01:59 CDT
This is meant to capture the various enhancements we can make to ORB_Manager.

Right now, in many places the code uses 0 (NULL pointer) instead of CORBA's 
XYZ::_nil(). We ought to use _nil() instead of 0.
Comment 1 Abdul Sowayan 2007-04-08 11:06:17 CDT
The two method below are redundant. We can eliminate the first one by adding a 
default parameter to the second one [orb_name = 0]. 

int init (int &argc, char *argv[]);

int init (int &argc, char *argv[], const char *orb_name);
Comment 2 Abdul Sowayan 2007-04-08 11:13:08 CDT
To Simplify things, we can use CORBA::PolicyList_Destroyer instead of 
CORBA::PolicyList, that way destroy() will be called on the Policy Objects 
even in the case of exceptions, and also we wouldn't need the for loop to 
explicitly destroy the policies.
Comment 3 Abdul Sowayan 2007-04-08 11:22:55 CDT
TAO_ORB_Manager::init_child_poa (int& argc,
                                 char **argv,
                                 const char *poa_name,
                                 const char *orb_name)
{
.
.
.
  // Create the default policies - user-supplied ID, and persistent
  // objects.
  CORBA::PolicyList policies (2);
  policies.length (2);

  // Id Assignment policy
  policies[0] =
    this->poa_->create_id_assignment_policy (PortableServer::USER_ID);

  // Lifespan policy
  policies[1] =
    this->poa_->create_lifespan_policy (PortableServer::PERSISTENT);

  // We use a different POA, otherwise the user would have to change
  // the object key each time it invokes the server.

  this->child_poa_ =
    this->poa_->create_POA (poa_name,
                            this->poa_manager_.in (),
                            policies);

  // Warning!  If create_POA fails, then the policies won't be
  // destroyed and there will be hell to pay in memory leaks!

  // Creation of the new POAs over, so destroy the Policy_ptr's.
  for (CORBA::ULong i = 0;
       i < policies.length ();
       ++i)
    {
      CORBA::Policy_ptr policy = policies[i];
      policy->destroy ();
    }
}


If we use PolicyList_Destroyer then the comment below in the code no longer 
applies.
  // Warning!  If create_POA fails, then the policies won't be
  // destroyed and there will be hell to pay in memory leaks!
Comment 4 Abdul Sowayan 2007-04-08 11:35:33 CDT
Created attachment 752 [details]
Proposed new implementation
Comment 5 Abdul Sowayan 2007-04-08 11:36:00 CDT
Created attachment 753 [details]
Proposed new implementation
Comment 6 Abdul Sowayan 2007-04-08 11:40:41 CDT
The attachments above are the proposed new implemenation (ORB_Manager.cpp/h).

The following is the Change Log Entry:
Sun Apr  8 16:35:14 UTC 2007  Abdullah Sowayan  <abdullah.sowayan@lmco.com>

        * tao/Utils/ORB_Manager.h:
        * tao/Utils/ORB_Manager.cpp:

          Layout Changes.
          Use PolicyList_Destroyer to destroy Policy object even in 
exceptional cases.
          Removed redundant method.
          Use ::_nil() instead of 0 (NULL pointer).
Comment 7 Abdul Sowayan 2007-04-08 11:43:12 CDT
Johnny,

Can you review my changes when you have a chance?

Thanks,
Abdul
Comment 8 Abdul Sowayan 2007-04-08 11:44:09 CDT
To Johnny for review
Comment 9 Johnny Willemsen 2007-04-17 06:18:28 CDT
Abdul, can you make a unified diff of the changes, easier to review. Btw, the activate method seems to have an useless return value. If so, zap the return value and make it void
Comment 10 Abdul Sowayan 2007-04-17 11:38:08 CDT
Johnny,

Yes, some methods do have useless return values indeed. I considered removing them (i.e., changing the return values to void and updating the documentation), but that would change the API, which could potentially break someone's code. A user might have not looked into the code and assumed that -1 would be returned in 

consider the following psuedo-code

if( orb_manager.method1() != 0 )
{
  log an error message and exit;
}

We can zap return values (and live with the fact that some users potentially might have to modify their code), that will make this class cleaner. Let me know if that is acceptable, and I shall do this and submit a uniffied diff for you to review.

Thanks,
Abdul 
Comment 11 Johnny Willemsen 2007-04-18 08:58:08 CDT
added depends on
Comment 12 Johnny Willemsen 2007-04-18 08:59:03 CDT
corrected depends
Comment 13 Abdul Sowayan 2007-04-18 09:14:32 CDT
Created attachment 759 [details]
Proposed new implementation of ORB_Manager.cpp
Comment 14 Abdul Sowayan 2007-04-18 09:15:45 CDT
Created attachment 760 [details]
Proposed new implementation of ORB_Manager.h
Comment 15 Abdul Sowayan 2007-04-18 09:21:00 CDT
Johnny,

I didn't zap the return values, I'll do that when I get a response to my earlier question about the issue of potentially breaking user code. So, such a change (if desired) will be in the next round of improvements.

Also, (i'm brain storming here), instead of taking char as a paramter or return value, shouldn't we be using ACE_TCHAR. I don't usually use wide charachters, but shouldn't this class accomodate it? If so, this is a todo in the next round of improvements.

Thanks,
Abdul
Comment 16 Johnny Willemsen 2007-05-01 06:39:58 CDT
patches are ok, feel free to commit after x.5.8 is out.
Comment 17 Johnny Willemsen 2007-05-01 07:48:43 CDT
remove myself as cc
Comment 18 Abdul Sowayan 2007-05-01 08:52:51 CDT
Johnny,

Thanks for reviewing the patches. I shall commit them once x.5.8 is out.

Thanks,
Abdul
Comment 19 Abdul Sowayan 2007-05-11 06:41:48 CDT
Fri May 11 11:36:25 UTC 2007  Abdullah Sowayan  <abdullah.sowayan@lmco.com>

        * tao/Utils/ORB_Manager.h:
        * tao/Utils/ORB_Manager.cpp:

          Layout Changes.
          Use PolicyList_Destroyer to destroy Policy object even in exceptional cases.
          Removed redundant method.
          Use ::_nil() instead of 0 (NULL pointer).