blob: 2e13a7e163693178e404818f6e7b866c9ba7d398 [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.
*/
#include "src/trace_processor/sql_stats_table.h"
#include <sqlite3.h>
#include <algorithm>
#include <bitset>
#include <numeric>
#include "src/trace_processor/sqlite_utils.h"
#include "src/trace_processor/trace_storage.h"
namespace perfetto {
namespace trace_processor {
SqlStatsTable::SqlStatsTable(sqlite3*, const TraceStorage* storage)
: storage_(storage) {}
void SqlStatsTable::RegisterTable(sqlite3* db, const TraceStorage* storage) {
Table::Register<SqlStatsTable>(db, storage, "sqlstats");
}
Table::Schema SqlStatsTable::CreateSchema(int, const char* const*) {
return Schema(
{
Table::Column(Column::kQuery, "query", ColumnType::kString),
Table::Column(Column::kTimeQueued, "queued", ColumnType::kUlong),
Table::Column(Column::kTimeStarted, "started", ColumnType::kUlong),
Table::Column(Column::kTimeEnded, "ended", ColumnType::kUlong),
},
{Column::kTimeQueued});
}
std::unique_ptr<Table::Cursor> SqlStatsTable::CreateCursor(
const QueryConstraints&,
sqlite3_value**) {
return std::unique_ptr<Table::Cursor>(new Cursor(storage_));
}
int SqlStatsTable::BestIndex(const QueryConstraints&, BestIndexInfo* info) {
info->order_by_consumed = false; // Delegate sorting to SQLite.
return SQLITE_OK;
}
SqlStatsTable::Cursor::Cursor(const TraceStorage* storage) : storage_(storage) {
num_rows_ = storage->sql_stats().size();
}
SqlStatsTable::Cursor::~Cursor() = default;
int SqlStatsTable::Cursor::Next() {
row_++;
return SQLITE_OK;
}
int SqlStatsTable::Cursor::Eof() {
return row_ >= num_rows_;
}
int SqlStatsTable::Cursor::Column(sqlite3_context* context, int col) {
const TraceStorage::SqlStats& stats = storage_->sql_stats();
switch (col) {
case Column::kQuery:
sqlite3_result_text(context, stats.queries()[row_].c_str(), -1,
sqlite_utils::kSqliteStatic);
break;
case Column::kTimeQueued:
sqlite3_result_int64(context,
static_cast<int64_t>(stats.times_queued()[row_]));
break;
case Column::kTimeStarted:
sqlite3_result_int64(context,
static_cast<int64_t>(stats.times_started()[row_]));
break;
case Column::kTimeEnded:
sqlite3_result_int64(context,
static_cast<int64_t>(stats.times_ended()[row_]));
break;
}
return SQLITE_OK;
}
} // namespace trace_processor
} // namespace perfetto