GRAYBYTE WORDPRESS FILE MANAGER4874

Server IP : 198.54.121.189 / Your IP : 216.73.216.140
System : Linux premium69.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64
PHP Version : 7.4.33
Disable Function : NONE
cURL : ON | WGET : ON | Sudo : OFF | Pkexec : OFF
Directory : /opt/alt/ruby30/share/ruby/drb/
Upload Files :
Current_dir [ Not Writeable ] Document_root [ Writeable ]

Command :


Current File : /opt/alt/ruby30/share/ruby/drb//extservm.rb
# frozen_string_literal: false
=begin
 external service manager
        Copyright (c) 2000 Masatoshi SEKI
=end

require_relative 'drb'
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 = Thread::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? # server may be `false'
          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 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

[ Back ]
Name
Size
Last Modified
Owner / Group
Permissions
Options
..
--
July 17 2024 08:38:31
root / linksafe
0755
acl.rb
4.61 KB
June 26 2024 13:55:18
root / linksafe
0644
drb.rb
57.486 KB
June 26 2024 13:55:18
root / linksafe
0644
eq.rb
0.269 KB
June 26 2024 13:55:18
root / linksafe
0644
extserv.rb
0.816 KB
June 26 2024 13:55:18
root / linksafe
0644
extservm.rb
1.745 KB
June 26 2024 13:55:18
root / linksafe
0644
gw.rb
3.005 KB
June 26 2024 13:55:18
root / linksafe
0644
invokemethod.rb
0.759 KB
June 26 2024 13:55:18
root / linksafe
0644
observer.rb
0.655 KB
June 26 2024 13:55:18
root / linksafe
0644
ssl.rb
11.518 KB
June 26 2024 13:55:18
root / linksafe
0644
timeridconv.rb
2.161 KB
June 26 2024 13:55:18
root / linksafe
0644
unix.rb
2.776 KB
June 26 2024 13:55:18
root / linksafe
0644
version.rb
0.034 KB
June 26 2024 13:55:18
root / linksafe
0644
weakidconv.rb
1.122 KB
June 26 2024 13:55:18
root / linksafe
0644

GRAYBYTE WORDPRESS FILE MANAGER @ 2025
CONTACT ME
Static GIF