2011-06-23 18:11:55 -04:00
|
|
|
require 'rbconfig'
|
|
|
|
require 'fileutils'
|
|
|
|
|
2011-06-27 22:45:29 -04:00
|
|
|
#--
|
2011-06-23 18:11:55 -04:00
|
|
|
# This a FileUtils extension that defines several additional commands to be
|
|
|
|
# added to the FileUtils utility functions.
|
|
|
|
module FileUtils
|
|
|
|
# Path to the currently running Ruby program
|
2012-12-06 02:35:45 -05:00
|
|
|
RUBY = ENV['RUBY'] || File.join(
|
2011-06-23 18:11:55 -04:00
|
|
|
RbConfig::CONFIG['bindir'],
|
|
|
|
RbConfig::CONFIG['ruby_install_name'] + RbConfig::CONFIG['EXEEXT']).
|
|
|
|
sub(/.*\s.*/m, '"\&"')
|
|
|
|
|
|
|
|
OPT_TABLE['sh'] = %w(noop verbose)
|
|
|
|
OPT_TABLE['ruby'] = %w(noop verbose)
|
|
|
|
|
2014-07-14 23:07:37 -04:00
|
|
|
# Run the system command +cmd+. If multiple arguments are given the command
|
|
|
|
# is run directly (without the shell, same semantics as Kernel::exec and
|
2011-06-23 18:11:55 -04:00
|
|
|
# Kernel::system).
|
|
|
|
#
|
2014-07-14 23:07:37 -04:00
|
|
|
# It is recommended you use the multiple argument form over interpolating
|
|
|
|
# user input for both usability and security reasons. With the multiple
|
|
|
|
# argument form you can easily process files with spaces or other shell
|
|
|
|
# reserved characters in them. With the multiple argument form your rake
|
|
|
|
# tasks are not vulnerable to users providing an argument like
|
|
|
|
# <code>; rm # -rf /</code>.
|
|
|
|
#
|
|
|
|
# If a block is given, upon command completion the block is called with an
|
|
|
|
# OK flag (true on a zero exit status) and a Process::Status object.
|
|
|
|
# Without a block a RuntimeError is raised when the command exits non-zero.
|
|
|
|
#
|
|
|
|
# Examples:
|
|
|
|
#
|
|
|
|
# sh 'ls -ltr'
|
2011-06-23 18:11:55 -04:00
|
|
|
#
|
|
|
|
# sh 'ls', 'file with spaces'
|
|
|
|
#
|
|
|
|
# # check exit status after command runs
|
|
|
|
# sh %{grep pattern file} do |ok, res|
|
|
|
|
# if ! ok
|
|
|
|
# puts "pattern not found (status = #{res.exitstatus})"
|
|
|
|
# end
|
|
|
|
# end
|
|
|
|
#
|
|
|
|
def sh(*cmd, &block)
|
|
|
|
options = (Hash === cmd.last) ? cmd.pop : {}
|
|
|
|
shell_runner = block_given? ? block : create_shell_runner(cmd)
|
|
|
|
set_verbose_option(options)
|
|
|
|
options[:noop] ||= Rake::FileUtilsExt.nowrite_flag
|
|
|
|
Rake.rake_check_options options, :noop, :verbose
|
|
|
|
Rake.rake_output_message cmd.join(" ") if options[:verbose]
|
2011-06-27 22:45:29 -04:00
|
|
|
|
2011-06-23 18:11:55 -04:00
|
|
|
unless options[:noop]
|
|
|
|
res = rake_system(*cmd)
|
|
|
|
status = $?
|
2013-10-11 17:35:01 -04:00
|
|
|
status = Rake::PseudoStatus.new(1) if !res && status.nil?
|
2011-06-23 18:11:55 -04:00
|
|
|
shell_runner.call(res, status)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2011-06-27 22:45:29 -04:00
|
|
|
def create_shell_runner(cmd) # :nodoc:
|
2011-06-23 18:11:55 -04:00
|
|
|
show_command = cmd.join(" ")
|
2013-10-11 17:35:01 -04:00
|
|
|
show_command = show_command[0, 42] + "..." unless $trace
|
|
|
|
lambda do |ok, status|
|
|
|
|
ok or
|
|
|
|
fail "Command failed with status (#{status.exitstatus}): " +
|
|
|
|
"[#{show_command}]"
|
|
|
|
end
|
2011-06-23 18:11:55 -04:00
|
|
|
end
|
|
|
|
private :create_shell_runner
|
|
|
|
|
2011-06-27 22:45:29 -04:00
|
|
|
def set_verbose_option(options) # :nodoc:
|
|
|
|
unless options.key? :verbose
|
|
|
|
options[:verbose] =
|
2013-10-11 17:35:01 -04:00
|
|
|
(Rake::FileUtilsExt.verbose_flag == Rake::FileUtilsExt::DEFAULT) ||
|
2011-06-27 22:45:29 -04:00
|
|
|
Rake::FileUtilsExt.verbose_flag
|
2011-06-23 18:11:55 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
private :set_verbose_option
|
|
|
|
|
2011-06-27 22:45:29 -04:00
|
|
|
def rake_system(*cmd) # :nodoc:
|
2011-06-23 18:11:55 -04:00
|
|
|
Rake::AltSystem.system(*cmd)
|
|
|
|
end
|
|
|
|
private :rake_system
|
|
|
|
|
|
|
|
# Run a Ruby interpreter with the given arguments.
|
|
|
|
#
|
|
|
|
# Example:
|
|
|
|
# ruby %{-pe '$_.upcase!' <README}
|
|
|
|
#
|
2013-10-11 17:35:01 -04:00
|
|
|
def ruby(*args, &block)
|
2011-06-23 18:11:55 -04:00
|
|
|
options = (Hash === args.last) ? args.pop : {}
|
2013-10-11 17:35:01 -04:00
|
|
|
if args.length > 1
|
2011-06-23 18:11:55 -04:00
|
|
|
sh(*([RUBY] + args + [options]), &block)
|
|
|
|
else
|
|
|
|
sh("#{RUBY} #{args.first}", options, &block)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
LN_SUPPORTED = [true]
|
|
|
|
|
|
|
|
# Attempt to do a normal file link, but fall back to a copy if the link
|
|
|
|
# fails.
|
|
|
|
def safe_ln(*args)
|
2013-10-11 17:35:01 -04:00
|
|
|
if ! LN_SUPPORTED[0]
|
2011-06-23 18:11:55 -04:00
|
|
|
cp(*args)
|
|
|
|
else
|
|
|
|
begin
|
|
|
|
ln(*args)
|
|
|
|
rescue StandardError, NotImplementedError
|
|
|
|
LN_SUPPORTED[0] = false
|
|
|
|
cp(*args)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
# Split a file path into individual directory names.
|
|
|
|
#
|
|
|
|
# Example:
|
|
|
|
# split_all("a/b/c") => ['a', 'b', 'c']
|
|
|
|
#
|
|
|
|
def split_all(path)
|
|
|
|
head, tail = File.split(path)
|
|
|
|
return [tail] if head == '.' || tail == '/'
|
|
|
|
return [head, tail] if head == '/'
|
|
|
|
return split_all(head) + [tail]
|
|
|
|
end
|
|
|
|
end
|