1 /* 2 * Copyright (C) 2020 The Android Open Source Project 3 * 4 * Licensed under the Apache License, Version 2.0 (the "License"); 5 * you may not use this file except in compliance with the License. 6 * You may obtain a copy of the License at 7 * 8 * http://www.apache.org/licenses/LICENSE-2.0 9 * 10 * Unless required by applicable law or agreed to in writing, software 11 * distributed under the License is distributed on an "AS IS" BASIS, 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 * See the License for the specific language governing permissions and 14 * limitations under the License. 15 */ 16 17 #ifndef SRC_TRACE_PROCESSOR_DYNAMIC_EXPERIMENTAL_SLICE_LAYOUT_GENERATOR_H_ 18 #define SRC_TRACE_PROCESSOR_DYNAMIC_EXPERIMENTAL_SLICE_LAYOUT_GENERATOR_H_ 19 20 #include <set> 21 22 #include "src/trace_processor/sqlite/db_sqlite_table.h" 23 #include "src/trace_processor/storage/trace_storage.h" 24 25 namespace perfetto { 26 namespace trace_processor { 27 28 class ExperimentalSliceLayoutGenerator 29 : public DbSqliteTable::DynamicTableGenerator { 30 public: 31 static constexpr uint32_t kFilterTrackIdsColumnIndex = 32 static_cast<uint32_t>(tables::SliceTable::ColumnIndex::arg_set_id) + 2; 33 34 ExperimentalSliceLayoutGenerator(StringPool* string_pool, 35 const tables::SliceTable* table); 36 virtual ~ExperimentalSliceLayoutGenerator() override; 37 38 Table::Schema CreateSchema() override; 39 std::string TableName() override; 40 uint32_t EstimateRowCount() override; 41 util::Status ValidateConstraints(const QueryConstraints&) override; 42 std::unique_ptr<Table> ComputeTable(const std::vector<Constraint>&, 43 const std::vector<Order>&) override; 44 45 private: 46 std::unique_ptr<Table> AddLayoutColumn(const Table& table, 47 const std::set<TrackId>& selected, 48 StringPool::Id filter_id); 49 tables::SliceTable::Id InsertSlice( 50 std::map<tables::SliceTable::Id, tables::SliceTable::Id>& id_map, 51 tables::SliceTable::Id id, 52 base::Optional<tables::SliceTable::Id> parent_id); 53 54 StringPool* string_pool_; 55 const tables::SliceTable* slice_table_; 56 const StringPool::Id empty_string_id_; 57 }; 58 59 } // namespace trace_processor 60 } // namespace perfetto 61 62 #endif // SRC_TRACE_PROCESSOR_DYNAMIC_EXPERIMENTAL_SLICE_LAYOUT_GENERATOR_H_ 63