Remove CryptoExt class in favor of friendship
[platform/core/security/key-manager.git] / misc / ckm_db_tool / ckm-logic-ext.cpp
1 /*
2  *  Copyright (c) 2000 - 2020 Samsung Electronics Co., Ltd All Rights Reserved
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  * @file       ckm-logic-ext.cpp
18  * @author     Krzysztof Jackiewicz (k.jackiewicz@samsung.com)
19  * @version    1.0
20  */
21
22 #include "ckm-logic-ext.h"
23
24 #include <dpl/db/sql_connection.h>
25
26 namespace {
27
28 const char *DB_CMD_OBJECT_SELECT = "SELECT * FROM [join_name_object_tables];";
29
30 } // anonymous namespace
31
32 namespace CKM {
33
34 DB::SqlConnection::Output CKMLogicExt::Execute(uid_t user, const std::string &cmd)
35 {
36         DB::SqlConnection::Output out;
37         m_userDataMap[user].database.m_connection->ExecCommand(&out, "%s", cmd.c_str());
38         return out;
39 }
40
41 DB::RowVector CKMLogicExt::getRows(uid_t user)
42 {
43         DB::Crypto& database = m_userDataMap[user].database;
44         DB::SqlConnection::DataCommandUniquePtr selectCommand =
45                 database.m_connection->PrepareDataCommand(DB_CMD_OBJECT_SELECT);
46
47         DB::RowVector rows;
48         while (selectCommand->Step())
49                 rows.push_back(database.getRow(selectCommand));
50         return rows;
51 }
52
53 void CKMLogicExt::saveRow(uid_t user, const DB::Row &row)
54 {
55         m_userDataMap[user].database.saveRow(row);
56 }
57
58 } // namespace CKM
59
60