tizen 2.3.1 release
[framework/appfw/pkgmgr-info.git] / parser / pkgmgr_parser_internal.h
1 /*
2  * pkgmgr-info
3  *
4  * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. All rights reserved.
5  *
6  * Contact: Jayoun Lee <airjany@samsung.com>, Sewook Park <sewook7.park@samsung.com>,
7  * Jaeho Lee <jaeho81.lee@samsung.com>, Shobhit Srivastava <shobhit.s@samsung.com>
8  *
9  * Licensed under the Apache License, Version 2.0 (the "License");
10  * you may not use this file except in compliance with the License.
11  * You may obtain a copy of the License at
12  *
13  * http://www.apache.org/licenses/LICENSE-2.0
14  *
15  * Unless required by applicable law or agreed to in writing, software
16  * distributed under the License is distributed on an "AS IS" BASIS,
17  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18  * See the License for the specific language governing permissions and
19  * limitations under the License.
20  *
21  */
22
23
24
25
26
27 #ifndef __PKGMGR_PARSER_INTERNAL_H__
28 #define __PKGMGR_PARSER_INTERNAL_H__
29
30 #include "pkgmgrinfo_basic.h"
31
32 #ifndef API
33 #define API __attribute__ ((visibility("default")))
34 #endif
35
36 void pkgmgr_parser_close_db();
37 void __add_preload_info(manifest_x * mfx, const char *manifest);
38 void __extract_data(gpointer data, label_x *lbl, license_x *lcn, icon_x *icn, description_x *dcn, author_x *ath,
39                 char **label, char **license, char **icon, char **description, char **author);
40 GList *__create_locale_list(GList *locale, label_x *lbl, license_x *lcn, icon_x *icn, description_x *dcn, author_x *ath);
41 int __exec_query_no_msg(char *query);
42 void __trimfunc(GList* trim_list);
43 const char *__get_str(const char *str);
44 int __initialize_db(sqlite3 *db_handle, char *db_query);
45 int __exec_query(char *query);
46 int __evaluate_query(sqlite3 *db_handle, char *query);
47
48 #endif                          /* __PKGMGR_PARSER_INTERNAL_H__ */