cellect-server 0.1.2 → 0.1.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +2 -1
- data/.travis.yml +1 -5
- data/LICENSE +201 -0
- data/README.md +42 -4
- data/cellect.gemspec +1 -0
- data/lib/cellect/node_set.rb +3 -1
- data/lib/cellect/server/adapters/postgres.rb +5 -5
- data/lib/cellect/server/api/helpers.rb +0 -4
- data/lib/cellect/server/api/sets.rb +20 -0
- data/lib/cellect/server/api/users.rb +8 -0
- data/lib/cellect/server/api.rb +16 -0
- data/lib/cellect/server/grouped_workflow.rb +29 -0
- data/lib/cellect/server/node_set.rb +3 -0
- data/lib/cellect/server/user.rb +8 -4
- data/lib/cellect/server/workflow.rb +33 -0
- data/lib/cellect/server.rb +1 -0
- data/lib/cellect/version.rb +1 -1
- data/spec/server/workflow_spec.rb +1 -1
- data/spec/spec_helper.rb +3 -0
- metadata +4 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ce5ed6155919dbcb28b9deed2f937b67dbe726e0
|
4
|
+
data.tar.gz: b08a7bf06a958740ff668b927a970be4f6b17b9d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 278e910a81b231c326267c2a8be769c7759f3ec815a1fd95e9ced36a26be3e838642746832a5d6c646d3ee78b7e8f0337af860d55e2d297b054b5a3102e8f579
|
7
|
+
data.tar.gz: 86e06b066a4d8a308949cc23356f3dac6f06d2acd5341196cbd1007c9bb964dae696fa23539b3951e10c55c050b8c1c0aebd8b381199b80d5c63c74bb770d01a
|
data/.gitignore
CHANGED
data/.travis.yml
CHANGED
data/LICENSE
ADDED
@@ -0,0 +1,201 @@
|
|
1
|
+
Apache License
|
2
|
+
Version 2.0, January 2004
|
3
|
+
http://www.apache.org/licenses/
|
4
|
+
|
5
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
6
|
+
|
7
|
+
1. Definitions.
|
8
|
+
|
9
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
10
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
11
|
+
|
12
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
13
|
+
the copyright owner that is granting the License.
|
14
|
+
|
15
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
16
|
+
other entities that control, are controlled by, or are under common
|
17
|
+
control with that entity. For the purposes of this definition,
|
18
|
+
"control" means (i) the power, direct or indirect, to cause the
|
19
|
+
direction or management of such entity, whether by contract or
|
20
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
21
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
22
|
+
|
23
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
24
|
+
exercising permissions granted by this License.
|
25
|
+
|
26
|
+
"Source" form shall mean the preferred form for making modifications,
|
27
|
+
including but not limited to software source code, documentation
|
28
|
+
source, and configuration files.
|
29
|
+
|
30
|
+
"Object" form shall mean any form resulting from mechanical
|
31
|
+
transformation or translation of a Source form, including but
|
32
|
+
not limited to compiled object code, generated documentation,
|
33
|
+
and conversions to other media types.
|
34
|
+
|
35
|
+
"Work" shall mean the work of authorship, whether in Source or
|
36
|
+
Object form, made available under the License, as indicated by a
|
37
|
+
copyright notice that is included in or attached to the work
|
38
|
+
(an example is provided in the Appendix below).
|
39
|
+
|
40
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
41
|
+
form, that is based on (or derived from) the Work and for which the
|
42
|
+
editorial revisions, annotations, elaborations, or other modifications
|
43
|
+
represent, as a whole, an original work of authorship. For the purposes
|
44
|
+
of this License, Derivative Works shall not include works that remain
|
45
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
46
|
+
the Work and Derivative Works thereof.
|
47
|
+
|
48
|
+
"Contribution" shall mean any work of authorship, including
|
49
|
+
the original version of the Work and any modifications or additions
|
50
|
+
to that Work or Derivative Works thereof, that is intentionally
|
51
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
52
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
53
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
54
|
+
means any form of electronic, verbal, or written communication sent
|
55
|
+
to the Licensor or its representatives, including but not limited to
|
56
|
+
communication on electronic mailing lists, source code control systems,
|
57
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
58
|
+
Licensor for the purpose of discussing and improving the Work, but
|
59
|
+
excluding communication that is conspicuously marked or otherwise
|
60
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
61
|
+
|
62
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
63
|
+
on behalf of whom a Contribution has been received by Licensor and
|
64
|
+
subsequently incorporated within the Work.
|
65
|
+
|
66
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
67
|
+
this License, each Contributor hereby grants to You a perpetual,
|
68
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
69
|
+
copyright license to reproduce, prepare Derivative Works of,
|
70
|
+
publicly display, publicly perform, sublicense, and distribute the
|
71
|
+
Work and such Derivative Works in Source or Object form.
|
72
|
+
|
73
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
74
|
+
this License, each Contributor hereby grants to You a perpetual,
|
75
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
76
|
+
(except as stated in this section) patent license to make, have made,
|
77
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
78
|
+
where such license applies only to those patent claims licensable
|
79
|
+
by such Contributor that are necessarily infringed by their
|
80
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
81
|
+
with the Work to which such Contribution(s) was submitted. If You
|
82
|
+
institute patent litigation against any entity (including a
|
83
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
84
|
+
or a Contribution incorporated within the Work constitutes direct
|
85
|
+
or contributory patent infringement, then any patent licenses
|
86
|
+
granted to You under this License for that Work shall terminate
|
87
|
+
as of the date such litigation is filed.
|
88
|
+
|
89
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
90
|
+
Work or Derivative Works thereof in any medium, with or without
|
91
|
+
modifications, and in Source or Object form, provided that You
|
92
|
+
meet the following conditions:
|
93
|
+
|
94
|
+
(a) You must give any other recipients of the Work or
|
95
|
+
Derivative Works a copy of this License; and
|
96
|
+
|
97
|
+
(b) You must cause any modified files to carry prominent notices
|
98
|
+
stating that You changed the files; and
|
99
|
+
|
100
|
+
(c) You must retain, in the Source form of any Derivative Works
|
101
|
+
that You distribute, all copyright, patent, trademark, and
|
102
|
+
attribution notices from the Source form of the Work,
|
103
|
+
excluding those notices that do not pertain to any part of
|
104
|
+
the Derivative Works; and
|
105
|
+
|
106
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
107
|
+
distribution, then any Derivative Works that You distribute must
|
108
|
+
include a readable copy of the attribution notices contained
|
109
|
+
within such NOTICE file, excluding those notices that do not
|
110
|
+
pertain to any part of the Derivative Works, in at least one
|
111
|
+
of the following places: within a NOTICE text file distributed
|
112
|
+
as part of the Derivative Works; within the Source form or
|
113
|
+
documentation, if provided along with the Derivative Works; or,
|
114
|
+
within a display generated by the Derivative Works, if and
|
115
|
+
wherever such third-party notices normally appear. The contents
|
116
|
+
of the NOTICE file are for informational purposes only and
|
117
|
+
do not modify the License. You may add Your own attribution
|
118
|
+
notices within Derivative Works that You distribute, alongside
|
119
|
+
or as an addendum to the NOTICE text from the Work, provided
|
120
|
+
that such additional attribution notices cannot be construed
|
121
|
+
as modifying the License.
|
122
|
+
|
123
|
+
You may add Your own copyright statement to Your modifications and
|
124
|
+
may provide additional or different license terms and conditions
|
125
|
+
for use, reproduction, or distribution of Your modifications, or
|
126
|
+
for any such Derivative Works as a whole, provided Your use,
|
127
|
+
reproduction, and distribution of the Work otherwise complies with
|
128
|
+
the conditions stated in this License.
|
129
|
+
|
130
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
131
|
+
any Contribution intentionally submitted for inclusion in the Work
|
132
|
+
by You to the Licensor shall be under the terms and conditions of
|
133
|
+
this License, without any additional terms or conditions.
|
134
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
135
|
+
the terms of any separate license agreement you may have executed
|
136
|
+
with Licensor regarding such Contributions.
|
137
|
+
|
138
|
+
6. Trademarks. This License does not grant permission to use the trade
|
139
|
+
names, trademarks, service marks, or product names of the Licensor,
|
140
|
+
except as required for reasonable and customary use in describing the
|
141
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
142
|
+
|
143
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
144
|
+
agreed to in writing, Licensor provides the Work (and each
|
145
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
146
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
147
|
+
implied, including, without limitation, any warranties or conditions
|
148
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
149
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
150
|
+
appropriateness of using or redistributing the Work and assume any
|
151
|
+
risks associated with Your exercise of permissions under this License.
|
152
|
+
|
153
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
154
|
+
whether in tort (including negligence), contract, or otherwise,
|
155
|
+
unless required by applicable law (such as deliberate and grossly
|
156
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
157
|
+
liable to You for damages, including any direct, indirect, special,
|
158
|
+
incidental, or consequential damages of any character arising as a
|
159
|
+
result of this License or out of the use or inability to use the
|
160
|
+
Work (including but not limited to damages for loss of goodwill,
|
161
|
+
work stoppage, computer failure or malfunction, or any and all
|
162
|
+
other commercial damages or losses), even if such Contributor
|
163
|
+
has been advised of the possibility of such damages.
|
164
|
+
|
165
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
166
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
167
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
168
|
+
or other liability obligations and/or rights consistent with this
|
169
|
+
License. However, in accepting such obligations, You may act only
|
170
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
171
|
+
of any other Contributor, and only if You agree to indemnify,
|
172
|
+
defend, and hold each Contributor harmless for any liability
|
173
|
+
incurred by, or claims asserted against, such Contributor by reason
|
174
|
+
of your accepting any such warranty or additional liability.
|
175
|
+
|
176
|
+
END OF TERMS AND CONDITIONS
|
177
|
+
|
178
|
+
APPENDIX: How to apply the Apache License to your work.
|
179
|
+
|
180
|
+
To apply the Apache License to your work, attach the following
|
181
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
182
|
+
replaced with your own identifying information. (Don't include
|
183
|
+
the brackets!) The text should be enclosed in the appropriate
|
184
|
+
comment syntax for the file format. We also recommend that a
|
185
|
+
file or class name and description of purpose be included on the
|
186
|
+
same "printed page" as the copyright notice for easier
|
187
|
+
identification within third-party archives.
|
188
|
+
|
189
|
+
Copyright [2014-2015] by [The Zooniverse]
|
190
|
+
|
191
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
192
|
+
you may not use this file except in compliance with the License.
|
193
|
+
You may obtain a copy of the License at
|
194
|
+
|
195
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
196
|
+
|
197
|
+
Unless required by applicable law or agreed to in writing, software
|
198
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
199
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
200
|
+
See the License for the specific language governing permissions and
|
201
|
+
limitations under the License.
|
data/README.md
CHANGED
@@ -1,19 +1,57 @@
|
|
1
|
-
# Cellect
|
1
|
+
# Cellect
|
2
|
+
|
3
|
+
A scalable subject selector for [Panoptes](https://github.com/zooniverse/panoptes)
|
4
|
+
|
5
|
+
[![Build Status](https://travis-ci.org/zooniverse/Cellect.svg?branch=master)](https://travis-ci.org/zooniverse/Cellect)
|
6
|
+
[![Test Coverage](https://codeclimate.com/github/zooniverse/Cellect/badges/coverage.svg)](https://codeclimate.com/github/zooniverse/Cellect)
|
7
|
+
[![Code Climate](https://codeclimate.com/github/zooniverse/Cellect/badges/gpa.svg)](https://codeclimate.com/github/zooniverse/Cellect)
|
8
|
+
[![Gem Version](https://img.shields.io/gem/v/cellect.svg)](https://rubygems.org/gems/cellect)
|
9
|
+
|
10
|
+
Available as
|
11
|
+
- [cellect-server](https://rubygems.org/gems/cellect-server)
|
12
|
+
- [cellect-client](https://rubygems.org/gems/cellect-client)
|
13
|
+
- [cellect](https://rubygems.org/gems/cellect)(combined)
|
14
|
+
|
15
|
+
## Cellect::Server
|
16
|
+
|
17
|
+
An actor based system that provides an API around subject selection actions. Server nodes are discovered via [ZooKeeper](http://zookeeper.apache.org/).
|
18
|
+
|
19
|
+
### Cellect::Server::Adapters
|
20
|
+
|
21
|
+
[An adapter](lib/cellect/server/adapters/default.rb) provides an API for defining the data to be used with the system.
|
22
|
+
|
23
|
+
We're overriding the default adapter with a customization in [cellect_panoptes](https://github.com/zooniverse/cellect_panoptes).
|
24
|
+
|
25
|
+
|
26
|
+
## Cellect::Client
|
27
|
+
|
28
|
+
Provides a mix of asynchronous and synchronous operations for server awareness and API communication.
|
2
29
|
|
3
|
-
This is a work in progress
|
4
30
|
|
5
31
|
## Building
|
6
32
|
|
7
|
-
1. Install [Boost V1.55](http://www.boost.org/): OS X: `brew update && brew install boost`, Ubuntu: `sudo apt-get update && sudo apt-get install libboost-all-dev`
|
33
|
+
1. Install [Boost V1.55+](http://www.boost.org/): OS X: `brew update && brew install boost`, Ubuntu: `sudo apt-get update && sudo apt-get install libboost-all-dev`
|
8
34
|
2. Install gem dependencies: `bundle` (See Note)
|
9
35
|
|
10
36
|
|
11
37
|
### Note
|
12
|
-
To install rice your Ruby must be compiled with shared libraries enabled, from the rice docs:
|
38
|
+
To install rice your Ruby must be compiled with shared libraries enabled, from the rice docs:
|
13
39
|
* rvm: `rvm reinstall [version] -- --enable-shared`
|
14
40
|
* rbenv: `CONFIGURE_OPTS="--enable-shared" rbenv install [version]`
|
15
41
|
|
16
42
|
|
17
43
|
## Testing
|
18
44
|
|
45
|
+
* You'll need a local Zookeeper server to run the specs (they will auto start / stop the server for you).
|
46
|
+
* `brew install zookeeper`
|
47
|
+
* Note: this may require a Java Runtime (JRE) install, `brew cask install java`
|
48
|
+
|
19
49
|
Run the specs with `rake`
|
50
|
+
|
51
|
+
## Start server:
|
52
|
+
|
53
|
+
`rackup # uses config.ru file`
|
54
|
+
|
55
|
+
## Versions
|
56
|
+
|
57
|
+
See .travis.yml for supported ruby versions
|
data/cellect.gemspec
CHANGED
@@ -27,6 +27,7 @@ Gem::Specification.new do |spec|
|
|
27
27
|
spec.add_development_dependency 'puma', '~> 2.8'
|
28
28
|
spec.add_development_dependency 'pg', '~> 0.17'
|
29
29
|
spec.add_development_dependency 'connection_pool', '~> 2.0'
|
30
|
+
spec.add_development_dependency 'codeclimate-test-reporter'
|
30
31
|
|
31
32
|
spec.add_runtime_dependency 'cellect-server', Cellect::VERSION
|
32
33
|
spec.add_runtime_dependency 'cellect-client', Cellect::VERSION
|
data/lib/cellect/node_set.rb
CHANGED
@@ -7,12 +7,14 @@ module Cellect
|
|
7
7
|
|
8
8
|
attr_accessor :zk, :state
|
9
9
|
|
10
|
+
# Sets up the node set and starts connecting to ZooKeeper
|
10
11
|
def initialize(zk_url = nil)
|
11
12
|
@zk_url = zk_url
|
12
13
|
self.state = :initializing
|
13
14
|
after(0.001){ async.initialize_zk } # don't block waiting for ZK to connect
|
14
15
|
end
|
15
16
|
|
17
|
+
# Connect to ZooKeeper, setup this node, and change state
|
16
18
|
def initialize_zk
|
17
19
|
# don't let ZK hang the thread, just retry connection on restart
|
18
20
|
Timeout::timeout(5) do
|
@@ -33,7 +35,7 @@ module Cellect
|
|
33
35
|
end
|
34
36
|
|
35
37
|
def setup
|
36
|
-
|
38
|
+
# Specialized in subclasses
|
37
39
|
end
|
38
40
|
end
|
39
41
|
end
|
@@ -10,7 +10,7 @@ module Cellect
|
|
10
10
|
PG.connect connection_options
|
11
11
|
end
|
12
12
|
end
|
13
|
-
|
13
|
+
|
14
14
|
def workflow_list(*names)
|
15
15
|
with_pg do |pg|
|
16
16
|
statement = 'SELECT * FROM workflows'
|
@@ -33,7 +33,7 @@ module Cellect
|
|
33
33
|
end
|
34
34
|
end
|
35
35
|
end
|
36
|
-
|
36
|
+
|
37
37
|
def load_data_for(workflow_name)
|
38
38
|
with_pg do |pg|
|
39
39
|
statement = <<-SQL
|
@@ -52,7 +52,7 @@ module Cellect
|
|
52
52
|
end
|
53
53
|
end
|
54
54
|
end
|
55
|
-
|
55
|
+
|
56
56
|
def load_user(workflow_name, id)
|
57
57
|
with_pg do |pg|
|
58
58
|
statement = <<-SQL
|
@@ -64,11 +64,11 @@ module Cellect
|
|
64
64
|
end
|
65
65
|
end
|
66
66
|
end
|
67
|
-
|
67
|
+
|
68
68
|
def with_pg
|
69
69
|
@pg.with{ |pg| yield pg }
|
70
70
|
end
|
71
|
-
|
71
|
+
|
72
72
|
def connection_options
|
73
73
|
{
|
74
74
|
host: ENV.fetch('PG_HOST', '127.0.0.1'),
|
@@ -2,15 +2,35 @@ module Cellect
|
|
2
2
|
module Server
|
3
3
|
class API
|
4
4
|
class Sets < Grape::API
|
5
|
+
# GET /workflows/:workflow_id
|
6
|
+
#
|
7
|
+
# Returns a sample from the specified workflow
|
8
|
+
# Accepts params
|
9
|
+
# limit: integer, default 5
|
10
|
+
# user_id: integer, optional
|
11
|
+
# group_id: integer, optional
|
5
12
|
get do
|
6
13
|
workflow.sample selector_params
|
7
14
|
end
|
8
15
|
|
16
|
+
# PUT /workflows/:workflow_id/add
|
17
|
+
#
|
18
|
+
# Adds a subject to a workflow or updates the priority
|
19
|
+
# Accepts params
|
20
|
+
# subject_id: integer
|
21
|
+
# group_id: integer, required if grouped
|
22
|
+
# priority: float, required if prioritized
|
9
23
|
put :add do
|
10
24
|
workflow.add update_params
|
11
25
|
nil
|
12
26
|
end
|
13
27
|
|
28
|
+
# PUT /workflows/:workflow_id/remove
|
29
|
+
#
|
30
|
+
# Removes a subject from a workflow
|
31
|
+
# Accepts params
|
32
|
+
# subject_id: integer
|
33
|
+
# group_id: integer, required if grouped
|
14
34
|
put :remove do
|
15
35
|
workflow.remove update_params
|
16
36
|
nil
|
@@ -4,6 +4,11 @@ module Cellect
|
|
4
4
|
class Users < Grape::API
|
5
5
|
resources :users do
|
6
6
|
segment '/:user_id' do
|
7
|
+
# PUT /workflows/:workflow_id/users/:user_id/add_seen
|
8
|
+
#
|
9
|
+
# Adds a subject to a user's seen set for a workflow
|
10
|
+
# Accepts params
|
11
|
+
# subject_id: integer, required
|
7
12
|
put :add_seen do
|
8
13
|
user_id = param_to_int :user_id
|
9
14
|
subject_id = param_to_int :subject_id
|
@@ -15,6 +20,9 @@ module Cellect
|
|
15
20
|
nil
|
16
21
|
end
|
17
22
|
|
23
|
+
# POST /workflows/:workflow_id/users/:user_id/load
|
24
|
+
#
|
25
|
+
# Preloads a user for a workflow
|
18
26
|
post :load do
|
19
27
|
user_id = param_to_int :user_id
|
20
28
|
|
data/lib/cellect/server/api.rb
CHANGED
@@ -9,6 +9,9 @@ module Cellect
|
|
9
9
|
require 'cellect/server/api/sets'
|
10
10
|
require 'cellect/server/api/users'
|
11
11
|
|
12
|
+
# GET /stats
|
13
|
+
#
|
14
|
+
# Provides system load information
|
12
15
|
get :stats do
|
13
16
|
usage = ->(keyword) do
|
14
17
|
`ps axo #{ keyword }`.chomp.split("\n")[1..-1].collect(&:to_f).inject :+
|
@@ -21,6 +24,10 @@ module Cellect
|
|
21
24
|
end
|
22
25
|
|
23
26
|
resources :workflows do
|
27
|
+
|
28
|
+
# GET /workflows
|
29
|
+
#
|
30
|
+
# Returns a list of available workflows
|
24
31
|
get do
|
25
32
|
Cellect::Server.adapter.workflow_list
|
26
33
|
end
|
@@ -30,14 +37,23 @@ module Cellect
|
|
30
37
|
mount Sets
|
31
38
|
mount Users
|
32
39
|
|
40
|
+
# GET /workflows/:workflow_id/status
|
41
|
+
#
|
42
|
+
# Returns the workflow's status
|
33
43
|
get :status do
|
34
44
|
workflow.status
|
35
45
|
end
|
36
46
|
|
47
|
+
# POST /workflows/:workflow_id/reload
|
48
|
+
#
|
49
|
+
# Reloads the workflow from the adapter
|
37
50
|
post :reload do
|
38
51
|
workflow.async.load_data
|
39
52
|
end
|
40
53
|
|
54
|
+
# DELETE /workflows/:workflow_id
|
55
|
+
#
|
56
|
+
# Not implemented
|
41
57
|
delete do
|
42
58
|
# delete a workflow (maybe?)
|
43
59
|
end
|
@@ -3,11 +3,13 @@ module Cellect
|
|
3
3
|
class GroupedWorkflow < Workflow
|
4
4
|
attr_accessor :groups
|
5
5
|
|
6
|
+
# Sets up the new workflow
|
6
7
|
def initialize(name, pairwise: false, prioritized: false)
|
7
8
|
self.groups = { }
|
8
9
|
super
|
9
10
|
end
|
10
11
|
|
12
|
+
# Load subjects from the adapter into their groups
|
11
13
|
def load_data
|
12
14
|
self.state = :initializing
|
13
15
|
self.groups = { }
|
@@ -19,14 +21,24 @@ module Cellect
|
|
19
21
|
self.state = :ready
|
20
22
|
end
|
21
23
|
|
24
|
+
# Returns a group by id or samples one randomly
|
22
25
|
def group(group_id = nil)
|
23
26
|
groups[group_id] || groups.values.sample
|
24
27
|
end
|
25
28
|
|
29
|
+
# Get unseen subjects from a group for a user
|
26
30
|
def unseen_for(user_name, group_id: nil, limit: 5)
|
27
31
|
group(group_id).subtract user(user_name).seen, limit
|
28
32
|
end
|
29
33
|
|
34
|
+
# Get a sample of subjects from a group for a user
|
35
|
+
#
|
36
|
+
# Accepts a hash in the form:
|
37
|
+
# {
|
38
|
+
# user_id: 123,
|
39
|
+
# group_id: 2,
|
40
|
+
# limit: 5
|
41
|
+
# }
|
30
42
|
def sample(opts = { })
|
31
43
|
if opts[:user_id]
|
32
44
|
unseen_for opts[:user_id], group_id: opts[:group_id], limit: opts[:limit]
|
@@ -35,6 +47,14 @@ module Cellect
|
|
35
47
|
end
|
36
48
|
end
|
37
49
|
|
50
|
+
# Adds or updates a subject in a group
|
51
|
+
#
|
52
|
+
# Accepts a hash in the form:
|
53
|
+
# {
|
54
|
+
# subject_id: 1,
|
55
|
+
# group_id: 2,
|
56
|
+
# priority: 0.5 # (if the workflow is prioritized)
|
57
|
+
# }
|
38
58
|
def add(opts = { })
|
39
59
|
if prioritized?
|
40
60
|
groups[opts[:group_id]].add opts[:subject_id], opts[:priority]
|
@@ -43,11 +63,20 @@ module Cellect
|
|
43
63
|
end
|
44
64
|
end
|
45
65
|
|
66
|
+
# Removes a subject from a group
|
67
|
+
#
|
68
|
+
# Accepts a hash in the form:
|
69
|
+
# {
|
70
|
+
# group_id: 1,
|
71
|
+
# subject_id: 2
|
72
|
+
# }
|
46
73
|
def remove(opts = { })
|
47
74
|
groups[opts[:group_id]].remove opts[:subject_id]
|
48
75
|
end
|
49
76
|
|
77
|
+
# General information about this workflow
|
50
78
|
def status
|
79
|
+
# Get the number of subjects in each group
|
51
80
|
group_counts = Hash[*groups.collect{ |id, set| [id, set.size] }.flatten]
|
52
81
|
|
53
82
|
super.merge({
|
@@ -8,10 +8,13 @@ module Cellect
|
|
8
8
|
|
9
9
|
protected
|
10
10
|
|
11
|
+
# Registers this server instance with ZooKeeper
|
11
12
|
def setup
|
12
13
|
zk.mkdir_p '/nodes'
|
14
|
+
# Find the local ipv4 address
|
13
15
|
address = Socket.ip_address_list.find{ |address| address.ipv4? && !address.ipv4_loopback? }
|
14
16
|
raise "Cannot identify IP address" unless address
|
17
|
+
# Register this instance with an autoincrementing id
|
15
18
|
path = zk.create '/nodes/node', data: address.ip_address, mode: :ephemeral_sequential
|
16
19
|
self.id = path.sub /^\/nodes\//, ''
|
17
20
|
end
|
data/lib/cellect/server/user.rb
CHANGED
@@ -4,12 +4,14 @@ module Cellect
|
|
4
4
|
include Celluloid
|
5
5
|
include Celluloid::Logger
|
6
6
|
|
7
|
+
# Gracefully exit when the actor dies
|
7
8
|
trap_exit :workflow_crashed
|
8
9
|
finalizer :cancel_ttl_timer
|
9
10
|
|
10
11
|
attr_accessor :id, :workflow_name, :seen, :state
|
11
12
|
attr_accessor :ttl, :ttl_timer
|
12
13
|
|
14
|
+
# Sets up a new user with an empty seen set, then loads the actual data
|
13
15
|
def initialize(id, workflow_name: nil, ttl: nil)
|
14
16
|
self.id = id
|
15
17
|
self.workflow_name = workflow_name
|
@@ -19,6 +21,7 @@ module Cellect
|
|
19
21
|
load_data
|
20
22
|
end
|
21
23
|
|
24
|
+
# Load the seen subjects for a user and restarts the TTL
|
22
25
|
def load_data
|
23
26
|
data = Cellect::Server.adapter.load_user(workflow_name, id) || []
|
24
27
|
data.each do |subject_id|
|
@@ -28,25 +31,25 @@ module Cellect
|
|
28
31
|
restart_ttl_timer
|
29
32
|
end
|
30
33
|
|
34
|
+
# Returns the seen subjects set
|
31
35
|
def seen
|
32
36
|
restart_ttl_timer
|
33
37
|
@seen
|
34
38
|
end
|
35
39
|
|
36
|
-
|
37
|
-
restart_ttl_timer if state == :ready && ttl
|
38
|
-
end
|
39
|
-
|
40
|
+
# (Re)starts the inactivity countdown
|
40
41
|
def restart_ttl_timer
|
41
42
|
self.ttl_timer ||= after(ttl){ ttl_expired! }
|
42
43
|
ttl_timer.reset
|
43
44
|
end
|
44
45
|
|
46
|
+
# Releases the timer
|
45
47
|
def cancel_ttl_timer
|
46
48
|
ttl_timer.cancel if ttl_timer
|
47
49
|
self.ttl_timer = nil
|
48
50
|
end
|
49
51
|
|
52
|
+
# Removes the user from inactivity
|
50
53
|
def ttl_expired!
|
51
54
|
debug "User #{ id } TTL expired"
|
52
55
|
cancel_ttl_timer
|
@@ -57,6 +60,7 @@ module Cellect
|
|
57
60
|
@ttl || 60 * 15 # 15 minutes
|
58
61
|
end
|
59
62
|
|
63
|
+
# Handle errors and let the actor die
|
60
64
|
def workflow_crashed(actor, reason)
|
61
65
|
cancel_ttl_timer
|
62
66
|
terminate
|
@@ -6,25 +6,30 @@ module Cellect
|
|
6
6
|
attr_accessor :name, :users, :subjects, :state
|
7
7
|
attr_accessor :pairwise, :prioritized
|
8
8
|
|
9
|
+
# Look up and/or load a workflow
|
9
10
|
def self.[](name)
|
10
11
|
Cellect::Server.adapter.load_workflows(name) unless Actor[name]
|
11
12
|
Actor[name].actors.first
|
12
13
|
end
|
13
14
|
|
15
|
+
# Load a workflow
|
14
16
|
def self.[]=(name, opts)
|
15
17
|
Actor[name] = supervise name, pairwise: opts['pairwise'], prioritized: opts['prioritized']
|
16
18
|
end
|
17
19
|
|
20
|
+
# The names of all workflows currently loaded
|
18
21
|
def self.names
|
19
22
|
actor_names = Celluloid.actor_system.registry.names.collect &:to_s
|
20
23
|
workflow_actors = actor_names.select{ |key| key =~ /^workflow_/ }
|
21
24
|
workflow_actors.collect{ |name| name.sub(/^workflow_/, '').to_sym }
|
22
25
|
end
|
23
26
|
|
27
|
+
# All currently loaded workflows
|
24
28
|
def self.all
|
25
29
|
names.collect{ |name| Workflow[name] }
|
26
30
|
end
|
27
31
|
|
32
|
+
# Sets up a new workflow and starts the data loading
|
28
33
|
def initialize(name, pairwise: false, prioritized: false)
|
29
34
|
self.name = name
|
30
35
|
self.users = { }
|
@@ -34,6 +39,7 @@ module Cellect
|
|
34
39
|
load_data
|
35
40
|
end
|
36
41
|
|
42
|
+
# Loads subjects from the adapter
|
37
43
|
def load_data
|
38
44
|
self.state = :initializing
|
39
45
|
self.subjects = set_klass.new
|
@@ -43,26 +49,37 @@ module Cellect
|
|
43
49
|
self.state = :ready
|
44
50
|
end
|
45
51
|
|
52
|
+
# Look up and/or load a user
|
46
53
|
def user(id)
|
47
54
|
self.users[id] ||= User.supervise id, workflow_name: name
|
48
55
|
users[id].actors.first
|
49
56
|
end
|
50
57
|
|
58
|
+
# Get unseen subjects for a user
|
51
59
|
def unseen_for(user_id, limit: 5)
|
52
60
|
subjects.subtract user(user_id).seen, limit
|
53
61
|
end
|
54
62
|
|
63
|
+
# Add subjects to a users seen set
|
55
64
|
def add_seen_for(user_id, *subject_ids)
|
56
65
|
[subject_ids].flatten.compact.each do |subject_id|
|
57
66
|
user(user_id).seen.add subject_id
|
58
67
|
end
|
59
68
|
end
|
60
69
|
|
70
|
+
# Unload a user
|
61
71
|
def remove_user(user_id)
|
62
72
|
removed = self.users.delete user_id
|
63
73
|
removed.terminate if removed
|
64
74
|
end
|
65
75
|
|
76
|
+
# Get a sample of subjects for a user
|
77
|
+
#
|
78
|
+
# Accepts a hash in the form:
|
79
|
+
# {
|
80
|
+
# user_id: 123,
|
81
|
+
# limit: 5
|
82
|
+
# }
|
66
83
|
def sample(opts = { })
|
67
84
|
if opts[:user_id]
|
68
85
|
unseen_for opts[:user_id], limit: opts[:limit]
|
@@ -71,6 +88,13 @@ module Cellect
|
|
71
88
|
end
|
72
89
|
end
|
73
90
|
|
91
|
+
# Adds or updates a subject
|
92
|
+
#
|
93
|
+
# Accepts a hash in the form:
|
94
|
+
# {
|
95
|
+
# subject_id: 1,
|
96
|
+
# priority: 0.5 # (if the workflow is prioritized)
|
97
|
+
# }
|
74
98
|
def add(opts = { })
|
75
99
|
if prioritized?
|
76
100
|
subjects.add opts[:subject_id], opts[:priority]
|
@@ -79,6 +103,12 @@ module Cellect
|
|
79
103
|
end
|
80
104
|
end
|
81
105
|
|
106
|
+
# Removes a subject
|
107
|
+
#
|
108
|
+
# Accepts a hash in the form:
|
109
|
+
# {
|
110
|
+
# subject_id: 1
|
111
|
+
# }
|
82
112
|
def remove(opts = { })
|
83
113
|
subjects.remove opts[:subject_id]
|
84
114
|
end
|
@@ -99,6 +129,7 @@ module Cellect
|
|
99
129
|
state == :ready
|
100
130
|
end
|
101
131
|
|
132
|
+
# Provide a lookup for matching sets to workflow criteria
|
102
133
|
SET_KLASS = {
|
103
134
|
# priority, pairwise
|
104
135
|
[ false, false ] => DiffSet::RandomSet,
|
@@ -107,10 +138,12 @@ module Cellect
|
|
107
138
|
[ true, true ] => DiffSet::PairwisePrioritySet
|
108
139
|
}
|
109
140
|
|
141
|
+
# Looks up the set class
|
110
142
|
def set_klass
|
111
143
|
SET_KLASS[[prioritized, pairwise]]
|
112
144
|
end
|
113
145
|
|
146
|
+
# General information about this workflow
|
114
147
|
def status
|
115
148
|
{
|
116
149
|
state: state,
|
data/lib/cellect/server.rb
CHANGED
data/lib/cellect/version.rb
CHANGED
data/spec/spec_helper.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: cellect-server
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Michael Parrish
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-
|
11
|
+
date: 2015-11-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -231,6 +231,7 @@ files:
|
|
231
231
|
- ".rspec"
|
232
232
|
- ".travis.yml"
|
233
233
|
- Gemfile
|
234
|
+
- LICENSE
|
234
235
|
- README.md
|
235
236
|
- Rakefile
|
236
237
|
- cellect-server.gemspec
|
@@ -303,7 +304,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
303
304
|
version: '0'
|
304
305
|
requirements: []
|
305
306
|
rubyforge_project:
|
306
|
-
rubygems_version: 2.
|
307
|
+
rubygems_version: 2.5.0
|
307
308
|
signing_key:
|
308
309
|
specification_version: 4
|
309
310
|
summary: ''
|