1
0
Fork 0
mirror of https://github.com/mperham/sidekiq.git synced 2022-11-09 13:52:34 -05:00
mperham--sidekiq/lib/sidekiq/cli.rb

182 lines
4.7 KiB
Ruby
Raw Normal View History

2012-02-13 00:16:49 -05:00
trap 'INT' do
# Handle Ctrl-C in JRuby like MRI
# http://jira.codehaus.org/browse/JRUBY-4637
Thread.main.raise Interrupt
end
2012-02-13 22:58:16 -05:00
trap 'TERM' do
# Heroku sends TERM and then waits 10 seconds for process to exit.
Thread.main.raise Interrupt
end
require 'yaml'
2012-01-16 19:14:47 -05:00
require 'optparse'
require 'sidekiq'
require 'sidekiq/util'
require 'sidekiq/manager'
2012-01-16 19:14:47 -05:00
module Sidekiq
class CLI
2012-01-22 19:01:46 -05:00
include Util
# Used for CLI testing
attr_accessor :code
2012-01-16 19:14:47 -05:00
def initialize
@code = nil
end
def parse(args=ARGV)
Sidekiq::Util.logger
cli = parse_options(args)
config = parse_config(cli)
options.merge!(config.merge(cli))
set_logger_level_to_debug if options[:verbose]
2012-02-15 13:56:36 -05:00
write_pid
2012-01-16 23:02:58 -05:00
validate!
boot_system
2012-01-16 19:14:47 -05:00
end
def run
manager = Sidekiq::Manager.new(options)
2012-01-16 19:14:47 -05:00
begin
logger.info 'Starting processing, hit Ctrl-C to stop'
manager.start!
2012-02-05 16:22:57 -05:00
# HACK need to determine how to pause main thread while
# waiting for signals.
2012-02-12 23:48:13 -05:00
sleep
2012-01-16 19:14:47 -05:00
rescue Interrupt
2012-02-05 16:22:57 -05:00
# TODO Need clean shutdown support from Celluloid
logger.info 'Shutting down'
manager.stop!
manager.wait(:shutdown)
2012-01-16 19:14:47 -05:00
end
end
2012-01-16 19:18:36 -05:00
private
def die(code)
exit(code)
end
def options
Sidekiq.options
end
def detected_environment
options[:environment] ||= ENV['RAILS_ENV'] || ENV['RACK_ENV'] || 'development'
end
def boot_system
ENV['RACK_ENV'] = ENV['RAILS_ENV'] = detected_environment
raise ArgumentError, "#{options[:require]} does not exist" unless File.exist?(options[:require])
if File.directory?(options[:require])
require File.expand_path("#{options[:require]}/config/environment.rb")
::Rails.application.eager_load!
else
require options[:require]
end
2012-01-16 23:02:58 -05:00
end
def validate!
options[:queues] << 'default' if options[:queues].empty?
options[:queues].shuffle!
if !File.exist?(options[:require]) ||
(File.directory?(options[:require]) && !File.exist?("#{options[:require]}/config/application.rb"))
logger.info "=================================================================="
logger.info " Please point sidekiq to a Rails 3 application or a Ruby file "
logger.info " to load your worker classes with -r [DIR|FILE]."
logger.info "=================================================================="
logger.info @parser
die(1)
end
2012-01-16 23:02:58 -05:00
end
def parse_options(argv)
opts = {}
2012-01-16 19:14:47 -05:00
@parser = OptionParser.new do |o|
2012-01-16 23:02:58 -05:00
o.on "-q", "--queue QUEUE,WEIGHT", "Queue to process, with optional weight" do |arg|
(q, weight) = arg.split(",")
parse_queues(opts, q, weight)
2012-01-16 19:14:47 -05:00
end
2012-01-16 23:02:58 -05:00
o.on "-v", "--verbose", "Print more verbose output" do
set_logger_level_to_debug
2012-01-16 19:14:47 -05:00
end
o.on "-n", "--namespace NAMESPACE", "namespace worker queues are under (DEPRECATED)" do |arg|
puts "Namespace support has been removed, see https://github.com/mperham/sidekiq/issues/61"
end
o.on "-s", "--server LOCATION", "Where to find Redis (DEPRECATED)" do |arg|
puts "Server location support has been removed, see https://github.com/mperham/sidekiq/issues/61"
2012-01-16 19:14:47 -05:00
end
o.on '-e', '--environment ENV', "Application environment" do |arg|
opts[:environment] = arg
2012-01-24 01:08:38 -05:00
end
o.on '-r', '--require [PATH|DIR]', "Location of Rails application with workers or file to require" do |arg|
opts[:require] = arg
end
o.on '-c', '--concurrency INT', "processor threads to use" do |arg|
opts[:concurrency] = arg.to_i
2012-01-16 19:14:47 -05:00
end
2012-02-15 13:56:36 -05:00
o.on '-P', '--pidfile PATH', "path to pidfile" do |arg|
opts[:pidfile] = arg
2012-02-15 13:56:36 -05:00
end
o.on '-C', '--config PATH', "path to YAML config file" do |arg|
opts[:config_file] = arg
end
2012-01-16 19:14:47 -05:00
end
@parser.banner = "sidekiq [options]"
2012-01-16 19:14:47 -05:00
@parser.on_tail "-h", "--help", "Show help" do
logger.info @parser
die 1
2012-01-16 19:14:47 -05:00
end
@parser.parse!(argv)
opts
2012-01-16 19:14:47 -05:00
end
2012-02-15 13:56:36 -05:00
def write_pid
if path = options[:pidfile]
2012-02-15 13:56:36 -05:00
File.open(path, 'w') do |f|
f.puts Process.pid
end
end
end
def parse_config(cli)
opts = {}
if cli[:config_file] && File.exist?(cli[:config_file])
opts = YAML.load_file cli[:config_file]
queues = opts.delete(:queues) || []
queues.each { |pair| parse_queues(opts, *pair) }
end
opts
end
def parse_queues(opts, q, weight)
(weight || 1).to_i.times do
(opts[:queues] ||= []) << q
end
end
def set_logger_level_to_debug
Sidekiq::Util.logger.level = Logger::DEBUG
end
2012-01-16 19:14:47 -05:00
end
end