Key unwrapping implementation in TZ backend
[platform/core/security/key-manager.git] / misc / ckm_db_tool / db-wrapper.h
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       db-wrapper.h
18  * @author     Krzysztof Jackiewicz (k.jackiewicz@samsung.com)
19  * @author     Bartlomiej Grzelewski (b.grzelewski@samsung.com)
20  * @version    1.0
21  */
22 #pragma once
23
24 #include <string>
25
26 #include <ckm/ckm-type.h>
27 #include <ckm/ckm-error.h>
28 #include <message-buffer.h>
29 #include <dpl/db/sql_connection.h>
30 #include <exception.h>
31 #include "ckm-logic-ext.h"
32 #include "decrypt.h"
33
34 namespace CKM {
35
36 class DbWrapper {
37 public:
38         DbWrapper(uid_t uid, Password pw) : m_uid(uid), m_pw(pw) {}
39
40         int unlock();
41         void lock();
42         void process(const std::string &cmd, bool shouldDecrypt);
43         DB::RowVector getRows();
44         void saveRow(const DB::Row &row);
45
46 private:
47         void displayRow(const DB::SqlConnection::Output::Row &row, bool trim, Decrypt *decrypt);
48
49         uid_t m_uid;
50         Password m_pw;
51         CKMLogicExt m_logic;
52 };
53
54 } // namespace CKM
55