blob: 9307e2721a06528140b31e02ce98ad213857ffd5 [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.device.traces.monitors.events
import android.tools.common.CrossPlatform
import android.tools.common.FLICKER_TAG
import android.tools.common.Timestamp
import android.tools.common.io.TraceType
import android.tools.common.traces.events.EventLog
import android.tools.device.traces.executeShellCommand
import android.tools.device.traces.monitors.TraceMonitor
import android.tools.device.traces.now
import java.io.File
import java.io.FileOutputStream
/** Collects event logs during transitions. */
open class EventLogMonitor : TraceMonitor() {
override val traceType = TraceType.EVENT_LOG
final override var isEnabled = false
private set
private var traceStartTime: Timestamp? = null
override fun start() {
require(!isEnabled) { "Trace already running" }
isEnabled = true
traceStartTime = now()
}
override fun doStop(): File {
require(isEnabled) { "Trace not running" }
isEnabled = false
val sinceTime = traceStartTime?.unixNanosToLogFormat() ?: error("Missing start timestamp")
traceStartTime = null
val outputFile = File.createTempFile(TraceType.EVENT_LOG.fileName, "")
FileOutputStream(outputFile).use {
it.write("${EventLog.MAGIC_NUMBER}\n".toByteArray())
val command =
"logcat -b events -v threadtime -v printable -v uid -v nsec " +
"-v epoch -t $sinceTime >> $outputFile"
CrossPlatform.log.d(FLICKER_TAG, "Running '$command'")
val eventLogString = executeShellCommand(command)
it.write(eventLogString)
}
return outputFile
}
}