881b84c3f7b5bda32c36b2a0b433a56ae8ac6583
[platform/core/appfw/pkgmgr-info.git] / src / server / database / cert_get_db_handler.cc
1 /*
2  * Copyright (c) 2021 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 #include "cert_get_db_handler.hh"
18
19 #include <shared_mutex>
20 #include <vector>
21
22 #include "utils/logging.hh"
23
24 #include "pkgmgrinfo_debug.h"
25 #include "pkgmgrinfo_internal.h"
26
27 namespace pkgmgr_server {
28 namespace database {
29
30 CertGetDBHandler::CertGetDBHandler(uid_t uid, int pid)
31     : AbstractDBHandler(uid, pid), uid_(uid), handle_(nullptr) {}
32
33 CertGetDBHandler::~CertGetDBHandler() {}
34
35 pkgmgr_certinfo_x* CertGetDBHandler::GetCertHandle() {
36   return handle_;
37 }
38
39 void CertGetDBHandler::SetPkgID(std::string pkgid) {
40   pkgid_ = std::move(pkgid);
41 }
42
43 int CertGetDBHandler::Execute() {
44   std::shared_lock<std::shared_mutex> s(lock_);
45
46   SetOpType(pkgmgr_common::DBOperationType::OPERATION_TYPE_READ);
47   SetDBType(pkgmgr_common::DBType::DB_TYPE_FILE_CERTDB);
48
49   if (!Connect()) {
50     LOG(ERROR) << "Failed to connect database";
51     return PMINFO_R_ERROR;
52   }
53
54   pkgmgrinfo_certinfo_h handle;
55   int ret = pkgmgrinfo_pkginfo_create_certinfo(&handle);
56   if (ret != PMINFO_R_OK)
57     return ret;
58
59   handle_ = reinterpret_cast<pkgmgr_certinfo_x*>(handle);
60   sqlite3* conn = GetConnection().front().first;
61
62   return certinfo_internal_get(conn, pkgid_.c_str(), uid_, handle_);
63 }
64
65 }  // namespace database
66 }  // namespace pkgmgr_server