Various patches are applied
[platform/framework/web/data-provider-master.git] / include / conf.h
1 /*
2  * Copyright 2013  Samsung Electronics Co., Ltd
3  *
4  * Licensed under the Flora License, Version 1.1 (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://floralicense.org/license/
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 struct conf {
18         int width;
19         int height;
20
21         int base_width;
22         int base_height;
23         double minimum_period;
24
25         struct {
26                 char *script;
27                 char *abi;
28                 char *pd_group;
29                 double period;
30         } default_conf;
31
32         struct {
33                 char *name;
34                 char *secured;
35                 char *abi;
36         } launch_key;
37
38         double default_packet_time;
39
40         char *empty_content;
41         char *empty_title;
42
43         char *default_content;
44         char *default_title;
45
46         unsigned long minimum_space;
47
48         char *replace_tag;
49
50         double slave_ttl;
51         double slave_activate_time;
52
53         int max_log_line;
54         int max_log_file;
55
56         unsigned long sqlite_flush_max;
57
58         struct {
59                 char *conf;
60                 char *image;
61                 char *script;
62                 char *root;
63                 char *script_port;
64                 char *slave_log;
65                 char *reader;
66                 char *always;
67                 char *db;
68                 char *input;
69         } path;
70
71         int max_size_type;
72
73         int slave_max_load;
74
75         double ping_time;
76
77         char *vconf_sys_cluster;
78         int max_pended_ctx_events;
79
80         int use_sw_backend;
81         char *provider_method;
82         int debug_mode;
83         int overwrite_content;
84         int com_core_thread;
85         int use_xmonitor;
86
87         double scale_width_factor;
88         double scale_height_factor;
89 };
90
91 extern struct conf g_conf;
92
93 extern int conf_loader(void);
94
95 #define BASE_W                  g_conf.base_width
96 #define BASE_H                  g_conf.base_height
97
98 #define CR 13
99 #define LF 10
100
101 #define SCALE_WIDTH_FACTOR      g_conf.scale_width_factor
102 #define SCALE_HEIGHT_FACTOR     g_conf.scale_height_factor
103
104 #define USE_SW_BACKEND          g_conf.use_sw_backend
105 #define PROVIDER_METHOD         g_conf.provider_method
106 #define DEBUG_MODE              g_conf.debug_mode
107 #define OVERWRITE_CONTENT       g_conf.overwrite_content
108 #define COM_CORE_THREAD         g_conf.com_core_thread
109
110 #define MINIMUM_PERIOD          g_conf.minimum_period
111
112 #define DEFAULT_SCRIPT          g_conf.default_conf.script
113 #define DEFAULT_ABI             g_conf.default_conf.abi
114 #define DEFAULT_GROUP           g_conf.default_conf.pd_group
115 #define DEFAULT_PERIOD          g_conf.default_conf.period
116 #define PRIORITY_NO_CHANGE      -1.0f
117
118 #define BUNDLE_SLAVE_NAME       g_conf.launch_key.name
119 #define BUNDLE_SLAVE_SECURED    g_conf.launch_key.secured
120 #define BUNDLE_SLAVE_ABI        g_conf.launch_key.abi
121 #define PACKET_TIME             g_conf.default_packet_time
122 #define CONTENT_NO_CHANGE       g_conf.empty_content
123 #define TITLE_NO_CHANGE         g_conf.empty_title
124 #define DEFAULT_TITLE           g_conf.default_title
125 #define DEFAULT_CONTENT         g_conf.default_content
126 #define MINIMUM_SPACE           g_conf.minimum_space
127
128 #define IMAGE_PATH              g_conf.path.image
129 #define SCRIPT_PATH             g_conf.path.script
130 #define SCRIPT_PORT_PATH        g_conf.path.script_port
131 #define CONF_PATH               g_conf.path.conf
132 #define ROOT_PATH               g_conf.path.root
133 #define SLAVE_LOG_PATH          g_conf.path.slave_log
134 #define READER_PATH             g_conf.path.reader
135 #define ALWAYS_PATH             g_conf.path.always
136 #define INPUT_PATH              g_conf.path.input
137
138 #define REPLACE_TAG_APPID       g_conf.replace_tag
139 #define SLAVE_TTL               g_conf.slave_ttl
140 #define SLAVE_ACTIVATE_TIME     g_conf.slave_activate_time
141
142 #define MAX_LOG_LINE            g_conf.max_log_line
143 #define MAX_LOG_FILE            g_conf.max_log_file
144
145 #define SQLITE_FLUSH_MAX        g_conf.sqlite_flush_max
146 #define DBFILE                  g_conf.path.db
147
148 #define SLAVE_MAX_LOAD          g_conf.slave_max_load
149 #define DEFAULT_PING_TIME       g_conf.ping_time
150 #define PAUSED_FILE             "/tmp/.live.paused"
151
152 #define MAX_ABI         256
153 #define MAX_PKGNAME     512
154 #define DELAY_TIME      0.0000001f
155 #define DEFAULT_CLUSTER "user,created"
156 #define MINIMUM_REACTIVATION_TIME       10
157
158 #if !defined(VCONFKEY_MASTER_STARTED)
159 #define VCONFKEY_MASTER_STARTED "memory/data-provider-master/started"
160 #endif
161
162 #define USE_XMONITOR            g_conf.use_xmonitor
163
164 #define HAPI __attribute__((visibility("hidden")))
165
166 /* End of a file */