138e8af95f202b8abb6dc9f288a3ed4d78835180
[platform/core/appfw/pkgmgr-info.git] / src / common / database / pkg_set_db_handler.hh
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 #ifndef PKG_SET_DB_HANDLER_HH_
18 #define PKG_SET_DB_HANDLER_HH_
19
20 #include <string>
21 #include <list>
22
23 #include <sys/types.h>
24
25 #include "abstract_db_handler.hh"
26 #include "pkgmgrinfo_basic.h"
27 #include "pkgmgrinfo_private.h"
28
29 namespace pkgmgr_common {
30 namespace database {
31
32 #ifndef EXPORT_API
33 #define EXPORT_API __attribute__((visibility("default")))
34 #endif
35
36 class EXPORT_API PkgSetDBHandler : public AbstractDBHandler{
37  public:
38   PkgSetDBHandler(uid_t uid);
39   ~PkgSetDBHandler();
40   void SetPkgInfo(package_x* package);
41   void SetPkgID(std::string pkgid);
42   bool Execute() override;
43
44  private:
45   std::string pkgid_;
46   package_x* package_ = nullptr;
47   uid_t uid_;
48 };
49
50 }  // namespace database
51 }  // namespace pkgmgr_common
52
53 #endif  // PKG_SET_DB_HANDLER_HH_
54