2012-11-29 12:12:29 +04:00
|
|
|
# -*- coding: us-ascii -*-
|
2016-07-03 00:01:04 +03:00
|
|
|
|
|
|
|
# Used to expand Ruby template files by common.mk, uncommon.mk and
|
|
|
|
# some Ruby extension libraries.
|
|
|
|
|
2008-09-26 12:18:49 +04:00
|
|
|
require 'erb'
|
2008-10-17 14:46:23 +04:00
|
|
|
require 'optparse'
|
2012-11-29 12:12:29 +04:00
|
|
|
$:.unshift(File.dirname(__FILE__))
|
|
|
|
require 'vpath'
|
2017-04-21 06:01:12 +03:00
|
|
|
require 'colorize'
|
2008-09-26 12:18:49 +04:00
|
|
|
|
2012-11-29 12:12:29 +04:00
|
|
|
vpath = VPath.new
|
2008-10-17 14:46:23 +04:00
|
|
|
timestamp = nil
|
|
|
|
output = nil
|
|
|
|
ifchange = nil
|
2013-05-16 08:13:36 +04:00
|
|
|
source = false
|
2015-10-22 09:25:33 +03:00
|
|
|
color = nil
|
2017-10-01 05:39:22 +03:00
|
|
|
templates = []
|
2012-08-25 11:20:29 +04:00
|
|
|
|
2017-10-01 05:39:22 +03:00
|
|
|
ARGV.options do |o|
|
2008-10-17 14:46:23 +04:00
|
|
|
o.on('-t', '--timestamp[=PATH]') {|v| timestamp = v || true}
|
2017-10-01 05:39:22 +03:00
|
|
|
o.on('-i', '--input=PATH') {|v| template << v}
|
2008-10-17 14:46:23 +04:00
|
|
|
o.on('-o', '--output=PATH') {|v| output = v}
|
|
|
|
o.on('-c', '--[no-]if-change') {|v| ifchange = v}
|
2013-05-16 08:13:36 +04:00
|
|
|
o.on('-x', '--source') {source = true}
|
2015-10-22 09:25:33 +03:00
|
|
|
o.on('--color') {color = true}
|
2012-11-29 12:12:29 +04:00
|
|
|
vpath.def_options(o)
|
2008-10-17 14:46:23 +04:00
|
|
|
o.order!(ARGV)
|
2017-10-01 05:39:22 +03:00
|
|
|
templates << (ARGV.shift or abort o.to_s) if templates.empty?
|
2009-02-03 02:15:59 +03:00
|
|
|
end
|
2017-04-21 06:01:12 +03:00
|
|
|
color = Colorize.new(color)
|
|
|
|
unchanged = color.pass("unchanged")
|
|
|
|
updated = color.fail("updated")
|
|
|
|
|
2017-10-01 05:39:22 +03:00
|
|
|
result = templates.map do |template|
|
2019-05-28 06:54:20 +03:00
|
|
|
method = ERB.instance_method(:initialize)
|
|
|
|
if method.respond_to?(:parameters) && method.parameters.assoc(:key) # Ruby 2.6+
|
|
|
|
erb = ERB.new(File.read(template), :trim_mode => '%-')
|
2018-02-22 16:28:25 +03:00
|
|
|
else
|
|
|
|
erb = ERB.new(File.read(template), nil, '%-')
|
|
|
|
end
|
2017-10-01 05:39:22 +03:00
|
|
|
erb.filename = template
|
|
|
|
source ? erb.src : proc{erb.result(binding)}.call
|
|
|
|
end
|
|
|
|
result = result.size == 1 ? result[0] : result.join("")
|
2008-10-17 14:46:23 +04:00
|
|
|
if output
|
2014-11-27 06:42:54 +03:00
|
|
|
if ifchange and (vpath.open(output, "rb") {|f| f.read} rescue nil) == result
|
2015-10-22 09:25:33 +03:00
|
|
|
puts "#{output} #{unchanged}"
|
2008-10-19 16:12:53 +04:00
|
|
|
else
|
|
|
|
open(output, "wb") {|f| f.print result}
|
2015-10-22 09:25:33 +03:00
|
|
|
puts "#{output} #{updated}"
|
2008-10-17 14:46:23 +04:00
|
|
|
end
|
|
|
|
if timestamp
|
|
|
|
if timestamp == true
|
|
|
|
dir, base = File.split(output)
|
|
|
|
timestamp = File.join(dir, ".time." + base)
|
|
|
|
end
|
2018-05-15 10:46:55 +03:00
|
|
|
File.open(timestamp, 'a') {}
|
|
|
|
File.utime(nil, nil, timestamp)
|
2008-10-17 14:46:23 +04:00
|
|
|
end
|
2008-10-19 16:19:19 +04:00
|
|
|
else
|
|
|
|
print result
|
2008-10-17 14:46:23 +04:00
|
|
|
end
|