smart_engine 0.15.0 → 0.16.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -0
- data/Gemfile.lock +1 -1
- data/lib/smart_core/engine/read_write_lock.rb +12 -7
- data/lib/smart_core/engine/version.rb +2 -2
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f3f6a846502241aa2029b692dc4f0c81ee004527a3242b750b7c6ea10a37872a
|
4
|
+
data.tar.gz: 9bec4690bf081407fc7262610e978065f99422f57df2c1d673469d53cf6f142f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 40e93990c49475cf764d2baf118f32409d0cc6461f5892de680d5222f040110f17c755540284c35a5dbf34d604a62d5255a5d63fa7e9c03035fad1680eafa867
|
7
|
+
data.tar.gz: c182166a23faf3ae36202af92048b1a258847ea1de9541deabbee367101af68cfb67bb1d818c634ae8a92da7e8a24c4f94102185f8a7c75c3b43c2da9057f456
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,10 @@
|
|
1
1
|
# Changelog
|
2
2
|
All notable changes to this project will be documented in this file.
|
3
3
|
|
4
|
+
## [0.16.0] - 2022-09-30
|
5
|
+
### Changed
|
6
|
+
- `SmartCore::Engine::ReadWriteLock` does not lock the current thread if the current thread has already acquired the lock;
|
7
|
+
|
4
8
|
## [0.15.0] - 2022-09-30
|
5
9
|
### Added
|
6
10
|
- `SmartCore::Engine::ReadWriteLock#write_owned?` - checking that write lock is owned by current thread or not;
|
data/Gemfile.lock
CHANGED
@@ -42,14 +42,19 @@ class SmartCore::Engine::ReadWriteLock
|
|
42
42
|
#
|
43
43
|
# @api public
|
44
44
|
# @since 0.14.0
|
45
|
+
# @version 0.16.0
|
45
46
|
def write_sync(&block)
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
47
|
+
if @write_lock.owned?
|
48
|
+
yield
|
49
|
+
else
|
50
|
+
while @active_reader do; end
|
51
|
+
@write_lock.synchronize do
|
52
|
+
@active_reader = true
|
53
|
+
begin
|
54
|
+
yield
|
55
|
+
ensure
|
56
|
+
@active_reader = false
|
57
|
+
end
|
53
58
|
end
|
54
59
|
end
|
55
60
|
end
|