Class: SweatShop::Worker

Inherits:
Object
  • Object
show all
Defined in:
lib/sweat_shop/worker.rb

Class Method Summary collapse

Instance Method Summary collapse

Class Method Details

.after_task(&block) ⇒ Object



133
134
135
136
137
138
139
# File 'lib/sweat_shop/worker.rb', line 133

def self.after_task(&block)
  if block
    @after_task = block
  else
    @after_task
  end
end

.before_task(&block) ⇒ Object



125
126
127
128
129
130
131
# File 'lib/sweat_shop/worker.rb', line 125

def self.before_task(&block)
  if block
    @before_task = block
  else
    @before_task
  end
end

.call_after_task(task) ⇒ Object



115
116
117
118
# File 'lib/sweat_shop/worker.rb', line 115

def self.call_after_task(task)
  superclass.call_after_task(task) if superclass.respond_to?(:call_after_task)
  after_task.call(task) if after_task
end

.call_before_task(task) ⇒ Object



110
111
112
113
# File 'lib/sweat_shop/worker.rb', line 110

def self.call_before_task(task)
  superclass.call_before_task(task) if superclass.respond_to?(:call_before_task)
  before_task.call(task) if before_task
end

.call_exception_handler(exception) ⇒ Object



120
121
122
123
# File 'lib/sweat_shop/worker.rb', line 120

def self.call_exception_handler(exception)
  superclass.call_exception_handler(exception) if superclass.respond_to?(:call_exception_handler)
  on_exception.call(exception) if on_exception
end

.configObject



36
37
38
# File 'lib/sweat_shop/worker.rb', line 36

def self.config
  SweatShop.config
end

.confirmObject



60
61
62
# File 'lib/sweat_shop/worker.rb', line 60

def self.confirm
  queue.confirm(queue_name)
end

.delete_queueObject



44
45
46
# File 'lib/sweat_shop/worker.rb', line 44

def self.delete_queue
  queue.delete(queue_name)
end

.dequeueObject



56
57
58
# File 'lib/sweat_shop/worker.rb', line 56

def self.dequeue
  queue.dequeue(queue_name)
end

.do_task(task) ⇒ Object



76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
# File 'lib/sweat_shop/worker.rb', line 76

def self.do_task(task)
  begin
    call_before_task(task)

    queued_at = task[:queued_at] ? "(queued #{Time.at(task[:queued_at]).strftime('%Y/%m/%d %H:%M:%S')})" : ''
    log("Dequeuing #{queue_name}::#{task[:method]} #{queued_at}")
    task[:result] = instance.send(task[:method], *task[:args])

    call_after_task(task)
    confirm
  rescue SystemExit
    exit
  rescue Exception => e
    log("Caught Exception: #{e.message}, \n#{e.backtrace.join("\n")}")
    call_exception_handler(e)
  end
end

.do_tasksObject



70
71
72
73
74
# File 'lib/sweat_shop/worker.rb', line 70

def self.do_tasks
  while task = dequeue
    do_task(task)
  end
end

.enqueue(task) ⇒ Object



52
53
54
# File 'lib/sweat_shop/worker.rb', line 52

def self.enqueue(task)
  queue.enqueue(queue_name, task)
end

.inherited(subclass) ⇒ Object



5
6
7
# File 'lib/sweat_shop/worker.rb', line 5

def self.inherited(subclass)
  self.workers << subclass
end

.instanceObject



32
33
34
# File 'lib/sweat_shop/worker.rb', line 32

def self.instance
  @instance ||= new
end

.log(msg) ⇒ Object



106
107
108
# File 'lib/sweat_shop/worker.rb', line 106

def self.log(msg)
  SweatShop.log(msg)
end

.method_missing(method, *args, &block) ⇒ Object



9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# File 'lib/sweat_shop/worker.rb', line 9

def self.method_missing(method, *args, &block)
  if method.to_s =~ /^async_(.*)/
    method        = $1
    expected_args = instance.method(method).arity
    if expected_args != args.size
      raise ArgumentError.new("#{method} expects #{expected_args} arguments")
    end
    return instance.send(method, *args) unless config['enable']

    uid  = ::Digest::MD5.hexdigest("#{name}:#{method}:#{args}:#{Time.now.to_f}")
    task = {:args => args, :method => method, :uid => uid, :queued_at => Time.now.to_i}

    log("Putting #{uid} on #{queue_name}")
    enqueue(task)

    uid
  elsif instance.respond_to?(method)
    instance.send(method, *args)
  else
    super
  end
end

.on_exception(&block) ⇒ Object



141
142
143
144
145
146
147
# File 'lib/sweat_shop/worker.rb', line 141

def self.on_exception(&block)
  if block
    @on_exception = block
  else
    @on_exception
  end
end

.queueObject



94
95
96
# File 'lib/sweat_shop/worker.rb', line 94

def self.queue
  SweatShop.queue(queue_group.to_s)
end

.queue_group(group = nil) ⇒ Object



157
158
159
# File 'lib/sweat_shop/worker.rb', line 157

def self.queue_group(group=nil)
  group ? meta_def(:_queue_group){ group } : _queue_group
end

.queue_nameObject



40
41
42
# File 'lib/sweat_shop/worker.rb', line 40

def self.queue_name
  @queue_name ||= self.to_s
end

.queue_sizeObject



48
49
50
# File 'lib/sweat_shop/worker.rb', line 48

def self.queue_size
  queue.queue_size(queue_name)
end

.stopObject



149
150
151
# File 'lib/sweat_shop/worker.rb', line 149

def self.stop
  instance.stop
end

.subscribeObject



64
65
66
67
68
# File 'lib/sweat_shop/worker.rb', line 64

def self.subscribe
  queue.subscribe(queue_name) do |task|
    do_task(task)
  end
end

.workersObject



98
99
100
# File 'lib/sweat_shop/worker.rb', line 98

def self.workers
  SweatShop.workers
end

Instance Method Details

#stopObject

called before we exit – subclass can implement this method



154
# File 'lib/sweat_shop/worker.rb', line 154

def stop; end