thread_safe_uniqueness_record 0.1.0 → 0.1.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- metadata +7 -26
- data/.circleci/config.yml +0 -23
- data/.gitignore +0 -14
- data/.rspec +0 -3
- data/.rubocop.yml +0 -11
- data/CHANGELOG.md +0 -0
- data/CODE_OF_CONDUCT.md +0 -74
- data/Gemfile +0 -4
- data/LICENSE.txt +0 -21
- data/README.md +0 -61
- data/Rakefile +0 -6
- data/bin/console +0 -13
- data/bin/setup +0 -8
- data/exe/thread_safe_uniqueness_record +0 -2
- data/lib/thread_safe_uniqueness_record.rb +0 -31
- data/lib/thread_safe_uniqueness_record/find_or_create_by.rb +0 -11
- data/lib/thread_safe_uniqueness_record/version.rb +0 -3
- data/thread_safe_uniqueness_record.gemspec +0 -33
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2bf4c93069a1136251fd084b86325d84e8cfd71ebadea46f47e81e04377fd8a8
|
4
|
+
data.tar.gz: 5d09a1c56a10682ad1603cd64ad2fcd3adb418de0526f26017840965481a6240
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: '08ae52edaf3d1e0d82cb65221be89a1f6b9cd473446fa4bb6f8dbd68f4696f80f442512a0295deeb067f2f99f8ca93597d3d7496d63c18c9dfabc2a52409ddd1'
|
7
|
+
data.tar.gz: 24c5b6b4fb5e1556e46e385819e47d08352d18c575f09cf36e421b7af159b091dd058d287c581d9522fd13c5b3fde9d8716022bacd785d4318e20bb7f7393da3
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: thread_safe_uniqueness_record
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Aleksey Strizhak
|
8
8
|
autorequire:
|
9
|
-
bindir:
|
9
|
+
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-
|
11
|
+
date: 2020-11-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activerecord
|
@@ -80,32 +80,13 @@ dependencies:
|
|
80
80
|
- - ">="
|
81
81
|
- !ruby/object:Gem::Version
|
82
82
|
version: '0'
|
83
|
-
description:
|
84
|
-
creations
|
83
|
+
description: Prevents of thread race conditions for ActiveRecord unique model creations
|
85
84
|
email:
|
86
85
|
- alexei.mifrill.strizhak@gmail.com
|
87
|
-
executables:
|
88
|
-
- thread_safe_uniqueness_record
|
86
|
+
executables: []
|
89
87
|
extensions: []
|
90
88
|
extra_rdoc_files: []
|
91
|
-
files:
|
92
|
-
- ".circleci/config.yml"
|
93
|
-
- ".gitignore"
|
94
|
-
- ".rspec"
|
95
|
-
- ".rubocop.yml"
|
96
|
-
- CHANGELOG.md
|
97
|
-
- CODE_OF_CONDUCT.md
|
98
|
-
- Gemfile
|
99
|
-
- LICENSE.txt
|
100
|
-
- README.md
|
101
|
-
- Rakefile
|
102
|
-
- bin/console
|
103
|
-
- bin/setup
|
104
|
-
- exe/thread_safe_uniqueness_record
|
105
|
-
- lib/thread_safe_uniqueness_record.rb
|
106
|
-
- lib/thread_safe_uniqueness_record/find_or_create_by.rb
|
107
|
-
- lib/thread_safe_uniqueness_record/version.rb
|
108
|
-
- thread_safe_uniqueness_record.gemspec
|
89
|
+
files: []
|
109
90
|
homepage: https://github.com/Mifrill/thread_safe_uniqueness_record.git
|
110
91
|
licenses:
|
111
92
|
- MIT
|
@@ -130,5 +111,5 @@ requirements: []
|
|
130
111
|
rubygems_version: 3.0.3
|
131
112
|
signing_key:
|
132
113
|
specification_version: 4
|
133
|
-
summary: Thread safe
|
114
|
+
summary: Thread safe creator of unique ActiveRecord model
|
134
115
|
test_files: []
|
data/.circleci/config.yml
DELETED
@@ -1,23 +0,0 @@
|
|
1
|
-
version: 2.1
|
2
|
-
|
3
|
-
# Define the jobs we want to run for this project
|
4
|
-
jobs:
|
5
|
-
build:
|
6
|
-
docker:
|
7
|
-
- image: circleci/ruby:2.6.5
|
8
|
-
steps:
|
9
|
-
- checkout
|
10
|
-
test:
|
11
|
-
docker:
|
12
|
-
- image: circleci/ruby:2.6.5
|
13
|
-
steps:
|
14
|
-
- checkout
|
15
|
-
- run: bundle install
|
16
|
-
- run: bundle exec rspec
|
17
|
-
|
18
|
-
# Orchestrate our job run sequence
|
19
|
-
workflows:
|
20
|
-
build_and_test:
|
21
|
-
jobs:
|
22
|
-
- build
|
23
|
-
- test
|
data/.gitignore
DELETED
data/.rspec
DELETED
data/.rubocop.yml
DELETED
data/CHANGELOG.md
DELETED
File without changes
|
data/CODE_OF_CONDUCT.md
DELETED
@@ -1,74 +0,0 @@
|
|
1
|
-
# Contributor Covenant Code of Conduct
|
2
|
-
|
3
|
-
## Our Pledge
|
4
|
-
|
5
|
-
In the interest of fostering an open and welcoming environment, we as
|
6
|
-
contributors and maintainers pledge to making participation in our project and
|
7
|
-
our community a harassment-free experience for everyone, regardless of age, body
|
8
|
-
size, disability, ethnicity, gender identity and expression, level of experience,
|
9
|
-
nationality, personal appearance, race, religion, or sexual identity and
|
10
|
-
orientation.
|
11
|
-
|
12
|
-
## Our Standards
|
13
|
-
|
14
|
-
Examples of behavior that contributes to creating a positive environment
|
15
|
-
include:
|
16
|
-
|
17
|
-
* Using welcoming and inclusive language
|
18
|
-
* Being respectful of differing viewpoints and experiences
|
19
|
-
* Gracefully accepting constructive criticism
|
20
|
-
* Focusing on what is best for the community
|
21
|
-
* Showing empathy towards other community members
|
22
|
-
|
23
|
-
Examples of unacceptable behavior by participants include:
|
24
|
-
|
25
|
-
* The use of sexualized language or imagery and unwelcome sexual attention or
|
26
|
-
advances
|
27
|
-
* Trolling, insulting/derogatory comments, and personal or political attacks
|
28
|
-
* Public or private harassment
|
29
|
-
* Publishing others' private information, such as a physical or electronic
|
30
|
-
address, without explicit permission
|
31
|
-
* Other conduct which could reasonably be considered inappropriate in a
|
32
|
-
professional setting
|
33
|
-
|
34
|
-
## Our Responsibilities
|
35
|
-
|
36
|
-
Project maintainers are responsible for clarifying the standards of acceptable
|
37
|
-
behavior and are expected to take appropriate and fair corrective action in
|
38
|
-
response to any instances of unacceptable behavior.
|
39
|
-
|
40
|
-
Project maintainers have the right and responsibility to remove, edit, or
|
41
|
-
reject comments, commits, code, wiki edits, issues, and other contributions
|
42
|
-
that are not aligned to this Code of Conduct, or to ban temporarily or
|
43
|
-
permanently any contributor for other behaviors that they deem inappropriate,
|
44
|
-
threatening, offensive, or harmful.
|
45
|
-
|
46
|
-
## Scope
|
47
|
-
|
48
|
-
This Code of Conduct applies both within project spaces and in public spaces
|
49
|
-
when an individual is representing the project or its community. Examples of
|
50
|
-
representing a project or community include using an official project e-mail
|
51
|
-
address, posting via an official social media account, or acting as an appointed
|
52
|
-
representative at an online or offline event. Representation of a project may be
|
53
|
-
further defined and clarified by project maintainers.
|
54
|
-
|
55
|
-
## Enforcement
|
56
|
-
|
57
|
-
Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
58
|
-
reported by contacting the project team at alexei.mifrill.strizhak@gmail.com. All
|
59
|
-
complaints will be reviewed and investigated and will result in a response that
|
60
|
-
is deemed necessary and appropriate to the circumstances. The project team is
|
61
|
-
obligated to maintain confidentiality with regard to the reporter of an incident.
|
62
|
-
Further details of specific enforcement policies may be posted separately.
|
63
|
-
|
64
|
-
Project maintainers who do not follow or enforce the Code of Conduct in good
|
65
|
-
faith may face temporary or permanent repercussions as determined by other
|
66
|
-
members of the project's leadership.
|
67
|
-
|
68
|
-
## Attribution
|
69
|
-
|
70
|
-
This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
|
71
|
-
available at [https://contributor-covenant.org/version/1/4][version]
|
72
|
-
|
73
|
-
[homepage]: https://contributor-covenant.org
|
74
|
-
[version]: https://contributor-covenant.org/version/1/4/
|
data/Gemfile
DELETED
data/LICENSE.txt
DELETED
@@ -1,21 +0,0 @@
|
|
1
|
-
The MIT License (MIT)
|
2
|
-
|
3
|
-
Copyright (c) 2020 Aleksey Strizhak
|
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
DELETED
@@ -1,61 +0,0 @@
|
|
1
|
-
[![CircleCI](https://circleci.com/gh/Mifrill/thread_safe_uniqueness_record.svg?style=svg)](https://app.circleci.com/pipelines/github/Mifrill/thread_safe_uniqueness_record)
|
2
|
-
|
3
|
-
# ThreadSafeUniquenessRecord
|
4
|
-
|
5
|
-
Usage is raised by thread race when the first thread tries to create
|
6
|
-
the record at the same time the second thread is trying to create exactly
|
7
|
-
the same record because both threads are seen no such record in DB
|
8
|
-
on find_by action by the passed attributes.
|
9
|
-
|
10
|
-
[Rails implementation of `create_or_find_by`](https://github.com/rails/rails/blob/24c1429a9e553196eb72312ec831afb6268222b1/activerecord/lib/active_record/relation.rb#L179-L222)
|
11
|
-
|
12
|
-
In thread race when both of threads proceed after the passed
|
13
|
-
uniqueness validation in model without raise of RecordInvalid error
|
14
|
-
and one of the thread has committed the change in DB then the second thread
|
15
|
-
fires the RecordNotUnique error with retry on the rescue.
|
16
|
-
|
17
|
-
The attempts limiter is required to prevent the infinite loop when tries
|
18
|
-
to create the record which can't be found by the passed attributes but
|
19
|
-
becomes a duplicate by any other attributes.
|
20
|
-
|
21
|
-
## Installation
|
22
|
-
|
23
|
-
Add this line to your application's Gemfile:
|
24
|
-
|
25
|
-
```ruby
|
26
|
-
gem 'thread_safe_uniqueness_record'
|
27
|
-
```
|
28
|
-
|
29
|
-
And then execute:
|
30
|
-
|
31
|
-
$ bundle install
|
32
|
-
|
33
|
-
Or install it yourself as:
|
34
|
-
|
35
|
-
$ gem install thread_safe_uniqueness_record
|
36
|
-
|
37
|
-
## Usage
|
38
|
-
|
39
|
-
model_klass: ActiveRecordModel
|
40
|
-
attributes: Hash of model instance attributes
|
41
|
-
|
42
|
-
ThreadSafeUniquenessRecord::FindOrCreateBy.call(model_klass: model_klass, attributes: attributes)
|
43
|
-
|
44
|
-
## Development
|
45
|
-
|
46
|
-
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.
|
47
|
-
|
48
|
-
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).
|
49
|
-
|
50
|
-
## Contributing
|
51
|
-
|
52
|
-
Bug reports and pull requests are welcome on GitHub at https://github.com/Mifrill/thread_safe_uniqueness_record. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://github.com/Mifrill/thread_safe_uniqueness_record/blob/master/CODE_OF_CONDUCT.md).
|
53
|
-
|
54
|
-
|
55
|
-
## License
|
56
|
-
|
57
|
-
The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
|
58
|
-
|
59
|
-
## Code of Conduct
|
60
|
-
|
61
|
-
Everyone interacting in the ThreadSafeUniquenessRecord project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/Mifrill/thread_safe_uniqueness_record/blob/master/CODE_OF_CONDUCT.md).
|
data/Rakefile
DELETED
data/bin/console
DELETED
@@ -1,13 +0,0 @@
|
|
1
|
-
#!/usr/bin/env ruby
|
2
|
-
require 'bundler/setup'
|
3
|
-
require 'thread_safe_uniqueness_record'
|
4
|
-
|
5
|
-
# You can add fixtures and/or initialization code here to make experimenting
|
6
|
-
# with your gem easier. You can also use a different console, if you like.
|
7
|
-
|
8
|
-
# (If you use this, don't forget to add pry to your Gemfile!)
|
9
|
-
# require "pry"
|
10
|
-
# Pry.start
|
11
|
-
|
12
|
-
require 'irb'
|
13
|
-
IRB.start(__FILE__)
|
data/bin/setup
DELETED
@@ -1,31 +0,0 @@
|
|
1
|
-
require 'thread_safe_uniqueness_record/version'
|
2
|
-
require 'thread_safe_uniqueness_record/find_or_create_by'
|
3
|
-
require 'active_record'
|
4
|
-
require 'concurrent'
|
5
|
-
|
6
|
-
module ThreadSafeUniquenessRecord
|
7
|
-
class Error < StandardError; end
|
8
|
-
|
9
|
-
class UniquenessValidationError
|
10
|
-
def self.===(exception)
|
11
|
-
exception.is_a?(ActiveRecord::RecordInvalid) &&
|
12
|
-
/Validation failed:.+\btaken\b/.match?(exception.message)
|
13
|
-
end
|
14
|
-
end
|
15
|
-
|
16
|
-
MAX_TRIES = 3
|
17
|
-
ERRORS = [
|
18
|
-
UniquenessValidationError,
|
19
|
-
ActiveRecord::RecordNotUnique
|
20
|
-
].freeze
|
21
|
-
|
22
|
-
def self.with_retry
|
23
|
-
attempts ||= Concurrent::ThreadLocalVar.new(0)
|
24
|
-
yield
|
25
|
-
rescue *ERRORS => e
|
26
|
-
attempts.value += 1
|
27
|
-
raise e if attempts.value >= MAX_TRIES
|
28
|
-
|
29
|
-
retry
|
30
|
-
end
|
31
|
-
end
|
@@ -1,11 +0,0 @@
|
|
1
|
-
module ThreadSafeUniquenessRecord
|
2
|
-
class FindOrCreateBy
|
3
|
-
def self.call(model_klass:, attributes:)
|
4
|
-
ThreadSafeUniquenessRecord.with_retry do
|
5
|
-
ActiveRecord::Base.transaction(requires_new: true) do
|
6
|
-
model_klass.find_or_create_by!(attributes)
|
7
|
-
end
|
8
|
-
end
|
9
|
-
end
|
10
|
-
end
|
11
|
-
end
|
@@ -1,33 +0,0 @@
|
|
1
|
-
require_relative 'lib/thread_safe_uniqueness_record/version'
|
2
|
-
|
3
|
-
Gem::Specification.new do |spec|
|
4
|
-
spec.name = 'thread_safe_uniqueness_record'
|
5
|
-
spec.version = ThreadSafeUniquenessRecord::VERSION
|
6
|
-
spec.authors = ['Aleksey Strizhak']
|
7
|
-
spec.email = ['alexei.mifrill.strizhak@gmail.com']
|
8
|
-
|
9
|
-
spec.summary = 'Thread safe creation of unique ActiveRecord'
|
10
|
-
spec.description = 'The preventer of thread race conditions for ActiveRecord unique model creations'
|
11
|
-
spec.homepage = 'https://github.com/Mifrill/thread_safe_uniqueness_record.git'
|
12
|
-
spec.license = 'MIT'
|
13
|
-
spec.required_ruby_version = Gem::Requirement.new('>= 2.3.0')
|
14
|
-
|
15
|
-
spec.metadata['homepage_uri'] = spec.homepage
|
16
|
-
spec.metadata['changelog_uri'] = 'https://github.com/Mifrill/thread_safe_uniqueness_record/blob/master/CHANGELOG.md'
|
17
|
-
|
18
|
-
# Specify which files should be added to the gem when it is released.
|
19
|
-
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
|
20
|
-
spec.files = Dir.chdir(File.expand_path(__dir__)) do
|
21
|
-
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
22
|
-
end
|
23
|
-
spec.bindir = 'exe'
|
24
|
-
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
25
|
-
spec.require_paths = ['lib']
|
26
|
-
|
27
|
-
spec.add_runtime_dependency 'activerecord'
|
28
|
-
spec.add_runtime_dependency 'concurrent-ruby'
|
29
|
-
|
30
|
-
spec.add_development_dependency 'byebug'
|
31
|
-
spec.add_development_dependency 'rspec', '~> 3.8'
|
32
|
-
spec.add_development_dependency 'sqlite3'
|
33
|
-
end
|