Files
react-native/ReactCommon/react/renderer/mounting/TelemetryController.h
T
Oleksandr Melnykov 3a721f48b1 Pass mutation list to RCTMountingTransactionObserving callbacks
Summary:
Re-land of previous reverted commit.

Changelog: [Internal]

Reviewed By: cortinico, cipolleschi

Differential Revision: D35843710

fbshipit-source-id: 3adde4fba2f2702ad5b85b3b52b2f68843c6c9f2
2022-04-25 04:14:39 -07:00

61 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.
*/
#pragma once
#include <functional>
#include <mutex>
#include <react/renderer/mounting/MountingTransaction.h>
#include <react/renderer/telemetry/TransactionTelemetry.h>
namespace facebook {
namespace react {
class MountingCoordinator;
using MountingTransactionCallback = std::function<void(
MountingTransaction const &transaction,
SurfaceTelemetry const &surfaceTelemetry)>;
/*
* Provides convenient tools for aggregating and accessing telemetry data
* associated with running Surface.
*/
class TelemetryController final {
friend class MountingCoordinator;
/*
* To be used by `MountingCoordinator`.
*/
TelemetryController(MountingCoordinator const &mountingCoordinator) noexcept;
/*
* Not copyable.
*/
TelemetryController(TelemetryController const &other) noexcept = delete;
TelemetryController &operator=(TelemetryController const &other) noexcept =
delete;
public:
/*
* Calls `MountingCoordinator::pullTransaction()` and aggregates telemetry.
*/
bool pullTransaction(
MountingTransactionCallback const &willMount,
MountingTransactionCallback const &doMount,
MountingTransactionCallback const &didMount) const;
private:
MountingCoordinator const &mountingCoordinator_;
mutable SurfaceTelemetry compoundTelemetry_{};
mutable std::mutex mutex_;
};
} // namespace react
} // namespace facebook