Adjust directory hierarchy
[platform/core/appfw/aul-1.git] / src / rsc-mgr / aul_rsc_mgr_internal.h
1 /*
2  * Copyright (c) 2016 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
18 #ifndef __AUL_RSC_MGR_INTERNAL_H__
19 #define __AUL_RSC_MGR_INTERNAL_H__
20
21 #ifdef LOG_TAG
22 #undef LOG_TAG
23 #endif
24
25 #define LOG_TAG "AUL_RESOURCE_MANAGER"
26
27 #define RSC_GROUP_TYPE_IMAGE "image"
28 #define RSC_GROUP_TYPE_LAYOUT "layout"
29 #define RSC_GROUP_TYPE_SOUND "sound"
30 #define RSC_GROUP_TYPE_BIN "bin"
31
32 #define RSC_NODE_ATTR_SCREEN_DPI "screen-dpi"
33 #define RSC_NODE_ATTR_SCREEN_DPI_RANGE "screen-dpi-range"
34 #define RSC_NODE_ATTR_SCREEN_WIDTH_RANGE "screen-width-range"
35 #define RSC_NODE_ATTR_SCREEN_LARGE "screen-large"
36 #define RSC_NODE_ATTR_SCREEN_BPP "screen-bpp"
37 #define RSC_NODE_ATTR_PLATFORM_VER "platform-version"
38 #define RSC_NODE_ATTR_LANGUAGE "language"
39
40 typedef struct {
41         char *folder;
42         bundle *attr;
43 } resource_node_t;
44
45 typedef struct {
46         char *folder;
47         char *type;
48         GList *node_list;
49 } resource_group_t;
50
51 typedef struct {
52         char *package;
53         GList *group_list;
54 } resource_data_t;
55
56 int _resource_open(const char *path, resource_data_t **data);
57 int _resource_close(resource_data_t *data);
58
59 #endif