infrastruct 0.1.0
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.
- checksums.yaml +7 -0
- data/.gitignore +9 -0
- data/.rspec +2 -0
- data/.travis.yml +7 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +21 -0
- data/README.md +72 -0
- data/Rakefile +6 -0
- data/bin/console +14 -0
- data/bin/setup +8 -0
- data/infrastruct.gemspec +26 -0
- data/lib/infrastruct/manager.rb +34 -0
- data/lib/infrastruct/nonblocking_queue.rb +15 -0
- data/lib/infrastruct/thread_pool.rb +30 -0
- data/lib/infrastruct/version.rb +3 -0
- data/lib/infrastruct.rb +21 -0
- metadata +115 -0
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA1:
|
|
3
|
+
metadata.gz: 9d13b298818cc220c0170d9176d35babca39b807
|
|
4
|
+
data.tar.gz: 13c70be836baf4aff7b2fcbdfccded092e272002
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: 9fa10e69f20e1a9153aaa38d92c19b05d879b9b5dafe06abe727c09ef6f48efa1e2d424eca508672efb72c91f414f9fa70f1bea30d99ce2c271db88c83031630
|
|
7
|
+
data.tar.gz: a1652049cdc38454d220778f793ef0cf65f6167338d6a12b94e5875ef67ff13535fe1b107c4652d7058c8bf24823bf461f78877e1334b1687220ea4e48484a77
|
data/.gitignore
ADDED
data/.rspec
ADDED
data/.travis.yml
ADDED
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
The MIT License (MIT)
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2016 Samuel Molnar
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
|
13
|
+
all copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
21
|
+
THE SOFTWARE.
|
data/README.md
ADDED
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
# Infrastruct
|
|
2
|
+
|
|
3
|
+
Process and distribute asynchronous tasks and merge their results.
|
|
4
|
+
|
|
5
|
+
## Installation
|
|
6
|
+
|
|
7
|
+
Add this line to your application's Gemfile:
|
|
8
|
+
|
|
9
|
+
```ruby
|
|
10
|
+
gem 'infrastruct'
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
And then execute:
|
|
14
|
+
|
|
15
|
+
$ bundle
|
|
16
|
+
|
|
17
|
+
Or install it yourself as:
|
|
18
|
+
|
|
19
|
+
$ gem install infrastruct
|
|
20
|
+
|
|
21
|
+
## Usage
|
|
22
|
+
|
|
23
|
+
Define your worker with task as `perform` and merge results with `collect`.
|
|
24
|
+
|
|
25
|
+
```ruby
|
|
26
|
+
class SquaredNumbersCollector
|
|
27
|
+
extend Infrastruct
|
|
28
|
+
|
|
29
|
+
def perform(number)
|
|
30
|
+
number ** 2
|
|
31
|
+
end
|
|
32
|
+
|
|
33
|
+
def collect(numbers)
|
|
34
|
+
numbers.inject(&:+)
|
|
35
|
+
end
|
|
36
|
+
end
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
Create worker.
|
|
40
|
+
|
|
41
|
+
```ruby
|
|
42
|
+
worker = SquaredNumbersCollector.create
|
|
43
|
+
```
|
|
44
|
+
|
|
45
|
+
Enqueue attributes for tasks.
|
|
46
|
+
|
|
47
|
+
```
|
|
48
|
+
worker.enqueue(1)
|
|
49
|
+
worker.enqueue(2)
|
|
50
|
+
worker.enqueue(3)
|
|
51
|
+
```
|
|
52
|
+
|
|
53
|
+
Run worker and wait for merge results.
|
|
54
|
+
|
|
55
|
+
```
|
|
56
|
+
sum = worker.run # => 1 ^ 2 + 2 ^ 2 + 3 ^ 2 = 14
|
|
57
|
+
```
|
|
58
|
+
|
|
59
|
+
## Development
|
|
60
|
+
|
|
61
|
+
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
|
62
|
+
|
|
63
|
+
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
|
|
64
|
+
|
|
65
|
+
## Contributing
|
|
66
|
+
|
|
67
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/smolnar/infrastruct.
|
|
68
|
+
|
|
69
|
+
|
|
70
|
+
## License
|
|
71
|
+
|
|
72
|
+
The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
|
data/Rakefile
ADDED
data/bin/console
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
#!/usr/bin/env ruby
|
|
2
|
+
|
|
3
|
+
require "bundler/setup"
|
|
4
|
+
require "infrastruct"
|
|
5
|
+
|
|
6
|
+
# You can add fixtures and/or initialization code here to make experimenting
|
|
7
|
+
# with your gem easier. You can also use a different console, if you like.
|
|
8
|
+
|
|
9
|
+
# (If you use this, don't forget to add pry to your Gemfile!)
|
|
10
|
+
# require "pry"
|
|
11
|
+
# Pry.start
|
|
12
|
+
|
|
13
|
+
require "irb"
|
|
14
|
+
IRB.start
|
data/bin/setup
ADDED
data/infrastruct.gemspec
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
4
|
+
require 'infrastruct/version'
|
|
5
|
+
|
|
6
|
+
Gem::Specification.new do |spec|
|
|
7
|
+
spec.name = 'infrastruct'
|
|
8
|
+
spec.version = Infrastruct::VERSION
|
|
9
|
+
spec.authors = ['Samuel Molnar']
|
|
10
|
+
spec.email = ['molnar.samuel@gmail.com']
|
|
11
|
+
|
|
12
|
+
spec.summary = 'Simple Threaded Processing Architecture'
|
|
13
|
+
spec.description = 'Process and distribute asynchronous tasks and merge their results'
|
|
14
|
+
spec.homepage = 'https://github.com/smolnar/infrastruct'
|
|
15
|
+
spec.license = 'MIT'
|
|
16
|
+
|
|
17
|
+
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
|
18
|
+
spec.bindir = 'exe'
|
|
19
|
+
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
|
20
|
+
spec.require_paths = ['lib']
|
|
21
|
+
|
|
22
|
+
spec.add_development_dependency 'bundler', '~> 1.11'
|
|
23
|
+
spec.add_development_dependency 'rake', '~> 10.0'
|
|
24
|
+
spec.add_development_dependency 'rspec', '~> 3.0'
|
|
25
|
+
spec.add_development_dependency 'pry'
|
|
26
|
+
end
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
module Infrastruct
|
|
2
|
+
class Manager
|
|
3
|
+
attr_reader :queue
|
|
4
|
+
|
|
5
|
+
def initialize(worker_factory, thread_pool:)
|
|
6
|
+
@worker_factory = worker_factory
|
|
7
|
+
@thread_pool = thread_pool
|
|
8
|
+
@results = Array.new
|
|
9
|
+
@mutex = Mutex.new
|
|
10
|
+
end
|
|
11
|
+
|
|
12
|
+
def enqueue(*args, &block)
|
|
13
|
+
@thread_pool.enqueue([args, block])
|
|
14
|
+
end
|
|
15
|
+
|
|
16
|
+
def run
|
|
17
|
+
@thread_pool.run do |params|
|
|
18
|
+
begin
|
|
19
|
+
worker = @worker_factory.new
|
|
20
|
+
result = worker.perform(*params[0], ¶ms[1])
|
|
21
|
+
|
|
22
|
+
@mutex.synchronize do
|
|
23
|
+
@results.push(result)
|
|
24
|
+
end
|
|
25
|
+
rescue
|
|
26
|
+
@thread_pool.enqueue(params)
|
|
27
|
+
end
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
worker = @worker_factory.new
|
|
31
|
+
worker.collect(@results)
|
|
32
|
+
end
|
|
33
|
+
end
|
|
34
|
+
end
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
module Infrastruct
|
|
2
|
+
class ThreadPool
|
|
3
|
+
attr_reader :queue
|
|
4
|
+
|
|
5
|
+
def initialize(threads:)
|
|
6
|
+
@queue = Infrastruct::NonblockingQueue.new
|
|
7
|
+
@number_of_threads = threads
|
|
8
|
+
end
|
|
9
|
+
|
|
10
|
+
def enqueue(args)
|
|
11
|
+
@queue.push(args)
|
|
12
|
+
end
|
|
13
|
+
|
|
14
|
+
def run(&block)
|
|
15
|
+
@threads = @number_of_threads.times.map do
|
|
16
|
+
Thread.new do
|
|
17
|
+
begin
|
|
18
|
+
while params = @queue.pop do
|
|
19
|
+
block.call(params)
|
|
20
|
+
end
|
|
21
|
+
rescue ThreadError => error
|
|
22
|
+
raise error unless error.message == 'queue empty'
|
|
23
|
+
end
|
|
24
|
+
end
|
|
25
|
+
end
|
|
26
|
+
|
|
27
|
+
@threads.map(&:join)
|
|
28
|
+
end
|
|
29
|
+
end
|
|
30
|
+
end
|
data/lib/infrastruct.rb
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
require 'thread'
|
|
2
|
+
require 'infrastruct/version'
|
|
3
|
+
require 'infrastruct/manager'
|
|
4
|
+
require 'infrastruct/nonblocking_queue'
|
|
5
|
+
require 'infrastruct/thread_pool'
|
|
6
|
+
|
|
7
|
+
module Infrastruct
|
|
8
|
+
def create
|
|
9
|
+
pool = Infrastruct::ThreadPool.new(threads: options[:threads])
|
|
10
|
+
|
|
11
|
+
Manager.new(self, thread_pool: pool)
|
|
12
|
+
end
|
|
13
|
+
|
|
14
|
+
def options(options = {})
|
|
15
|
+
@options ||= { threads: 5 }
|
|
16
|
+
|
|
17
|
+
@options.merge(options)
|
|
18
|
+
|
|
19
|
+
@options
|
|
20
|
+
end
|
|
21
|
+
end
|
metadata
ADDED
|
@@ -0,0 +1,115 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: infrastruct
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.1.0
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Samuel Molnar
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: exe
|
|
10
|
+
cert_chain: []
|
|
11
|
+
date: 2016-03-04 00:00:00.000000000 Z
|
|
12
|
+
dependencies:
|
|
13
|
+
- !ruby/object:Gem::Dependency
|
|
14
|
+
name: bundler
|
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
|
16
|
+
requirements:
|
|
17
|
+
- - "~>"
|
|
18
|
+
- !ruby/object:Gem::Version
|
|
19
|
+
version: '1.11'
|
|
20
|
+
type: :development
|
|
21
|
+
prerelease: false
|
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
23
|
+
requirements:
|
|
24
|
+
- - "~>"
|
|
25
|
+
- !ruby/object:Gem::Version
|
|
26
|
+
version: '1.11'
|
|
27
|
+
- !ruby/object:Gem::Dependency
|
|
28
|
+
name: rake
|
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
|
30
|
+
requirements:
|
|
31
|
+
- - "~>"
|
|
32
|
+
- !ruby/object:Gem::Version
|
|
33
|
+
version: '10.0'
|
|
34
|
+
type: :development
|
|
35
|
+
prerelease: false
|
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
37
|
+
requirements:
|
|
38
|
+
- - "~>"
|
|
39
|
+
- !ruby/object:Gem::Version
|
|
40
|
+
version: '10.0'
|
|
41
|
+
- !ruby/object:Gem::Dependency
|
|
42
|
+
name: rspec
|
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
|
44
|
+
requirements:
|
|
45
|
+
- - "~>"
|
|
46
|
+
- !ruby/object:Gem::Version
|
|
47
|
+
version: '3.0'
|
|
48
|
+
type: :development
|
|
49
|
+
prerelease: false
|
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
51
|
+
requirements:
|
|
52
|
+
- - "~>"
|
|
53
|
+
- !ruby/object:Gem::Version
|
|
54
|
+
version: '3.0'
|
|
55
|
+
- !ruby/object:Gem::Dependency
|
|
56
|
+
name: pry
|
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
|
58
|
+
requirements:
|
|
59
|
+
- - ">="
|
|
60
|
+
- !ruby/object:Gem::Version
|
|
61
|
+
version: '0'
|
|
62
|
+
type: :development
|
|
63
|
+
prerelease: false
|
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
65
|
+
requirements:
|
|
66
|
+
- - ">="
|
|
67
|
+
- !ruby/object:Gem::Version
|
|
68
|
+
version: '0'
|
|
69
|
+
description: Process and distribute asynchronous tasks and merge their results
|
|
70
|
+
email:
|
|
71
|
+
- molnar.samuel@gmail.com
|
|
72
|
+
executables: []
|
|
73
|
+
extensions: []
|
|
74
|
+
extra_rdoc_files: []
|
|
75
|
+
files:
|
|
76
|
+
- ".gitignore"
|
|
77
|
+
- ".rspec"
|
|
78
|
+
- ".travis.yml"
|
|
79
|
+
- Gemfile
|
|
80
|
+
- LICENSE.txt
|
|
81
|
+
- README.md
|
|
82
|
+
- Rakefile
|
|
83
|
+
- bin/console
|
|
84
|
+
- bin/setup
|
|
85
|
+
- infrastruct.gemspec
|
|
86
|
+
- lib/infrastruct.rb
|
|
87
|
+
- lib/infrastruct/manager.rb
|
|
88
|
+
- lib/infrastruct/nonblocking_queue.rb
|
|
89
|
+
- lib/infrastruct/thread_pool.rb
|
|
90
|
+
- lib/infrastruct/version.rb
|
|
91
|
+
homepage: https://github.com/smolnar/infrastruct
|
|
92
|
+
licenses:
|
|
93
|
+
- MIT
|
|
94
|
+
metadata: {}
|
|
95
|
+
post_install_message:
|
|
96
|
+
rdoc_options: []
|
|
97
|
+
require_paths:
|
|
98
|
+
- lib
|
|
99
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
100
|
+
requirements:
|
|
101
|
+
- - ">="
|
|
102
|
+
- !ruby/object:Gem::Version
|
|
103
|
+
version: '0'
|
|
104
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
105
|
+
requirements:
|
|
106
|
+
- - ">="
|
|
107
|
+
- !ruby/object:Gem::Version
|
|
108
|
+
version: '0'
|
|
109
|
+
requirements: []
|
|
110
|
+
rubyforge_project:
|
|
111
|
+
rubygems_version: 2.5.1
|
|
112
|
+
signing_key:
|
|
113
|
+
specification_version: 4
|
|
114
|
+
summary: Simple Threaded Processing Architecture
|
|
115
|
+
test_files: []
|