blob: 98ad9d3d78a9af86ea904cd9a8b2faf0e1c49933 [file]
// 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 m from 'mithril';
import {copyToClipboard} from '../../base/clipboard';
import {Icons} from '../../base/semantic_icons';
import {type time, Time} from '../../base/time';
import {Anchor} from '../../widgets/anchor';
import {MenuDivider, MenuItem, PopupMenu} from '../../widgets/menu';
import type {Trace} from '../../public/trace';
import {TimestampFormatMenuItem} from './timestamp_format_menu';
import {renderTimecode} from '../time_utils';
import {TimestampFormat} from '../../public/timeline';
// import {MenuItem, PopupMenu2} from './menu';
interface TimestampAttrs {
trace: Trace;
// The timestamp to print, this should be the absolute, raw timestamp as
// found in trace processor.
ts: time;
// Custom text value to show instead of the default HH:MM:SS.mmm uuu nnn
// formatting.
display?: m.Children;
extraMenuItems?: m.Child[];
}
export class Timestamp implements m.ClassComponent<TimestampAttrs> {
view({attrs}: m.Vnode<TimestampAttrs>) {
const {trace, ts} = attrs;
const timeline = trace.timeline;
return m(
PopupMenu,
{
trigger: m(
Anchor,
{
onmouseover: () => (timeline.hoverCursorTimestamp = ts),
onmouseout: () => (timeline.hoverCursorTimestamp = undefined),
},
attrs.display ??
this.formatTimestamp(trace, timeline.toDomainTime(ts)),
),
},
m(MenuItem, {
icon: Icons.Copy,
label: `Copy raw value`,
onclick: () => {
copyToClipboard(ts.toString());
},
}),
m(TimestampFormatMenuItem, {trace}),
attrs.extraMenuItems ? [m(MenuDivider), attrs.extraMenuItems] : null,
);
}
private formatTimestamp(trace: Trace, time: time): m.Children {
const fmt = trace.timeline.timestampFormat;
switch (fmt) {
case TimestampFormat.UTC:
case TimestampFormat.TraceTz:
case TimestampFormat.Timecode:
case TimestampFormat.CustomTimezone:
return renderTimecode(time);
case TimestampFormat.TraceNs:
return time.toString();
case TimestampFormat.TraceNsLocale:
return time.toLocaleString();
case TimestampFormat.Seconds:
return Time.formatSeconds(time);
case TimestampFormat.Milliseconds:
return Time.formatMilliseconds(time);
case TimestampFormat.Microseconds:
return Time.formatMicroseconds(time);
default:
const x: never = fmt;
throw new Error(`Invalid timestamp ${x}`);
}
}
}