blob: 0bb1ec37704ba066d0f7cc3b06a633f03883a512 [file] [log] [blame]
/*
* Copyright (C) 2022 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 com.android.server.wm.traces.common.parser
import com.android.server.wm.traces.common.Cache
import kotlin.js.JsName
/** Base parser class */
abstract class AbstractParser<InputTypeTrace, OutputTypeTrace> {
protected abstract val traceName: String
protected abstract fun doDecodeByteArray(bytes: ByteArray): InputTypeTrace
protected abstract fun doParse(input: InputTypeTrace): OutputTypeTrace
/**
* Uses a [ByteArray] to generates a trace
*
* @param bytes Parsed proto data
* @param clearCache If the caching used while parsing the object should be cleared
*/
@JsName("parse")
open fun parse(bytes: ByteArray, clearCache: Boolean = true): OutputTypeTrace {
val input = decodeByteArray(bytes)
return parse(input, clearCache)
}
/**
* Uses [InputTypeTrace] to generates a trace
*
* @param input Parsed proto data
* @param clearCache If the caching used while parsing the object should be cleared
*/
open fun parse(input: InputTypeTrace, clearCache: Boolean): OutputTypeTrace {
return try {
doParse(input)
} finally {
if (clearCache) {
Cache.clear()
}
}
}
protected fun decodeByteArray(input: ByteArray): InputTypeTrace {
return doDecodeByteArray(input)
}
}