Fix codes for setting certificate
[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 "pkgmgrinfo_type.h"
26 #include "pkgmgr-info.h"
27 #ifdef __cplusplus
28 extern "C" {
29 #endif
30
31 // TODO: should we get sqlite handle as parameter??
32 int pkginfo_internal_filter_get_list(sqlite3 *db, pkgmgrinfo_pkginfo_filter_h filter, uid_t uid, const char *locale, GHashTable **list);
33 int appinfo_internal_filter_get_list(sqlite3 *db, pkgmgrinfo_appinfo_filter_h filter, uid_t uid, const char *locale, GHashTable **list);
34 int certinfo_internal_get(sqlite3 *db, const char *pkgid, uid_t uid, pkgmgrinfo_certinfo_h certinfo);
35 int certinfo_internal_set(sqlite3 *db, const char *pkgid, pkgmgrinfo_instcertinfo_h handle, uid_t uid);
36 int certinfo_internal_delete(sqlite3 *db, const char *pkgid);
37 int get_query_result(sqlite3 *db, const char *query, GList **list, int *row, int *col);
38 int pkginfo_internal_filter_get_depends_on(sqlite3 *db, const char *pkgid, GList **list);
39 int execute_write_queries(sqlite3 *db, const char **queries, int len);
40 /** @} */
41 #ifdef __cplusplus
42 }
43 #endif
44 #endif                          /* __PKGMGRINFO_INTERNAL_H__ */
45 /**
46  * @}
47  * @}
48  */
49