Sha256: a29906d44a28c17c522d3ccbebdc61dd37370780f54f3dde0aaf78669f7ebf8f

Contents?: true

Size: 1.69 KB

Versions: 5

Compression:

Stored size: 1.69 KB

Contents

module Riddle
  class Controller
    attr_accessor :path, :bin_path, :searchd_binary_name, :indexer_binary_name
    
    def initialize(configuration, path)
      @configuration  = configuration
      @path           = path
      
      @bin_path            = ''
      @searchd_binary_name = 'searchd'
      @indexer_binary_name = 'indexer'
    end
    
    def sphinx_version
      `#{indexer} 2>&1`[/^Sphinx (\d\.\d\.\d)/, 1]
    rescue
      nil
    end
    
    def index(*indexes)
      options = indexes.last.is_a?(Hash) ? indexes.pop : {}
      indexes << '--all' if indexes.empty?
      
      cmd = "#{indexer} --config #{@path} #{indexes.join(' ')}"
      cmd << " --rotate" if running?
      options[:verbose] ? system(cmd) : `#{cmd}`
    end
    
    def start
      return if running?
      
      cmd = "#{searchd} --pidfile --config #{@path}"
      
      if RUBY_PLATFORM =~ /mswin/
        system("start /B #{cmd} 1> NUL 2>&1")
      else
        `#{cmd}`
      end
      
      sleep(1)
      
      unless running?
        puts "Failed to start searchd daemon. Check #{@configuration.searchd.log}."
      end
    end
    
    def stop
      return unless running?
      Process.kill('SIGTERM', pid.to_i)
    rescue Errno::EINVAL
      Process.kill('SIGKILL', pid.to_i)
    end
    
    def pid
      if File.exists?(@configuration.searchd.pid_file)
        File.read(@configuration.searchd.pid_file)[/\d+/]
      else
        nil
      end
    end
    
    def running?
      !!pid && !!Process.kill(0, pid.to_i)
    rescue
      false
    end
    
    private
    
    def indexer
      "#{bin_path}#{indexer_binary_name}"
    end
    
    def searchd
      "#{bin_path}#{searchd_binary_name}"
    end
  end
end

Version data entries

5 entries across 5 versions & 2 rubygems

Version Path
skalee-thinking-sphinx-1.3.14.2 vendor/riddle/lib/riddle/controller.rb
skalee-thinking-sphinx-1.3.14.1 vendor/riddle/lib/riddle/controller.rb
riddle-1.0.10 lib/riddle/controller.rb
riddle-1.0.9 lib/riddle/controller.rb
riddle-1.0.8 lib/riddle/controller.rb