blob: 6a2ed3d1a865ec4274706dee02256016384725fb [file] [log] [blame]
/*
* Copyright (C) 2023 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.
*/
package android.tools.common.io
/** Types of traces/dumps that cna be in a flicker result */
enum class TraceType(val fileName: String, val isTrace: Boolean) {
SF("layers_trace$WINSCOPE_EXT", isTrace = true),
WM("wm_trace$WINSCOPE_EXT", isTrace = true),
TRANSACTION("transactions_trace$WINSCOPE_EXT", isTrace = true),
TRANSITION("transition_trace$WINSCOPE_EXT", isTrace = true),
EVENT_LOG("eventlog$WINSCOPE_EXT", isTrace = true),
SCREEN_RECORDING("transition.mp4", isTrace = true),
SF_DUMP("sf_dump$WINSCOPE_EXT", isTrace = false),
WM_DUMP("wm_dump$WINSCOPE_EXT", isTrace = false);
companion object {
fun fromFileName(fileName: String): TraceType {
return when {
fileName == SF.fileName -> SF
fileName == WM.fileName -> WM
fileName == TRANSACTION.fileName -> TRANSACTION
fileName == TRANSITION.fileName -> TRANSITION
fileName == SCREEN_RECORDING.fileName -> SCREEN_RECORDING
fileName.endsWith(SF_DUMP.fileName) -> SF_DUMP
fileName.endsWith(WM_DUMP.fileName) -> WM_DUMP
else -> error("Unknown trace type for fileName=$fileName")
}
}
}
}