Implement initial Python bindings for Open vSwitch database.
authorBen Pfaff <blp@nicira.com>
Wed, 25 Aug 2010 17:26:40 +0000 (10:26 -0700)
committerBen Pfaff <blp@nicira.com>
Wed, 25 Aug 2010 21:55:48 +0000 (14:55 -0700)
commit991559357f6a03c3a5b70c053c8c2554aa8d5ee4
tree8731002433c65ea41dbe94648c0e39737f666469
parentd1b680c61626595b2777f4bf25997a9178acb60c
Implement initial Python bindings for Open vSwitch database.

These initial bindings pass a few hundred of the corresponding tests
for C implementations of various bits of the Open vSwitch library API.
The poorest part of them is actually the Python IDL interface in
ovs.db.idl, which has not received enough attention yet.  It appears
to work, but it doesn't yet support writes (transactions) and it is
difficult to use.  I hope to improve it as it becomes clear what
semantics Python applications actually want from an IDL.
55 files changed:
Makefile.am
lib/automake.mk
ovsdb/OVSDB.py [deleted file]
ovsdb/automake.mk
ovsdb/ovsdb-doc.in
ovsdb/ovsdb-dot.in
ovsdb/ovsdb-idlc.in
python/ovs/__init__.py [new file with mode: 0644]
python/ovs/automake.mk [new file with mode: 0644]
python/ovs/daemon.py [new file with mode: 0644]
python/ovs/db/__init__.py [new file with mode: 0644]
python/ovs/db/data.py [new file with mode: 0644]
python/ovs/db/error.py [new file with mode: 0644]
python/ovs/db/idl.py [new file with mode: 0644]
python/ovs/db/parser.py [new file with mode: 0644]
python/ovs/db/schema.py [new file with mode: 0644]
python/ovs/db/types.py [new file with mode: 0644]
python/ovs/dirs.py [new file with mode: 0644]
python/ovs/fatal_signal.py [new file with mode: 0644]
python/ovs/json.py [new file with mode: 0644]
python/ovs/jsonrpc.py [new file with mode: 0644]
python/ovs/ovsuuid.py [new file with mode: 0644]
python/ovs/poller.py [new file with mode: 0644]
python/ovs/process.py [new file with mode: 0644]
python/ovs/reconnect.py [new file with mode: 0644]
python/ovs/socket_util.py [new file with mode: 0644]
python/ovs/stream.py [new file with mode: 0644]
python/ovs/timeval.py [new file with mode: 0644]
python/ovs/util.py [new file with mode: 0644]
tests/atlocal.in
tests/automake.mk
tests/daemon-py.at [new file with mode: 0644]
tests/daemon.at
tests/json.at
tests/jsonrpc-py.at [new file with mode: 0644]
tests/jsonrpc.at
tests/ovsdb-column.at
tests/ovsdb-data.at
tests/ovsdb-idl-py.at [new file with mode: 0644]
tests/ovsdb-schema.at
tests/ovsdb-table.at
tests/ovsdb-types.at
tests/ovsdb.at
tests/reconnect.at
tests/test-daemon.py [new file with mode: 0644]
tests/test-json.py [new file with mode: 0644]
tests/test-jsonrpc.c
tests/test-jsonrpc.py [new file with mode: 0644]
tests/test-ovsdb.py [new file with mode: 0644]
tests/test-reconnect.py [new file with mode: 0644]
tests/testsuite.at
xenserver/README
xenserver/automake.mk
xenserver/openvswitch-xen.spec
xenserver/uuid.py [new file with mode: 0644]