summaryrefslogtreecommitdiff
path: root/qpid/cpp/rubygen/99-0/MethodBodyDefaultVisitor.rb
blob: a74b0c06d6e5c8e33429893e7628049a3141d7a0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#!/usr/bin/env ruby
$: << ".."                      # Include .. in load path
require 'cppgen'

class MethodBodyDefaultVisitorGen < CppGen
  
  def initialize(outdir, amqp)
    super(outdir, amqp)
    @namespace, @classname, @filename = parse_classname("qpid::framing::MethodBodyDefaultVisitor")
  end

  def generate()
    h_file(@filename) {
      include "qpid/framing/MethodBodyConstVisitor"
      namespace(@namespace) { 
        genl "class AMQMethodBody;"
        cpp_class(@classname, "public MethodBodyConstVisitor") {
          genl "public:"
          genl "virtual void defaultVisit(const AMQMethodBody&) = 0;"
          @amqp.methods_.each { |m|
            genl "virtual void visit(const #{m.body_name}&);" }
        }}}

    cpp_file(@filename) {
      include(@filename)
      include("all_method_bodies.h")
      namespace(@namespace) {
        @amqp.methods_.each { |m|
          genl "void #{@classname}::visit(const #{m.body_name}& b) { defaultVisit(b); }"
        }}}
  end
end

MethodBodyDefaultVisitorGen.new($outdir, $amqp).generate();