Release 0.1.54.9
[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 const char *DB_CMD_NAME_SELECT_BY_IDX = "SELECT name, label FROM NAMES WHERE idx = ?001;";
31
32 } // anonymous namespace
33
34 namespace CKM {
35
36 DB::SqlConnection::Output CKMLogicExt::Execute(uid_t user, const std::string &cmd)
37 {
38         DB::SqlConnection::Output out;
39         m_userDataMap[user].database.m_connection->ExecCommand(&out, "%s", cmd.c_str());
40         return out;
41 }
42
43 DB::RowVector CKMLogicExt::getRows(uid_t user)
44 {
45         DB::Crypto& database = m_userDataMap[user].database;
46         DB::SqlConnection::DataCommandUniquePtr selectCommand =
47                 database.m_connection->PrepareDataCommand(DB_CMD_OBJECT_SELECT);
48
49         DB::RowVector rows;
50         while (selectCommand->Step())
51                 rows.push_back(database.getRow(selectCommand));
52         return rows;
53 }
54
55 void CKMLogicExt::saveRow(uid_t user, const DB::Row &row)
56 {
57         m_userDataMap[user].database.saveRow(row);
58 }
59
60 NameEntry CKMLogicExt::getNameByIdx(uid_t user, int idx)
61 {
62         DB::SqlConnection::DataCommandUniquePtr selectCommand =
63                 m_userDataMap[user].database.m_connection->PrepareDataCommand(DB_CMD_NAME_SELECT_BY_IDX);
64         selectCommand->BindInteger(1, idx);
65
66         if (!selectCommand->Step())
67                 ThrowErr(Exc::DatabaseFailed, "getting name from database failed");
68
69         NameEntry name;
70         name.name = selectCommand->GetColumnString(0);
71         name.owner = selectCommand->GetColumnString(1);
72         return name;
73 }
74
75 int CKMLogicExt::readDataHelperProtected(
76         const Credentials &cred,
77         DataType dataType,
78         const Name &name,
79         const ClientId &explicitOwner,
80         const Password &password,
81         Crypto::GObjUPtr &obj)
82 {
83         return readDataHelper(false, cred, dataType, name, explicitOwner, password, obj);
84 }
85
86 } // namespace CKM
87
88