5ec49aa07ff6e5222b8c1ac8c48c584e0ab60c3b
[platform/core/appfw/pkgmgr-info.git] / src / pkgmgrinfo_internal.h
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 __PKGMGRINFO_INTERNAL_H__
18 #define __PKGMGRINFO_INTERNAL_H__
19
20 #include <errno.h>
21 #include <stdbool.h>
22 #include <unistd.h>
23 #include <sys/types.h>
24
25 #include <sqlite3.h>
26
27 #include "pkgmgr_parser.h"
28 #include "pkgmgrinfo_type.h"
29 #include "pkgmgr-info.h"
30 #ifdef __cplusplus
31 extern "C" {
32 #endif
33
34 // TODO: should we get sqlite handle as parameter??
35 int pkginfo_internal_filter_get_list(sqlite3 *db, pkgmgrinfo_pkginfo_filter_h filter, uid_t uid, const char *locale, GHashTable **list);
36 int appinfo_internal_filter_get_list(sqlite3 *db, pkgmgrinfo_appinfo_filter_h filter, uid_t uid, const char *locale, GHashTable *list);
37 int certinfo_internal_get(sqlite3 *db, const char *pkgid, uid_t uid, pkgmgrinfo_certinfo_h certinfo);
38 int certinfo_internal_set(sqlite3 *db, const char *pkgid, pkgmgrinfo_instcertinfo_h handle, uid_t uid);
39 int certinfo_internal_delete(sqlite3 *db, const char *pkgid);
40 int get_query_result(sqlite3 *db, const char *query, GList **list, int *row, int *col);
41 int pkginfo_internal_filter_get_depends_on(sqlite3 *db, const char *pkgid, GList **list);
42 int execute_write_queries(sqlite3 *db, const char **queries, int len);
43
44 int pkgmgr_parser_insert_pkg_info(sqlite3 *db, manifest_x *mfx, uid_t uid);
45 int pkgmgr_parser_update_pkg_info(sqlite3 *db, manifest_x *mfx, uid_t uid);
46 int pkgmgr_parser_delete_pkg_info(sqlite3 *db, const char *package, uid_t uid);
47
48 /** @} */
49 #ifdef __cplusplus
50 }
51 #endif
52 #endif                          /* __PKGMGRINFO_INTERNAL_H__ */
53 /**
54  * @}
55  * @}
56  */
57