The IStats service provides an interface for reporting metrics from vendor processes through the IStats::reportVendorAtom interface. The type and ordering of the data in a VendorAtom are determined by a proto definition which is typically OEM-specific. The code to construct the VendorAtom is generated from the proto definition. Add a soong config variable in the DRMHWC config namespace to enable the atom reporting. Currently there is only one such implementation. atom_reporter: Set this to configure OEM-specific atom reporting. With the config variable omitted, reporting will be disabled and a stub implementation is used, ensuring no build or runtime dependency or usage of the IStats service. Change-Id: I832adbd42412db1ab4c9403c1da60fa075443caa Signed-off-by: Drew Davenport <ddavenport@google.com>
31 lines
No EOL
904 B
C++
31 lines
No EOL
904 B
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.
|
|
*/
|
|
|
|
#define LOG_TAG "drmhwc"
|
|
|
|
#include "CompositionStatsAtomReporter.h"
|
|
|
|
#include "utils/log.h"
|
|
|
|
namespace android {
|
|
|
|
std::unique_ptr<CompositionStatsAtomReporter>
|
|
CompositionStatsAtomReporter::Create() {
|
|
ALOGI("Atom reporting is not enabled.");
|
|
return {};
|
|
}
|
|
|
|
} // namespace android
|