mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
* Revert "Revert "Set SkPath::setIsVolatile based on whether the path survives at least two frames (#22620)" (#23044)" This reverts commit 4f914253bd7cd2a5cca3fd97213df37494e9bf37. * Fix tracing
74 lines
2.2 KiB
C++
74 lines
2.2 KiB
C++
// Copyright 2013 The Flutter Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
#ifndef FLUTTER_LIB_VOLATILE_PATH_TRACKER_H_
|
|
#define FLUTTER_LIB_VOLATILE_PATH_TRACKER_H_
|
|
|
|
#include <deque>
|
|
#include <mutex>
|
|
#include <set>
|
|
|
|
#include "flutter/fml/macros.h"
|
|
#include "flutter/fml/task_runner.h"
|
|
#include "flutter/fml/trace_event.h"
|
|
#include "third_party/skia/include/core/SkPath.h"
|
|
|
|
namespace flutter {
|
|
|
|
/// A cache for paths drawn from dart:ui.
|
|
///
|
|
/// Whenever a flutter::CanvasPath is created, it must Insert an entry into
|
|
/// this cache. Whenever a frame is drawn, the shell must call OnFrame. The
|
|
/// cache will flip the volatility bit on the SkPath and remove it from the
|
|
/// cache. If the Dart object is released, Erase must be called to avoid
|
|
/// tracking a path that is no longer referenced in Dart code.
|
|
class VolatilePathTracker {
|
|
public:
|
|
/// The fields of this struct must only accessed on the UI task runner.
|
|
struct TrackedPath {
|
|
bool tracking_volatility = false;
|
|
int frame_count = 0;
|
|
SkPath path;
|
|
};
|
|
|
|
explicit VolatilePathTracker(fml::RefPtr<fml::TaskRunner> ui_task_runner);
|
|
|
|
static constexpr int kFramesOfVolatility = 2;
|
|
|
|
// Starts tracking a path.
|
|
// Must be called from the UI task runner.
|
|
//
|
|
// Callers should only insert paths that are currently volatile.
|
|
void Insert(std::shared_ptr<TrackedPath> path);
|
|
|
|
// Removes a path from tracking.
|
|
//
|
|
// May be called from any thread.
|
|
void Erase(std::shared_ptr<TrackedPath> path);
|
|
|
|
// Called by the shell at the end of a frame after notifying Dart about idle
|
|
// time.
|
|
//
|
|
// This method will flip the volatility bit to false for any paths that have
|
|
// survived the |kFramesOfVolatility|.
|
|
//
|
|
// Must be called from the UI task runner.
|
|
void OnFrame();
|
|
|
|
private:
|
|
fml::RefPtr<fml::TaskRunner> ui_task_runner_;
|
|
std::atomic_bool needs_drain_ = false;
|
|
std::mutex paths_to_remove_mutex_;
|
|
std::deque<std::shared_ptr<TrackedPath>> paths_to_remove_;
|
|
std::set<std::shared_ptr<TrackedPath>> paths_;
|
|
|
|
void Drain();
|
|
|
|
FML_DISALLOW_COPY_AND_ASSIGN(VolatilePathTracker);
|
|
};
|
|
|
|
} // namespace flutter
|
|
|
|
#endif // FLUTTER_LIB_VOLATILE_PATH_TRACKER_H_
|