Change logic of delivering db path and handle
[platform/core/appfw/pkgmgr-info.git] / src / common / 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 "db_handle_provider.hh"
18 #include "cert_set_db_handler.hh"
19
20 #include <vector>
21
22 #include "pkgmgrinfo_internal.h"
23
24 namespace pkgmgr_common {
25 namespace database {
26
27 CertSetDBHandler::CertSetDBHandler(uid_t uid, int pid)
28     : AbstractDBHandler(uid, pid), uid_(uid) {}
29
30 CertSetDBHandler::~CertSetDBHandler() {}
31
32 void CertSetDBHandler::SetCertHandle(pkgmgr_certinfo_x* cert_info) {
33   handle_ = cert_info;
34 }
35
36 int CertSetDBHandler::Execute() {
37   SetOpType(OPERATION_TYPE_WRITE);
38   SetDBType(DB_TYPE_FILE_CERTDB);
39   if (!Connect())
40     return PMINFO_R_ERROR;
41
42   DBHandleProvider::GetInst(uid_).SetMemoryMode(GetPID(), true);
43   sqlite3 *conn = GetConnection().front().first;
44   int ret = certinfo_internal_set(conn, handle_->pkgid, handle_, uid_);
45
46   return ret;
47 }
48
49 }  // namespace database
50 }  // namespace pkgmgr_common