bd0144cc1a4e3008b78c1e766936781cc057eb64
[platform/core/appfw/pkgmgr-info.git] / src / server / database / cert_set_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_set_db_handler.hh"
18
19 #include <vector>
20
21 #include "db_handle_provider.hh"
22
23 #include "pkgmgrinfo_internal.h"
24
25 namespace pkgmgr_server {
26 namespace database {
27
28 CertSetDBHandler::CertSetDBHandler(uid_t uid, int pid, bool is_offline)
29     : AbstractDBHandler(uid, pid), uid_(uid),
30       is_offline_(is_offline), handle_(nullptr) {}
31
32 CertSetDBHandler::~CertSetDBHandler() {}
33
34 void CertSetDBHandler::SetCertHandle(pkgmgr_certinfo_x* cert_info) {
35   handle_ = cert_info;
36 }
37
38 int CertSetDBHandler::Execute() {
39   std::unique_lock<std::shared_mutex> u(lock_);
40
41   SetOpType(pkgmgr_common::DBOperationType::OPERATION_TYPE_WRITE);
42   SetDBType(pkgmgr_common::DBType::DB_TYPE_FILE_CERTDB);
43
44   if (!Connect())
45     return PMINFO_R_ERROR;
46
47   if (!is_offline_)
48     DBHandleProvider::GetInst(uid_).SetMemoryMode(GetPID());
49   const auto& db = GetConnection().front().first;
50
51   return internal::CertInfoSet(db, handle_->pkgid, handle_, uid_);
52 }
53
54 }  // namespace database
55 }  // namespace pkgmgr_server