You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@qpid.apache.org by Gordon Sim <gs...@redhat.com> on 2007/03/06 10:15:16 UTC

Naming etc (was Re: C++ directory re-organization)

Robert Godfrey wrote:
> Indeed... But java code littered with disambiguating
> org.apache.qpid.amqp.Session and javax.jms.Session sure does look ugly :-)
> ... now if only you could do aliasing you could call one AMQPSession and 
> one
> JMSSession ;-)

I agree, it would be nice to be able to define alias type names or 
'import as' or something in java. That's one reason that identical 
naming across several languages may be hard to agree on - each language 
brings a slightly different set of conventions and constraints into play.

Getting more consistent doesn't have to mean being identical in every 
respect though. Perhaps the place to start is at the structural level; 
deciding whether we want a low level AMQP API for each language, 
mirroring the protocol structure in effect and therefore more likely to 
be easily understood across different clients. I would certainly like to 
make the c++ and python clients more consistent, but haven't thought it 
all through yet.

Re: Naming etc (was Re: C++ directory re-organization)

Posted by Rupert Smith <ru...@googlemail.com>.
Yes, thats worth mentioning too. The JMS api will always be different
from the "close to the protocol" AMQ/QPID api. Currently the java
client provides both APIs, with JMS implemented on top of the QPID one
(more or less). The JMS API cannot be implemented in other lanaguges,
because Sun forbids it. The java will still need to expose the same
API as the other clients, because there are certain things you cannot
do from the pure JMS API.

I still think things will be easier if we begin steering towards a
unified API as early as possible. I only mentioned the idea now,
because I saw an opportunity piggy back this on top of a major
refactoring of the C++ that needs to be carried out anyway.

On 3/6/07, Robert Godfrey <ro...@gmail.com> wrote:
> The major issue is not the naming but the struture.  I agree that we should
> have some API which is common across the different languages which probably
> maps pretty closely to the AMQP protocol iteself (the protocol looking as
> much like an API as it is possible for a protocol to do).  However, for Java
> at least, we would expect that we would need a separate manual explaining
> how to use JMS over AMQP.
>
> I would agree this is something we want by the time we attempt to graduate
> from incubator status.  Right now I suggest we look more at the impact that
> future versions of AMQP may have on Qpid (in particular, given the changes
> that are likley in 0-10/0-11 I think it would be unwise to start solidifying
> an API just yet :-) )...
>
> -- Rob
> On 06/03/07, Rupert Smith <ru...@googlemail.com> wrote:
> >
> > I think we should be aiming to be identical in every respect in which
> > it is reasonable to do so. That is to say that, if there is not a very
> > good reason for the API being different among the clients, then why
> > make it different? There may need to be occasional differences to
> > cater for the conventions/type systems/other reasons relating to the
> > implementing technology. I'd like to see identical package/namespace
> > names (relative to a root), class names, method names, method
> > arguments, argument types, even the ordering of the arguments in
> > method calls, in so far as its possible within the different
> > languages. If I were looking at Qpid for the first time, this would
> > speak volumes to me about the unified, well integrated product that
> > Qpid is. The manual will only need to be written once (with examples
> > that easily translate). Are there any compelling reasons not to do
> > this?
> >
> > Also, if its to be done it should be done as early as possible. Before
> > there are too many clients coding to the different APIs that will be
> > very annoyed at having it refactored under their feet.
> >
> > Rupert
> >
> > On 3/6/07, Gordon Sim <gs...@redhat.com> wrote:
> > > Robert Godfrey wrote:
> > > > Indeed... But java code littered with disambiguating
> > > > org.apache.qpid.amqp.Session and javax.jms.Session sure does look ugly
> > :-)
> > > > ... now if only you could do aliasing you could call one AMQPSession
> > and
> > > > one
> > > > JMSSession ;-)
> > >
> > > I agree, it would be nice to be able to define alias type names or
> > > 'import as' or something in java. That's one reason that identical
> > > naming across several languages may be hard to agree on - each language
> > > brings a slightly different set of conventions and constraints into
> > play.
> > >
> > > Getting more consistent doesn't have to mean being identical in every
> > > respect though. Perhaps the place to start is at the structural level;
> > > deciding whether we want a low level AMQP API for each language,
> > > mirroring the protocol structure in effect and therefore more likely to
> > > be easily understood across different clients. I would certainly like to
> > > make the c++ and python clients more consistent, but haven't thought it
> > > all through yet.
> > >
> >
>

