* LRU cache of recently-used is dead, replaced disk storage * ASHMEM size is read from native by the system service, no longer requires keeping a sizeof() in sync with a constant in Java * Supports dumping in proto format by passing --proto * Rotates logs on a daily basis * Keeps a history of the most recent 3 days Bug: 33705836 Test: Manual. Verified log rotating works by setting it up to rotate every minute instead of day. Confirmed /data/system/graphicsstats only has the most recent 3 entries after several minutes Change-Id: Ib84bafb26c58701cc86f123236de4fff01aaa4aa
60 lines
1.9 KiB
C++
60 lines
1.9 KiB
C++
/*
|
|
* Copyright (C) 2017 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 <string>
|
|
|
|
#include "JankTracker.h"
|
|
#include "utils/Macros.h"
|
|
|
|
namespace android {
|
|
namespace service {
|
|
class GraphicsStatsProto;
|
|
}
|
|
|
|
namespace uirenderer {
|
|
|
|
/*
|
|
* The exported entry points used by GraphicsStatsService.java in f/b/services/core
|
|
*
|
|
* NOTE: Avoid exporting a requirement on the protobuf itself. Keep the usage
|
|
* of the generated protobuf classes internal to libhwui.so to minimize library
|
|
* bloat.
|
|
*/
|
|
class GraphicsStatsService {
|
|
public:
|
|
class Dump;
|
|
enum class DumpType {
|
|
Text,
|
|
Protobuf,
|
|
};
|
|
|
|
ANDROID_API static void saveBuffer(const std::string& path, const std::string& package,
|
|
int versionCode, int64_t startTime, int64_t endTime, const ProfileData* data);
|
|
|
|
ANDROID_API static Dump* createDump(int outFd, DumpType type);
|
|
ANDROID_API static void addToDump(Dump* dump, const std::string& path, const std::string& package,
|
|
int versionCode, int64_t startTime, int64_t endTime, const ProfileData* data);
|
|
ANDROID_API static void addToDump(Dump* dump, const std::string& path);
|
|
ANDROID_API static void finishDump(Dump* dump);
|
|
|
|
// Visible for testing
|
|
static bool parseFromFile(const std::string& path, service::GraphicsStatsProto* output);
|
|
};
|
|
|
|
} /* namespace uirenderer */
|
|
} /* namespace android */ |