为什么ruby spawn会使我分叉的进程加倍?

时间:2013-10-27 03:55:32

标签: ruby tcp process network-programming fork

以下展示了分叉代码。这是一个非常小的应用程序,只是为了解决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中生成以下内容: htop

对我来说有趣的是,这个过程的数量正是我预期的两倍。

有关为何发生这种情况的任何提示?

感兴趣的是,完整的申请表在这里:https://github.com/Senjai/Learning-Ruby/tree/master/mini-projects/ftp

0 个答案:

没有答案