resque-lockbr 1.1.0br

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/LICENSE ADDED
@@ -0,0 +1,20 @@
1
+ Copyright (c) Chris Wanstrath, Ray Krueger
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ Software), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED AS IS, WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,46 @@
1
+ Resque Lock
2
+ ===========
3
+
4
+ A [Resque][rq] plugin. Requires Resque 1.7.0.
5
+
6
+ If you want only one instance of your job queued at a time, extend it
7
+ with this module.
8
+
9
+
10
+ For example:
11
+
12
+ require 'resque/plugins/lock'
13
+
14
+ class UpdateNetworkGraph
15
+ extend Resque::Plugins::Lock
16
+
17
+ def self.perform(repo_id)
18
+ heavy_lifting
19
+ end
20
+ end
21
+
22
+ While this job is queued or running, no other UpdateNetworkGraph
23
+ jobs with the same arguments will be placed on the queue.
24
+
25
+ If you want to define the key yourself you can override the
26
+ `lock` class method in your subclass, e.g.
27
+
28
+ class UpdateNetworkGraph
29
+ extend Resque::Plugins::Lock
30
+
31
+ Run only one at a time, regardless of repo_id.
32
+ def self.lock(repo_id)
33
+ "network-graph"
34
+ end
35
+
36
+ def self.perform(repo_id)
37
+ heavy_lifting
38
+ end
39
+ end
40
+
41
+ The above modification will ensure only one job of class
42
+ UpdateNetworkGraph is queued at a time, regardless of the
43
+ repo_id. Normally a job is locked using a combination of its
44
+ class name and arguments.
45
+
46
+ [rq]: http://github.com/defunkt/resque
data/Rakefile ADDED
@@ -0,0 +1,26 @@
1
+ require 'rake/testtask'
2
+ require 'rake/rdoctask'
3
+
4
+ def command?(command)
5
+ system("type #{command} > /dev/null")
6
+ end
7
+
8
+ #
9
+ # Tests
10
+ #
11
+
12
+ task :default => :test
13
+
14
+ if command? :turn
15
+ desc "Run tests"
16
+ task :test do
17
+ suffix = "-n #{ENV['TEST']}" if ENV['TEST']
18
+ sh "turn test/*.rb #{suffix}"
19
+ end
20
+ else
21
+ Rake::TestTask.new do |t|
22
+ t.libs << 'lib'
23
+ t.pattern = 'test/**/*_test.rb'
24
+ t.verbose = false
25
+ end
26
+ end
@@ -0,0 +1,90 @@
1
+ module Resque
2
+ module Plugins
3
+ # If you want only one instance of your job queued at a time,
4
+ # extend it with this module.
5
+ #
6
+ # For example:
7
+ #
8
+ # require 'resque/plugins/lock'
9
+ #
10
+ # class UpdateNetworkGraph
11
+ # extend Resque::Plugins::Lock
12
+ #
13
+ # def self.perform(repo_id)
14
+ # heavy_lifting
15
+ # end
16
+ # end
17
+ #
18
+ # No other UpdateNetworkGraph jobs will be placed on the queue,
19
+ # the QueueLock class will check Redis to see if any others are
20
+ # queued with the same arguments before queueing. If another
21
+ # is queued the enqueue will be aborted.
22
+ #
23
+ # If you want to define the key yourself you can override the
24
+ # `lock` class method in your subclass, e.g.
25
+ #
26
+ # class UpdateNetworkGraph
27
+ # extend Resque::Plugins::Lock
28
+ #
29
+ # # Run only one at a time, regardless of repo_id.
30
+ # def self.lock(repo_id)
31
+ # "network-graph"
32
+ # end
33
+ #
34
+ # def self.perform(repo_id)
35
+ # heavy_lifting
36
+ # end
37
+ # end
38
+ #
39
+ # The above modification will ensure only one job of class
40
+ # UpdateNetworkGraph is running at a time, regardless of the
41
+ # repo_id. Normally a job is locked using a combination of its
42
+ # class name and arguments.
43
+ module Lock
44
+
45
+ # Override in your job to control the lock experiation time. This is the
46
+ # time in seconds that the lock should be considered valid. The default
47
+ # is one hour (3600 seconds).
48
+ def lock_timeout
49
+ 3600
50
+ end
51
+
52
+ # Override in your job to control the lock key. It is
53
+ # passed the same arguments as `perform`, that is, your job's
54
+ # payload.
55
+ def lock(*args)
56
+ "lock:#{name}-#{args.to_s}"
57
+ end
58
+
59
+ # See the documentation for SETNX http://redis.io/commands/setnx for an
60
+ # explanation of this deadlock free locking pattern
61
+ def before_enqueue_lock(*args)
62
+ key = lock(*args)
63
+ now = Time.now.to_i
64
+ timeout = now + lock_timeout + 1
65
+
66
+ # return true if we successfully acquired the lock
67
+ return true if Resque.redis.setnx(key, timeout)
68
+
69
+ # see if the existing timeout is still valid and return false if it is
70
+ # (we cannot acquire the lock during the timeout period)
71
+ return false if now <= Resque.redis.get(key).to_i
72
+
73
+ # otherwise set the timeout and ensure that no other worker has
74
+ # acquired the lock
75
+ now > Resque.redis.getset(key, timeout).to_i
76
+ end
77
+
78
+ def around_perform_lock(*args)
79
+ begin
80
+ yield
81
+ ensure
82
+ # Always clear the lock when we're done, even if there is an
83
+ # error.
84
+ Resque.redis.del(lock(*args))
85
+ end
86
+ end
87
+ end
88
+ end
89
+ end
90
+
data/test/lock_test.rb ADDED
@@ -0,0 +1,60 @@
1
+ require 'test/unit'
2
+ require 'resque'
3
+ require 'resque/plugins/lock'
4
+
5
+ $counter = 0
6
+
7
+ class LockTest < Test::Unit::TestCase
8
+ class Job
9
+ extend Resque::Plugins::Lock
10
+ @queue = :lock_test
11
+
12
+ def self.lock_timeout
13
+ 1
14
+ end
15
+
16
+ def self.perform
17
+ raise "Woah woah woah, that wasn't supposed to happen"
18
+ end
19
+ end
20
+
21
+ def setup
22
+ Resque.redis.del('queue:lock_test')
23
+ Resque.redis.del(Job.lock)
24
+ end
25
+
26
+ def test_lint
27
+ assert_nothing_raised do
28
+ Resque::Plugin.lint(Resque::Plugins::Lock)
29
+ end
30
+ end
31
+
32
+ def test_version
33
+ major, minor, patch = Resque::Version.split('.')
34
+ assert_equal 1, major.to_i
35
+ assert minor.to_i >= 17
36
+ assert Resque::Plugin.respond_to?(:before_enqueue_hooks)
37
+ end
38
+
39
+ def test_lock
40
+ 3.times { Resque.enqueue(Job) }
41
+
42
+ assert_equal 1, Resque.redis.llen('queue:lock_test')
43
+ end
44
+
45
+ def test_deadlock
46
+ now = Time.now.to_i
47
+
48
+ Resque.redis.set(Job.lock, now+60)
49
+ Resque.enqueue(Job)
50
+ assert_equal 0, Resque.redis.llen('queue:lock_test')
51
+
52
+ Resque.redis.set(Job.lock, now-1)
53
+ Resque.enqueue(Job)
54
+ assert_equal 1, Resque.redis.llen('queue:lock_test')
55
+
56
+ sleep 3
57
+ Resque.enqueue(Job)
58
+ assert_equal 2, Resque.redis.llen('queue:lock_test')
59
+ end
60
+ end
metadata ADDED
@@ -0,0 +1,54 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: resque-lockbr
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.1.0br
5
+ prerelease: 5
6
+ platform: ruby
7
+ authors:
8
+ - Chris Wanstrath
9
+ - Ray Krueger
10
+ autorequire:
11
+ bindir: bin
12
+ cert_chain: []
13
+ date: 2013-04-10 00:00:00.000000000 Z
14
+ dependencies: []
15
+ description: ! "A Resque plugin. If you want only one instance of your job\nqueued
16
+ at a time, extend it with this module.\n\nFor example:\n\n class UpdateNetworkGraph\n
17
+ \ extend Resque::Jobs::Locked\n\n def self.perform(repo_id)\n heavy_lifting\n
18
+ \ end\n end\n"
19
+ email: chris@ozmm.org
20
+ executables: []
21
+ extensions: []
22
+ extra_rdoc_files: []
23
+ files:
24
+ - README.md
25
+ - Rakefile
26
+ - LICENSE
27
+ - lib/resque/plugins/lock.rb
28
+ - test/lock_test.rb
29
+ homepage: http://github.com/defunkt/resque-lock
30
+ licenses: []
31
+ post_install_message:
32
+ rdoc_options: []
33
+ require_paths:
34
+ - lib
35
+ required_ruby_version: !ruby/object:Gem::Requirement
36
+ none: false
37
+ requirements:
38
+ - - ! '>='
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ required_rubygems_version: !ruby/object:Gem::Requirement
42
+ none: false
43
+ requirements:
44
+ - - ! '>'
45
+ - !ruby/object:Gem::Version
46
+ version: 1.3.1
47
+ requirements: []
48
+ rubyforge_project:
49
+ rubygems_version: 1.8.24
50
+ signing_key:
51
+ specification_version: 3
52
+ summary: A Resque plugin for ensuring only one instance of your job is queued at a
53
+ time.
54
+ test_files: []