Class: Sidekiq::CLI

Inherits:
Object
  • Object
show all
Includes:
Util, Singleton
Defined in:
lib/sidekiq/cli.rb

Constant Summary

Constants included from Util

Util::EXPIRY

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Util

#hostname, #logger, #process_id, #redis, #watchdog

Methods included from ExceptionHandler

#handle_exception

Constructor Details

#initializeCLI

Returns a new instance of CLI.



26
27
28
# File 'lib/sidekiq/cli.rb', line 26

def initialize
  @code = nil
end

Instance Attribute Details

#codeObject

Used for CLI testing



22
23
24
# File 'lib/sidekiq/cli.rb', line 22

def code
  @code
end

#environmentObject

Returns the value of attribute environment.



24
25
26
# File 'lib/sidekiq/cli.rb', line 24

def environment
  @environment
end

#launcherObject

Returns the value of attribute launcher.



23
24
25
# File 'lib/sidekiq/cli.rb', line 23

def launcher
  @launcher
end

Instance Method Details

#parse(args = ARGV) ⇒ Object



30
31
32
33
34
35
36
37
38
39
40
# File 'lib/sidekiq/cli.rb', line 30

def parse(args=ARGV)
  @code = nil

  setup_options(args)
  initialize_logger
  validate!
  daemonize
  write_pid
  load_celluloid
  boot_system
end

#runObject



42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
# File 'lib/sidekiq/cli.rb', line 42

def run
  self_read, self_write = IO.pipe

  %w(INT TERM USR1 USR2 TTIN).each do |sig|
    trap sig do
      self_write.puts(sig)
    end
  end

  logger.info "Booting Sidekiq #{Sidekiq::VERSION} with Redis at #{redis {|x| x.client.id}}"
  logger.info "Running in #{RUBY_DESCRIPTION}"
  logger.info Sidekiq::LICENSE

  Sidekiq::Stats::History.cleanup

  if !options[:daemon]
    logger.info 'Starting processing, hit Ctrl-C to stop'
  end

  require 'sidekiq/launcher'
  @launcher = Sidekiq::Launcher.new(options)
  launcher.procline(options[:tag] ? "#{options[:tag]} " : '')

  begin
    if options[:profile]
      require 'ruby-prof'
      RubyProf.start
    end
    launcher.run

    while readable_io = IO.select([self_read])
      signal = readable_io.first[0].gets.strip
      handle_signal(signal)
    end
  rescue Interrupt
    logger.info 'Shutting down'
    launcher.stop
    # Explicitly exit so busy Processor threads can't block
    # process shutdown.
    exit(0)
  end
end