commit | f424e97fbf20752e8923529e2946fc8eeae3de4c | [log] [tgz] |
---|---|---|
author | Rich Lane <rlane@bigswitch.com> | Thu May 09 21:00:13 2013 -0700 |
committer | Rich Lane <rlane@bigswitch.com> | Tue May 14 13:08:49 2013 -0700 |
tree | 90ab6e9b21198490b614833fa9b37040c7f01719 | |
parent | ff2f472ffe7d3840939d0eb2b3c36af78087284c [diff] |
parser: tag data members It's cleaner to differentiate between the different types of member AST by using the first element as a tag.
LoxiGen is a tool that generates OpenFlow protocol libraries for a number of languages. It is composed of a frontend that parses wire protocol descriptions and a backend for each supported language (currently C and Python, with Java on the way).
You can run LoxiGen directly from the repository. There's no need to install it, and it has no dependencies beyond Python 2.6+.
To generate the libraries for all languages:
make
To generate the library for a single language:
make c
The currently supported languages are c
and python
.
The generated libraries will be under the loxi_output
directory. This can be changed with the LOXI_OUTPUT_DIR
environment variable when using the Makefile.
Each generated library comes with its own set of documentation in the standard format for that language. Please see that documentation for more details on using the generated libraries.
Please fork the repository on GitHub and send us a pull request. You might also be interested in the INTERNALS file which has notes about how LoxiGen works.