1

有没有办法运行 ruby​​ 脚本并在脚本中执行命令时仍然响应击键?

我想运行一个 ruby​​ 脚本,但能够按“空格”并暂停脚本(在当前运行的命令执行后),然后再次按“空格”并恢复脚本。

我唯一的想法(我确定这是一个奇怪的想法),是打开一个新线程并在那里等待击键,然后当我得到击键时,设置一个 stop_flag。只是现在看起来我需要在每个命令之后检查这个标志才能知道何时停止。

4

3 回答 3

1

如果您设置了一个记录器,并在整个脚本中散布了适当的代码,则可以使用信号随意打开和关闭调试输出:

 pid = fork do

  # set up a logger
  require 'logger'
  log = Logger.new(STDOUT)
  log.level = Logger::INFO

  # toggle between INFO and DEBUG log levels on SIGUSR1
  trap(:SIGUSR1) do
    if log.level == Logger::DEBUG
      log.level = Logger::INFO
    else
      log.level = Logger::DEBUG
    end
  end

  # Main loop - increment a counter and occasionally print progress
  # as INFO level.  DEBUG level prints progress at every iteration.
  counter = 0
  loop do
    counter += 1
    exit if counter > 100
    log.debug "Counter is #{counter}"
    log.info "Counter is #{counter}" if counter % 10 == 0
    sleep 0.1
  end

end

# This makes sure that the signal sender process exits when the
# child process exits - only needed here to make the example
# terminate nicely.
trap(:SIGCLD) do
  exit(0) if Process.wait(-1, Process::WNOHANG) == pid
end

# This is an example of sending a signal to another process.
# Any process may signal another by pid.
# This example uses a forking parent-child model because this
# approach conveniently yields the child pid to the parent.
loop do
  puts "Press ENTER to send SIGUSR1 to child"
  STDIN.gets
  Process.kill :SIGUSR1, pid
end

分叉和 SIGCLD 陷阱是为了使示例适合一个文件;任何进程都可以向另一个进程发送信号。

fork 块内的代码是您的脚本。该脚本设置了一个默认日志级别为 INFO 的记录器,以及一个用于在 DEBUG 和 INFO 级别之间切换记录器的 SIGUSR1 信号的处理程序。

fork 块之外的东西只是向另一个进程发送信号的一个例子。按 ENTER 将发送信号并更改其他进程的日志记录级别。

这适用于 POSIX 系统,我不知道 Windows。

于 2013-01-30T15:14:31.940 回答
1

与@Catnapper 类似的想法,我想我会分享它,尽管他打败了我。

require 'io/console' # Ruby 1.9

# Wait for the spacebar key to be pressed
def wait_for_spacebar
   sleep 1 while $stdin.getch != " "
end

# Fork a process that waits for the spacebar 
# to be pressed. When pressed, send a signal 
# to the main process.
def fork_new_waiter
   Process.fork do
      wait_for_spacebar
      Process.kill("USR1", Process.ppid)
   end
end

# Wait for a signal from the forked process
Signal.trap("USR1") do
   wait_for_spacebar

   # Debug code here

   fork_new_waiter
end

# Traps SIGINT so the program terminates nicely
Signal.trap("INT") do
   exit
end

fork_new_waiter

# Run program here in place of this loop
i = 0
loop do
   print i+=1
   sleep 1
end
于 2013-01-30T15:47:18.377 回答
1

您可以使用系统命令。

在 Windows 中使用:system "pause>null"

这对于每个操作系统都会有所不同。因此,您可以设置一个变量来检查操作系统。然后使用适当的命令。如果您想查看操作系统是否为 Windows,您的代码将如下所示:

如果 RUBY_PLATFORM =~ /mswin|msys|mingw|cygwin|bccwin|wince|emc/ $operatingSystem="win" end

于 2014-01-10T20:09:51.030 回答