blob: 3f1401a771e5fe86d62d96b199f534f21a2984a5 [file] [log] [blame]
// Copyright (C) 2018 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 '../../common/query_iterator';
import {fromNs, toNsCeil, toNsFloor} from '../../common/time';
import {LIMIT} from '../../common/track_data';
import {
TrackController,
trackControllerRegistry,
} from '../../controller/track_controller';
import {ANDROID_LOGS_TRACK_KIND, Config, Data} from './common';
class AndroidLogTrackController extends TrackController<Config, Data> {
static readonly kind = ANDROID_LOGS_TRACK_KIND;
async onBoundsChange(start: number, end: number, resolution: number):
Promise<Data> {
const startNs = toNsFloor(start);
const endNs = toNsCeil(end);
// |resolution| is in s/px the frontend wants.
const quantNs = toNsCeil(resolution);
const queryRes = await this.queryV2(`
select
cast(ts / ${quantNs} as integer) * ${quantNs} as tsQuant,
prio,
count(prio) as numEvents
from android_logs
where ts >= ${startNs} and ts <= ${endNs}
group by tsQuant, prio
order by tsQuant, prio limit ${LIMIT};`);
const rowCount = queryRes.numRows();
const result = {
start,
end,
resolution,
length: rowCount,
numEvents: 0,
timestamps: new Float64Array(rowCount),
priorities: new Uint8Array(rowCount),
};
const it = queryRes.iter({tsQuant: NUM, prio: NUM, numEvents: NUM});
for (let row = 0; it.valid(); it.next(), row++) {
result.timestamps[row] = fromNs(it.tsQuant);
const prio = Math.min(it.prio, 7);
result.priorities[row] |= (1 << prio);
result.numEvents += it.numEvents;
}
return result;
}
}
trackControllerRegistry.register(AndroidLogTrackController);