]> review.fuel-infra Code Review - openstack-build/neutron-build.git/commit
1) Added a bare-bones framework for quantum plugins.
authorSomik Behera <somik@nicira.com>
Fri, 13 May 2011 21:23:37 +0000 (14:23 -0700)
committerSomik Behera <somik@nicira.com>
Fri, 13 May 2011 21:23:37 +0000 (14:23 -0700)
commit9a82d8a9e3571dffe75894108dec1979e4ac34b3
tree5ef5f72cb3bef222083c34eed27c119ffd7ebda2
parent5626c2feddd10af824c3dd7745f5e25b6c49a90c
1) Added a bare-bones framework for quantum plugins.
2) Created demo quantum plugin that conforms to QuantumPluginBase
    Abstract class specification.
3) Demonstrated plugin registration and invocation using the demo
    plugin called "QuantumEchoPlugin"
4) Created the initial file structure for a quantum CLI
5) Seeded the utils module that will contain frequently used Quantum utilities.
6) Modified the manager module to initialize and register the quantum plugin
    defined in a configuration file. I have hard-coded the path to plugin for now
    but this will move to a quantum.conf file.

TODO:

1) Finish up the Quantum CLI
2) Write Quantum unit tests that can be run against any plug-in for certification.
3) Create a working quantum plugin.
quantum/manager.py
quantum/plugins/SamplePlugin.py [new file with mode: 0644]
quantum/plugins/__init__.py [new file with mode: 0644]
quantum/quantumCLI.py [new file with mode: 0644]
quantum/quantum_plugin_base.py
quantum/utils.py [new file with mode: 0644]