Release version 0.22.40
[platform/core/appfw/pkgmgr-info.git] / src / server / pkgmgrinfo_internal.hh
1 /*
2  * Copyright (c) 2022 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 __PKGMGRINFO_INTERNAL_HH__
18 #define __PKGMGRINFO_INTERNAL_HH__
19
20 #include <unistd.h>
21 #include <sys/types.h>
22 #include <sqlite3.h>
23
24 #include <memory>
25 #include <vector>
26
27 #include "pkgmgr_parser.h"
28 #include "pkgmgrinfo_type.h"
29 #include "pkgmgr-info.h"
30
31 namespace pkgmgr_server {
32 namespace internal {
33
34 extern API bool check_app_storage_status(pkgmgrinfo_filter_x* tmp_filter);
35
36 extern API int appinfo_internal_filter_get_list(sqlite3* db,
37     pkgmgrinfo_appinfo_filter_h filter, uid_t db_uid, uid_t uid,
38     const char* locale,
39     std::vector<std::shared_ptr<application_x>>& appinfo_list);
40
41 }  // namespace internal
42 }  // namespace pkgmgr_server
43
44 #endif  // __PKGMGRINFO_INTERNAL_HH__