2012-08-02 23:46:06 -04:00
|
|
|
require 'sidekiq/exception_handler'
|
|
|
|
|
2012-01-22 14:32:38 -05:00
|
|
|
module Sidekiq
|
2012-02-17 16:39:36 -05:00
|
|
|
##
|
|
|
|
# This module is part of Sidekiq core and not intended for extensions.
|
|
|
|
#
|
2012-01-22 14:32:38 -05:00
|
|
|
module Util
|
2012-08-02 23:46:06 -04:00
|
|
|
include ExceptionHandler
|
2012-01-22 14:32:38 -05:00
|
|
|
|
2012-05-12 17:02:32 -04:00
|
|
|
EXPIRY = 60 * 60
|
2012-04-24 10:15:29 -04:00
|
|
|
|
2012-01-26 15:45:04 -05:00
|
|
|
def constantize(camel_cased_word)
|
|
|
|
names = camel_cased_word.split('::')
|
|
|
|
names.shift if names.empty? || names.first.empty?
|
|
|
|
|
|
|
|
constant = Object
|
|
|
|
names.each do |name|
|
|
|
|
constant = constant.const_defined?(name) ? constant.const_get(name) : constant.const_missing(name)
|
|
|
|
end
|
|
|
|
constant
|
|
|
|
end
|
|
|
|
|
2012-01-22 14:32:38 -05:00
|
|
|
def watchdog(last_words)
|
|
|
|
yield
|
|
|
|
rescue => ex
|
2012-08-02 23:46:06 -04:00
|
|
|
handle_exception(ex, { :context => last_words })
|
2012-01-22 14:32:38 -05:00
|
|
|
end
|
|
|
|
|
2012-02-14 12:00:26 -05:00
|
|
|
def logger
|
2012-05-15 22:44:35 -04:00
|
|
|
Sidekiq.logger
|
2012-01-22 19:01:46 -05:00
|
|
|
end
|
2012-02-11 02:16:12 -05:00
|
|
|
|
2012-03-14 12:56:13 -04:00
|
|
|
def redis(&block)
|
|
|
|
Sidekiq.redis(&block)
|
2012-02-11 02:16:12 -05:00
|
|
|
end
|
2012-02-15 15:30:31 -05:00
|
|
|
|
|
|
|
def process_id
|
2012-03-06 23:18:16 -05:00
|
|
|
Process.pid
|
2012-02-15 15:30:31 -05:00
|
|
|
end
|
2012-01-22 14:32:38 -05:00
|
|
|
end
|
|
|
|
end
|