diff options
| author | Gordon Sim <gsim@apache.org> | 2008-05-01 08:01:48 +0000 |
|---|---|---|
| committer | Gordon Sim <gsim@apache.org> | 2008-05-01 08:01:48 +0000 |
| commit | 27ecd6f07fb30357a77cbcf8ced20d7711b0db08 (patch) | |
| tree | 8b89c36367229de45f126c4045cb76d304a9df6f /qpid/cpp/rubygen/99-0/constants.rb | |
| parent | 1316659afff1bc69177e4e02bae4458509ee6a83 (diff) | |
| download | qpid-python-27ecd6f07fb30357a77cbcf8ced20d7711b0db08.tar.gz | |
Cleanup: Re-enable tests that now pass; delete unused templates directory.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@652451 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/rubygen/99-0/constants.rb')
| -rwxr-xr-x | qpid/cpp/rubygen/99-0/constants.rb | 82 |
1 files changed, 0 insertions, 82 deletions
diff --git a/qpid/cpp/rubygen/99-0/constants.rb b/qpid/cpp/rubygen/99-0/constants.rb deleted file mode 100755 index b5f559d504..0000000000 --- a/qpid/cpp/rubygen/99-0/constants.rb +++ /dev/null @@ -1,82 +0,0 @@ -#!/usr/bin/env ruby -$: << ".." # Include .. in load path -require 'cppgen' - -class ConstantsGen < CppGen - - def initialize(outdir, amqp) - super(outdir, amqp) - @namespace="qpid::framing" - @dir="qpid/framing" - end - - def constants_h() - h_file("#{@dir}/constants") { - namespace(@namespace) { - scope("enum AmqpConstant {","};") { - l=[] - l.concat @amqp.constants.map { |c| "#{c.name.shout}=#{c.value}" } - @amqp.classes.each { |c| - l << "#{c.name.shout}_CLASS_ID=#{c.index}" - l.concat c.methods_.map { |m| - "#{c.name.shout}_#{m.name.shout}_METHOD_ID=#{m.index}" } - } - genl l.join(",\n") - }}} - end - - def exbase(c) - case c.class_ - when "soft-error" then "ChannelException" - when "hard-error" then "ConnectionException" - end - end - - def reply_exceptions_h() - h_file("#{@dir}/reply_exceptions") { - include "qpid/Exception" - namespace(@namespace) { - @amqp.constants.each { |c| - base = exbase c - if base - genl - struct(c.name.caps+"Exception", base) { - genl "#{c.name.caps}Exception(const std::string& msg=std::string()) : #{base}(#{c.value}, \"#{c.name}: \"+msg) {}" - } - end - } - genl - genl "void throwReplyException(int code, const std::string& text);" - } - } - end - - def reply_exceptions_cpp() - cpp_file("#{@dir}/reply_exceptions") { - include "#{@dir}/reply_exceptions" - include "<sstream>" - namespace("qpid::framing") { - scope("void throwReplyException(int code, const std::string& text) {"){ - scope("switch (code) {") { - genl "case 200: break; // No exception" - @amqp.constants.each { |c| - if exbase c - genl "case #{c.value}: throw #{c.name.caps}Exception(text);" - end - } - scope("default:","") { - genl "std::ostringstream msg;" - genl 'msg << "Invalid reply code " << code << ": " << text;' - genl 'throw InvalidArgumentException(msg.str());' - }}}}} - end - - def generate() - constants_h - reply_exceptions_h - reply_exceptions_cpp - end -end - -ConstantsGen.new($outdir, $amqp).generate(); - |
