• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright (c) 2021 Huawei Device Co., Ltd.
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.
14  */
15 
16 #include "appname_table.h"
17 
18 namespace SysTuning {
19 namespace TraceStreamer {
20 enum Index { ID = 0, FLAG, APP_NAME, APP_KEY };
AppnameTable(const TraceDataCache * dataCache)21 AppnameTable::AppnameTable(const TraceDataCache* dataCache) : TableBase(dataCache)
22 {
23     tableColumn_.push_back(TableBase::ColumnInfo("id", "INTEGER"));
24     tableColumn_.push_back(TableBase::ColumnInfo("flag", "INTEGER"));
25     tableColumn_.push_back(TableBase::ColumnInfo("app_name", "INTEGER"));
26     tableColumn_.push_back(TableBase::ColumnInfo("app_key", "INTEGER"));
27     tablePriKey_.push_back("id");
28 }
29 
~AppnameTable()30 AppnameTable::~AppnameTable() {}
31 
CreateCursor()32 std::unique_ptr<TableBase::Cursor> AppnameTable::CreateCursor()
33 {
34     return std::make_unique<Cursor>(dataCache_, this);
35 }
36 
Cursor(const TraceDataCache * dataCache,TableBase * table)37 AppnameTable::Cursor::Cursor(const TraceDataCache* dataCache, TableBase* table)
38     : TableBase::Cursor(dataCache, table, static_cast<uint32_t>(dataCache->GetConstAppNamesData().Size())),
39       appName_(dataCache->GetConstAppNamesData())
40 {
41 }
42 
~Cursor()43 AppnameTable::Cursor::~Cursor() {}
44 
Column(int32_t column) const45 int32_t AppnameTable::Cursor::Column(int32_t column) const
46 {
47     switch (column) {
48         case ID:
49             sqlite3_result_int64(context_, dataCache_->GetConstAppNamesData().IdsData()[CurrentRow()]);
50             break;
51         case FLAG:
52             sqlite3_result_int(context_, dataCache_->GetConstAppNamesData().Falgs()[CurrentRow()]);
53             break;
54         case APP_NAME:
55             sqlite3_result_int64(context_, dataCache_->GetConstAppNamesData().EventSourceId()[CurrentRow()]);
56             break;
57         case APP_KEY:
58             sqlite3_result_int64(context_, dataCache_->GetConstAppNamesData().AppName()[CurrentRow()]);
59             break;
60         default:
61             TS_LOGF("Unregistered column : %d", column);
62             break;
63     }
64     return SQLITE_OK;
65 }
66 } // namespace TraceStreamer
67 } // namespace SysTuning
68