Skip to content

Commit

Permalink
[ReactNative] Fix crash when reload during profile
Browse files Browse the repository at this point in the history
Summary:
Fixes #1642

When reloading during profiling, the profile wouldn't unhook from the instance
being deallocated.
  • Loading branch information
tadeuzagallo committed Jul 8, 2015
1 parent a251316 commit 0ffb2d3
Show file tree
Hide file tree
Showing 4 changed files with 31 additions and 4 deletions.
12 changes: 12 additions & 0 deletions React/Base/RCTBatchedBridge.m
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,13 @@ - (instancetype)initWithParentBridge:(RCTBridge *)bridge
*/
[self registerModules];

/**
* If currently profiling, hook into the current instance
*/
if (RCTProfileIsProfiling()) {
RCTProfileHookModules(self);
}

/**
* Start the application script
*/
Expand Down Expand Up @@ -364,8 +371,13 @@ - (void)invalidate
}
moduleData.queue = nil;
}

dispatch_group_notify(group, dispatch_get_main_queue(), ^{
[_javaScriptExecutor executeBlockOnJavaScriptQueue:^{
if (RCTProfileIsProfiling()) {
RCTProfileUnhookModules(self);
}

[_jsDisplayLink invalidate];
_jsDisplayLink = nil;

Expand Down
13 changes: 13 additions & 0 deletions React/Base/RCTProfile.h
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,16 @@ RCT_EXTERN void RCTProfileImmediateEvent(NSString *, NSTimeInterval , NSString *
RCTProfileEndEvent([NSString stringWithFormat:@"[%@ %@]", NSStringFromClass([self class]), NSStringFromSelector(_cmd)], category, arguments); \
}

/**
* Hook into a bridge instance to log all bridge module's method calls
*/
RCT_EXTERN void RCTProfileHookModules(RCTBridge *);

/**
* Unhook from a given bridge instance's modules
*/
RCT_EXTERN void RCTProfileUnhookModules(RCTBridge *);

#else

#define RCTProfileBeginFlowEvent()
Expand All @@ -125,4 +135,7 @@ RCT_EXTERN void RCTProfileImmediateEvent(NSString *, NSTimeInterval , NSString *

#define RCTProfileBlock(block, ...) block

#define RCTProfileHookModules(...)
#define RCTProfileUnhookModules(...)

#endif
8 changes: 5 additions & 3 deletions React/Base/RCTProfile.m
Original file line number Diff line number Diff line change
Expand Up @@ -144,14 +144,17 @@ static IMP RCTProfileMsgForward(NSObject *self, SEL selector)
return imp;
}

static void RCTProfileHookModules(RCTBridge *);
static void RCTProfileHookModules(RCTBridge *bridge)
void RCTProfileHookModules(RCTBridge *bridge)
{
for (RCTModuleData *moduleData in [bridge valueForKey:@"_modules"]) {
[moduleData dispatchBlock:^{
Class moduleClass = moduleData.cls;
Class proxyClass = objc_allocateClassPair(moduleClass, RCTProfileProxyClassName(moduleClass), 0);

if (!proxyClass) {
return;
}

unsigned int methodCount;
Method *methods = class_copyMethodList(moduleClass, &methodCount);
for (NSUInteger i = 0; i < methodCount; i++) {
Expand Down Expand Up @@ -185,7 +188,6 @@ static void RCTProfileHookModules(RCTBridge *bridge)
}
}

void RCTProfileUnhookModules(RCTBridge *);
void RCTProfileUnhookModules(RCTBridge *bridge)
{
for (RCTModuleData *moduleData in [bridge valueForKey:@"_modules"]) {
Expand Down
2 changes: 1 addition & 1 deletion React/Views/RCTNavigator.m
Original file line number Diff line number Diff line change
Expand Up @@ -436,7 +436,7 @@ - (void)dispatchFakeScrollEvent
*/
- (UIView *)reactSuperview
{
RCTAssert(self.superview != nil, @"put reactNavSuperviewLink back");
RCTAssert(!_bridge.isValid || self.superview != nil, @"put reactNavSuperviewLink back");
return self.superview ? self.superview : self.reactNavSuperviewLink;
}

Expand Down

0 comments on commit 0ffb2d3

Please sign in to comment.