Sha256: de96c4567eac064448d0eeafb553b9c8e2faa0b7e69cd2a22d1e952d02a9aefb

Contents?: true

Size: 1.69 KB

Versions: 1

Compression:

Stored size: 1.69 KB

Contents

module Gitdocs
  Restart = Class.new(RuntimeError)

  class Manager
    attr_reader :config, :debug

    def initialize(config_root, debug)
      @config = Configuration.new(config_root)
      @debug  = debug
      yield @config if block_given?
    end

    RepoDescriptor = Struct.new(:name, :index)

    def search(term)
      results = {}
      @runners.each_with_index do |runner, index|
        descriptor = RepoDescriptor.new(runner.root, index)
        results[descriptor] = runner.search(term)
      end
      results
    end

    def run
      run = true
      trap('USR1') { run = true; EM.stop }
      while run
        run = false
        puts "Gitdocs v#{VERSION}" if self.debug
        puts "Using configuration root: '#{self.config.config_root}'" if self.debug
        puts "Shares: #{config.shares.map(&:inspect).join(", ")}" if self.debug
        # Start the repo watchers
        runners = nil
        EM.run do
          @runners = config.shares.map { |share| Runner.new(share) }
          @runners.each(&:run)
          # Start the web front-end
          if self.config.global.start_web_frontend
            Server.new(self, *@runners).start
            i = 0
            web_started = false
            begin
              TCPSocket.open('127.0.0.1', 8888).close
              web_started = true
            rescue Errno::ECONNREFUSED
              sleep 0.2
              i += 1
              retry if i <= 20
            end
            system("open http://localhost:8888/") if self.config.global.load_browser_on_startup && web_started
          end
        end
        sleep(10) if @runners && @runners.empty?
      end
    end

    def restart
      Process.kill("USR1", Process.pid)
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
gitdocs-0.4.1 lib/gitdocs/manager.rb