以下展示了分叉代码。这是一个非常小的应用程序,只是为了解决TCP和FTP问题。
require 'socket'
require_relative '../lib/ftp/common'
module FTP
class Preforking
include Common
CONCURRENCY = 4
def run
child_pids = []
CONCURRENCY.times do
child_pids << spawn_child
end
trap(:INT) {
child_pids.each do |c|
begin
Process.kill(:INT, c)
rescue Errno::ESRCH
end
end
exit
}
loop do
pid = Process.wait
$stderr.puts "Process #{pid} quit unexpectedly"
child_pids.delete(pid)
child_pids << spawn_child
end
end
def spawn_child
fork do
loop do
@client = @control_socket.accept
respond "220 OHAI"
handler = CommandHandler.new(self)
loop do
request = @client.gets(CRLF)
if request
respond(handler.handle(request))
else
@client.close
break
end
end
end
end
end
end
end
由于FTP :: Preforking :: CONCURRENCY的价值,我总共需要5个进程。主要过程和4个子进程。
通过调用run来运行应用程序会在htop中生成以下内容:
对我来说有趣的是,这个过程的数量正是我预期的两倍。
有关为何发生这种情况的任何提示?
感兴趣的是,完整的申请表在这里:https://github.com/Senjai/Learning-Ruby/tree/master/mini-projects/ftp