zioinfo-mail/app/node_modules/react-native/ReactCommon/react/renderer/leakchecker/LeakChecker.cpp
DESKTOP-TKLFCPR\ython 11c670f2a0 refactor: 101.79.17.164 → zioinfo.co.kr 전체 도메인 변환 + Manager UI 배포
- 37개 파일 IP → zioinfo.co.kr 치환 (소스/매뉴얼/설정/하네스)
- Manager DrConsole/NetworkConsole/CsapConsole 빌드 + /var/www/manager/ 배포
- 테스트: Manager HTTP 200, ITSM 신규 API 7개 전체 200

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-05-31 10:09:17 +09:00

61 lines
1.9 KiB
C++

/*
* Copyright (c) Meta Platforms, Inc. and 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>
#include <utility>
namespace facebook::react {
LeakChecker::LeakChecker(RuntimeExecutor runtimeExecutor)
: runtimeExecutor_(std::move(runtimeExecutor)) {}
void LeakChecker::uiManagerDidCreateShadowNodeFamily(
const ShadowNodeFamily::Shared& 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_([previouslyStoppedSurface = 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(previouslyStoppedSurface);
});
}
previouslyStoppedSurface_ = surfaceId;
}
void LeakChecker::checkSurfaceForLeaks(SurfaceId surfaceId) const {
auto weakFamilies = registry_.weakFamiliesForSurfaceId(surfaceId);
unsigned int numberOfLeaks = 0;
for (const auto& 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 facebook::react