mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
output.rb: extract from generic_erb.rb
- writing to a file or stdout - touching timestamp files - overwriting only if changed - colorizing
This commit is contained in:
parent
99a79dc40b
commit
a2e7b11f2a
2 changed files with 55 additions and 33 deletions
|
@ -5,31 +5,23 @@
|
||||||
|
|
||||||
require 'erb'
|
require 'erb'
|
||||||
require 'optparse'
|
require 'optparse'
|
||||||
require_relative 'lib/vpath'
|
require_relative 'lib/output'
|
||||||
require_relative 'lib/colorize'
|
|
||||||
|
|
||||||
vpath = VPath.new
|
out = Output.new
|
||||||
timestamp = nil
|
|
||||||
output = nil
|
|
||||||
ifchange = nil
|
|
||||||
source = false
|
source = false
|
||||||
color = nil
|
|
||||||
templates = []
|
templates = []
|
||||||
|
|
||||||
ARGV.options do |o|
|
ARGV.options do |o|
|
||||||
o.on('-t', '--timestamp[=PATH]') {|v| timestamp = v || true}
|
|
||||||
o.on('-i', '--input=PATH') {|v| template << v}
|
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('-x', '--source') {source = true}
|
||||||
o.on('--color') {color = true}
|
out.def_options(o)
|
||||||
vpath.def_options(o)
|
|
||||||
o.order!(ARGV)
|
o.order!(ARGV)
|
||||||
templates << (ARGV.shift or abort o.to_s) if templates.empty?
|
templates << (ARGV.shift or abort o.to_s) if templates.empty?
|
||||||
end
|
end
|
||||||
color = Colorize.new(color)
|
|
||||||
unchanged = color.pass("unchanged")
|
# Used in prelude.c.tmpl and unicode_norm_gen.tmpl
|
||||||
updated = color.fail("updated")
|
output = out.path
|
||||||
|
vpath = out.vpath
|
||||||
|
|
||||||
result = templates.map do |template|
|
result = templates.map do |template|
|
||||||
if ERB.instance_method(:initialize).parameters.assoc(:key) # Ruby 2.6+
|
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
|
source ? erb.src : proc{erb.result(binding)}.call
|
||||||
end
|
end
|
||||||
result = result.size == 1 ? result[0] : result.join("")
|
result = result.size == 1 ? result[0] : result.join("")
|
||||||
if output
|
out.write(result)
|
||||||
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
|
|
||||||
|
|
47
tool/lib/output.rb
Normal file
47
tool/lib/output.rb
Normal file
|
@ -0,0 +1,47 @@
|
||||||
|
require_relative 'vpath'
|
||||||
|
require_relative 'colorize'
|
||||||
|
|
||||||
|
class Output
|
||||||
|
attr_reader :path, :vpath
|
||||||
|
|
||||||
|
def initialize
|
||||||
|
@path = @timestamp = @ifchange = @color = nil
|
||||||
|
@vpath = VPath.new
|
||||||
|
end
|
||||||
|
|
||||||
|
def def_options(opt)
|
||||||
|
opt.on('-o', '--output=PATH') {|v| @path = v}
|
||||||
|
opt.on('-t', '--timestamp[=PATH]') {|v| @timestamp = v || true}
|
||||||
|
opt.on('-c', '--[no-]if-change') {|v| @ifchange = v}
|
||||||
|
opt.on('--color') {@color = true}
|
||||||
|
@vpath.def_options(opt)
|
||||||
|
end
|
||||||
|
|
||||||
|
def write(data)
|
||||||
|
unless @path
|
||||||
|
$stdout.print data
|
||||||
|
return true
|
||||||
|
end
|
||||||
|
color = Colorize.new(@color)
|
||||||
|
unchanged = color.pass("unchanged")
|
||||||
|
updated = color.fail("updated")
|
||||||
|
|
||||||
|
if @ifchange and (@vpath.read(@path, "rb") == data rescue false)
|
||||||
|
puts "#{@path} #{unchanged}"
|
||||||
|
written = false
|
||||||
|
else
|
||||||
|
File.binwrite(@path, data)
|
||||||
|
puts "#{@path} #{updated}"
|
||||||
|
written = true
|
||||||
|
end
|
||||||
|
if timestamp = @timestamp
|
||||||
|
if timestamp == true
|
||||||
|
dir, base = File.split(@path)
|
||||||
|
timestamp = File.join(dir, ".time." + base)
|
||||||
|
end
|
||||||
|
File.binwrite(timestamp, '')
|
||||||
|
File.utime(nil, nil, timestamp)
|
||||||
|
end
|
||||||
|
written
|
||||||
|
end
|
||||||
|
end
|
Loading…
Reference in a new issue