concurrent-ruby 1.0.5 → 1.1.0.pre2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/CHANGELOG.md +44 -0
- data/Gemfile +39 -0
- data/{LICENSE.txt → LICENSE.md} +2 -0
- data/README.md +203 -105
- data/Rakefile +279 -0
- data/ext/concurrent-ruby/ConcurrentRubyService.java +17 -0
- data/ext/concurrent-ruby/com/concurrent_ruby/ext/AtomicReferenceLibrary.java +175 -0
- data/ext/concurrent-ruby/com/concurrent_ruby/ext/JRubyMapBackendLibrary.java +248 -0
- data/ext/concurrent-ruby/com/concurrent_ruby/ext/JavaAtomicBooleanLibrary.java +93 -0
- data/ext/concurrent-ruby/com/concurrent_ruby/ext/JavaAtomicFixnumLibrary.java +113 -0
- data/ext/concurrent-ruby/com/concurrent_ruby/ext/JavaSemaphoreLibrary.java +159 -0
- data/ext/concurrent-ruby/com/concurrent_ruby/ext/SynchronizationLibrary.java +304 -0
- data/ext/concurrent-ruby/com/concurrent_ruby/ext/jsr166e/ConcurrentHashMap.java +31 -0
- data/ext/concurrent-ruby/com/concurrent_ruby/ext/jsr166e/ConcurrentHashMapV8.java +3863 -0
- data/ext/concurrent-ruby/com/concurrent_ruby/ext/jsr166e/LongAdder.java +203 -0
- data/ext/concurrent-ruby/com/concurrent_ruby/ext/jsr166e/Striped64.java +342 -0
- data/ext/concurrent-ruby/com/concurrent_ruby/ext/jsr166e/nounsafe/ConcurrentHashMapV8.java +3800 -0
- data/ext/concurrent-ruby/com/concurrent_ruby/ext/jsr166e/nounsafe/LongAdder.java +204 -0
- data/ext/concurrent-ruby/com/concurrent_ruby/ext/jsr166e/nounsafe/Striped64.java +291 -0
- data/ext/concurrent-ruby/com/concurrent_ruby/ext/jsr166y/ThreadLocalRandom.java +199 -0
- data/lib/concurrent-ruby.rb +1 -0
- data/lib/concurrent.rb +24 -20
- data/lib/concurrent/agent.rb +7 -7
- data/lib/concurrent/array.rb +59 -32
- data/lib/concurrent/async.rb +4 -4
- data/lib/concurrent/atom.rb +9 -9
- data/lib/concurrent/atomic/atomic_boolean.rb +24 -20
- data/lib/concurrent/atomic/atomic_fixnum.rb +27 -23
- data/lib/concurrent/atomic/atomic_markable_reference.rb +164 -0
- data/lib/concurrent/atomic/atomic_reference.rb +176 -33
- data/lib/concurrent/atomic/count_down_latch.rb +6 -6
- data/lib/concurrent/atomic/cyclic_barrier.rb +1 -1
- data/lib/concurrent/atomic/event.rb +1 -1
- data/lib/concurrent/atomic/java_count_down_latch.rb +6 -5
- data/lib/concurrent/atomic/mutex_count_down_latch.rb +1 -0
- data/lib/concurrent/atomic/read_write_lock.rb +2 -1
- data/lib/concurrent/atomic/reentrant_read_write_lock.rb +3 -1
- data/lib/concurrent/atomic/semaphore.rb +8 -8
- data/lib/concurrent/atomic/thread_local_var.rb +7 -7
- data/lib/concurrent/atomic_reference/mutex_atomic.rb +3 -8
- data/lib/concurrent/atomic_reference/numeric_cas_wrapper.rb +1 -1
- data/lib/concurrent/atomics.rb +0 -43
- data/lib/concurrent/collection/lock_free_stack.rb +158 -0
- data/lib/concurrent/collection/map/atomic_reference_map_backend.rb +3 -3
- data/lib/concurrent/collection/map/non_concurrent_map_backend.rb +1 -2
- data/lib/concurrent/collection/non_concurrent_priority_queue.rb +29 -29
- data/lib/concurrent/concern/dereferenceable.rb +1 -1
- data/lib/concurrent/concern/logging.rb +6 -1
- data/lib/concurrent/concern/observable.rb +7 -7
- data/lib/concurrent/concurrent_ruby.jar +0 -0
- data/lib/concurrent/configuration.rb +1 -6
- data/lib/concurrent/constants.rb +1 -1
- data/lib/concurrent/dataflow.rb +2 -1
- data/lib/concurrent/delay.rb +9 -7
- data/lib/concurrent/exchanger.rb +13 -21
- data/lib/concurrent/executor/abstract_executor_service.rb +2 -2
- data/lib/concurrent/executor/cached_thread_pool.rb +1 -1
- data/lib/concurrent/executor/executor_service.rb +15 -15
- data/lib/concurrent/executor/fixed_thread_pool.rb +18 -18
- data/lib/concurrent/executor/java_thread_pool_executor.rb +10 -7
- data/lib/concurrent/executor/single_thread_executor.rb +2 -2
- data/lib/concurrent/executor/thread_pool_executor.rb +6 -6
- data/lib/concurrent/executor/timer_set.rb +1 -1
- data/lib/concurrent/future.rb +4 -1
- data/lib/concurrent/hash.rb +53 -30
- data/lib/concurrent/ivar.rb +5 -6
- data/lib/concurrent/map.rb +20 -25
- data/lib/concurrent/maybe.rb +1 -1
- data/lib/concurrent/mutable_struct.rb +15 -14
- data/lib/concurrent/mvar.rb +2 -2
- data/lib/concurrent/promise.rb +53 -21
- data/lib/concurrent/promises.rb +1936 -0
- data/lib/concurrent/re_include.rb +58 -0
- data/lib/concurrent/set.rb +66 -0
- data/lib/concurrent/settable_struct.rb +1 -0
- data/lib/concurrent/synchronization.rb +4 -5
- data/lib/concurrent/synchronization/abstract_lockable_object.rb +5 -5
- data/lib/concurrent/synchronization/abstract_struct.rb +6 -4
- data/lib/concurrent/synchronization/lockable_object.rb +6 -6
- data/lib/concurrent/synchronization/{mri_lockable_object.rb → mutex_lockable_object.rb} +19 -14
- data/lib/concurrent/synchronization/object.rb +8 -4
- data/lib/concurrent/synchronization/truffleruby_object.rb +46 -0
- data/lib/concurrent/synchronization/volatile.rb +11 -9
- data/lib/concurrent/thread_safe/util/data_structures.rb +55 -0
- data/lib/concurrent/thread_safe/util/striped64.rb +9 -4
- data/lib/concurrent/timer_task.rb +5 -2
- data/lib/concurrent/tuple.rb +1 -1
- data/lib/concurrent/tvar.rb +2 -2
- data/lib/concurrent/utility/at_exit.rb +1 -1
- data/lib/concurrent/utility/engine.rb +2 -2
- data/lib/concurrent/utility/monotonic_time.rb +3 -3
- data/lib/concurrent/utility/native_extension_loader.rb +31 -33
- data/lib/concurrent/utility/processor_counter.rb +0 -2
- data/lib/concurrent/version.rb +2 -2
- metadata +35 -21
- data/lib/concurrent/atomic_reference/concurrent_update_error.rb +0 -8
- data/lib/concurrent/atomic_reference/direct_update.rb +0 -81
- data/lib/concurrent/atomic_reference/jruby+truffle.rb +0 -2
- data/lib/concurrent/atomic_reference/jruby.rb +0 -16
- data/lib/concurrent/atomic_reference/rbx.rb +0 -22
- data/lib/concurrent/atomic_reference/ruby.rb +0 -32
- data/lib/concurrent/edge.rb +0 -26
- data/lib/concurrent/lazy_register.rb +0 -81
- data/lib/concurrent/synchronization/truffle_lockable_object.rb +0 -9
- data/lib/concurrent/synchronization/truffle_object.rb +0 -31
- data/lib/concurrent/thread_safe/util/array_hash_rbx.rb +0 -30
@@ -0,0 +1,159 @@
|
|
1
|
+
package com.concurrent_ruby.ext;
|
2
|
+
|
3
|
+
import java.io.IOException;
|
4
|
+
import java.util.concurrent.Semaphore;
|
5
|
+
import org.jruby.Ruby;
|
6
|
+
import org.jruby.RubyClass;
|
7
|
+
import org.jruby.RubyFixnum;
|
8
|
+
import org.jruby.RubyModule;
|
9
|
+
import org.jruby.RubyNumeric;
|
10
|
+
import org.jruby.RubyObject;
|
11
|
+
import org.jruby.anno.JRubyClass;
|
12
|
+
import org.jruby.anno.JRubyMethod;
|
13
|
+
import org.jruby.runtime.ObjectAllocator;
|
14
|
+
import org.jruby.runtime.ThreadContext;
|
15
|
+
import org.jruby.runtime.builtin.IRubyObject;
|
16
|
+
|
17
|
+
public class JavaSemaphoreLibrary {
|
18
|
+
|
19
|
+
public void load(Ruby runtime, boolean wrap) throws IOException {
|
20
|
+
RubyModule concurrentMod = runtime.defineModule("Concurrent");
|
21
|
+
RubyClass atomicCls = concurrentMod.defineClassUnder("JavaSemaphore", runtime.getObject(), JRUBYREFERENCE_ALLOCATOR);
|
22
|
+
|
23
|
+
atomicCls.defineAnnotatedMethods(JavaSemaphore.class);
|
24
|
+
}
|
25
|
+
|
26
|
+
private static final ObjectAllocator JRUBYREFERENCE_ALLOCATOR = new ObjectAllocator() {
|
27
|
+
public IRubyObject allocate(Ruby runtime, RubyClass klazz) {
|
28
|
+
return new JavaSemaphore(runtime, klazz);
|
29
|
+
}
|
30
|
+
};
|
31
|
+
|
32
|
+
@JRubyClass(name = "JavaSemaphore", parent = "Object")
|
33
|
+
public static class JavaSemaphore extends RubyObject {
|
34
|
+
|
35
|
+
private JRubySemaphore semaphore;
|
36
|
+
|
37
|
+
public JavaSemaphore(Ruby runtime, RubyClass metaClass) {
|
38
|
+
super(runtime, metaClass);
|
39
|
+
}
|
40
|
+
|
41
|
+
@JRubyMethod
|
42
|
+
public IRubyObject initialize(ThreadContext context, IRubyObject value) {
|
43
|
+
this.semaphore = new JRubySemaphore(rubyFixnumInt(value, "count"));
|
44
|
+
return context.nil;
|
45
|
+
}
|
46
|
+
|
47
|
+
@JRubyMethod
|
48
|
+
public IRubyObject acquire(ThreadContext context, IRubyObject value) throws InterruptedException {
|
49
|
+
this.semaphore.acquire(rubyFixnumToPositiveInt(value, "permits"));
|
50
|
+
return context.nil;
|
51
|
+
}
|
52
|
+
|
53
|
+
@JRubyMethod(name = "available_permits")
|
54
|
+
public IRubyObject availablePermits(ThreadContext context) {
|
55
|
+
return getRuntime().newFixnum(this.semaphore.availablePermits());
|
56
|
+
}
|
57
|
+
|
58
|
+
@JRubyMethod(name = "drain_permits")
|
59
|
+
public IRubyObject drainPermits(ThreadContext context) {
|
60
|
+
return getRuntime().newFixnum(this.semaphore.drainPermits());
|
61
|
+
}
|
62
|
+
|
63
|
+
@JRubyMethod
|
64
|
+
public IRubyObject acquire(ThreadContext context) throws InterruptedException {
|
65
|
+
this.semaphore.acquire(1);
|
66
|
+
return context.nil;
|
67
|
+
}
|
68
|
+
|
69
|
+
@JRubyMethod(name = "try_acquire")
|
70
|
+
public IRubyObject tryAcquire(ThreadContext context) throws InterruptedException {
|
71
|
+
return getRuntime().newBoolean(semaphore.tryAcquire(1));
|
72
|
+
}
|
73
|
+
|
74
|
+
@JRubyMethod(name = "try_acquire")
|
75
|
+
public IRubyObject tryAcquire(ThreadContext context, IRubyObject permits) throws InterruptedException {
|
76
|
+
return getRuntime().newBoolean(semaphore.tryAcquire(rubyFixnumToPositiveInt(permits, "permits")));
|
77
|
+
}
|
78
|
+
|
79
|
+
@JRubyMethod(name = "try_acquire")
|
80
|
+
public IRubyObject tryAcquire(ThreadContext context, IRubyObject permits, IRubyObject timeout) throws InterruptedException {
|
81
|
+
return getRuntime().newBoolean(
|
82
|
+
semaphore.tryAcquire(
|
83
|
+
rubyFixnumToPositiveInt(permits, "permits"),
|
84
|
+
rubyNumericToLong(timeout, "timeout"),
|
85
|
+
java.util.concurrent.TimeUnit.SECONDS)
|
86
|
+
);
|
87
|
+
}
|
88
|
+
|
89
|
+
@JRubyMethod
|
90
|
+
public IRubyObject release(ThreadContext context) {
|
91
|
+
this.semaphore.release(1);
|
92
|
+
return getRuntime().newBoolean(true);
|
93
|
+
}
|
94
|
+
|
95
|
+
@JRubyMethod
|
96
|
+
public IRubyObject release(ThreadContext context, IRubyObject value) {
|
97
|
+
this.semaphore.release(rubyFixnumToPositiveInt(value, "permits"));
|
98
|
+
return getRuntime().newBoolean(true);
|
99
|
+
}
|
100
|
+
|
101
|
+
@JRubyMethod(name = "reduce_permits")
|
102
|
+
public IRubyObject reducePermits(ThreadContext context, IRubyObject reduction) throws InterruptedException {
|
103
|
+
this.semaphore.publicReducePermits(rubyFixnumToNonNegativeInt(reduction, "reduction"));
|
104
|
+
return context.nil;
|
105
|
+
}
|
106
|
+
|
107
|
+
private int rubyFixnumInt(IRubyObject value, String paramName) {
|
108
|
+
if (value instanceof RubyFixnum) {
|
109
|
+
RubyFixnum fixNum = (RubyFixnum) value;
|
110
|
+
return (int) fixNum.getLongValue();
|
111
|
+
} else {
|
112
|
+
throw getRuntime().newArgumentError(paramName + " must be integer");
|
113
|
+
}
|
114
|
+
}
|
115
|
+
|
116
|
+
private int rubyFixnumToNonNegativeInt(IRubyObject value, String paramName) {
|
117
|
+
if (value instanceof RubyFixnum && ((RubyFixnum) value).getLongValue() >= 0) {
|
118
|
+
RubyFixnum fixNum = (RubyFixnum) value;
|
119
|
+
return (int) fixNum.getLongValue();
|
120
|
+
} else {
|
121
|
+
throw getRuntime().newArgumentError(paramName + " must be a non-negative integer");
|
122
|
+
}
|
123
|
+
}
|
124
|
+
|
125
|
+
private int rubyFixnumToPositiveInt(IRubyObject value, String paramName) {
|
126
|
+
if (value instanceof RubyFixnum && ((RubyFixnum) value).getLongValue() > 0) {
|
127
|
+
RubyFixnum fixNum = (RubyFixnum) value;
|
128
|
+
return (int) fixNum.getLongValue();
|
129
|
+
} else {
|
130
|
+
throw getRuntime().newArgumentError(paramName + " must be an integer greater than zero");
|
131
|
+
}
|
132
|
+
}
|
133
|
+
|
134
|
+
private long rubyNumericToLong(IRubyObject value, String paramName) {
|
135
|
+
if (value instanceof RubyNumeric && ((RubyNumeric) value).getDoubleValue() > 0) {
|
136
|
+
RubyNumeric fixNum = (RubyNumeric) value;
|
137
|
+
return fixNum.getLongValue();
|
138
|
+
} else {
|
139
|
+
throw getRuntime().newArgumentError(paramName + " must be a float greater than zero");
|
140
|
+
}
|
141
|
+
}
|
142
|
+
|
143
|
+
class JRubySemaphore extends Semaphore {
|
144
|
+
|
145
|
+
public JRubySemaphore(int permits) {
|
146
|
+
super(permits);
|
147
|
+
}
|
148
|
+
|
149
|
+
public JRubySemaphore(int permits, boolean value) {
|
150
|
+
super(permits, value);
|
151
|
+
}
|
152
|
+
|
153
|
+
public void publicReducePermits(int i) {
|
154
|
+
reducePermits(i);
|
155
|
+
}
|
156
|
+
|
157
|
+
}
|
158
|
+
}
|
159
|
+
}
|
@@ -0,0 +1,304 @@
|
|
1
|
+
package com.concurrent_ruby.ext;
|
2
|
+
|
3
|
+
import org.jruby.Ruby;
|
4
|
+
import org.jruby.RubyBasicObject;
|
5
|
+
import org.jruby.RubyClass;
|
6
|
+
import org.jruby.RubyModule;
|
7
|
+
import org.jruby.RubyObject;
|
8
|
+
import org.jruby.RubyThread;
|
9
|
+
import org.jruby.anno.JRubyClass;
|
10
|
+
import org.jruby.anno.JRubyMethod;
|
11
|
+
import org.jruby.runtime.Block;
|
12
|
+
import org.jruby.runtime.ObjectAllocator;
|
13
|
+
import org.jruby.runtime.ThreadContext;
|
14
|
+
import org.jruby.runtime.Visibility;
|
15
|
+
import org.jruby.runtime.builtin.IRubyObject;
|
16
|
+
import org.jruby.runtime.load.Library;
|
17
|
+
import sun.misc.Unsafe;
|
18
|
+
|
19
|
+
import java.io.IOException;
|
20
|
+
import java.lang.reflect.Field;
|
21
|
+
import java.lang.reflect.Method;
|
22
|
+
|
23
|
+
public class SynchronizationLibrary implements Library {
|
24
|
+
|
25
|
+
private static final Unsafe UNSAFE = loadUnsafe();
|
26
|
+
|
27
|
+
private static Unsafe loadUnsafe() {
|
28
|
+
try {
|
29
|
+
Class ncdfe = Class.forName("sun.misc.Unsafe");
|
30
|
+
Field f = ncdfe.getDeclaredField("theUnsafe");
|
31
|
+
f.setAccessible(true);
|
32
|
+
return (Unsafe) f.get((java.lang.Object) null);
|
33
|
+
} catch (Exception var2) {
|
34
|
+
return null;
|
35
|
+
} catch (NoClassDefFoundError var3) {
|
36
|
+
return null;
|
37
|
+
}
|
38
|
+
}
|
39
|
+
|
40
|
+
private static boolean supportsFences() {
|
41
|
+
if (UNSAFE == null) {
|
42
|
+
return false;
|
43
|
+
} else {
|
44
|
+
try {
|
45
|
+
Method m = UNSAFE.getClass().getDeclaredMethod("fullFence", new Class[0]);
|
46
|
+
if (m != null) {
|
47
|
+
return true;
|
48
|
+
}
|
49
|
+
} catch (Exception var1) {
|
50
|
+
// nothing
|
51
|
+
}
|
52
|
+
|
53
|
+
return false;
|
54
|
+
}
|
55
|
+
}
|
56
|
+
|
57
|
+
private static final ObjectAllocator JRUBY_OBJECT_ALLOCATOR = new ObjectAllocator() {
|
58
|
+
public IRubyObject allocate(Ruby runtime, RubyClass klazz) {
|
59
|
+
return new JRubyObject(runtime, klazz);
|
60
|
+
}
|
61
|
+
};
|
62
|
+
|
63
|
+
private static final ObjectAllocator OBJECT_ALLOCATOR = new ObjectAllocator() {
|
64
|
+
public IRubyObject allocate(Ruby runtime, RubyClass klazz) {
|
65
|
+
return new Object(runtime, klazz);
|
66
|
+
}
|
67
|
+
};
|
68
|
+
|
69
|
+
private static final ObjectAllocator ABSTRACT_LOCKABLE_OBJECT_ALLOCATOR = new ObjectAllocator() {
|
70
|
+
public IRubyObject allocate(Ruby runtime, RubyClass klazz) {
|
71
|
+
return new AbstractLockableObject(runtime, klazz);
|
72
|
+
}
|
73
|
+
};
|
74
|
+
|
75
|
+
private static final ObjectAllocator JRUBY_LOCKABLE_OBJECT_ALLOCATOR = new ObjectAllocator() {
|
76
|
+
public IRubyObject allocate(Ruby runtime, RubyClass klazz) {
|
77
|
+
return new JRubyLockableObject(runtime, klazz);
|
78
|
+
}
|
79
|
+
};
|
80
|
+
|
81
|
+
public void load(Ruby runtime, boolean wrap) throws IOException {
|
82
|
+
RubyModule synchronizationModule = runtime.
|
83
|
+
defineModule("Concurrent").
|
84
|
+
defineModuleUnder("Synchronization");
|
85
|
+
|
86
|
+
RubyModule jrubyAttrVolatileModule = synchronizationModule.defineModuleUnder("JRubyAttrVolatile");
|
87
|
+
jrubyAttrVolatileModule.defineAnnotatedMethods(JRubyAttrVolatile.class);
|
88
|
+
|
89
|
+
defineClass(runtime, synchronizationModule, "AbstractObject", "JRubyObject",
|
90
|
+
JRubyObject.class, JRUBY_OBJECT_ALLOCATOR);
|
91
|
+
|
92
|
+
defineClass(runtime, synchronizationModule, "JRubyObject", "Object",
|
93
|
+
Object.class, OBJECT_ALLOCATOR);
|
94
|
+
|
95
|
+
defineClass(runtime, synchronizationModule, "Object", "AbstractLockableObject",
|
96
|
+
AbstractLockableObject.class, ABSTRACT_LOCKABLE_OBJECT_ALLOCATOR);
|
97
|
+
|
98
|
+
defineClass(runtime, synchronizationModule, "AbstractLockableObject", "JRubyLockableObject",
|
99
|
+
JRubyLockableObject.class, JRUBY_LOCKABLE_OBJECT_ALLOCATOR);
|
100
|
+
|
101
|
+
defineClass(runtime, synchronizationModule, "Object", "JRuby",
|
102
|
+
JRuby.class, new ObjectAllocator() {
|
103
|
+
@Override
|
104
|
+
public IRubyObject allocate(Ruby runtime, RubyClass klazz) {
|
105
|
+
return new JRuby(runtime, klazz);
|
106
|
+
}
|
107
|
+
});
|
108
|
+
}
|
109
|
+
|
110
|
+
private RubyClass defineClass(
|
111
|
+
Ruby runtime,
|
112
|
+
RubyModule namespace,
|
113
|
+
String parentName,
|
114
|
+
String name,
|
115
|
+
Class javaImplementation,
|
116
|
+
ObjectAllocator allocator) {
|
117
|
+
final RubyClass parentClass = namespace.getClass(parentName);
|
118
|
+
|
119
|
+
if (parentClass == null) {
|
120
|
+
System.out.println("not found " + parentName);
|
121
|
+
throw runtime.newRuntimeError(namespace.toString() + "::" + parentName + " is missing");
|
122
|
+
}
|
123
|
+
|
124
|
+
final RubyClass newClass = namespace.defineClassUnder(name, parentClass, allocator);
|
125
|
+
newClass.defineAnnotatedMethods(javaImplementation);
|
126
|
+
return newClass;
|
127
|
+
}
|
128
|
+
|
129
|
+
// Facts:
|
130
|
+
// - all ivar reads are without any synchronisation of fences see
|
131
|
+
// https://github.com/jruby/jruby/blob/master/core/src/main/java/org/jruby/runtime/ivars/VariableAccessor.java#L110-110
|
132
|
+
// - writes depend on UnsafeHolder.U, null -> SynchronizedVariableAccessor, !null -> StampedVariableAccessor
|
133
|
+
// SynchronizedVariableAccessor wraps with synchronized block, StampedVariableAccessor uses fullFence or
|
134
|
+
// volatilePut
|
135
|
+
// TODO (pitr 16-Sep-2015): what do we do in Java 9 ?
|
136
|
+
|
137
|
+
// module JRubyAttrVolatile
|
138
|
+
public static class JRubyAttrVolatile {
|
139
|
+
|
140
|
+
// volatile threadContext is used as a memory barrier per the JVM memory model happens-before semantic
|
141
|
+
// on volatile fields. any volatile field could have been used but using the thread context is an
|
142
|
+
// attempt to avoid code elimination.
|
143
|
+
private static volatile ThreadContext threadContext = null;
|
144
|
+
|
145
|
+
@JRubyMethod(name = "full_memory_barrier", visibility = Visibility.PUBLIC)
|
146
|
+
public static IRubyObject fullMemoryBarrier(ThreadContext context, IRubyObject self) {
|
147
|
+
// Prevent reordering of ivar writes with publication of this instance
|
148
|
+
if (!supportsFences()) {
|
149
|
+
// Assuming that following volatile read and write is not eliminated it simulates fullFence.
|
150
|
+
// If it's eliminated it'll cause problems only on non-x86 platforms.
|
151
|
+
// http://shipilev.net/blog/2014/jmm-pragmatics/#_happens_before_test_your_understanding
|
152
|
+
final ThreadContext oldContext = threadContext;
|
153
|
+
threadContext = context;
|
154
|
+
} else {
|
155
|
+
UNSAFE.fullFence();
|
156
|
+
}
|
157
|
+
return context.nil;
|
158
|
+
}
|
159
|
+
|
160
|
+
@JRubyMethod(name = "instance_variable_get_volatile", visibility = Visibility.PUBLIC)
|
161
|
+
public static IRubyObject instanceVariableGetVolatile(
|
162
|
+
ThreadContext context,
|
163
|
+
IRubyObject self,
|
164
|
+
IRubyObject name) {
|
165
|
+
// Ensure we ses latest value with loadFence
|
166
|
+
if (!supportsFences()) {
|
167
|
+
// piggybacking on volatile read, simulating loadFence
|
168
|
+
final ThreadContext oldContext = threadContext;
|
169
|
+
return ((RubyBasicObject) self).instance_variable_get(context, name);
|
170
|
+
} else {
|
171
|
+
UNSAFE.loadFence();
|
172
|
+
return ((RubyBasicObject) self).instance_variable_get(context, name);
|
173
|
+
}
|
174
|
+
}
|
175
|
+
|
176
|
+
@JRubyMethod(name = "instance_variable_set_volatile", visibility = Visibility.PUBLIC)
|
177
|
+
public static IRubyObject InstanceVariableSetVolatile(
|
178
|
+
ThreadContext context,
|
179
|
+
IRubyObject self,
|
180
|
+
IRubyObject name,
|
181
|
+
IRubyObject value) {
|
182
|
+
// Ensure we make last update visible
|
183
|
+
if (!supportsFences()) {
|
184
|
+
// piggybacking on volatile write, simulating storeFence
|
185
|
+
final IRubyObject result = ((RubyBasicObject) self).instance_variable_set(name, value);
|
186
|
+
threadContext = context;
|
187
|
+
return result;
|
188
|
+
} else {
|
189
|
+
// JRuby uses StampedVariableAccessor which calls fullFence
|
190
|
+
// so no additional steps needed.
|
191
|
+
// See https://github.com/jruby/jruby/blob/master/core/src/main/java/org/jruby/runtime/ivars/StampedVariableAccessor.java#L151-L159
|
192
|
+
return ((RubyBasicObject) self).instance_variable_set(name, value);
|
193
|
+
}
|
194
|
+
}
|
195
|
+
}
|
196
|
+
|
197
|
+
@JRubyClass(name = "JRubyObject", parent = "AbstractObject")
|
198
|
+
public static class JRubyObject extends RubyObject {
|
199
|
+
|
200
|
+
public JRubyObject(Ruby runtime, RubyClass metaClass) {
|
201
|
+
super(runtime, metaClass);
|
202
|
+
}
|
203
|
+
}
|
204
|
+
|
205
|
+
@JRubyClass(name = "Object", parent = "JRubyObject")
|
206
|
+
public static class Object extends JRubyObject {
|
207
|
+
|
208
|
+
public Object(Ruby runtime, RubyClass metaClass) {
|
209
|
+
super(runtime, metaClass);
|
210
|
+
}
|
211
|
+
}
|
212
|
+
|
213
|
+
@JRubyClass(name = "AbstractLockableObject", parent = "Object")
|
214
|
+
public static class AbstractLockableObject extends Object {
|
215
|
+
|
216
|
+
public AbstractLockableObject(Ruby runtime, RubyClass metaClass) {
|
217
|
+
super(runtime, metaClass);
|
218
|
+
}
|
219
|
+
}
|
220
|
+
|
221
|
+
@JRubyClass(name = "JRubyLockableObject", parent = "AbstractLockableObject")
|
222
|
+
public static class JRubyLockableObject extends JRubyObject {
|
223
|
+
|
224
|
+
public JRubyLockableObject(Ruby runtime, RubyClass metaClass) {
|
225
|
+
super(runtime, metaClass);
|
226
|
+
}
|
227
|
+
|
228
|
+
@JRubyMethod(name = "synchronize", visibility = Visibility.PROTECTED)
|
229
|
+
public IRubyObject rubySynchronize(ThreadContext context, Block block) {
|
230
|
+
synchronized (this) {
|
231
|
+
return block.yield(context, null);
|
232
|
+
}
|
233
|
+
}
|
234
|
+
|
235
|
+
@JRubyMethod(name = "ns_wait", optional = 1, visibility = Visibility.PROTECTED)
|
236
|
+
public IRubyObject nsWait(ThreadContext context, IRubyObject[] args) {
|
237
|
+
Ruby runtime = context.runtime;
|
238
|
+
if (args.length > 1) {
|
239
|
+
throw runtime.newArgumentError(args.length, 1);
|
240
|
+
}
|
241
|
+
Double timeout = null;
|
242
|
+
if (args.length > 0 && !args[0].isNil()) {
|
243
|
+
timeout = args[0].convertToFloat().getDoubleValue();
|
244
|
+
if (timeout < 0) {
|
245
|
+
throw runtime.newArgumentError("time interval must be positive");
|
246
|
+
}
|
247
|
+
}
|
248
|
+
if (Thread.interrupted()) {
|
249
|
+
throw runtime.newConcurrencyError("thread interrupted");
|
250
|
+
}
|
251
|
+
boolean success = false;
|
252
|
+
try {
|
253
|
+
success = context.getThread().wait_timeout(this, timeout);
|
254
|
+
} catch (InterruptedException ie) {
|
255
|
+
throw runtime.newConcurrencyError(ie.getLocalizedMessage());
|
256
|
+
} finally {
|
257
|
+
// An interrupt or timeout may have caused us to miss
|
258
|
+
// a notify that we consumed, so do another notify in
|
259
|
+
// case someone else is available to pick it up.
|
260
|
+
if (!success) {
|
261
|
+
this.notify();
|
262
|
+
}
|
263
|
+
}
|
264
|
+
return this;
|
265
|
+
}
|
266
|
+
|
267
|
+
@JRubyMethod(name = "ns_signal", visibility = Visibility.PROTECTED)
|
268
|
+
public IRubyObject nsSignal(ThreadContext context) {
|
269
|
+
notify();
|
270
|
+
return this;
|
271
|
+
}
|
272
|
+
|
273
|
+
@JRubyMethod(name = "ns_broadcast", visibility = Visibility.PROTECTED)
|
274
|
+
public IRubyObject nsBroadcast(ThreadContext context) {
|
275
|
+
notifyAll();
|
276
|
+
return this;
|
277
|
+
}
|
278
|
+
}
|
279
|
+
|
280
|
+
@JRubyClass(name = "JRuby")
|
281
|
+
public static class JRuby extends RubyObject {
|
282
|
+
public JRuby(Ruby runtime, RubyClass metaClass) {
|
283
|
+
super(runtime, metaClass);
|
284
|
+
}
|
285
|
+
|
286
|
+
@JRubyMethod(name = "sleep_interruptibly", visibility = Visibility.PUBLIC, module = true)
|
287
|
+
public static IRubyObject sleepInterruptibly(ThreadContext context, IRubyObject receiver, Block block) {
|
288
|
+
try {
|
289
|
+
return context.getThread().executeTask(context, block,
|
290
|
+
new RubyThread.Task<Block, IRubyObject>() {
|
291
|
+
public IRubyObject run(ThreadContext context, Block block1) throws InterruptedException {
|
292
|
+
return block1.call(context);
|
293
|
+
}
|
294
|
+
|
295
|
+
public void wakeup(RubyThread thread, Block block1) {
|
296
|
+
thread.getNativeThread().interrupt();
|
297
|
+
}
|
298
|
+
});
|
299
|
+
} catch (InterruptedException e) {
|
300
|
+
throw context.runtime.newThreadError("interrupted in Concurrent::Synchronization::JRuby.sleep_interruptibly");
|
301
|
+
}
|
302
|
+
}
|
303
|
+
}
|
304
|
+
}
|