// Copyright (C) 2024 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 {NUM} from '../../trace_processor/query_result';
import {Trace} from '../../public/trace';
import {PerfettoPlugin} from '../../public/plugin';
import {createQuerySliceTrack} from '../../components/tracks/query_slice_track';
import {TrackNode} from '../../public/workspace';

export default class implements PerfettoPlugin {
  static readonly id = 'dev.perfetto.TraceMetadata';
  async onTraceLoad(ctx: Trace): Promise<void> {
    const res = await ctx.engine.query(`
      select count() as cnt from (select 1 from clock_snapshot limit 1)
    `);
    const row = res.firstRow({cnt: NUM});
    if (row.cnt === 0) {
      return;
    }
    const uri = `/clock_snapshots`;
    const title = 'Clock Snapshots';
    const track = await createQuerySliceTrack({
      trace: ctx,
      uri,
      data: {
        sqlSource: `
          select ts, 0 as dur, 'Snapshot' as name
          from clock_snapshot
          `,
      },
    });
    ctx.tracks.registerTrack({
      uri,
      title,
      track,
    });
    const trackNode = new TrackNode({uri, title});
    ctx.workspace.addChildInOrder(trackNode);
  }
}
