diff options
| author | Kim van der Riet <kpvdr@apache.org> | 2006-10-18 18:13:01 +0000 |
|---|---|---|
| committer | Kim van der Riet <kpvdr@apache.org> | 2006-10-18 18:13:01 +0000 |
| commit | 4bddf9b38cb29b2528a66305ca6acfd5f09067cc (patch) | |
| tree | 738a5724cf701c632ccda1435536adb1ab5a4700 /gentools/README | |
| parent | 5810d2bbc60c82feb5dec60b40e9cb14b64bca9c (diff) | |
| download | qpid-python-4bddf9b38cb29b2528a66305ca6acfd5f09067cc.tar.gz | |
Initial checkin of code generator (Java only at this stage) which allows for the simultaneous support of multiple AMQP versions. This is a temporary location, for comment and evaluation purposes only. This generator is NOT integrated with the rest of the QPID project; it is intended for stand-alone use only for now.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@465322 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'gentools/README')
| -rw-r--r-- | gentools/README | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/gentools/README b/gentools/README new file mode 100644 index 0000000000..ada9f3867f --- /dev/null +++ b/gentools/README @@ -0,0 +1,28 @@ +AMQP MULTI_VERSION CODE GENERATOR + +This directory contains the first part of the new multi-AMQP-version code generator. The Java generation is almost complete, C++ will follow. + +NOTE: The generator has NOT been integrated into the current build, and is included here to run stand-alone for the purposes of review and comment. As currently configured, this generator will not interact with any file or directory outside of this directory. + +To build (from this directory): +javac org/apache/qpid/gentools/Main.java + +To run (from this directory): +java org/apache/qpid/gentools/Main -j [xml_spec_file, ...] + +XML test files are located in the xml-src directory. Pay attention to the Basic class and Basic.Consume method - these were the primary test vehicles for this generator. *** NOTE *** These files do not represent any current or future version of the AMQP specification - do not use in production! + +Folders: +-------- +org/apache/qpid/gentools/: Source. +xml-src/: Test AMQP specification files. +templ.java/: Templates for java code generation. +out.java/: Output folder for generated Java files (will be created with use of -j flag on command-line). +templ.cpp/: (Future:) Templates for C++ code generation. +out.cpp/: Output folder for generated C++ files (will be created with use of -c flag on command-line). + +For a mor detaild description of the generator, see the Qpid Wiki (http://wiki.apache.org/qpid/AMQPVersion). + +Please send comments and bugs to me (kim.vdriet [at] redhat.com) or via the Apache Qpid list (qpid-dev [at] incubator.apache.org). + +Kim van der Riet |
