Merge "Adding Mime types parsing" into tizen_2.1
[platform/core/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
31 /* debug output */
32 #if defined(NDEBUG)
33 #define DBG(fmt, args...)
34 #define __SET_DBG_OUTPUT(fp)
35 #elif defined(PRINT)
36 #include <stdio.h>
37 FILE *___log = NULL;
38 #define DBG(fmt, args...) \
39         {if (!___log) ___log = stderr; \
40          fprintf(___log, "[DBG:PMS]%s:%d:%s(): " fmt "\n",\
41          basename(__FILE__), __LINE__, __func__, ##args); fflush(___log); }
42 #define __SET_DBG_OUTPUT(fp) \
43         (___log = fp)
44 #else
45 #include <dlog.h>
46 #undef LOG_TAG
47 #define LOG_TAG "PKGMGR_PARSER"
48
49 #define DBGE(fmt, arg...) LOGE(fmt,##arg)
50 #define DBG(fmt, arg...) LOGD(fmt,##arg)
51 #endif
52
53
54 #ifndef API
55 #define API __attribute__ ((visibility("default")))
56 #endif
57
58
59 #endif                          /* __PKGMGR_PARSER_INTERNAL_H__ */