1
0
Fork 0
android_external_drm_hwcomp.../stats/CompositionStatsPoller.h
Andrew Wolfers 9255d0d10b drm_hwcomposer: Migrate to android::drm_hwcomposer namespace
Change-Id: I2859aa8f55532d88231389724956fc77b0625339
2025-09-08 18:53:00 +00:00

56 lines
1.6 KiB
C++

/*
* Copyright (C) 2025 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#pragma once
#include "stats/CompositionStats.h"
#include <condition_variable>
#include <memory>
#include <mutex>
#include <thread>
#include <android-base/thread_annotations.h>
namespace android::drm_hwcomposer {
class CompositionStatsAtomReporter;
// CompositionStatsPoller periodically polls the CompositionStatsProvider for
// the current CompositionStats. It then pushes the stats delta to the
// CompositionStatsAtomReporter.
class CompositionStatsPoller {
public:
CompositionStatsPoller(std::unique_ptr<CompositionStatsAtomReporter> reporter,
CompositionStatsProvider* provider);
~CompositionStatsPoller();
private:
void PollFunc();
std::thread thread_;
std::mutex mutex_;
std::condition_variable condition_;
// Accessed from both the helper thread and main thread.
bool exit_ GUARDED_BY(mutex_) = false;
// Only accessed from the helper thread.
CompositionStatsTracker tracker_;
std::unique_ptr<CompositionStatsAtomReporter> reporter_;
};
} // namespace android::drm_hwcomposer