Please report new issues athttps://github.com/DOCGroup
Hi, Does anybody mind if I doxygen-ify the header file for $TAO_ROOT/tao/PortableServer/ORB_Manager.h? I understand most of it, but have one question. For char *activate (PortableServer::Servant servant, CORBA_Environment &ACE_TRY_ENV = TAO_default_environment ()); and: char *activate_under_child_poa (const char *object_name, PortableServer::Servant servant, CORBA_Environment &ACE_TRY_ENV = TAO_default_environment ()); Should the caller be concerned about freeing the char * returned by these calls?
Date: Sun, 29 Jul 2001 14:05:16 -0500 (CDT) From: Chris Cleeland <cleeland@ociweb.com> To: Craig Rodrigues <crodrigu@bbn.com> cc: <doc_group@cs.wustl.edu> Subject: Re: [doc_group] ORB_Manager.h question In-Reply-To: <20010729144757.A8482@bbn.com> On Sun, 29 Jul 2001, Craig Rodrigues wrote: > Does anybody mind if I doxygen-ify the header file for > $TAO_ROOT/tao/PortableServer/ORB_Manager.h? Yes! Please don't. It was a bad idea that should have gone away long ago. > I understand most of it, but have one question. > > For char *activate (PortableServer::Servant servant, > CORBA_Environment &ACE_TRY_ENV = > TAO_default_environment ()); > > and: > > char *activate_under_child_poa (const char *object_name, > PortableServer::Servant servant, > CORBA_Environment &ACE_TRY_ENV = > TAO_default_environment ()); > > > Should the caller be concerned about freeing the char * > returned by these calls? ORB_Manager: just say no! Date: Sun, 29 Jul 2001 16:00:53 -0400 From: Craig Rodrigues <crodrigu@bbn.com> To: doc_group@cs.wustl.edu Subject: Re: [doc_group] ORB_Manager.h question User-Agent: Mutt/1.2.4i In-Reply-To: <Pine.LNX.4.30.0107291404390.1213-100000@ocilap5.ociweb.com>; +from cleeland@ociweb.com on Sun, Jul 29, 2001 at 02:05:16PM -0500 Precedence: bulk On Sun, Jul 29, 2001 at 02:05:16PM -0500, Chris Cleeland wrote: > On Sun, 29 Jul 2001, Craig Rodrigues wrote: > > > Does anybody mind if I doxygen-ify the header file for > > $TAO_ROOT/tao/PortableServer/ORB_Manager.h? > > Yes! Please don't. It was a bad idea that should have gone away long +ago. > > ORB_Manager: just say no! Why? It presents a much simpler interface for common usages of ORB/POA initialization than the bare CORBA calls, and has worked well enough for my purposes when I've used it. Also, - I have notes on the ORB_Manager class from a 1999 UCLA course of Doug's - ORB_Manager is used in some of the TAO examples that are part of the distribution - I have working code that uses ORB_Manager today So what is wrong with ORB_Manager? -- Craig Rodrigues Distributed Systems and Logistics, Office 6/304 crodrigu@bbn.com BBN Technologies (617) 873-4725 Cambridge, MA To: Craig Rodrigues <crodrigu@bbn.com> cc: doc_group@cs.wustl.edu Subject: Re: [doc_group] ORB_Manager.h question In-reply-to: Your message of "Sun, 29 Jul 2001 16:00:53 EDT." <20010729160053.A10951@bbn.com> Date: Sun, 29 Jul 2001 15:12:50 -0500 From: "Douglas C. Schmidt" <schmidt@cs.wustl.edu> Hi Craig, > Why? Because some people get paid by the number of lines of boilerplate CORBA code they write... > It presents a much simpler interface for common usages > of ORB/POA initialization than the bare CORBA calls, and has worked well > enough for my purposes when I've used it. Right! > Also, > - I have notes on the ORB_Manager class from a 1999 UCLA course of Doug's> - ORB_Manager is used in some of the TAO examples that are > part of the distribution > - I have working code that uses ORB_Manager today > > So what is wrong with ORB_Manager? The general idea is a good one, i.e., it's completely in keeping with the spirit of the Wrapper Facade pattern. There are a few glitches with the TAO_ORB_Manager when used in less common use-cases. Rather than continually beating up the TAO_ORB_Manager, those who don't like these glitches should fix these problems, rather than complain ;-) Doug To: Craig Rodrigues <crodrigu@bbn.com> cc: doc_group@cs.wustl.edu Subject: Re: [doc_group] ORB_Manager.h question In-reply-to: Your message of "Sun, 29 Jul 2001 14:47:57 EDT." <20010729144757.A8482@bbn.com> Date: Sun, 29 Jul 2001 15:16:09 -0500 From: "Douglas C. Schmidt" <schmidt@cs.wustl.edu> Hi Craig, > Does anybody mind if I doxygen-ify the header file for > $TAO_ROOT/tao/PortableServer/ORB_Manager.h? Yes, please. The skeptics be damned! > I understand most of it, but have one question. > > For char *activate (PortableServer::Servant servant, > CORBA_Environment &ACE_TRY_ENV = > TAO_default_environment ()); > > and: > > char *activate_under_child_poa (const char *object_name, To: Craig Rodrigues <crodrigu@bbn.com> cc: doc_group@cs.wustl.edu Subject: Re: [doc_group] ORB_Manager.h question In-reply-to: Your message of "Sun, 29 Jul 2001 14:47:57 EDT." <20010729144757.A8482@bbn.com> Date: Sun, 29 Jul 2001 15:16:09 -0500 From: "Douglas C. Schmidt" <schmidt@cs.wustl.edu> Hi Craig, > Does anybody mind if I doxygen-ify the header file for > $TAO_ROOT/tao/PortableServer/ORB_Manager.h? Yes, please. The skeptics be damned! > I understand most of it, but have one question. > > For char *activate (PortableServer::Servant servant, > CORBA_Environment &ACE_TRY_ENV = > TAO_default_environment ()); > > and: > > char *activate_under_child_poa (const char *object_name, > PortableServer::Servant servant, > PortableServer::Servant servant, > > Should the caller be concerned about freeing the char * > returned by these calls? Yes. I believe that they should be placed into CORBA::String_var's so they are released automagically when going out of scope. It would be worthwhile pointing this out, and also explaining what the return values mean. BTW, I noticed the name of the person who's attributed with writing this file in the first place: // = AUTHOR // Chris Cleeland <cleeland@cs.wustl.edu> Me thinks he dost protest to much ;-) Doug
Where's the rest of the discussion? The good stuff (my stuff :-) is missing.
Bumped up the version. The ORB_Manager still exists in the latest beta.
From: Ossama Othman <ossama@doc.ece.uci.edu> Date: Sun, 29 Jul 2001 13:44:49 -0700 To: doc_group@cs.wustl.edu Subject: Re: [doc_group] ORB_Manager.h question Mail-Followup-To: doc_group@cs.wustl.edu User-Agent: Mutt/1.2.5i In-Reply-To: <200107292016.PAA27630@ace.cs.wustl.edu>; from +schmidt@cs.wustl.edu on Sun, Jul 29, 2001 at 03:16:09PM -0500 Precedence: bulk Hi, On Sun, Jul 29, 2001 at 03:16:09PM -0500, Douglas C. Schmidt wrote: > > For char *activate (PortableServer::Servant servant, > > CORBA_Environment &ACE_TRY_ENV = > > TAO_default_environment ()); > > > > and: > > > > char *activate_under_child_poa (const char *object_name, > > PortableServer::Servant servant, > > CORBA_Environment &ACE_TRY_ENV = > > TAO_default_environment ()); > > > > Should the caller be concerned about freeing the char * > > returned by these calls? > > Yes. I believe that they should be placed into CORBA::String_var's so > they are released automagically when going out of scope. It would be > worthwhile pointing this out, and also explaining what the return > values mean. Assuming the (evil :-) ORB_Manager conforms to the C++ mapping parameter passing rules then there should be no need to explain this. Of course, if users rolled their own wrapper faces then there would be no confusion. :-) ;-) > > returned by these calls? > > Yes. I believe that they should be placed into CORBA::String_var's so > they are released automagically when going out of scope. It would be > worthwhile pointing this out, and also explaining what the return > values mean. Assuming the (evil :-) ORB_Manager conforms to the C++ mapping parameter passing rules then there should be no need to explain this. Of course, if users rolled their own wrapper faces then there would be no confusion. :-) ;-) -Ossama To: Ossama Othman <ossama@doc.ece.uci.edu> cc: doc_group@cs.wustl.edu Subject: Re: [doc_group] ORB_Manager.h question In-reply-to: Your message of "Sun, 29 Jul 2001 13:44:49 PDT." <20010729134449.B22137@ece.uci.edu> Date: Sun, 29 Jul 2001 15:53:20 -0500 From: "Douglas C. Schmidt" <schmidt@cs.wustl.edu> Precedence: bulk Hi Ossama, > Assuming the (evil :-) ORB_Manager conforms to the C++ mapping > parameter passing rules then there should be no need to explain > this. It does, but it's still useful to explain what the return values do in case users have forgotten what the CORBA spec does. > Of course, if users rolled their own wrapper faces then there would > be no confusion. :-) ;-) Hey, from that point of view, if users rolled their own network programming wrapper facades there'd be no confusion (until they forgot, of course...) either (nor would there be any ACE ;-)). Take care, Doug From: Ossama Othman <ossama@doc.ece.uci.edu> Date: Sun, 29 Jul 2001 13:58:47 -0700 To: doc_group@cs.wustl.edu Subject: Re: [doc_group] ORB_Manager.h question Mail-Followup-To: doc_group@cs.wustl.edu User-Agent: Mutt/1.2.5i In-Reply-To: <200107292053.PAA29971@ace.cs.wustl.edu>; from +schmidt@cs.wustl.edu on Sun, Jul 29, 2001 at 03:53:20PM -0500 Precedence: bulk Hi Doug, On Sun, Jul 29, 2001 at 03:53:20PM -0500, Douglas C. Schmidt wrote: > > Of course, if users rolled their own wrapper faces then there would > > be no confusion. :-) ;-) > > Hey, from that point of view, if users rolled their own network > programming wrapper facades there'd be no confusion (until they > forgot, of course...) either (nor would there be any ACE ;-)). I'm certainly not advocating that users should roll their own ACE/TAO equivalent. However, rolling your own wrapper facade around 10-20 lines of boiler plate code is certainly much easier than rolling your own communications framework or ORB, which is part of the reason why tFrom: Ossama Othman <ossama@doc.ece.uci.edu> Date: Sun, 29 Jul 2001 13:58:47 -0700 To: doc_group@cs.wustl.edu Subject: Re: [doc_group] ORB_Manager.h question Mail-Followup-To: doc_group@cs.wustl.edu User-Agent: Mutt/1.2.5i In-Reply-To: <200107292053.PAA29971@ace.cs.wustl.edu>; from +schmidt@cs.wustl.edu on Sun, Jul 29, 2001 at 03:53:20PM -0500 Precedence: bulk Hi Doug, On Sun, Jul 29, 2001 at 03:53:20PM -0500, Douglas C. Schmidt wrote: > > Of course, if users rolled their own wrapper faces then there would > > be no confusion. :-) ;-) > > Hey, from that point of view, if users rolled their own network > programming wrapper facades there'd be no confusion (until they > forgot, of course...) either (nor would there be any ACE ;-)). I'm certainly not advocating that users should roll their own ACE/TAO equivalent. However, rolling your own wrapper facade around 10-20 lines of boiler plate code is certainly much easier than rolling your own communications framework or ORB, which is part of the reason why tFrom: Ossama Othman <ossama@doc.ece.uci.edu> Date: Sun, 29 Jul 2001 13:58:47 -0700 To: doc_group@cs.wustl.edu Subject: Re: [doc_group] ORB_Manager.h question Mail-Followup-To: doc_group@cs.wustl.edu User-Agent: Mutt/1.2.5i In-Reply-To: <200107292053.PAA29971@ace.cs.wustl.edu>; from +schmidt@cs.wustl.edu on Sun, Jul 29, 2001 at 03:53:20PM -0500 Precedence: bulk Hi Doug, On Sun, Jul 29, 2001 at 03:53:20PM -0500, Douglas C. Schmidt wrote: > > Of course, if users rolled their own wrapper faces then there would > > be no confusion. :-) ;-) > > Hey, from that point of view, if users rolled their own network > programming wrapper facades there'd be no confusion (until they > forgot, of course...) either (nor would there be any ACE ;-)). I'm certainly not advocating that users should roll their own ACE/TAO equivalent. However, rolling your own wrapper facade around 10-20 lines of boiler plate code is certainly much easier than rolling your own communications framework or ORB, which is part of the reason why the ORB_Manager doesn't seem all that necessary. -Ossama To: Ossama Othman <ossama@doc.ece.uci.edu> cc: doc_group@cs.wustl.edu Subject: Re: [doc_group] ORB_Manager.h question In-reply-to: Your message of "Sun, 29 Jul 2001 13:58:47 PDT." <20010729135847.D22137@ece.uci.edu> Date: Sun, 29 Jul 2001 16:10:27 -0500 From: "Douglas C. Schmidt" <schmidt@cs.wustl.edu> Precedence: bulk Hi Ossama, > I'm certainly not advocating that users should roll their own > ACE/TAO equivalent. However, rolling your own wrapper facade around > 10-20 lines of boiler plate code is certainly much easier than > rolling your own communications framework or ORB, which is part of > the reason why the ORB_Manager doesn't seem all that necessary. Here are some thoughts on this: 1. While it's certainly easier to write 20 lines of boilerplate code than to write an ORB, that still begs the question of "why would you want to write 20 lines of boilerplate code" over and over again? It's just inviting errors, e.g., forgetting to use _vars vs. _ptrs, etc. 2. You could say the same thing for any given wrapper facade in ACE, e.g., "why do we need ACE_SOCK_Acceptor when there's no more than 20 lines of code to initialize a passive-mode socket?" The point is that if you look at ACE_SOCK_Acceptor in isolation it's hard to understand why it's useful. When you look at it in the context of all the other Socket API wrapper facades it becomes a much more powerful abstract. Thus, from this perspective, the "problem" with the ORB_Manager is that we haven't gone far enough to factor out other common CORBA programming idioms and put them into their own ORB wrapper facade classes. 3. Finally, another important motivation for an ORB_Manager is to shield applications from non-portable aspects of different ORBs. If you look at the original column in C++ Report where Steve V. and I introduced the ORB_Manager (which is available at URL www.cs.wustl.edu/~schmidt/PDF/C++-report-col13.pdf) you'll see the our motivation was to hide the differences between different ORBs wrt initialization. Thus, from this perspective, the "problem" with the ORB_Manager is that it's in TAO, when it should be in ACE! I'd be curious to hear your point-by-point rebuttal to these arguments! Take care, should be in ACE! I'd be curious to hear your point-by-point rebuttal to these arguments! Take care, Doug From: Balachandran Natarajan <bala@cs.wustl.edu> Subject: Re: [doc_group] ORB_Manager.h question To: schmidt@cs.wustl.edu (Douglas C. Schmidt) Date: Sun, 29 Jul 2001 16:48:51 -0500 (CDT) Cc: ossama@doc.ece.uci.edu (Ossama Othman), doc_group@cs.wustl.edu In-Reply-To: <200107292110.QAA01502@ace.cs.wustl.edu> from "Douglas C. +Schmidt" at Jul 29, 2001 04:10:27 PM X-Mailer: ELM [version 2.5 PL1] Precedence: bulk Dr.Schmidt- I am not Ossama and here are my thoughts... > 1. While it's certainly easier to write 20 lines of boilerplate code > than to write an ORB, that still begs the question of "why would > you want to write 20 lines of boilerplate code" over and over > again? It's just inviting errors, e.g., forgetting to use _vars > vs. _ptrs, etc. Agreed. But the boiler plate code ie. ORB_Manager seems to be doing to many things. It doesnt seem to be a good abstraction as far as TAO is concerned. For me it seems to be doing ORB & POA initialzation in the same class, which seems to be totally odd. May be I will not even be able to buy it is a boiler plate code. We seem to have made a "boiler plate" with pieces from different sources. This seems to be against the idea of encapsulation.. Why have we clubbed ORB & POA initilizations? Why do we always make a persistent POA? Why do we always give a child_POA? RootPOA is also powerful and we are shielding the good aspects by offering a broken abstraction, IMHO. > 2. You could say the same thing for any given wrapper facade in ACE, > e.g., "why do we need ACE_SOCK_Acceptor when there's no more than > 20 lines of code to initialize a passive-mode socket?" The point > is that if you look at ACE_SOCK_Acceptor in isolation it's hard to > understand why it's useful. When you look at it in the context of > all the other Socket API wrapper facades it becomes a much more > powerful abstract. Thus, from this perspective, the "problem" with > the ORB_Manager is that we haven't gone far enough to factor out > other common CORBA programming idioms and put them into their own > ORB wrapper facade classes. The 20 lines of code their deals only with sockets, isnt it? I would accept your argument in saying that we havent gone far enough in factoring out common code. I havent understood your point 3 well enough. I am going over it again before jumping on it :-) My> 2. You could say the same thing for any given wrapper facade in ACE, > e.g., "why do we need ACE_SOCK_Acceptor when there's no more than > 20 lines of code to initialize a passive-mode socket?" The point > is that if you look at ACE_SOCK_Acceptor in isolation it's hard to > understand why it's useful. When you look at it in the context of > all the other Socket API wrapper facades it becomes a much more > powerful abstract. Thus, from this perspective, the "problem" with > the ORB_Manager is that we haven't gone far enough to factor out > other common CORBA programming idioms and put them into their own > ORB wrapper facade classes. The 20 lines of code their deals only with sockets, isnt it? I would accept your argument in saying that we havent gone far enough in factoring out common code. I havent understood your point 3 well enough. I am going over it again before jumping on it :-) My $0.02 Thanks & Regards Bala From: Ossama Othman <ossama@doc.ece.uci.edu> Date: Sun, 29 Jul 2001 14:54:30 -0700 To: doc_group@cs.wustl.edu Subject: Re: [doc_group] ORB_Manager.h question Mail-Followup-To: doc_group@cs.wustl.edu User-Agent: Mutt/1.2.5i In-Reply-To: <200107292110.QAA01502@ace.cs.wustl.edu>; from +schmidt@cs.wustl.edu on Sun, Jul 29, 2001 at 04:10:27PM -0500 Precedence: bulk Hi Doug, I know that I'm not going to win this one, but here goes anyway. :-) On Sun, Jul 29, 2001 at 04:10:27PM -0500, Douglas C. Schmidt wrote: > Here are some thoughts on this: > > 1. While it's certainly easier to write 20 lines of boilerplate code > than to write an ORB, that still begs the question of "why would > you want to write 20 lines of boilerplate code" over and over > again? It's just inviting errors, e.g., forgetting to use _vars > vs. _ptrs, etc. Right. This is where application developers would write their own From: Ossama Othman <ossama@doc.ece.uci.edu> Date: Sun, 29 Jul 2001 14:54:30 -0700 To: doc_group@cs.wustl.edu Subject: Re: [doc_group] ORB_Manager.h question Mail-Followup-To: doc_group@cs.wustl.edu User-Agent: Mutt/1.2.5i In-Reply-To: <200107292110.QAA01502@ace.cs.wustl.edu>; from +schmidt@cs.wustl.edu on Sun, Jul 29, 2001 at 04:10:27PM -0500 Precedence: bulk Hi Doug, I know that I'm not going to win this one, but here goes anyway. :-) On Sun, Jul 29, 2001 at 04:10:27PM -0500, Douglas C. Schmidt wrote: > Here are some thoughts on this: > > 1. While it's certainly easier to write 20 lines of boilerplate code > than to write an ORB, that still begs the question of "why would > you want to write 20 lines of boilerplate code" over and over > again? It's just inviting errors, e.g., forgetting to use _vars > vs. _ptrs, etc. Right. This is where application developers would write their own wrapper facade. Since it is just a matter of wrapping 20 lines of boiler plate code, the implementation should be fairly trivial. Less code for us to maintain. Always a good thing. :-) > 2. You could say the same thing for any given wrapper facade in ACE, > e.g., "why do we need ACE_SOCK_Acceptor when there's no more than > 20 lines of code to initialize a passive-mode socket?" The point > is that if you look at ACE_SOCK_Acceptor in isolation it's hard to > understand why it's useful. When you look at it in the context of > all the other Socket API wrapper facades it becomes a much more > powerful abstract. Thus, from this perspective, the "problem" with > the ORB_Manager is that we haven't gone far enough to factor out > other common CORBA programming idioms and put them into their own > ORB wrapper facade classes. It would indeed be interesting to develop a higher level framework that abstracts common CORBA idioms, use cases, etc. However, as you so conveniently point out, the utility of the ORB_Manager alone is minimal. BTW, does the CCM provide any high level abstractions, such as the one alluded to above. > 3. Finally, another important motivation for an ORB_Manager is to > shield applications from non-portable aspects of different ORBs. Right. > If you look at the original column in C++ Report where Steve V. > and I introduced the ORB_Manager (which is available at URL > www.cs.wustl.edu/~schmidt/PDF/C++-report-col13.pdf) you'll > see the our motivation was to hide the differences between > different ORBs wrt initialization. According to the article, an ORB_Manager is useful when transitioning from BOA-based ORBs to POA-based ORBs. However, most modern ORBs are POA-based. Furthermore, as evident from most of the BOA-to-POA transition newsgroup/list posts that I've seen, most application developers do not use an ORB manager. They simply make the transition manually. To be truly useful and portable, an ORB manager should have a standard interface (of which there is none). By introducing, an ORB manager with a proprietary interface, we're simply making BOA-based applications convert initialization code to non-standard initialization code. Since most modern ORBs are POA-based, ORB initialization portability isn't an issue. ORB endpoint initialization is another matter, but one could use an external tool (e.g. with a GUI) to handle such matters. Application code need not be involved. > Thus, from this perspective, > the "problem" with the ORB_Manager is that it's in TAO, when it > should be in ACE! Um, habla CORBA? :-) We can't do that without introducing a dependency on TAO, unless I'm missing something. I think that Steve Huston would have a heart attack if we did that. IMHO, ORB managers are really only useful as aids to ease BOA-to-POA transitions, and only if the interface was standard. However, CORBA already provides a standard interface, i.e. the boiler plate code we've been talking about. Since initialization code conversion must be done anway, why convert BOA-based code to use an ORB manager interface, when a standard and portable interface is already available? -Ossama From: Balachandran Natarajan <bala@cs.wustl.edu> Subject: Re: [doc_group] ORB_Manager.h question To: schmidt@cs.wustl.edu (Douglas C. Schmidt) Date: Sun, 29 Jul 2001 16:55:14 -0500 (CDT) Cc: ossama@doc.ece.uci.edu (Ossama Othman), doc_group@cs.wustl.edu In-Reply-To: <200107292110.QAA01502@ace.cs.wustl.edu> from "Douglas C. +Schmidt" at Jul 29, 2001 04:10:27 PM X-Mailer: ELM [version 2.5 PL1] Precedence: bulk Dr.Schmidt- I made a mistake in my last mail. We can activate objects under the root POA too, but it is deep buried in the code that you can easily loose sight of it, as I did :-) Thanks & Regards Bala To: Balachandran Natarajan <bala@cs.wustl.edu> cc: ossama@doc.ece.uci.edu (Ossama Othman), doc_group@cs.wustl.edu Subject: Re: [doc_group] ORB_Manager.h question In-reply-to: Your message of "Sun, 29 Jul 2001 16:48:51 CDT." <200107292148.QAA09289@macarena.cs.wustl.edu> Date: Sun, 29 Jul 2001 16:56:07 -0500 From: "Douglas C. Schmidt" <schmidt@cs.wustl.edu> Precedence: bulk Hi Bala, Cool -- someone stepped up to the challenge of arguing this stuff ;-) > Agreed. But the boiler plate code ie. ORB_Manager seems to be doing > to many things. It doesnt seem to be a good abstraction as far as > TAO is concerned. For me it seems to be doing ORB & POA > initialzation in the same class, which seems to be totally odd. May > be I will not even be able to buy it is a boiler plate code. We seem > to have made a "boiler plate" with pieces from different > sources. This seems to be against the idea of encapsulation.. Why > have we clubbed ORB & POA initilizations? Why do we always make a > persistent POA? Why do we always give a child_POA? RootPOA is also > powerful and we are shielding the good aspects by offering a broken > abstraction, IMHO. I have no problem accepting that the TAO_ORB_Manager has its failings as a wrapper facade. It's been modified by different people at different times, some of whom weren't very experienced with CORBA programming at the time they modified the class. However, that just reinforces my point that we should (or should have) improved the abstraction since it does provide useful capabilities that help to reduce the amount of code for "common use-cases". > The 20 lines of code their deals only with sockets, isnt it? Right. > I would accept your argument in saying that we havent gone far > enough in factoring out common code. Right! Basically, what we should be doing over time is codifying a library/framework that refactors common CORBA programming idioms and creating something akin to "ACE" for ORBs. Moreover, by making this library/framework portable (and integrate it with the CORBaconf project <http://corbaconf.kiev.ua>), we'd help to simplify the use of CORBA for end-users! > I havent understood your point 3 well enough. I am going over it again > before jumping on it :-) You might want to read the column at http://www.cs.wustl.edu/~schmidt/PDF/C++-report-col13.pdf which explains this stuff in detail and shows examples of writing portable CORBA code. Thanks, Doug To: Balachandran Natarajan <bala@cs.wustl.edu> cc: ossama@doc.ece.uci.edu (Ossama Othman), doc_group@cs.wustl.edu Subject: Re: [doc_group] ORB_Manager.h question In-reply-to: Your message of "Sun, 29 Jul 2001 16:55:14 CDT." <200107292155.QAA09316@macarena.cs.wustl.edu> Date: Sun, 29 Jul 2001 16:56:39 -0500 From: "Douglas C. Schmidt" <schmidt@cs.wustl.edu> Precedence: bulk Hi Bala, > I made a mistake in my last mail. We can activate objects under the > root POA too, but it is deep buried in the code that you can easily > lose sight of it, as I did :-) Ah, that argues in favor of better documentation, right?! ;-) Doug From: Balachandran Natarajan <bala@cs.wustl.edu> Subject: Re: [doc_group] ORB_Manager.h question To: doc_group@cs.wustl.edu Date: Sun, 29 Jul 2001 17:12:30 -0500 (CDT) In-Reply-To: <200107292156.QAA08466@ace.cs.wustl.edu> from "Douglas C. +Schmidt" at Jul 29, 2001 04:56:07 PM X-Mailer: ELM [version 2.5 PL1] Precedence: bulk Dr.Schmidt- > Cool -- someone stepped up to the challenge of arguing this > stuff ;-) No, I am not challenging... I know (as Ossama mentioned) I am arguing a loosing case :-) But anyway, does that stop us from arguing? > I have no problem accepting that the TAO_ORB_Manager has its failings > as a wrapper facade. It's been modified by different people at > different times, some of whom weren't very experienced with CORBA > programming at the time they modified the class. However, that just > reinforces my point that we should (or should have) improved the > abstraction since it does provide useful capabilities that help to > reduce the amount of code for "common use-cases". May be we could have.. But as Ossama points out we are just introducing people to more proprietary stuff, so that we can be in business :-)? > Right! Basically, what we should be doing over time is codifying a > library/framework that refactors common CORBA programming idioms and > creating something akin to "ACE" for ORBs. Moreover, by making this > library/framework portable (and integrate it with the CORBaconf > project <http://corbaconf.kiev.ua>), we'd help to simplify the use of > CORBA for end-users! Isnt the CCM supposed to be aiming at that? Yes your argument looks good or neat. Arent the CORBA interface calls portable? Do we at this point have a variation in semantics between different ORB's? May be, there are one or two ORB's but then those ORB's arent conformant, are they? Your point could be valid for some niche areas in CORBA where things (I mean interfaces) are pretty much open like Priority Mapping Manager in RTCORBA etc. > You might want to read the column at > > http://www.cs.wustl.edu/~schmidt/PDF/C++-report-col13.pdf > > which explains this stuff in detail and shows examples of writing > portable CORBA code. I would agree with Ossama's points on this .. Thanks & regards Bala To: Ossama Othman <ossama@doc.ece.uci.edu>, Martin.Botzler@mchp.siemens.de cc: doc_group@cs.wustl.edu Subject: Re: [doc_group] ORB_Manager.h question In-reply-to: Your message of "Sun, 29 Jul 2001 14:54:30 PDT." <20010729145430.E22137@ece.uci.edu> Date: Sun, 29 Jul 2001 17:24:51 -0500 From: "Douglas C. Schmidt" <schmidt@cs.wustl.edu> Precedence: bulk Hi Ossama, > I know that I'm not going to win this one, but here goes anyway. :-) Is this situation covered in one of the 48 laws? ;-) ;-) > Right. This is where application developers would write their own > wrapper facade. Since it is just a matter of wrapping 20 lines of > boiler plate code, the implementation should be fairly trivial. > Less code for us to maintain. Always a good thing. :-) Not if your goal is to become indispensable in someone's tool chain! BTW, check out the "Power" book and look for the law about "Learn to become indispensable" -- it's just this insight applied to middleware ;-) > It would indeed be interesting to develop a higher level framework > that abstracts common CORBA idioms, use cases, etc. However, as you > so conveniently point out, the utility of the ORB_Manager alone is > minimal. Sure, but so was ACE_SOCK_Acceptor 10 years ago.... The point is that if we never start experimenting with higher-level abstractions, we'll never be able to get beyond programming at the "plumbing" level. > BTW, does the CCM provide any high level abstractions, such as the > one alluded to above. Yes, definitely. Here's a thought question, however: if you wanted to write a CORBA application that worked with and without certain CCM capabilities how would you do it? My guess is that you'd devise some encapsulate wrapper facades similar to the ORB_Manager to shield the differences. > According to the article, an ORB_Manager is useful when transitioning > from BOA-based ORBs to POA-based ORBs. However, most modern ORBs are > POA-based. Sure, just like most modern operating systems are POSIX based... Therefore, from this point of view, what's the point of an encapsulation toolkit like ACE? Naturally, the answer is that it helps to smooth the transition so that these issues won't matter. BTW, even in POA-based ORBs there will be bugs and other assorted portability problems that an abstract layer like ORB_Manager can help with. > Furthermore, as evident from most of the BOA-to-POA transition > newsgroup/list posts that I've seen, most application developers do > not use an ORB manager. They simply make the transition manually. Perhaps in a small R&D project that's begun recently. However, in larger and longer-lived projects developers need to migrate to a POA-based ORB *without* rewriting all their existing CORBA code? Although this isn't a problem for us, it's a *huge* problem for all those Orbix 2.x and 3.x users. In their case, an ORB_Manager (plus associated other stuff) is quite useful. In fact, Martin Botzler and Frank Buschmann at Siemens have written an extensive multi-ORB testbed using capabilities very similar to ORB_Manager to factor out the non-portable code. > To be truly useful and portable, an ORB manager should have a > standard interface (of which there is none). By introducing, an ORB > manager with a proprietary interface, we're simply making BOA-based > applications convert initialization code to non-standard > initialization code. A couple of thoughts on this: 1. I agree that an ORB_Manager should have a standard interface. However, that begs the question "where would such a standard come from?" +Ideally, it would come from experience using different encapsulation mechanisms. If no one builds any such encapsulation mechanisms, however, how will the standards committee know what works and what doesn't? 2. Try replacing "ORB manager" with "ACE" and "BOA-based applications" with "legacy OS applications" and see if you still agree with the statement. If so, you should ask yourself what the implications are next time Bill Beckwith starts arguing that ACE is "proprietary" and should therefore not be used! > Since most modern ORBs are POA-based, ORB initialization portability > isn't an issue. Again, I believe this is too narrow a viewpoint. Try saying "since most modern operating systems are POSIX-based, application portability isn't an issue" -- it just doesn't make any sense when you look beyond one or two operating system implementations! Moreover, this "plumbing uber alles" perspective doesn't scale up to all the other things that ought to be done to make it easier to develop CORBA applications. > ORB endpoint initialization is another matter, but one could use an > external tool (e.g. with a GUI) to handle such matters. Application > code need not be involved. I'll agree with you than an ORB_Manager shouldn't be expected to solve all known problems with an ORB. However, I feel that by rejecting any form of abstraction to raise the level at which an ORB is programmed by application developers is simply "backwards looking" and sounds almost identical to the arguments used against host infrastructure middleware like ACE over 10 years ago!!! > Um, habla CORBA? :-) We can't do that without introducing a > dependency on TAO, unless I'm missing something. It's not entirely clear if there would have to be source code level dependencies on TAO, but if that was an issue then it would be best to add this as a separate library, similar to the $ACE_ROOT/websvcs or $ACE_ROOT/netsvcs. At any rate, the point isn't to put it in ACE, per se, but to make higher-level programming capabilities for CORBA accessible in a manner akin to what we do for low-level OS capabilities in ACE. > I think that Steve Huston would have a heart attack if we did that. Well, we certainly can't have that since otherwise we'll never finish almost identical to the arguments used against host infrastructure middleware like ACE over 10 years ago!!! > Um, habla CORBA? :-) We can't do that without introducing a > dependency on TAO, unless I'm missing something. It's not entirely clear if there would have to be source code level dependencies on TAO, but if that was an issue then it would be best to add this as a separate library, similar to the $ACE_ROOT/websvcs or $ACE_ROOT/netsvcs. At any rate, the point isn't to put it in ACE, per se, but to make higher-level programming capabilities for CORBA accessible in a manner akin to what we do for low-level OS capabilities in ACE. > I think that Steve Huston would have a heart attack if we did that. Well, we certainly can't have that since otherwise we'll never finish the C++NP books ;-) > IMHO, ORB managers are really only useful as aids to ease BOA-to-POA > transitions, and only if the interface was standard. I disagree, for all the reasons stated above. BOA-to-POA transitions are just part of the motivation. > However, CORBA already provides a standard interface, i.e. the > boiler plate code we've been talking about. Again, this argument is no different from the rational for avoiding the use of ACE, which IMHO is "backwards looking" for the reasons described above. > Since initialization code conversion must be done anway, why convert > BOA-based code to use an ORB manager interface, when a standard and > portable interface is already available? Here's a recap of the reasons, all of which are identical to those that motivate various capabilities of ACE: 1. The CORBA interface isn't truly portable in practice due to differences in quality of ORB implementations and standards conformance. 2. Even if the low-level CORBA APIs were *entirely* portable (which they aren't), there's still a virtue in exposing higher-level abstractions to application developers. In particular, higher-level abstractions can eliminate common programming errors, in particular memory leaks. 3. As the CORBA spec evolves, it's likely that they will add new capabilities that require changes to the set of boilerplate code needed to initialize an ORB. Without an ORB_Manager, each application must be modified. With an ORB_Manager, applications can often remain blissfully ignorance. 4. From a more pedagogical perspective, we should be striving to understand how to simplify common CORBA use-cases. The ORB_Manager is but a humble start along this long and winding road. Now, having said all this, it's clear that the TAO_ORB_Manager can be improved. But as long as people keep programming at the "ORB assembly" level, it's hard to learn what the right abstractions are. Take care, Doug To: Balachandran Natarajan <bala@cs.wustl.edu> cc: doc_group@cs.wustl.edu Subject: Re: [doc_group] ORB_Manager.h question In-reply-to: Your message of "Sun, 29 Jul 2001 17:12:30 CDT." <200107292212.RAA09381@macarena.cs.wustl.edu> Date: Sun, 29 Jul 2001 17:39:05 -0500 From: "Douglas C. Schmidt" <schmidt@cs.wustl.edu> Precedence: bulk Hi Bala, > No, I am not challenging... I know (as Ossama mentioned) I am > arguing a losing case :-) Actually, I suspect you folks will actually win this argument in the short-term since I don't hear a great outcry to overhaul the TAO_ORB_Manager anytime soon... ;-) > But anyway, does that stop us from arguing? No -- it's good practice for future career paths! > May be we could have.. But as Ossama points out we are just > introducing people to more proprietary stuff, so that we can be in To: Balachandran Natarajan <bala@cs.wustl.edu> cc: doc_group@cs.wustl.edu Subject: Re: [doc_group] ORB_Manager.h question In-reply-to: Your message of "Sun, 29 Jul 2001 17:12:30 CDT." <200107292212.RAA09381@macarena.cs.wustl.edu> Date: Sun, 29 Jul 2001 17:39:05 -0500 From: "Douglas C. Schmidt" <schmidt@cs.wustl.edu> Precedence: bulk Hi Bala, > No, I am not challenging... I know (as Ossama mentioned) I am > arguing a losing case :-) Actually, I suspect you folks will actually win this argument in the short-term since I don't hear a great outcry to overhaul the TAO_ORB_Manager anytime soon... ;-) > But anyway, does that stop us from arguing? No -- it's good practice for future career paths! > May be we could have.. But as Ossama points out we are just > introducing people to more proprietary stuff, so that we can be in > business :-)? Hahaha, Ossama, I think that Bala's internalized more of your book than you have thus far ;-) > Isnt the CCM supposed to be aiming at that? Yes and no. CCM is supposed to be handling the "strategic" issues of CORBA evolution, e.g., auto-generating large chunks of server-side code. However, CCM *certainly* won't address the "tactical" issues of CORBA programming that we're discussing since: 1. CCM still doesn't standardize all the things needed to write portable code (e.g., header file names, IDL and ORB options, etc.). 2. CCM isn't going to be implemented in its entirely anytime soon, so if the existence of fully compliant CCM implementations are required to solve the problems that TAO_ORB_Manager addresses, I'll put my $$$ on getting TAO_ORB_Manager working LONG before we get CCM done across the CORBA industry!!!! > Yes your argument looks good or neat. Arent the CORBA interface > calls portable? Do we at this point have a variation in semantics > between different ORB's? May be, there are one or two ORB's but then > those ORB's arent conformant, are they? No, but neither are all of the busted UNIX/POSIX operating systems that we support with ACE, right? In other words, just saying "we don't need portability abstractions because things ought to be portable 'out-of-the-box'" sounds rather "optimisitic" given all our collective experience with ACE and ACE_OS over the years! > Your point could be valid for some niche areas in CORBA where things > (I mean interfaces) are pretty much open like Priority Mapping > Manager in RTCORBA etc. Yes, that's a good example. > > You might want to read the column at > > > > http://www.cs.wustl.edu/~schmidt/PDF/C++-report-col13.pdf > > > > which explains this stuff in detail and shows examples of writing > > portable CORBA code. > > I would agree with Ossama's points on this .. I've addressed his concerns in the previous email, so I won't repeat them here. In general, I think you folks are looking at these issues too much from an *ORB* developer's perspective and not from an *application* developer's perspective. Application developers (who are not also ORB developers) in general don't want to see the "plumbing" -- even the boilerplate plumbing -- if they can avoid it. BTW, one reason why people always beat up on CORBA in the "real world" is because it's too complicated to use (compared with alternatives). One way to fight back is by providing *good* wrapper facades for common CORBA idioms. While TAO_ORB_Manager probably isn't worth fighting for, the *principle* of abstracting low-level ORB capabilities *is* worth fighting for, which is why I'm arguing this point so persistently! Take care, Doug
Date: Sun, 29 Jul 2001 20:08:13 -0400 From: Craig Rodrigues <crodrigu@bbn.com> To: doc_group@cs.wustl.edu Subject: Re: [doc_group] ORB_Manager.h question User-Agent: Mutt/1.2.4i In-Reply-To: <200107292239.RAA19779@ace.cs.wustl.edu>; from +schmidt@cs.wustl.edu on Sun, Jul 29, 2001 at 05:39:05PM -0500 Precedence: bulk Hi, Wow, I didn't think that my question about better documentation for the ORB Manager would stir so many emotions. On Sun, Jul 29, 2001 at 05:39:05PM -0500, Douglas C. Schmidt wrote: > > > But anyway, does that stop us from arguing? > > No -- it's good practice for future career paths! There is a movie currently in the theaters called Legally Blonde which explores a similar subtext. ;) > I've addressed his concerns in the previous email, so I won't repeat > them here. In general, I think you folks are looking at these issues > too much from an *ORB* developer's perspective and not from an > *application* developer's perspective. Application developers (who > are not also ORB developers) in general don't want to see the > "plumbing" -- even the boilerplate plumbing -- if they can avoid it. As an application developer, I must agree with this statement. There is a lot of boilerplate CORBA code that one must use when developing a CORBA application. Although not as bad as coding at the socket level, I personally find that programming a lot of this boilerplate CORBA code can be tedious, error-prone, and a source of accidental complexity. Sound familiar? There are many cases where I can see this being true, but two use cases that affect me in the short term are: (1) the boilerplate CORBA code which is responsible for setting up the ORB, setting up the POA, getting object references from servants, running the ORB dispatch loop, etc. (2) binding to and resolving objects from the Naming Service For (1), the ORB_Manager, while not perfect, presents a better interface to me, than the plain CORBA calls. By looking at the implementation of this class, I have a better idea how the underlying connection setup works. This has been more illustrative to me than by reading Chapter 11 of H&V on the POA, which while good, is quite a long and complicated chapter. For (2), I've rolled my own template class, which is loosely based on the template functions in Ch. 18 of H&V. It's pretty boneheadedly simple, and takes in parameters for allowing a number and time interval for retrying binds and resolves against the naming service a few times before propagating an exception. It could be improved. I've gone ahead and doxygen-ified and improved the documentation ORB_Manager.h despite the protests. :) I think it will be helpful to many people. From: Ossama Othman <ossama@doc.ece.uci.edu> Date: Sun, 29 Jul 2001 17:16:48 -0700 To: "Douglas C. Schmidt" <schmidt@cs.wustl.edu> Cc: Martin.Botzler@mchp.siemens.de, doc_group@cs.wustl.edu Subject: Re: [doc_group] ORB_Manager.h question Mail-Followup-To: "Douglas C. Schmidt" <schmidt@cs.wustl.edu>, Martin.Botzler@mchp.siemens.de, doc_group@cs.wustl.edu User-Agent: Mutt/1.2.5i In-Reply-To: <200107292224.RAA15630@ace.cs.wustl.edu>; from +schmidt@cs.wustl.edu on Sun, Jul 29, 2001 at 05:24:51PM -0500 Precedence: bulk Hi Doug, On Sun, Jul 29, 2001 at 05:24:51PM -0500, Douglas C. Schmidt wrote: > > I know that I'm not going to win this one, but here goes anyway. :-) > > Is this situation covered in one of the 48 laws? ;-) ;-) Even if I turned out to be right (which I most certainly may not be), I still wouldn't claim to be right. Hence, I choose to apply law #1, i.e. "Never Outshine the Master." :-) For those of you who don't know which "laws" Doug and I are talking about, we are referring to the "48 Laws of Power" which is a book written by Robert Greene. It is collection of "laws" used by those in power in history. > Not if your goal is to become indispensable in someone's tool chain! > BTW, check out the "Power" book and look for the law about "Learn to > become indispensable" -- it's just this insight applied to middleware > ;-) Good point. My book is in the lab, so I'll take a look tomorrow. > Sure, but so was ACE_SOCK_Acceptor 10 years ago.... The point is that > if we never start experimenting with higher-level abstractions, we'll > never be able to get beyond programming at the "plumbing" level. I'll accept that argument. However, it's not clear to me that an ORB_Manager implementation should be part of an ORB implementation. > Yes, definitely. Here's a thought question, however: if you wanted to > write a CORBA application that worked with and without certain CCM > capabilities how would you do it? My guess is that you'd devise some > encapsulate wrapper facades similar to the ORB_Manager to shield the > differences. Yes, I agree. > Sure, just like most modern operating systems are POSIX based... > Therefore, from this point of view, what's the point of an > encapsulation toolkit like ACE? Naturally, the answer is that it > helps to smooth the transition so that these issues won't matter. True, but there's more to ACE than just providing a truly portable > Yes, definitely. Here's a thought question, however: if you wanted to > write a CORBA application that worked with and without certain CCM > capabilities how would you do it? My guess is that you'd devise some > encapsulate wrapper facades similar to the ORB_Manager to shield the > differences. Yes, I agree. > Sure, just like most modern operating systems are POSIX based... > Therefore, from this point of view, what's the point of an > encapsulation toolkit like ACE? Naturally, the answer is that it > helps to smooth the transition so that these issues won't matter. True, but there's more to ACE than just providing a truly portable interface (unlike current POSIX implementations). Its higher level abstractions ease implementation of many facets of concurrent and distributed manner. It appears that POSIX vs. the ACE_OS layer is a better comparison. > BTW, even in POA-based ORBs there will be bugs and other assorted > portability problems that an abstract layer like ORB_Manager can help > with. What happens when the ORB_Manager layer has bugs in it? Do we start the cycle again? > Perhaps in a small R&D project that's begun recently. However, in > larger and longer-lived projects developers need to migrate to a > POA-based ORB *without* rewriting all their existing CORBA code? > Although this isn't a problem for us, it's a *huge* problem for all > those Orbix 2.x and 3.x users. In their case, an ORB_Manager (plus > associated other stuff) is quite useful. In fact, Martin Botzler and > Frank Buschmann at Siemens have written an extensive multi-ORB testbed > using capabilities very similar to ORB_Manager to factor out the > non-portable code. When you first began working on ACE, you wrote the ACE_OS layer then the full blown toolkit. Why then is something similar not done with the BOA? Specifically, why doesn't anyone write a wrapper facade that exposes the standard POA interface rather than some proprietary interface at a higher level of abstraction? Such a wrapper facade would certainly be more portable than a non-standard ORB manager. > A couple of thoughts on this: > > 1. I agree that an ORB_Manager should have a standard interface. +However, > that begs the question "where would such a standard come from?" +Ideally, > it would come from experience using different encapsulation +mechanisms. > If no one builds any such encapsulation mechanisms, however, how will > the standards committee know what works and what doesn't? Agreed. > 2. Try replacing "ORB manager" with "ACE" and "BOA-based applications" > with "legacy OS applications" and see if you still agree with the > statement. If so, you should ask yourself what the implications are > next time Bill Beckwith starts arguing that ACE is "proprietary" > and should therefore not be used! Slick. Throw in "Bill Beckwith" so that I concentrate more on him than the matter at hand. :-) :-) Bill's argument about ACE is a bit a silly since nothing forces the application developer to use ACE. I wish that he'd stop spreading FUD. In all honesty, I'm not sure I follow what you mean with point #2 so I can't argue against it. > > Since most modern ORBs are POA-based, ORB initialization portability > > isn't an issue. > > Again, I believe this is too narrow a viewpoint. Try saying "since > most modern operating systems are POSIX-based, application portability > isn't an issue" -- it just doesn't make any sense when you look beyond > one or two operating system implementations! Moreover, this "plumbing > uber alles" perspective doesn't scale up to all the other things that > ought to be done to make it easier to develop CORBA applications. I'm not sure that I agree. There will always be some sort of portability issue in a given ORB implementation. The same goes for an ORB manager. At some point one has to bite the bullet and handle the incompatibilities without relying on some higher level abstraction. > I'll agree with you than an ORB_Manager shouldn't be expected to solve > all known problems with an ORB. However, I feel that by rejecting any > form of abstraction to raise the level at which an ORB is programmed > by application developers is simply "backwards looking" and sounds > almost identical to the arguments used against host infrastructure > middleware like ACE over 10 years ago!!! The issue here is the lack of usefulness of an ORB manager alone, not a well developed set of abstractions such as ACE. I agree that we need/ought to identify useful higher level abstractions that can comprise a framework/toolkit. > It's not entirely clear if there would have to be source code level > dependencies on TAO, but if that was an issue then it would be best to > add this as a separate library, similar to the $ACE_ROOT/websvcs or > $ACE_ROOT/netsvcs. Right. > At any rate, the point isn't to put it in ACE, per > se, but to make higher-level programming capabilities for CORBA > accessible in a manner akin to what we do for low-level OS > capabilities in ACE. Right. Again, my main gripe was the usefulness of the ORB manager alone. > > However, CORBA already provides a standard interface, i.e. the > > boiler plate code we've been talking about. > > Again, this argument is no different from the rational for avoiding > the use of ACE, which IMHO is "backwards looking" for the reasons > described above. I disagree. Building a wrapper facade that exposes the POA interface, rather than an ORB manager with a proprietary is the better route to go, IMO. I grant you that I've never written such a POA-portability layer, so I can't say if it be any more or less useful than an ORB manager. > Here's a recap of the reasons, all of which are identical to those > that motivate various capabilities of ACE: > > 1. The CORBA interface isn't truly portable in practice due to > differences in quality of ORB implementations and standards Right. Again, my main gripe was the usefulness of the ORB manager alone. > > However, CORBA already provides a standard interface, i.e. the > > boiler plate code we've been talking about. > > Again, this argument is no different from the rational for avoiding > the use of ACE, which IMHO is "backwards looking" for the reasons > described above. I disagree. Building a wrapper facade that exposes the POA interface, rather than an ORB manager with a proprietary is the better route to go, IMO. I grant you that I've never written such a POA-portability layer, so I can't say if it be any more or less useful than an ORB manager. > Here's a recap of the reasons, all of which are identical to those > that motivate various capabilities of ACE: > > 1. The CORBA interface isn't truly portable in practice due to > differences in quality of ORB implementations and standards > conformance. Right. > 2. Even if the low-level CORBA APIs were *entirely* portable (which > they aren't), there's still a virtue in exposing higher-level > abstractions to application developers. In particular, higher-level > abstractions can eliminate common programming errors, in particular > memory leaks. Right. I'm not saying that such higher level abstractions should be avoided. In fact, aren't the standard ORB services just higher level abstractions of lower-level CORBA functionality? I'm a big fan of those services (except for the ever changing Security Service :-). > 3. As the CORBA spec evolves, it's likely that they will add new > capabilities that require changes to the set of boilerplate > code needed to initialize an ORB. Without an ORB_Manager, > each application must be modified. With an ORB_Manager, > applications can often remain blissfully ignorance. What happens when the ORB_Manager interface is insufficient to support the new boilerplate initialization code? Another application re-write is necessary. > 4. From a more pedagogical perspective, we should be striving to > understand how to simplify common CORBA use-cases. The ORB_Manager > is but a humble start along this long and winding road. > > Now, having said all this, it's clear that the TAO_ORB_Manager can be > improved. But as long as people keep programming at the "ORB > assembly" level, it's hard to learn what the right abstractions are. Fair enough. :) -Ossama From: "Carlos O'Ryan" <coryan@ece.uci.edu> To: <doc_group@cs.wustl.edu> Subject: Re: [doc_group] ORB_Manager.h question Date: Sun, 29 Jul 2001 17:31:57 -0700 X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.4522.1200 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4522.1200 Precedence: bulk Hi, Doug knows that I have argued for the destruction of the +TAO_ORB_Manager in the past. I won't repeat the arguments again. But I think we all agreewith this: > the *principle* of abstracting low-level ORB > capabilities *is* worth fighting for, which is why I'm arguing this > point so persistently! Amen. > One way to fight back is by providing *good* wrapper facades for > common CORBA idioms. "Code you can trust" uh? Here are a few ideas: 1) Reference counted servants are often used like this: MyServant *servant = new ....; PortableServer::ServantBase_var transfer_ownership (servant); // transfer ownership to the POA poa->activate_object_with_id (servant ....); // user servant.... It would be much better if we could use an auto_ptr<> class for that: PortableServer::Servant_var<MyServant> servant (new ....); such a class can be written (Jody has) and makes such code much easier to write. template<class Servant> class Servant_var { public: Servant_var (Servant *s) : servant_ (s) {} ~Servant_var () { try { servant_->_remove_ref (); } catch (CORBA::Environment &) {} } Servant *operator-> () { return this->servant_; } private: Servant *servant_; }; 2) ORB initialization and destruction *is* tedious, however, +TAO_ORB_Manager couples the ORB initialization, the POA and one child POA construction, servant activation and POA state changing... A helper class like this: class ORB_Init { public: ORB_Init (int &argc, char* argv[]) : orb_ (CORBA::ORB_init (argc, argv)) {} ~ORB_Init () try { this->orb_->destroy () }catch (CORBA::Exception &) {} CORBA::ORB_ptr operator->() { return this->orb_.in (); } CORBA::ORB_ptr in () { return this->orb_.in (); } // and out, inout(), ?? private: CORBA::ORB_var orb_; }; that class is at least cohesive and could serve as basis for higher level stuff. 3) The naming service resolve stuff is always mentioned... though every +user I meet seems to have a different policy to retry lookups (puts your mind onmechanism and policy... and on different abstraction layers, ala ACE_Connector vs. ACE_SOCK_Connector). 4) Other common idioms include: POAs that get automatically destroyed if +one object activation fails. > While TAO_ORB_Manager probably isn't worth > fighting for, The class is not even worth documenting if you ask me. It is totally broken and has produced attrocities like the TAO_AV streaming class, so thightly coupled to the ORB_Manager and the general initialization that it cannot be used any other way. This is were Doug and myself depart: IMHO it is better to have no abstractions than to have a bad abstraction. This is why I always +recommend against using the TAO_ORB_Manager class. -- Date: Sun, 29 Jul 2001 22:25:07 -0500 (CDT) From: Chris Cleeland <cleeland@ociweb.com> To: "Douglas C. Schmidt" <schmidt@cs.wustl.edu> cc: Craig Rodrigues <crodrigu@bbn.com>, <doc_group@cs.wustl.edu> Subject: Re: [doc_group] ORB_Manager.h question In-Reply-To: <200107292016.PAA27630@ace.cs.wustl.edu> On Sun, 29 Jul 2001, Douglas C. Schmidt wrote: > BTW, I noticed the name of the person who's attributed > with writing this file in the first place: > > // = AUTHOR > // Chris Cleeland <cleeland@cs.wustl.edu> > > Me thinks he dost protest to much ;-) Hmmm...not to pass the buck, but that was the result of a file move that I did. Check out the original changelog entry: Fri Jan 30 14:38:30 1998 Sumedh Mungee <sumedh@cs.wustl.edu> * orbsvcs/orbsvcs/util.cpp : Added TAO_ORB_Manager, a simple helper class that does simple ORB and POA initialization and object activation etc. * orbsvcs/orbsvcs/util.h : Added file After Sumedh showed it off to a few folks, I was tasked with putting it +into the ORB Core, which I did and documented in this entry: Wed Feb 4 12:30:43 1998 Chris Cleeland <cleeland@tango.cs.wustl.edu> * tao/objkeyC.h: Modified so that the namespace mapping for the TAO module uses the alternative "underbar" mapping, i.e., rather than TAO::ObjectKey, it's now TAO_ObjectKey. The scoping operation is now performed in tao.h. * tao/tao.h: This now contains a class (used as a namespace) in which components which *should* be in the TAO:: namespace are typedef'd. * tao/tao_util.*: Moved TAO_ORB_Manager into here. * tao/stub.h: * tao/servant_base.cpp: * tao/poa.h: * tao/poa.cpp: * tao/orbobj.h: * tao/orbobj.cpp: * tao/orb_core.h: * tao/orb_core.cpp: * tao/object.h: * tao/object.cpp: * tao/iiopobj.h: * tao/iiopobj.cpp: * tao/corba.h: Changed references of TAO::ObjectKey to TAO_ObjectKey. * tao/Makefile: Adjusted build tao_util.so rather than tao.so. In some way, I wish I *had* written it, because then I would at least be condemning my own work. I agree with you, Doug, that from an application developer's perspective there needs to be a better/simpler abstraction. +But Carlos is dead-on in that this abstraction is not the right one, and shouldn't be bouyed up with documentation to make it look more usable. Perhaps if I actually get a chance to write an app soon, I'll work on something better, or contribute to any other effort underway. Until then (and it pains me to say this), Nancy Reagan was right: "just say no". -cj PS And to think that the ChangeLog entries I used to HATE doing would comein handy one day ;-) ;-) ;-) I guess that's one of those "eat your +spinach" kind of lessons...
Accepted.