summaryrefslogtreecommitdiff
path: root/tool/generic_erb.rb
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2022-11-01 11:08:47 +0900
committerNobuyoshi Nakada <nobu@ruby-lang.org>2022-11-01 14:34:05 +0900
commita2e7b11f2ae13f96171cb8a5aa6ae3cc75f6f083 (patch)
treed14c8b090dd66e94ad7a77a995e91053fd063411 /tool/generic_erb.rb
parent99a79dc40bf20e0e5d588db4f93b69617affa7f3 (diff)
downloadruby-a2e7b11f2ae13f96171cb8a5aa6ae3cc75f6f083.tar.gz
output.rb: extract from generic_erb.rb
- writing to a file or stdout - touching timestamp files - overwriting only if changed - colorizing
Diffstat (limited to 'tool/generic_erb.rb')
-rw-r--r--tool/generic_erb.rb41
1 files changed, 8 insertions, 33 deletions
diff --git a/tool/generic_erb.rb b/tool/generic_erb.rb
index 6af995fc13..47bffd830c 100644
--- a/tool/generic_erb.rb
+++ b/tool/generic_erb.rb
@@ -5,31 +5,23 @@
require 'erb'
require 'optparse'
-require_relative 'lib/vpath'
-require_relative 'lib/colorize'
+require_relative 'lib/output'
-vpath = VPath.new
-timestamp = nil
-output = nil
-ifchange = nil
+out = Output.new
source = false
-color = nil
templates = []
ARGV.options do |o|
- o.on('-t', '--timestamp[=PATH]') {|v| timestamp = v || true}
o.on('-i', '--input=PATH') {|v| template << v}
- o.on('-o', '--output=PATH') {|v| output = v}
- o.on('-c', '--[no-]if-change') {|v| ifchange = v}
o.on('-x', '--source') {source = true}
- o.on('--color') {color = true}
- vpath.def_options(o)
+ out.def_options(o)
o.order!(ARGV)
templates << (ARGV.shift or abort o.to_s) if templates.empty?
end
-color = Colorize.new(color)
-unchanged = color.pass("unchanged")
-updated = color.fail("updated")
+
+# Used in prelude.c.tmpl and unicode_norm_gen.tmpl
+output = out.path
+vpath = out.vpath
result = templates.map do |template|
if ERB.instance_method(:initialize).parameters.assoc(:key) # Ruby 2.6+
@@ -41,21 +33,4 @@ result = templates.map do |template|
source ? erb.src : proc{erb.result(binding)}.call
end
result = result.size == 1 ? result[0] : result.join("")
-if output
- if ifchange and (vpath.open(output, "rb") {|f| f.read} rescue nil) == result
- puts "#{output} #{unchanged}"
- else
- open(output, "wb") {|f| f.print result}
- puts "#{output} #{updated}"
- end
- if timestamp
- if timestamp == true
- dir, base = File.split(output)
- timestamp = File.join(dir, ".time." + base)
- end
- File.open(timestamp, 'a') {}
- File.utime(nil, nil, timestamp)
- end
-else
- print result
-end
+out.write(result)