blob: 38b6fceb528c726f41437b17ce87b4ca4b4b839e [file] [log] [blame]
Hector Dearman3d26fdb2018-07-09 13:54:06 +01001// Copyright (C) 2018 The Android Open Source Project
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7// http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
Micha Schwab01b35682018-06-28 13:56:49 +010014
Deepanjan Roy75b46a92018-07-24 09:11:29 -040015import {TrackState} from '../common/state';
Deepanjan Roy56fa86b2018-08-02 10:25:56 -040016
Deepanjan Roy424485b2018-07-26 08:37:35 -040017import {TimeScale} from './time_scale';
Michail Schwabbbdd9832018-07-12 12:02:53 -040018import {VirtualCanvasContext} from './virtual_canvas_context';
Micha Schwab01b35682018-06-28 13:56:49 +010019
Deepanjan Roy424485b2018-07-26 08:37:35 -040020/**
Deepanjan Roy56fa86b2018-08-02 10:25:56 -040021 * This interface forces track implementations to have some static properties.
22 * Typescript does not have abstract static members, which is why this needs to
23 * be in a seperate interface.
Deepanjan Roy424485b2018-07-26 08:37:35 -040024 */
25export interface TrackCreator {
Hector Dearmanc62a5e32018-07-27 12:54:44 +010026 // Store the kind explicitly as a string as opposed to using class.kind in
Deepanjan Roy424485b2018-07-26 08:37:35 -040027 // case we ever minify our code.
Hector Dearmanc62a5e32018-07-27 12:54:44 +010028 readonly kind: string;
Deepanjan Roy75b46a92018-07-24 09:11:29 -040029
Deepanjan Roy56fa86b2018-08-02 10:25:56 -040030 // We need the |create| method because the stored value in the registry is an
31 // abstract class, and we cannot call 'new' on an abstract class.
Deepanjan Roy424485b2018-07-26 08:37:35 -040032 create(TrackState: TrackState): Track;
33}
Michail Schwabbeb34522018-07-20 08:15:17 -040034
Deepanjan Roy424485b2018-07-26 08:37:35 -040035/**
36 * The abstract class that needs to be implemented by all tracks.
37 */
38export abstract class Track {
Deepanjan Roy56fa86b2018-08-02 10:25:56 -040039 // TODO: Typecheck that arg of consumeData and published data for a Track has
40 // the same type.
41 /**
42 * Receive data published by the TrackController of this track.
43 */
44 abstract consumeData(trackData: {}): void;
Deepanjan Roy424485b2018-07-26 08:37:35 -040045 constructor(protected trackState: TrackState) {}
46 abstract renderCanvas(
Michail Schwab405002c2018-07-26 13:19:10 -040047 vCtx: VirtualCanvasContext, width: number, timeScale: TimeScale,
Hector Dearmana38bd902018-08-02 10:38:41 +010048 visibleWindowMs: {start: number, end: number}, data?: {}): void;
Deepanjan Roy424485b2018-07-26 08:37:35 -040049}