Method: Cmds.spawn
- Defined in:
- lib/cmds/spawn.rb
.spawn(cmd, env: {}, input: nil, **spawn_opts, &io_block) ⇒ Fixnum
Low-level static method to spawn and stream inputs and/or outputs using threads.
This is the core execution functionality of the whole library - everything ends up here.
WARNING - This method runs the cmd string AS IS - no escaping,
formatting, interpolation, etc. are done at this point.
The whole rest of the library is built on top of this method to provide that stuff, and if you're using this library, you probably want to use that stuff.
You should not need to use this method directly unless you are extending the library's functionality.
Originally inspired by
https://nickcharlton.net/posts/ruby-subprocesses-with-stdout-stderr-streams.html
with major modifications from looking at Ruby's open3 module.
At the end of the day ends up calling Process.spawn.
116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 |
# File 'lib/cmds/spawn.rb', line 116 def self.spawn cmd, env: {}, input: nil, **spawn_opts, &io_block logger.trace "entering Cmds#spawn", cmd: cmd, env: env, input: input, spawn_opts: spawn_opts, io_block: io_block # Process.spawn doesn't like a `nil` chdir if spawn_opts.key?( :chdir ) && spawn_opts[:chdir].nil? spawn_opts.delete :chdir end # create the handler that will be yielded to the input block handler = Cmds::IOHandler.new # handle input # # if a block was provided it overrides the `input` argument. # if io_block case io_block.arity when 0 # when the input block takes no arguments it returns the input # Check that `:input` kwd wasn't provided. unless input.nil? raise ArgumentError, "Don't call Cmds.spawn with `:input` keyword arg and a block" end input = io_block.call when 1 # when the input block takes one argument, give it the handler and # ignore the return value io_block.call handler # if input was assigned to the handler in the block, use it as input unless handler.in.nil? # Check that `:input` kwd wasn't provided. unless input.nil? raise ArgumentError, "Don't call Cmds.spawn with `:input` keyword arg and a block" end input = handler.in end else # bad block provided raise ArgumentError.new NRSER.squish <<-BLOCK provided input block must have arity 0 or 1 BLOCK end # case io_block.arity end # if io_block logger.trace "looking at input...", input: input # (possibly) create the input pipe... this will be nil if the provided # input is io-like. in this case it will be used directly in the # `spawn` options. in_pipe = case input when nil, String logger.trace "input is a String or nil, creating pipe..." in_pipe = Cmds::Pipe.new "INPUT", :in spawn_opts[:in] = in_pipe.r # don't buffer input in_pipe.w.sync = true in_pipe else logger.trace "input should be io-like, setting spawn opt.", input: input if input == $stdin logger.trace "input is $stdin." end spawn_opts[:in] = input nil end # case input # (possibly) create the output pipes. # # `stream` can be told to send it's output to either: # # 1. a Proc that will invoked with each line. # 2. an io-like object that can be provided as `spawn`'s `:out` or # `:err` options. # # in case (1) a `Cmds::Pipe` wrapping read and write piped `IO` instances # will be created and assigned to the relevant of `out_pipe` or `err_pipe`. # # in case (2) the io-like object will be sent directly to `spawn` and # the relevant `out_pipe` or `err_pipe` will be `nil`. # out_pipe, err_pipe = [ ["ERROR", :err], ["OUTPUT", :out], ].map do |name, sym| logger.trace "looking at #{ name }..." dest = handler.public_send sym # see if hanlder.out or hanlder.err is a Proc if dest.is_a? Proc logger.trace "#{ name } is a Proc, creating pipe..." pipe = Cmds::Pipe.new name, sym # the corresponding :out or :err option for spawn needs to be # the pipe's write handle spawn_opts[sym] = pipe.w # return the pipe pipe else logger.trace "#{ name } should be io-like, setting spawn opt.", output: dest spawn_opts[sym] = dest # the pipe is nil! nil end end # map outputs logger.trace "spawning...", env: env, cmd: cmd, opts: spawn_opts pid = Process.spawn env.map {|k, v| [k.to_s, v]}.to_h, cmd, spawn_opts logger.trace "spawned.", pid: pid wait_thread = Process.detach pid wait_thread[:name] = "WAIT" logger.trace "wait thread created.", thread: wait_thread # close child ios if created # the spawned process will read from in_pipe.r so we don't need it in_pipe.r.close if in_pipe # and we don't need to write to the output pipes, that will also happen # in the spawned process [out_pipe, err_pipe].each {|pipe| pipe.w.close if pipe} # create threads to handle any pipes that were created in_thread = if in_pipe Thread.new do Thread.current[:name] = in_pipe.name logger.trace "thread started, writing input..." in_pipe.w.write input unless input.nil? logger.trace "write done, closing in_pipe.w..." in_pipe.w.close logger.trace "thread done." end # Thread end out_thread, err_thread = [out_pipe, err_pipe].map do |pipe| if pipe Thread.new do Thread.current[:name] = pipe.name logger.trace "thread started" loop do logger.trace "blocking on gets..." line = pipe.r.gets if line.nil? logger.trace "received nil, output done." else logger.trace \ "received #{ line.bytesize } bytes, passing to handler." end handler.thread_send_line pipe.sym, line break if line.nil? end logger.trace \ "reading done, closing pipe.r (unless already closed)..." pipe.r.close unless pipe.r.closed? logger.trace "thread done." end # thread end # if pipe end # map threads logger.trace "handing off main thread control to the handler..." begin handler.start logger.trace "handler done." ensure # wait for the threads to complete logger.trace "joining threads..." [in_thread, out_thread, err_thread, wait_thread].each do |thread| if thread logger.trace "joining #{ thread[:name] } thread..." thread.join end end logger.trace "all threads done." end status = wait_thread.value.exitstatus logger.trace "exit status: #{ status.inspect }" logger.trace "checking @assert and exit status..." if @assert && status != 0 # we don't necessarily have the err output, so we can't include it # in the error message msg = NRSER.squish <<-BLOCK streamed command `#{ cmd }` exited with status #{ status } BLOCK raise SystemCallError.new msg, status end logger.trace "streaming completed." return status end |