My team is working on a set of language bindings for OpenStack and Rackspace 
services. The first language we're working on is Python, and I'm trying to come 
up with a simple, generic way to handle API extensions. The method I've 
designed performs the following steps:


  1.  it queries the /extensions resource for the particular service,
  2.  it converts the extension alias: value into a "pythonesque" name 
(converts non-alphanumeric characters to underscores and lowercases everything),
  3.  it attempts to load a module from our plugins/ directory; if this fails, 
it simply skips it
  4.  if it loads the module successfully, it instantiates a new class object 
with the same name and passes the parent object to it
  5.  The plugin is responsible for modifying the parent object as needed to 
support whatever changes occur in the extension.

As an example, to authenticate with Rackspace's Keystone implementation, you 
need to use the RAX:KSKEY extension. Our language bindings would detect this 
extension, load the file plugins/rax_kskey.py, and create a new object 
rax_kskey(parent). The extension modifies the credentials-generation reference 
in the parent object to point to its own implementation of the credentials, and 
execution thereafter proceeds normally. If another provider is used, then the 
extension won't exist and it will use the default Keystone credentials.

If this is a little confusing, I have some working code here: 
https://github.com/rackspacedrg/openstack-python-sdk/tree/master/common (the 
auth.py does the authentication, and extensions.py handles the extensions).

The idea is that providers who supply extensions to the API can also provide 
language-binding plugins ("adapters") for those extensions.

Before I proceed too far down this path, however, I would like to know if 
anyone else has developed a generic way of handling extensions (one that could 
be extrapolated to other languages) and to solicit feedback on this design.

Glen Campbell • Developer Relations Group
glen.campb...@rackspace.com<mailto:glen.campb...@rackspace.com> • (210) 
446-9990 • @glenc





_______________________________________________
Mailing list: https://launchpad.net/~openstack
Post to     : openstack@lists.launchpad.net
Unsubscribe : https://launchpad.net/~openstack
More help   : https://help.launchpad.net/ListHelp

Reply via email to