Initialize Tizen 2.3
[framework/appfw/app-checker.git] / include / internal.h
1 /*
2  *  app-checker
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>, Jaeho Lee <jaeho81.lee@samsung.com>
7  *
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  *
12  * http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  *
20  */
21 \r
22 \r
23 #ifndef __INTERNAL_H__\r
24 #define __INTERNAL_H__\r
25 \r
26 #include <unistd.h>\r
27 #include <ctype.h>\r
28 #include <dlog.h>\r
29 \r
30 #undef LOG_TAG\r
31 #define LOG_TAG "APP_CHECKER"
32 \r
33 #define MAX_PACKAGE_STR_SIZE 512\r
34 #define MAX_PACKAGE_TYPE_SIZE 128\r
35 \r
36 struct ac_data {\r
37         char pkg_name[MAX_PACKAGE_STR_SIZE];\r
38         char pkg_type[MAX_PACKAGE_TYPE_SIZE];\r
39         int pid;\r
40 };\r
41 \r
42 #define _E(fmt, arg...) LOGE(fmt,##arg)
43 #define _D(fmt, arg...) LOGD(fmt,##arg)
44 \r
45 #define retvm_if(expr, val, fmt, arg...) do { \\r
46         if(expr) { \\r
47                 _E(fmt, ##arg); \\r
48                 _E("(%s) -> %s() return", #expr, __FUNCTION__); \\r
49                 return (val); \\r
50         } \\r
51 } while (0)\r
52 \r
53 #define retv_if(expr, val) do { \\r
54         if(expr) { \\r
55                 _E("(%s) -> %s() return", #expr, __FUNCTION__); \\r
56                 return (val); \\r
57         } \\r
58 } while (0)\r
59 \r
60 #endif  /* __INTERNAL_H__ */\r
61 \r