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 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152
|
#!/usr/bin/env ruby
#
# Copyright (c) 2009-2010 Giorgio Gonnella <gonnella@zbh.uni-hamburg.de>
#
# Permission to use, copy, modify, and distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
# copyright notice and this permission notice appear in all copies.
#
# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
#
require "erb"
$:.unshift File.join(File.dirname(__FILE__), ".")
require "codegen_module.rb"
$help = <<-END_HELP
\nCode generator for:
- header file (license, ifndef/def/endif)
- module files (header file and c file including the header)
- class files (h and c files, basic skeleton)
- tool files (based on tools/gt_template.[ch])
It requires name and email of the user, that are expected
to be found in the [user] section of the user-specific git
configuration file (#$GITCONFIG). You may specify another file
using the env variable GT_CODEGEN_CONFIG.
Usage:
#$0 header|module|class|tool <subdir> <basename>
where <subdir> is the directory under src where the files are written
and <basename> has no gt_ prefix and is written in lower case,
and if it consists of multiple words they are connected_with_underscores
e.g.
#$0 tool tools xyz
#$0 header core abc_def
There is absolutely no guarantee that the results are correct.
Existing files are not overwritten or modified.
Report bugs to <gonnella@zbh.uni-hamburg.de>.
END_HELP
def find_src_directory
scripts_dir = File.dirname(File.expand_path($0))
src_dir = File.join(scripts_dir, "..", "src")
return File.expand_path(src_dir)
end
def parse_args
generators = %w{header module class tool help}
CodeGen.perror("not enough arguments") if ARGV.size < 1
generator = ARGV[0]
if (generator=="help")
puts($help)
exit(0)
end
CodeGen.perror("generator #{generator} unknown") if !generators.include?(generator)
CodeGen.perror("not enough arguments") if ARGV.size < 3
CodeGen.perror("too many arguments") if ARGV.size > 3
path = File.join(find_src_directory, ARGV[1])
CodeGen.perror("Directory #{path} not found") if !File.directory?(path)
basename = ARGV[2]
return generator, path, basename
end
def check_file(path, basename, extension)
filename = File.join(path, basename+"."+extension)
CodeGen.perror("File #{filename} exists already") if File.exist?(filename)
end
def write_file(path, basename, extension, content)
filename = File.join(path, basename+"."+extension)
file = File.open(filename, "w+")
puts File.expand_path(file.path)
file.puts(content)
file.close
end
def gen_header(path, basename, content = "")
guard_macro = basename.upcase+"_H"
header = $license + "\n" + ERB.new($hwrapper).result(binding)
check_file(path, basename, "h")
write_file(path, basename, "h", header)
end
def gen_module(path, basename, ccontent = "\n", hcontent = "")
code = $license + "\n" +
"#include \"#{File.basename(path)}/#{basename}.h\"" +
ccontent
check_file(path, basename, "c")
gen_header(path, basename, hcontent)
write_file(path, basename, "c", code)
end
def gen_class(path, basename)
prefix = "gt_#{basename}_"
klass = "Gt"+basename.gsub(/(^|_)(.)/){$2.upcase}
creatordecl = "#{klass} *#{prefix}new(void)"
destructordecl = "void #{prefix}delete(#{klass} *#{basename})"
gen_module(path, basename,
ERB.new($gt_class_c).result(binding),
ERB.new($gt_class_h).result(binding))
end
def prepare_tool_c(path, basename)
tools_dir = File.join(find_src_directory, "tools")
gt_template_c = File.expand_path(File.join(tools_dir, "gt_template.c"))
CodeGen.perror("File #{gt_template_c} not found") if !File.exist?(gt_template_c)
# skip license template:
c_template = IO.read(gt_template_c)
c_template =~ /(.*?)(#include.*)/m
c_template = $2
structprefix = "Gt"+basename.gsub(/(^|_)(.)/){$2.upcase}
c_template.gsub!("template", basename)
c_template.gsub!("Template", structprefix)
return $license + "\n" + c_template
end
def prepare_tool_h(path, basename)
tools_dir = File.join(find_src_directory, "tools")
gt_template_h = File.expand_path(File.join(tools_dir, "gt_template.h"))
CodeGen.perror("File #{gt_template_h} not found") if !File.exist?(gt_template_h)
h_template = IO.read(gt_template_h)
# skip license template:
h_template =~ /(.*?)(#ifndef.*)/m
h_template = $2
h_template.gsub!("TEMPLATE", basename.upcase)
h_template.gsub!("template", basename)
return $license + "\n" + h_template
end
def gen_tool(path, basename)
check_file(path, "gt_"+basename, "h")
check_file(path, "gt_"+basename, "c")
write_file(path, "gt_"+basename, "h", prepare_tool_h(path, basename))
write_file(path, "gt_"+basename, "c", prepare_tool_c(path, basename))
end
# main
generator, path, basename = parse_args
name, email = CodeGen.find_user_data
year = Time.now.year
$license = ERB.new($license).result
send("gen_#{generator}", path, basename)
|