PHP 8.2.31
Preview: extservm.rb Size: 1.71 KB
//proc/thread-self/root/opt/alt/ruby19/lib64/ruby/1.9.1/drb/extservm.rb

=begin
 external service manager
        Copyright (c) 2000 Masatoshi SEKI
=end

require 'drb/drb'
require 'thread'
require 'monitor'

module DRb
  class ExtServManager
    include DRbUndumped
    include MonitorMixin

    @@command = {}

    def self.command
      @@command
    end

    def self.command=(cmd)
      @@command = cmd
    end

    def initialize
      super()
      @cond = new_cond
      @servers = {}
      @waiting = []
      @queue = Queue.new
      @thread = invoke_thread
      @uri = nil
    end
    attr_accessor :uri

    def service(name)
      synchronize do
        while true
          server = @servers[name]
          return server if server && server.alive?
          invoke_service(name)
          @cond.wait
        end
      end
    end

    def regist(name, ro)
      synchronize do
        @servers[name] = ro
        @cond.signal
      end
      self
    end

    def unregist(name)
      synchronize do
        @servers.delete(name)
      end
    end

    private
    def invoke_thread
      Thread.new do
        while true
          name = @queue.pop
          invoke_service_command(name, @@command[name])
        end
      end
    end

    def invoke_service(name)
      @queue.push(name)
    end

    def invoke_service_command(name, command)
      raise "invalid command. name: #{name}" unless command
      synchronize do
        return if @servers.include?(name)
        @servers[name] = false
      end
      uri = @uri || DRb.uri
      if command.respond_to? :to_ary
        command = command.to_ary + [uri, name]
        pid = spawn(*command)
      else
        pid = spawn("#{command} #{uri} #{name}")
      end
      th = Process.detach(pid)
      th[:drb_service] = name
      th
    end
  end
end

Directory Contents

Dirs: 0 × Files: 11

Name Size Perms Modified Actions
4.65 KB lrw-r--r-- 2011-05-19 00:07:25
Edit Download
53.09 KB lrw-r--r-- 2011-06-29 21:33:36
Edit Download
234 B lrw-r--r-- 2010-01-26 11:22:20
Edit Download
1.19 KB lrw-r--r-- 2011-05-19 00:07:25
Edit Download
1.71 KB lrw-r--r-- 2012-05-19 05:41:23
Edit Download
1.88 KB lrw-r--r-- 2009-10-02 10:45:39
Edit Download
732 B lrw-r--r-- 2011-05-18 21:19:18
Edit Download
473 B lrw-r--r-- 2009-10-02 10:45:39
Edit Download
5.46 KB lrw-r--r-- 2014-01-30 12:04:22
Edit Download
1.73 KB lrw-r--r-- 2011-05-18 21:19:18
Edit Download
2.55 KB lrw-r--r-- 2012-05-19 05:40:29
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).