Files
react-native/ReactCommon/react/renderer/leakchecker/LeakChecker.cpp
T
Samuel Susla 118489f6e5 Make LeakChecker available on Android
Summary:
Changelog: [internal]

Extend LeakChecker so it is available on Android (or any other platform as it is completely in C++ now).

Reviewed By: JoshuaGross

Differential Revision: D28600243

fbshipit-source-id: c77a003e3ffc6171e61c998508c9f34f10bb65ca
2021-05-21 10:39:43 -07:00

61 lines
1.9 KiB
C++

/*
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
#include "LeakChecker.h"
#include <glog/logging.h>
#include <jsi/instrumentation.h>
namespace facebook {
namespace react {
LeakChecker::LeakChecker(RuntimeExecutor const &runtimeExecutor)
: runtimeExecutor_(runtimeExecutor) {}
void LeakChecker::uiManagerDidCreateShadowNodeFamily(
ShadowNodeFamily::Shared const &shadowNodeFamily) const {
registry_.add(shadowNodeFamily);
}
void LeakChecker::stopSurface(SurfaceId surfaceId) {
if (previouslyStoppedSurface_ > 0) {
// Dispatch the check onto JavaScript thread to make sure all other
// cleanup code has had chance to run.
runtimeExecutor_([previouslySoppedSurface = previouslyStoppedSurface_,
this](jsi::Runtime &runtime) {
runtime.instrumentation().collectGarbage("LeakChecker");
// For now check the previous surface because React uses double
// buffering which keeps the surface that was just stopped in
// memory. This is a documented problem in the last point of
// https://github.com/facebook/react/issues/16087
checkSurfaceForLeaks(previouslySoppedSurface);
});
}
previouslyStoppedSurface_ = surfaceId;
}
void LeakChecker::checkSurfaceForLeaks(SurfaceId surfaceId) const {
auto weakFamilies = registry_.weakFamiliesForSurfaceId(surfaceId);
unsigned int numberOfLeaks = 0;
for (auto const &weakFamily : weakFamilies) {
auto strong = weakFamily.lock();
if (strong) {
++numberOfLeaks;
}
}
if (numberOfLeaks > 0) {
LOG(ERROR) << "[LeakChecker] Surface with id: " << surfaceId
<< " has leaked " << numberOfLeaks << " components out of "
<< weakFamilies.size();
}
registry_.removeFamiliesWithSurfaceId(surfaceId);
}
} // namespace react
} // namespace facebook