mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
14fdf3257f
Summary: Pull Request resolved: https://github.com/facebook/react-native/pull/50651 Changelog: [Internal] Reviewed By: javache Differential Revision: D72792459 fbshipit-source-id: d010508ca6311b6981090a64e4746141eda67976
53 lines
1.5 KiB
C++
53 lines
1.5 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 "RuntimeHeapInfoCollector.h"
|
|
#include <fmt/format.h>
|
|
#include <glog/logging.h>
|
|
#include <jsi/instrumentation.h>
|
|
#include <stdexcept>
|
|
|
|
namespace facebook::react {
|
|
|
|
RuntimeHeapInfoCollector::RuntimeHeapInfoCollector(
|
|
std::chrono::milliseconds intervalMs)
|
|
: intervalMs_(intervalMs) {
|
|
if (intervalMs_ <= std::chrono::milliseconds::zero()) {
|
|
throw std::runtime_error(fmt::format(
|
|
"Invalid interval, must be > 0ms, got {} ms", intervalMs_.count()));
|
|
}
|
|
|
|
lastCollectionTime_ = std::chrono::steady_clock::now();
|
|
}
|
|
|
|
std::unique_ptr<RuntimeHeapInfoCollector> RuntimeHeapInfoCollector::create(
|
|
std::chrono::milliseconds intervalMs) {
|
|
if (intervalMs <= std::chrono::milliseconds::zero()) {
|
|
LOG(INFO) << "RuntimeHeapInfoCollector is disabled";
|
|
return nullptr;
|
|
}
|
|
|
|
return std::make_unique<RuntimeHeapInfoCollector>(intervalMs);
|
|
}
|
|
|
|
void RuntimeHeapInfoCollector::collectHeapInfo(jsi::Runtime& runtime) {
|
|
auto now = std::chrono::steady_clock::now();
|
|
if (now - lastCollectionTime_ < intervalMs_) {
|
|
return;
|
|
}
|
|
|
|
lastCollectionTime_ = now;
|
|
auto heap = runtime.instrumentation().getHeapInfo(false);
|
|
heapInfo_ = {
|
|
.allocatedBytes = heap["hermes_allocatedBytes"],
|
|
.heapSize = heap["hermes_heapSize"],
|
|
.numCollections = heap["hermes_numCollections"],
|
|
};
|
|
}
|
|
|
|
} // namespace facebook::react
|