Module: RSCM::CommandLine
- Defined in:
- lib/rscm/command_line.rb
Defined Under Namespace
Classes: ExecutionError, OptionError
Class Method Summary collapse
-
.execute(cmd, options = {}, &proc) ⇒ Object
Executes
cmd
.
Class Method Details
.execute(cmd, options = {}, &proc) ⇒ Object
Executes cmd
. If the :stdout
and :stderr
options are specified, a line consisting of a prompt (including cmd
) will be appended to the respective output streams will be appended to those files, followed by the output itself. Example:
CommandLine.execute("echo hello world", {:stdout => "stdout.log", :stderr => "stderr.log"})
will result in the following being written to stdout.log:
/Users/aslakhellesoy/scm/buildpatterns/repos/damagecontrol/trunk aslakhellesoy$ echo hello world
hello world
-and to stderr.log:
/Users/aslakhellesoy/scm/buildpatterns/repos/damagecontrol/trunk aslakhellesoy$ echo hello world
If a block is passed, the stdout io will be yielded to it (as with IO.popen). In this case the output will not be written to the stdout file (even if it’s specified):
/Users/aslakhellesoy/scm/buildpatterns/repos/damagecontrol/trunk aslakhellesoy$ echo hello world
[output captured and therefore not logged]
If the exitstatus of the command is different from the value specified by the :exitstatus
option (which defaults to 0) then an ExecutionError is raised, its message containing the last 400 bytes of stderr (provided :stderr
was specified)
You can also specify the :dir
option, which will cause the command to be executed in that directory (default is current directory).
You can also specify a hash of environment variables in :env
, which will add additional environment variables to the default environment.
Finally, you can specify several commands within one by separating them with ‘&&’ (as you would in a shell). This will result in several lines to be appended to the log (as if you had executed the commands separately).
See the unit test for more examples.
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 |
# File 'lib/rscm/command_line.rb', line 52 def execute(cmd, ={}, &proc) raise "Can't have newline in cmd" if cmd =~ /\n/ = { :dir => Dir.pwd, :env => {}, :exitstatus => 0 }.merge() [:stdout] = File.([:stdout]) if [:stdout] [:stderr] = File.([:stderr]) if [:stderr] commands = cmd.split("&&").collect{|c| c.strip} Dir.chdir([:dir]) do stdout_opt = [:stdout] ? ">> #{[:stdout]}" : "" stderr_opt = [:stderr] ? "2>> #{[:stderr]}" : "" capture_info_command = (block_given? && [:stdout])? "echo [output captured and therefore not logged] >> #{[:stdout]} && " : "" full_cmd = commands.collect do |c| escaped_command = c.gsub(/"/, "\\\"").gsub(/</, "\\<") stdout_prompt_command = [:stdout] ? "echo #{RSCM::Platform.prompt} #{escaped_command} >> #{[:stdout]} && " : "" stderr_prompt_command = [:stderr] ? "echo #{RSCM::Platform.prompt} #{escaped_command} >> #{[:stderr]} && " : "" redirected_command = block_given? ? "#{c} #{stderr_opt}" : "#{c} #{stdout_opt} #{stderr_opt}" stdout_prompt_command + capture_info_command + stderr_prompt_command + redirected_command end.join(" && ") [:env].each{|k,v| ENV[k]=v} begin IO.popen(full_cmd) do |io| if(block_given?) return(proc.call(io)) else io.read end end rescue Errno::ENOENT => e File.open([:stderr], "a") {|io| io.write(e.)} raise ExecutionError.new(cmd, [:dir], nil, e.) ensure if($?.exitstatus != [:exitstatus]) = "#{[:stderr]} doesn't exist" if [:stderr] && File.exist?([:stderr]) File.open([:stderr]) do |errio| begin errio.seek(-1200, IO::SEEK_END) rescue Errno::EINVAL # ignore - it just means we didn't have 400 bytes. end = errio.read end end raise ExecutionError.new(cmd, [:dir], $?.exitstatus, ) end end end $?.exitstatus end |