blob: a0484200f6c1417e694a5b91f09abfdf2b897755 [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.
*/
import {Analytics} from 'logging/analytics';
import {Trace, TraceEntry} from './trace';
import {TracePosition} from './trace_position';
import {TraceTypeUtils} from './trace_type';
export class TraceEntryFinder {
static findCorrespondingEntry<T>(
trace: Trace<T>,
position: TracePosition,
): TraceEntry<T> | undefined {
if (trace.lengthEntries === 0) {
return undefined;
}
if (trace.isDump()) {
// always display dumps regardless of the current trace position
return trace.getEntry(0);
}
if (position.entry?.getFullTrace() === trace.getEntry(0).getFullTrace()) {
return position.entry as TraceEntry<T>;
}
if (position.frame !== undefined && trace.hasFrameInfo()) {
try {
const frame = trace.getFrame(position.frame);
if (frame.lengthEntries > 0) {
return frame.getEntry(0);
}
} catch (e) {
console.warn(`Could not retrieve frame: ${(e as Error).message}`);
Analytics.Error.logFrameMapError((e as Error).message);
}
}
if (position.entry) {
const entryTraceType = position.entry.getFullTrace().type;
const timestamp = position.entry.getTimestamp();
if (TraceTypeUtils.compareByUiPipelineOrder(entryTraceType, trace.type)) {
return (
trace.findFirstGreaterEntry(timestamp) ??
trace.findFirstGreaterOrEqualEntry(timestamp)
);
} else {
return (
trace.findLastLowerEntry(timestamp) ??
trace.findLastLowerOrEqualEntry(timestamp)
);
}
}
return trace.findLastLowerOrEqualEntry(position.timestamp);
}
}