Implement pkgmgrinfo_pkginfo_set_installed_storage
[platform/core/appfw/pkgmgr-info.git] / src / common / database / query_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 QUERY_HANDLER_HH_
18 #define QUERY_HANDLER_HH_
19
20 #include <string>
21 #include <vector>
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 QueryHandler : public AbstractDBHandler{
37  public:
38   QueryHandler(uid_t uid);
39   ~QueryHandler();
40   void SetQuery(std::vector<std::string> query);
41   bool BindString(std::string value);
42   bool BindInt(int value);
43   std::string GetString();
44   int GetInt();
45   int GetRecordCount();
46   bool Execute() override;
47   std::vector<std::vector<std::string>>&& GetResult();
48
49  private:
50   uid_t uid_;
51   std::vector<std::string> query_;
52   std::vector<std::vector<std::string>> result_;
53 };
54
55 }  // namespace database
56 }  // namespace pkgmgr_common
57
58 #endif  // QUERY_HANDLER_HH_
59