Separate pkgmgr-info legacy library and implement dbhandler (#52)
[platform/core/appfw/pkgmgr-info.git] / src / common / database / pkg_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 "pkg_set_db_handler.hh"
18
19 #include "pkgmgr_parser_db.h"
20
21 namespace pkgmgr_common {
22 namespace database {
23
24 PkgSetDBHandler::PkgSetDBHandler(uid_t uid)
25     : AbstractDBHandler(uid), uid_(uid) {}
26
27 PkgSetDBHandler::~PkgSetDBHandler() {}
28
29 void PkgSetDBHandler::SetPkgInfo(package_x* package) { package_ = package; }
30 void PkgSetDBHandler::SetPkgID(std::string pkgid) { pkgid = std::move(pkgid); }
31
32 bool PkgSetDBHandler::Execute() {
33   SetOpType(OPERATION_TYPE_WRITE);
34   SetDBType(DB_TYPE_FILE_CERTDB);
35   if (!Connect())
36     return false;
37
38   int ret = pkgmgr_parser_insert_pkg_info(package_, uid_);
39   if (ret != PM_PARSER_R_OK)
40     return false;
41
42   return true;
43 }
44
45 }  // namespace database
46 }  // namespace pkgmgr_common