mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
c1023c73b0
Summary: This diff adds the `performance.reactNativeStartupTiming` API to the performance global object for RN. This property does not exist in web, and we are free to make up our own list of properties in the startup metrics to track RN app startup process. In our case, we have the following six properties to begin with (we may extend and add more to this list in the future): ``` - `(start|end)Time`: The time ‘zero’ for the startup timing and the end of app startup. RN has no knowledge of app start time, which will be provided by the platform. The `endTime` will be the time when the first JS bundle finishes executing (Note that RN supports multiple JS bundles, which can be loaded async) - `executeJavaScriptBundleEntryPoint(Start|End)`: The time for RN to execute the JS entry point (and finish all sync job) ``` Changelog: [General][Added] - Add new JS performance API to support getting RN app startup timings Reviewed By: rshest Differential Revision: D43326564 fbshipit-source-id: 7b4c7cae70ff64ba1714a1630cd5e183df6c06b0
81 lines
2.0 KiB
C++
81 lines
2.0 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 "ReactMarker.h"
|
|
#include <cxxreact/JSExecutor.h>
|
|
|
|
namespace facebook {
|
|
namespace react {
|
|
namespace ReactMarker {
|
|
|
|
#if __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Wglobal-constructors"
|
|
#endif
|
|
|
|
LogTaggedMarker logTaggedMarkerImpl = nullptr;
|
|
LogTaggedMarker logTaggedMarkerBridgelessImpl = nullptr;
|
|
GetAppStartTime getAppStartTimeImpl = nullptr;
|
|
|
|
#if __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
|
|
void logMarker(const ReactMarkerId markerId) {
|
|
logTaggedMarker(markerId, nullptr);
|
|
}
|
|
|
|
void logTaggedMarker(const ReactMarkerId markerId, const char *tag) {
|
|
StartupLogger::getInstance().logStartupEvent(markerId, tag);
|
|
logTaggedMarkerImpl(markerId, tag);
|
|
}
|
|
|
|
void logMarkerBridgeless(const ReactMarkerId markerId) {
|
|
logTaggedMarkerBridgeless(markerId, nullptr);
|
|
}
|
|
|
|
void logTaggedMarkerBridgeless(const ReactMarkerId markerId, const char *tag) {
|
|
StartupLogger::getInstance().logStartupEvent(markerId, tag);
|
|
logTaggedMarkerBridgelessImpl(markerId, tag);
|
|
}
|
|
|
|
double getAppStartTime() {
|
|
if (getAppStartTimeImpl == nullptr) {
|
|
return 0;
|
|
}
|
|
|
|
return getAppStartTimeImpl();
|
|
}
|
|
|
|
StartupLogger &StartupLogger::getInstance() {
|
|
static StartupLogger instance;
|
|
return instance;
|
|
}
|
|
|
|
void StartupLogger::logStartupEvent(
|
|
const ReactMarkerId markerId,
|
|
const char *tag) {
|
|
if (startupStopped) {
|
|
return;
|
|
}
|
|
|
|
if (markerId == ReactMarkerId::RUN_JS_BUNDLE_START ||
|
|
markerId == ReactMarkerId::RUN_JS_BUNDLE_STOP) {
|
|
startupReactMarkers.push_back(
|
|
{markerId, tag, JSExecutor::performanceNow()});
|
|
startupStopped = markerId == ReactMarkerId::RUN_JS_BUNDLE_STOP;
|
|
}
|
|
}
|
|
|
|
std::vector<ReactMarkerEvent> StartupLogger::getStartupReactMarkers() {
|
|
return startupReactMarkers;
|
|
}
|
|
|
|
} // namespace ReactMarker
|
|
} // namespace react
|
|
} // namespace facebook
|