require_relative "io_monitor" class ProconBypassMan::Runner class InterruptForRestart < StandardError; end include ProconBypassMan::SignalHandler def initialize(gadget: , procon: ) @gadget = gadget @procon = procon ProconBypassMan::PrintBootMessageCommand.execute end def run self_read, self_write = IO.pipe %w(TERM INT USR2).each do |sig| begin trap sig do self_write.puts(sig) end rescue ArgumentError ProconBypassMan::SendErrorCommand.execute(error: "Signal #{sig} not supported") end end loop do # NOTE メインプロセスではThreadをいくつか起動しているので念のためパフォーマンスを優先するためにforkしていく child_pid = Kernel.fork { $will_terminate_token = false DRb.start_service if defined?(DRb) ProconBypassMan::RemoteMacroReceiver.start! ProconBypassMan::BypassCommand.new(gadget: @gadget, procon: @procon).execute # ここでblockingする next } begin # TODO 子プロセスが消滅した時に、メインプロセスは生き続けてしまい、何もできなくなる問題がある while(readable_io = IO.select([self_read])) signal = readable_io.first[0].gets.strip handle_signal(signal) end rescue InterruptForRestart Process.kill("USR2", child_pid) Process.wait ProconBypassMan::PrintMessageCommand.execute(text: "Reloading config file") begin ProconBypassMan::ButtonsSettingConfiguration::Loader.reload_setting ProconBypassMan::SendReloadConfigEventCommand.execute rescue ProconBypassMan::CouldNotLoadConfigError => error ProconBypassMan::SendErrorCommand.execute(error: "設定ファイルが不正です。再読み込みができませんでした") ProconBypassMan::ReportErrorReloadConfigJob.perform_async(error.message) end ProconBypassMan::PrintMessageCommand.execute(text: "バイパス処理を再開します") rescue Interrupt Process.kill("TERM", child_pid) Process.wait ProconBypassMan::PrintMessageCommand.execute(text: "処理を終了します") ProconBypassMan::UsbDeviceController.reset @gadget&.close @procon&.close break end end end end