module Sprout::Executable ## # The Sprout::Daemon class exposes the Domain Specific Language # provided by the Sprout::Executable, along with # enhancements (and modifications) to support long-lived processes # (like FDB and FCSH). # # ## # # The Foo class extends Sprout::Daemon # class Foo < Sprout::Daemon # # ## # # Keep in mind that we're still working # # with Executable, so add_param is available # # for the initialization of the process. # add_param :input, File # # ## # # Expose the do_something action after # # the process is started. # add_action :do_something # # ## # # Expose the do_something_else action after # # the process is started. # add_action :do_something_else # end # # You can also create a globally-accessible rake task to use # your new Daemon instance by creating a method like the following: # # def foo *args, &block # foo_tool = Foo.new # foo_tool.to_rake *args, &block # end # # The previous Rake task could be used like: # # foo 'Bar.txt' do |t| # t.do_something # t.do_something_else # end # class Session < Base class << self ## # Add an action that can be called while # the long-lived process is active. # # This method should raise a Sprout::Errors::UsageError # if the provided action name is already defined for # the provided instance. # # @param name [Symbol, String] The name of the method. # @param arguments [Array] An array of arguments that the method accepts. # @param options [Hash] The options hash is reserved for future use. # # class Foo < Sprout::Daemon # # add_action :continue # # add_action :quit # end # # @return [nil] def add_action name, arguments=nil, options=nil options ||= {} options[:name] = name options[:arguments] = arguments create_action_method options nil end ## # Create an (often shorter) alias to an existing # action name. # # @return [nil] # # @see add_action def add_action_alias alias_name, source_name define_method(alias_name) do |*params| self.send(source_name, params) end nil end private ## # Actually create the method for a provided # action. # # This method should explode if the method name # already exists. def create_action_method options name = options[:name] if accessor_can_be_defined_at? name define_method(name) do |*params| action = name.to_s action = "y" if name == :confirm # Convert confirmation action << " #{params.join(' ')}" unless params.nil? action_stack << action execute_actions if process_launched? end end end ## # TODO: Raise an exception and/or return false if the name is # already taken? def accessor_can_be_defined_at? name true end end ## # The prompt expression for this daemon process. # # When executing a series of commands, the # wrapper will wait until it matches this expression # on stdout before continuing the series. # # For FDB, this value is set like: # # set :prompt, /^\(fdb\) / # # Most processes can trigger a variety of different # prompts, these can be expressed here using the | (or) operator. # # FDB actually uses the following: # # set :prompt, /^\(fdb\) |\(y or n\) / # # @return [Regexp] attr_accessor :prompt ## # The Sprout::ProcessRunner that delegates to the long-running process, # via stdin, stdout and stderr. attr_reader :process_runner ## # The Thread that contains the forked running process. attr_reader :process_thread ## # @return [Array] Return or create a new array. def action_stack @action_stack ||= [] end ## # @return [Boolean] If executable is awaiting input. def prompted? @prompted end ## # Execute the Daemon executable, followed # by the collection of stored actions in # the order they were called. # # If none of the stored actions result in # terminating the process, the underlying # daemon will be connected to the terminal # for user (manual) input. # # You can also send wait=false to connect # to a daemon process from Ruby and execute # actions over time. This might look like: # # fdb = FlashSDK::FDB.new # fdb.execute false # # # Do something else while FDB # # is open, then: # # fdb.run # fdb.break "AsUnitRunner:12" # fdb.continue # fdb.kill # fdb.confirm # fdb.quit # # @param wait [Boolean] default true. Send false to # connect to a daemon from Ruby code. # def execute should_wait=true @process_runner = super() @process_launched = true wait_for_prompt execute_actions handle_user_input if should_wait end def wait Process.wait process_runner.pid rescue Errno::ECHILD end ## # Wait for the underlying process to present # an input prompt, so that another action # can be submitted, or user input can be # collected. def wait_for_prompt while process_thread.alive? && !prompted? sleep 0.2 end process_thread.alive? end ## # Expose the running process to manual # input on the terminal, and write stdout # back to the user. def handle_user_input while true begin break if !wait_for_prompt input = $stdin.gets.chomp! execute_action(input, true) rescue SignalException => e return false end end wait end protected def process_launched? @process_launched end ## # This is the override of the underlying # Sprout::Executable template method so that we # create a 'task' instead of a 'file' task. # # @return [Rake::Task] def create_outer_task *args task *args do execute end end ## # This is the override of the underlying # Sprout::Executable template method so that we # are NOT added to the CLEAN collection. # (Work performed in the Executable) # # @return [String] def update_rake_task_name_from_args *args self.rake_task_name = parse_rake_task_arg args.last end ## # This is the override of the underlying # Sprout::Executable template method so that we # create the process in a thread # in order to read and write to it. # # @return [Thread] def system_execute binary, params # Combine the stderr and stdout for long-lived # processes so that they are both written to # stdout, this allows us to collect these streams # without threads or blocking eternally. # # Thanks to https://github.com/apinstein for this # solution. #params = "#{params} " + '2>&1' @process_thread = Sprout.current_system.execute_thread binary, params, prompt do |message| yield message if block_given? Sprout.stdout.printf message @prompted = true if prompt.match message end @process_runner = process_thread['runner'] end private ## # Execute the collection of provided actions. def execute_actions action_stack.each do |action| execute_action(action) end @action_stack = [] end ## # Execute a single action. def execute_action action, silence=false action = action.strip if wait_for_prompt stdout.puts(action) unless silence @prompted = false process_runner.puts action end end end end