Re: Naming etc (was Re: C++ directory re-organization)

Posted by Robert Godfrey <ro...@gmail.com>.
The major issue is not the naming but the struture.  I agree that we should
have some API which is common across the different languages which probably
maps pretty closely to the AMQP protocol iteself (the protocol looking as
much like an API as it is possible for a protocol to do).  However, for Java
at least, we would expect that we would need a separate manual explaining
how to use JMS over AMQP.

I would agree this is something we want by the time we attempt to graduate
from incubator status.  Right now I suggest we look more at the impact that
future versions of AMQP may have on Qpid (in particular, given the changes
that are likley in 0-10/0-11 I think it would be unwise to start solidifying
an API just yet :-) )...

-- Rob
On 06/03/07, Rupert Smith <ru...@googlemail.com> wrote:
>
> I think we should be aiming to be identical in every respect in which
> it is reasonable to do so. That is to say that, if there is not a very
> good reason for the API being different among the clients, then why
> make it different? There may need to be occasional differences to
> cater for the conventions/type systems/other reasons relating to the
> implementing technology. I'd like to see identical package/namespace
> names (relative to a root), class names, method names, method
> arguments, argument types, even the ordering of the arguments in
> method calls, in so far as its possible within the different
> languages. If I were looking at Qpid for the first time, this would
> speak volumes to me about the unified, well integrated product that
> Qpid is. The manual will only need to be written once (with examples
> that easily translate). Are there any compelling reasons not to do
> this?
>
> Also, if its to be done it should be done as early as possible. Before
> there are too many clients coding to the different APIs that will be
> very annoyed at having it refactored under their feet.
>
> Rupert
>
> On 3/6/07, Gordon Sim <gs...@redhat.com> wrote:
> > Robert Godfrey wrote:
> > > Indeed... But java code littered with disambiguating
> > > org.apache.qpid.amqp.Session and javax.jms.Session sure does look ugly
> :-)
> > > ... now if only you could do aliasing you could call one AMQPSession
> and
> > > one
> > > JMSSession ;-)
> >
> > I agree, it would be nice to be able to define alias type names or
> > 'import as' or something in java. That's one reason that identical
> > naming across several languages may be hard to agree on - each language
> > brings a slightly different set of conventions and constraints into
> play.
> >
> > Getting more consistent doesn't have to mean being identical in every
> > respect though. Perhaps the place to start is at the structural level;
> > deciding whether we want a low level AMQP API for each language,
> > mirroring the protocol structure in effect and therefore more likely to
> > be easily understood across different clients. I would certainly like to
> > make the c++ and python clients more consistent, but haven't thought it
> > all through yet.
> >
>

Re: Naming etc (was Re: C++ directory re-organization)

Posted by Rupert Smith <ru...@googlemail.com>.
I think we should be aiming to be identical in every respect in which
it is reasonable to do so. That is to say that, if there is not a very
good reason for the API being different among the clients, then why
make it different? There may need to be occasional differences to
cater for the conventions/type systems/other reasons relating to the
implementing technology. I'd like to see identical package/namespace
names (relative to a root), class names, method names, method
arguments, argument types, even the ordering of the arguments in
method calls, in so far as its possible within the different
languages. If I were looking at Qpid for the first time, this would
speak volumes to me about the unified, well integrated product that
Qpid is. The manual will only need to be written once (with examples
that easily translate). Are there any compelling reasons not to do
this?

Also, if its to be done it should be done as early as possible. Before
there are too many clients coding to the different APIs that will be
very annoyed at having it refactored under their feet.

Rupert

On 3/6/07, Gordon Sim <gs...@redhat.com> wrote:
> Robert Godfrey wrote:
> > Indeed... But java code littered with disambiguating
> > org.apache.qpid.amqp.Session and javax.jms.Session sure does look ugly :-)
> > ... now if only you could do aliasing you could call one AMQPSession and
> > one
> > JMSSession ;-)
>
> I agree, it would be nice to be able to define alias type names or
> 'import as' or something in java. That's one reason that identical
> naming across several languages may be hard to agree on - each language
> brings a slightly different set of conventions and constraints into play.
>
> Getting more consistent doesn't have to mean being identical in every
> respect though. Perhaps the place to start is at the structural level;
> deciding whether we want a low level AMQP API for each language,
> mirroring the protocol structure in effect and therefore more likely to
> be easily understood across different clients. I would certainly like to
> make the c++ and python clients more consistent, but haven't thought it
> all through yet.
>