rack-worker 0.0.1.alpha
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +17 -0
- data/Gemfile +4 -0
- data/LICENSE +22 -0
- data/README.md +29 -0
- data/Rakefile +2 -0
- data/lib/rack/worker/version.rb +5 -0
- data/lib/rack/worker.rb +62 -0
- data/lib/rack-worker.rb +1 -0
- data/rack-worker.gemspec +17 -0
- metadata +56 -0
data/.gitignore
ADDED
data/Gemfile
ADDED
data/LICENSE
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
Copyright (c) 2012 Chris Continanza
|
2
|
+
|
3
|
+
MIT License
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
6
|
+
a copy of this software and associated documentation files (the
|
7
|
+
"Software"), to deal in the Software without restriction, including
|
8
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
9
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
10
|
+
permit persons to whom the Software is furnished to do so, subject to
|
11
|
+
the following conditions:
|
12
|
+
|
13
|
+
The above copyright notice and this permission notice shall be
|
14
|
+
included in all copies or substantial portions of the Software.
|
15
|
+
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
17
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
18
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
19
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
20
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
21
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
22
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,29 @@
|
|
1
|
+
# Rack::Worker
|
2
|
+
|
3
|
+
TODO: Write a gem description
|
4
|
+
|
5
|
+
## Installation
|
6
|
+
|
7
|
+
Add this line to your application's Gemfile:
|
8
|
+
|
9
|
+
gem 'rack-worker'
|
10
|
+
|
11
|
+
And then execute:
|
12
|
+
|
13
|
+
$ bundle
|
14
|
+
|
15
|
+
Or install it yourself as:
|
16
|
+
|
17
|
+
$ gem install rack-worker
|
18
|
+
|
19
|
+
## Usage
|
20
|
+
|
21
|
+
TODO: Write usage instructions here
|
22
|
+
|
23
|
+
## Contributing
|
24
|
+
|
25
|
+
1. Fork it
|
26
|
+
2. Create your feature branch (`git checkout -b my-new-feature`)
|
27
|
+
3. Commit your changes (`git commit -am 'Added some feature'`)
|
28
|
+
4. Push to the branch (`git push origin my-new-feature`)
|
29
|
+
5. Create new Pull Request
|
data/Rakefile
ADDED
data/lib/rack/worker.rb
ADDED
@@ -0,0 +1,62 @@
|
|
1
|
+
require 'rack/worker/version'
|
2
|
+
|
3
|
+
module Rack
|
4
|
+
class Worker
|
5
|
+
def initialize(app)
|
6
|
+
@app = app
|
7
|
+
end
|
8
|
+
|
9
|
+
def cache
|
10
|
+
self.class.cache
|
11
|
+
end
|
12
|
+
|
13
|
+
def self.cache
|
14
|
+
@cache ||= defined?(::Dalli) ? ::Dalli::Client.new : nil
|
15
|
+
end
|
16
|
+
|
17
|
+
def call(env)
|
18
|
+
# so when worker calls app we don't return 204
|
19
|
+
return @app.call(env) if env['rack.worker_qc']
|
20
|
+
|
21
|
+
if env['REQUEST_METHOD'] == 'GET'
|
22
|
+
key = key(env)
|
23
|
+
if response = get_response(key)
|
24
|
+
response
|
25
|
+
else
|
26
|
+
unless cache.get("env-#{key}")
|
27
|
+
cache.set("env-#{key}", env.to_json)
|
28
|
+
QC.enqueue("#{self.class.name}.process_request",
|
29
|
+
@app.class.name, key)
|
30
|
+
end
|
31
|
+
[204, {"Content-type" => "text/plain"}, []]
|
32
|
+
end
|
33
|
+
end
|
34
|
+
end
|
35
|
+
|
36
|
+
def self.process_request(classname, id)
|
37
|
+
env = Yajl::Parser.parse(cache.get("env-#{id}"))
|
38
|
+
app = classname_to_class(classname)
|
39
|
+
status, headers, body = app.call(env.merge('rack.worker_qc' => true))
|
40
|
+
set_response(id, status, headers, body)
|
41
|
+
end
|
42
|
+
|
43
|
+
def self.classname_to_class(classname)
|
44
|
+
classname.split("::").inject(Object){ |klass, classname| klass.const_get classname }
|
45
|
+
end
|
46
|
+
|
47
|
+
def self.set_response(key, status, headers, body)
|
48
|
+
cache.set("response-#{key}", [status, headers, body].to_json)
|
49
|
+
end
|
50
|
+
|
51
|
+
def get_response(key)
|
52
|
+
response = cache.get("response-#{key}")
|
53
|
+
return unless response
|
54
|
+
Yajl::Parser.parse(response)
|
55
|
+
end
|
56
|
+
|
57
|
+
def key(env)
|
58
|
+
env['REQUEST_PATH'] + '?' + env['QUERY_STRING']
|
59
|
+
end
|
60
|
+
end
|
61
|
+
end
|
62
|
+
|
data/lib/rack-worker.rb
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
require "rack/worker"
|
data/rack-worker.gemspec
ADDED
@@ -0,0 +1,17 @@
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
2
|
+
require File.expand_path('../lib/rack/worker/version', __FILE__)
|
3
|
+
|
4
|
+
Gem::Specification.new do |gem|
|
5
|
+
gem.authors = ["Chris Continanza"]
|
6
|
+
gem.email = ["christopher.continanza@gmail.com"]
|
7
|
+
gem.description = %q{Rack middleware that implements the Worker Pattern}
|
8
|
+
gem.summary = %q{Processes GET requests with a worker backend and only serves them straight from a cache. Your web frontend is never blocked processing the request. Implementation of the Worker Pattern}
|
9
|
+
gem.homepage = ""
|
10
|
+
|
11
|
+
gem.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
|
12
|
+
gem.files = `git ls-files`.split("\n")
|
13
|
+
gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
14
|
+
gem.name = "rack-worker"
|
15
|
+
gem.require_paths = ["lib"]
|
16
|
+
gem.version = Rack::Worker::VERSION
|
17
|
+
end
|
metadata
ADDED
@@ -0,0 +1,56 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: rack-worker
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1.alpha
|
5
|
+
prerelease: 6
|
6
|
+
platform: ruby
|
7
|
+
authors:
|
8
|
+
- Chris Continanza
|
9
|
+
autorequire:
|
10
|
+
bindir: bin
|
11
|
+
cert_chain: []
|
12
|
+
date: 2012-04-11 00:00:00.000000000 Z
|
13
|
+
dependencies: []
|
14
|
+
description: Rack middleware that implements the Worker Pattern
|
15
|
+
email:
|
16
|
+
- christopher.continanza@gmail.com
|
17
|
+
executables: []
|
18
|
+
extensions: []
|
19
|
+
extra_rdoc_files: []
|
20
|
+
files:
|
21
|
+
- .gitignore
|
22
|
+
- Gemfile
|
23
|
+
- LICENSE
|
24
|
+
- README.md
|
25
|
+
- Rakefile
|
26
|
+
- lib/rack-worker.rb
|
27
|
+
- lib/rack/worker.rb
|
28
|
+
- lib/rack/worker/version.rb
|
29
|
+
- rack-worker.gemspec
|
30
|
+
homepage: ''
|
31
|
+
licenses: []
|
32
|
+
post_install_message:
|
33
|
+
rdoc_options: []
|
34
|
+
require_paths:
|
35
|
+
- lib
|
36
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
37
|
+
none: false
|
38
|
+
requirements:
|
39
|
+
- - ! '>='
|
40
|
+
- !ruby/object:Gem::Version
|
41
|
+
version: '0'
|
42
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
43
|
+
none: false
|
44
|
+
requirements:
|
45
|
+
- - ! '>'
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: 1.3.1
|
48
|
+
requirements: []
|
49
|
+
rubyforge_project:
|
50
|
+
rubygems_version: 1.8.10
|
51
|
+
signing_key:
|
52
|
+
specification_version: 3
|
53
|
+
summary: Processes GET requests with a worker backend and only serves them straight
|
54
|
+
from a cache. Your web frontend is never blocked processing the request. Implementation
|
55
|
+
of the Worker Pattern
|
56
|
+
test_files: []
|