Clear _handlers on RCTNetworking invalidation
Summary: This PR fixes a bug where in `RCTNetworking` not all tasks/handlers were not being cleared when invalidating the class. I came across this issue when writing some unit tests for my native plugins, sometimes a test would finish running (and the bridge invalidated), and only afterwards a callback from RCTNetworking would come, resulting in this exception: ``` 2018-05-07 15:23:34.264494-0700 Guardian[73794:10710945] *** Assertion failure in -[RCTEventEmitter sendEventWithName:body:](), /Users/.../app/node_modules/react-native/React/Modules/RCTEventEmitter.m:41 2018-05-07 15:23:34.276505-0700 Guardian[73794:10710945] *** Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'Error when sending event: didCompleteNetworkResponse with body: ( 2, cancelled, 0 ). Bridge is not set. This is probably because you've explicitly synthesized the bridge in RCTNetworking, even though it's inherited from RCTEventEmitter.' *** First throw call stack: ( 0 CoreFoundation 0x000000010d5b21e6 __exceptionPreprocess + 294 1 libobjc.A.dylib 0x000000010be6f031 objc_exception_throw + 48 2 CoreFoundation 0x000000010d5b7472 +[NSException raise:format:arguments:] + 98 3 Foundation 0x000000010b94864f -[NSAssertionHandler handleFailureInFunction:file:lineNumber:description:] + 165 4 Guardian 0x0000000106ff5227 -[RCTEventEmitter sendEventWithName:body:] + 567 5 Guardian 0x0000000106e9ebab __76-[RCTNetworking sendRequest:responseType:incrementalUpdates:responseSender:]_block_invoke.423 + 1115 6 Guardian 0x0000000106e8f48c __50-[RCTNetworkTask URLRequest:didCompleteWithError:]_block_invoke + 92 7 Guardian 0x0000000106e8ded1 -[RCTNetworkTask dispatchCallback:] + 113 8 Guardian 0x0000000106e8f37a -[RCTNetworkTask URLRequest:didCompleteWithError:] + 410 9 Guardian 0x0000000106ea1aa3 -[RCTHTTPRequestHandler URLSession:task:didCompleteWithError:] + 403 10 CFNetwork 0x000000010cf3a437 __51-[NSURLSession delegate_task:didCompleteWithError:]_block_invoke.207 + 80 11 Foundation 0x000000010b885363 __NSBLOCKOPERATION_IS_CALLING_OUT_TO_A_BLOCK__ + 7 12 Foundation 0x000000010b8851ca -[NSBlockOperation main] + 68 13 Foundation 0x000000010b8836b2 -[__NSOperationInternal _start:] + 766 14 libdispatch.dylib 0x0000000112457779 _dispatch_client_callout + 8 15 libdispatch.dylib 0x000000011245c931 _dispatch_block_invoke_direct + 317 16 libdispatch.dylib 0x0000000112457779 _dispatch_client_callout + 8 17 libdispatch.dylib 0x000000011245c931 _dispatch_block_invoke_direct + 317 18 libdispatch.dylib 0x000000011245c7d4 dispatch_block_perform + 109 19 Foundation 0x000000010b87f75b __NSOQSchedule_f + 337 20 libdispatch.dylib 0x0000000112457779 _dispatch_client_callout + 8 21 libdispatch.dylib 0x000000011245f1b2 _dispatch_queue_serial_drain + 735 22 libdispatch.dylib 0x000000011245f9af _dispatch_queue_invoke + 321 23 libdispatch.dylib 0x0000000112461cf8 _dispatch_root_queue_drain + 473 24 libdispatch.dylib 0x0000000112461ac1 _dispatch_worker_thread3 + 119 25 libsystem_pthread.dylib 0x000000011297a169 _pthread_wqthread + 1387 26 libsystem_pthread.dylib 0x0000000112979be9 start_wqthread + 13 ) libc++abi.dylib: terminating with uncaught exception of type NSException ``` Bug can be reproduced by making a `XMLHttpRequest` (uses `RCTNetworking` internally) that takes a couple seconds to perform, and issuing a RCTBridge reload command in the meantime. You can add the following code to the react-native template project, ``` componentDidMount() { var oReq = new XMLHttpRequest(); oReq.addEventListener("load", () => console.log('Finished')); oReq.open("GET", "https://www.dropbox.com/s/o01hz0chqvjafhv/file.bin?dl=1"); oReq.send(); console.log('Request is being performed...') } ``` In my case I download a 1MB file. Run the project and reload the a couple times. Bug is triggered. [INTERNAL] [BUGFIX] [RCTNetworking] - Clear handlers and tasks on RCTNetworking invalidation Closes https://github.com/facebook/react-native/pull/19169 Differential Revision: D8053070 Pulled By: hramos fbshipit-source-id: d8af54fecd99173905363f962ffc638ef8b85082
This commit is contained in:
parent
ce3b7b8204
commit
b805172034
|
@ -139,6 +139,11 @@ RCT_EXPORT_MODULE()
|
|||
|
||||
- (void)invalidate
|
||||
{
|
||||
for (NSNumber *requestID in _tasksByRequestID) {
|
||||
[_tasksByRequestID[requestID] cancel];
|
||||
}
|
||||
[_tasksByRequestID removeAllObjects];
|
||||
_handlers = nil;
|
||||
_requestHandlers = nil;
|
||||
_responseHandlers = nil;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue