mirror of
https://github.com/zhigang1992/react-native.git
synced 2026-04-21 10:34:31 +08:00
better event emitting II: no deadlocks
Summary:D3092867 /1d3db4c5dccaused deadlock when chrome debugging was turned on, so it was reverted as D3128586 /144dc30661. The reason: I was calling `[_bridge dispatchBlock:^{ [self flushEventsQueue]; } queue:RCTJSThread];` from main thread and expecting it will `dispatch_async` to another, since a held lock was being accessed the dispatched block and was released after the dispatch. Turns out `RCTWebSocketExecutor` (which is used when chrome debugger is turned on) executes all blocks dispatched this way to `RCTJSThread` synchronously on the main thread. This resulted in a deadlock. The "dispatched" block was trying to acquired lock which held by the same thread in the dispatching phase. A fix for this is pretty simple. We will release the lock before dispatching the block. However it's not super straightforward to see this won't introduce some race condition in a case with two threads where we would end up with events not being processed. My thinking why that shouldn't happen goes like this: We could get in a bad state if `flushEventsQueue` would run on JS thread while `sendEvent:` is running on MT. (I don't have a specific example how, maybe it's not possible. However when I show this case is safe we know we are good.) The way how locking is setup in this diff the only possible scenario where these two threads would execute in these methods concurrently is JS holding the lock and MT going to enqueue another block on JS thread (since that's outside of "locked" zone). But this scenarion can never happen, since if MT is about to enqueue the block on JS thread it means there cannot be a not yet fully executed block on JS thread. Therefore nothing bad can happen. So this diff brings back the reverted diff and adds to it the fix for the deadlock. Reviewed By: javache Differential Revision: D3130375 fb-gh-sync-id: 885a166f2f808551d7cd4e4eb98634d26afe6a11 fbshipit-source-id: 885a166f2f808551d7cd4e4eb98634d26afe6a11
This commit is contained in:
committed by
Facebook Github Bot 1
parent
5d44dad43f
commit
02b6e38bee
@@ -17,6 +17,7 @@
|
||||
|
||||
#import <OCMock/OCMock.h>
|
||||
#import "RCTEventDispatcher.h"
|
||||
#import "RCTBridge+Private.h"
|
||||
|
||||
@interface RCTTestEvent : NSObject <RCTEvent>
|
||||
@property (atomic, assign, readwrite) BOOL canCoalesce;
|
||||
@@ -82,7 +83,8 @@
|
||||
{
|
||||
[super setUp];
|
||||
|
||||
_bridge = [OCMockObject mockForClass:[RCTBridge class]];
|
||||
_bridge = [OCMockObject mockForClass:[RCTBatchedBridge class]];
|
||||
|
||||
_eventDispatcher = [RCTEventDispatcher new];
|
||||
[_eventDispatcher setValue:_bridge forKey:@"bridge"];
|
||||
|
||||
@@ -106,61 +108,79 @@
|
||||
[_bridge verify];
|
||||
}
|
||||
|
||||
- (void)testNonCoalescingEventsAreImmediatelyDispatched
|
||||
- (void)testNonCoalescingEventIsImmediatelyDispatched
|
||||
{
|
||||
_testEvent.canCoalesce = NO;
|
||||
[[_bridge expect] enqueueJSCall:_JSMethod
|
||||
args:[_testEvent arguments]];
|
||||
|
||||
[[_bridge expect] dispatchBlock:OCMOCK_ANY queue:RCTJSThread];
|
||||
|
||||
[_eventDispatcher sendEvent:_testEvent];
|
||||
|
||||
[_bridge verify];
|
||||
}
|
||||
|
||||
- (void)testCoalescedEventShouldBeDispatchedOnFrameUpdate
|
||||
- (void)testCoalescingEventIsImmediatelyDispatched
|
||||
{
|
||||
_testEvent.canCoalesce = YES;
|
||||
|
||||
[[_bridge expect] dispatchBlock:OCMOCK_ANY queue:RCTJSThread];
|
||||
|
||||
[_eventDispatcher sendEvent:_testEvent];
|
||||
|
||||
[_bridge verify];
|
||||
}
|
||||
|
||||
- (void)testMultipleEventsResultInOnlyOneDispatchAfterTheFirstOne
|
||||
{
|
||||
[[_bridge expect] dispatchBlock:OCMOCK_ANY queue:RCTJSThread];
|
||||
[_eventDispatcher sendEvent:_testEvent];
|
||||
[_eventDispatcher sendEvent:_testEvent];
|
||||
[_eventDispatcher sendEvent:_testEvent];
|
||||
[_eventDispatcher sendEvent:_testEvent];
|
||||
[_eventDispatcher sendEvent:_testEvent];
|
||||
[_bridge verify];
|
||||
}
|
||||
|
||||
- (void)testRunningTheDispatchedBlockResultInANewOneBeingEnqueued
|
||||
{
|
||||
__block dispatch_block_t eventsEmittingBlock;
|
||||
[[_bridge expect] dispatchBlock:[OCMArg checkWithBlock:^(dispatch_block_t block) {
|
||||
eventsEmittingBlock = block;
|
||||
return YES;
|
||||
}] queue:RCTJSThread];
|
||||
[_eventDispatcher sendEvent:_testEvent];
|
||||
[_bridge verify];
|
||||
|
||||
|
||||
// eventsEmittingBlock would be called when js is no longer busy, which will result in emitting events
|
||||
[[_bridge expect] enqueueJSCall:@"RCTDeviceEventEmitter.emit"
|
||||
args:[_testEvent arguments]];
|
||||
|
||||
[(id<RCTFrameUpdateObserver>)_eventDispatcher didUpdateFrame:nil];
|
||||
|
||||
eventsEmittingBlock();
|
||||
[_bridge verify];
|
||||
}
|
||||
|
||||
- (void)testNonCoalescingEventForcesColescedEventsToBeImmediatelyDispatched
|
||||
{
|
||||
RCTTestEvent *nonCoalescingEvent = [[RCTTestEvent alloc] initWithViewTag:nil
|
||||
eventName:_eventName
|
||||
body:@{}
|
||||
coalescingKey:0];
|
||||
nonCoalescingEvent.canCoalesce = NO;
|
||||
|
||||
[[_bridge expect] dispatchBlock:OCMOCK_ANY queue:RCTJSThread];
|
||||
[_eventDispatcher sendEvent:_testEvent];
|
||||
|
||||
[[_bridge expect] enqueueJSCall:[[_testEvent class] moduleDotMethod]
|
||||
args:[_testEvent arguments]];
|
||||
[[_bridge expect] enqueueJSCall:[[nonCoalescingEvent class] moduleDotMethod]
|
||||
args:[nonCoalescingEvent arguments]];
|
||||
|
||||
[_eventDispatcher sendEvent:nonCoalescingEvent];
|
||||
[_bridge verify];
|
||||
}
|
||||
|
||||
- (void)testBasicCoalescingReturnsLastEvent
|
||||
{
|
||||
__block dispatch_block_t eventsEmittingBlock;
|
||||
[[_bridge expect] dispatchBlock:[OCMArg checkWithBlock:^(dispatch_block_t block) {
|
||||
eventsEmittingBlock = block;
|
||||
return YES;
|
||||
}] queue:RCTJSThread];
|
||||
[[_bridge expect] enqueueJSCall:@"RCTDeviceEventEmitter.emit"
|
||||
args:[_testEvent arguments]];
|
||||
|
||||
RCTTestEvent *ignoredEvent = [[RCTTestEvent alloc] initWithViewTag:nil
|
||||
eventName:_eventName
|
||||
body:@{ @"other": @"body" }
|
||||
coalescingKey:0];
|
||||
|
||||
[_eventDispatcher sendEvent:ignoredEvent];
|
||||
[_eventDispatcher sendEvent:_testEvent];
|
||||
|
||||
[[_bridge expect] enqueueJSCall:@"RCTDeviceEventEmitter.emit"
|
||||
args:[_testEvent arguments]];
|
||||
|
||||
[(id<RCTFrameUpdateObserver>)_eventDispatcher didUpdateFrame:nil];
|
||||
eventsEmittingBlock();
|
||||
|
||||
[_bridge verify];
|
||||
}
|
||||
@@ -169,20 +189,60 @@
|
||||
{
|
||||
NSString *firstEventName = RCTNormalizeInputEventName(@"firstEvent");
|
||||
RCTTestEvent *firstEvent = [[RCTTestEvent alloc] initWithViewTag:nil
|
||||
eventName:firstEventName
|
||||
body:_body
|
||||
eventName:firstEventName
|
||||
body:_body
|
||||
coalescingKey:0];
|
||||
|
||||
[_eventDispatcher sendEvent:firstEvent];
|
||||
[_eventDispatcher sendEvent:_testEvent];
|
||||
|
||||
__block dispatch_block_t eventsEmittingBlock;
|
||||
[[_bridge expect] dispatchBlock:[OCMArg checkWithBlock:^(dispatch_block_t block) {
|
||||
eventsEmittingBlock = block;
|
||||
return YES;
|
||||
}] queue:RCTJSThread];
|
||||
[[_bridge expect] enqueueJSCall:@"RCTDeviceEventEmitter.emit"
|
||||
args:[firstEvent arguments]];
|
||||
|
||||
[[_bridge expect] enqueueJSCall:@"RCTDeviceEventEmitter.emit"
|
||||
args:[_testEvent arguments]];
|
||||
|
||||
[(id<RCTFrameUpdateObserver>)_eventDispatcher didUpdateFrame:nil];
|
||||
|
||||
[_eventDispatcher sendEvent:firstEvent];
|
||||
[_eventDispatcher sendEvent:_testEvent];
|
||||
eventsEmittingBlock();
|
||||
|
||||
[_bridge verify];
|
||||
}
|
||||
|
||||
- (void)testSameEventTypesWithDifferentCoalesceKeysDontCoalesce
|
||||
{
|
||||
NSString *eventName = RCTNormalizeInputEventName(@"firstEvent");
|
||||
RCTTestEvent *firstEvent = [[RCTTestEvent alloc] initWithViewTag:nil
|
||||
eventName:eventName
|
||||
body:_body
|
||||
coalescingKey:0];
|
||||
RCTTestEvent *secondEvent = [[RCTTestEvent alloc] initWithViewTag:nil
|
||||
eventName:eventName
|
||||
body:_body
|
||||
coalescingKey:1];
|
||||
|
||||
__block dispatch_block_t eventsEmittingBlock;
|
||||
[[_bridge expect] dispatchBlock:[OCMArg checkWithBlock:^(dispatch_block_t block) {
|
||||
eventsEmittingBlock = block;
|
||||
return YES;
|
||||
}] queue:RCTJSThread];
|
||||
[[_bridge expect] enqueueJSCall:@"RCTDeviceEventEmitter.emit"
|
||||
args:[firstEvent arguments]];
|
||||
[[_bridge expect] enqueueJSCall:@"RCTDeviceEventEmitter.emit"
|
||||
args:[secondEvent arguments]];
|
||||
|
||||
|
||||
[_eventDispatcher sendEvent:firstEvent];
|
||||
[_eventDispatcher sendEvent:secondEvent];
|
||||
[_eventDispatcher sendEvent:firstEvent];
|
||||
[_eventDispatcher sendEvent:secondEvent];
|
||||
[_eventDispatcher sendEvent:secondEvent];
|
||||
[_eventDispatcher sendEvent:firstEvent];
|
||||
[_eventDispatcher sendEvent:firstEvent];
|
||||
|
||||
eventsEmittingBlock();
|
||||
|
||||
[_bridge verify];
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user