tizen 2.3.1 release
[framework/appfw/alarm-manager.git] / include / alarm-internal.h
1 /*
2  *  alarm-manager
3  *
4  * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. All rights reserved.
5  *
6  * Contact: Venkatesha Sarpangala <sarpangala.v@samsung.com>, Jayoun Lee <airjany@samsung.com>,
7  * Sewook Park <sewook7.park@samsung.com>, Jaeho Lee <jaeho81.lee@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 #ifndef _ALARM_INTERNAL_H
24 #define _ALARM_INTERNAL_H
25
26 #define MAX_SNOOZE_CNT 5
27 #define REPEAT_MODE_ONCE 0x80
28
29 #define SIG_TIMER 0x32
30 #define ALARM_INFO_MAX 100
31
32 #include "alarm.h"
33 #include <glib.h>
34 #include <dlog.h>
35 #include <bundle.h>
36 #include <appsvc.h>
37 #include <gio/gio.h>
38
39 #define INIT_ALARM_LIST_SIZE 64
40 #define INIT_SCHEDULED_ALARM_LIST_SIZE 32
41 #define MAX_BUNDLE_NAME_LEN 2048
42 #define MAX_SERVICE_NAME_LEN 256
43 #define MAX_PKG_NAME_LEN MAX_SERVICE_NAME_LEN-8
44 #define MAX_PKG_ID_LEN 256
45
46 #define SYSTEM_TIME_CHANGED "setting_time_changed"
47
48 #ifdef LOG_TAG
49 #undef LOG_TAG
50 #endif
51 #define LOG_TAG "ALARM_MANAGER"
52
53 /*Application ID for native application which is not launched by application
54 server.*/
55 #define ALARM_NATIVE_APP_ID 99999
56 /*  Application Instance ID for native application which is not launched by
57 application server.*/
58 #define ALARM_NATIVE_APP_INST_ID 99999
59 /*  Prefix of dbus service name of native application.*/
60 #define ALARM_NATIVE_APP_DBUS_SVC_NAME_PREFIX "NATIVE"
61
62 /* how to send expire event : gproxy or low level dbus
63 * if you want to use gproxy for receiving expire_event, please enable
64 * _EXPIRE_ALARM_INTERFACE_IS_DBUS_GPROXY_ feature
65 * otherwise, lowlevel dbus interface will be used for receiving expire_event.
66 * Now we use low level dbus instead of gproxy
67 */
68 /*#define       _EXPIRE_ALARM_INTERFACE_IS_DBUS_GPROXY_ */
69
70 typedef struct {
71         GDBusConnection *connection;
72         GDBusProxy *proxy;
73         alarm_cb_t alarm_handler;
74         void *user_param;
75         int pid;                /* this specifies pid*/
76         GQuark quark_app_service_name;  /*dbus_service_name is converted
77          to quark value*/
78          GQuark quark_app_service_name_mod;
79 } alarm_context_t;
80
81 typedef union {
82         int day_of_week;                        /**< days of a week */
83         time_t interval;
84 } alarm_interval_u;
85
86 /**
87 * This struct has mode of an alarm
88 */
89 typedef struct {
90         alarm_interval_u u_interval;
91         alarm_repeat_mode_t repeat;     /**< repeat mode */
92 } alarm_mode_t;
93
94 /**
95 *  This enumeration has alarm type
96
97 typedef enum
98 {
99         ALARM_TYPE_DEFAULT = 0x0,
100         ALARM_TYPE_RELATIVE = 0x01,
101         ALARM_TYPE_VOLATILE = 0x02,
102 }alarm_type_t;
103 */
104 #define ALARM_TYPE_RELATIVE             0x80000000      /**< relative  */
105 #define ALARM_TYPE_WITHCB               0x40000000      /**< withcb  */
106 #define ALARM_TYPE_PERIOD               0x10000000      /**< periodic */
107
108 /**
109 * This struct has the information of an alarm
110 */
111
112 typedef struct {
113         alarm_date_t start; /**< start time of the alarm */
114         alarm_date_t end;   /**< end time of the alarm */
115         alarm_mode_t mode;      /**< mode of alarm */
116         int alarm_type;     /**< alarm type*/
117         int reserved_info;
118 } alarm_info_t;
119
120 bool _send_alarm_create(alarm_context_t context, alarm_info_t *alarm,
121                          alarm_id_t *id, const char *dst_service_name,const char *dst_service_name_mod,
122                          int *error_code);
123 bool _send_alarm_create_appsvc(alarm_context_t context, alarm_info_t *alarm_info,
124                         alarm_id_t *alarm_id, bundle *b,int *error_code);
125 bool _send_alarm_update(alarm_context_t context, int pid, alarm_id_t alarm_id,
126                          alarm_info_t *alarm_info, int *error_code);
127 bool _send_alarm_delete(alarm_context_t context, alarm_id_t alarm_id,
128                          int *error_code);
129 bool _send_alarm_get_list_of_ids(alarm_context_t context, int maxnum_of_ids,
130                                   alarm_id_t *alarm_id, int *num_of_ids,
131                                   int *error_code);
132 bool _send_alarm_get_number_of_ids(alarm_context_t context, int *num_of_ids,
133                                     int *error_code);
134 bool _send_alarm_get_info(alarm_context_t context, alarm_id_t alarm_id,
135                            alarm_info_t *alarm_info, int *error_code);
136 bool _send_alarm_reset(alarm_context_t context, int *error_code);
137 bool _remove_from_scheduled_alarm_list(int pid, alarm_id_t alarm_id);
138 bool _load_alarms_from_registry();
139 bundle *_send_alarm_get_appsvc_info(alarm_context_t context, alarm_id_t alarm_id, int *error_code);
140 bool _send_alarm_set_rtc_time(alarm_context_t context, alarm_date_t *time, int *error_code);
141
142 /*  alarm manager*/
143 typedef struct {
144         time_t start;
145         time_t end;
146
147         alarm_id_t alarm_id;
148         int pid;
149         GQuark quark_caller_pkgid;
150         GQuark quark_callee_pkgid;
151         GQuark quark_app_unique_name;   /*the fullpath of application's pid is
152                 converted to quark value.*/
153         GQuark quark_app_service_name;  /*dbus_service_name is converted  to
154                 quark value.app_service_name is a service name  of application
155                 that creates alarm_info.*/
156         GQuark quark_app_service_name_mod;
157         GQuark quark_dst_service_name;  /*dbus_service_name is converted to
158                 quark value.app_service_name is a service name  for
159                 dst_service_name of alarm_create_extend().*/
160         GQuark quark_dst_service_name_mod;
161         time_t due_time;
162
163         GQuark quark_bundle;    /*Bundle Content containing app-svc info*/
164
165         alarm_info_t alarm_info;
166
167         periodic_method_e method;
168         long requested_interval;
169         int is_ref;
170 } __alarm_info_t;
171
172 typedef struct {
173         bool used;
174         __alarm_info_t *__alarm_info;
175 } __alarm_entry_t;
176
177 typedef struct {
178         int timer;
179         time_t c_due_time;
180         GSList *alarms;
181         int gmt_idx;
182         int dst;
183         GDBusConnection *connection;
184 } __alarm_server_context_t;
185
186 typedef struct {
187         bool used;
188         alarm_id_t alarm_id;
189         int pid;
190         __alarm_info_t *__alarm_info;
191 } __scheduled_alarm_t;
192
193 typedef struct {
194         char service_name[MAX_SERVICE_NAME_LEN];
195         alarm_id_t alarm_id;
196 } __expired_alarm_t;
197
198 time_t _alarm_next_duetime(__alarm_info_t *alarm_info);
199 bool _alarm_schedule();
200 bool _clear_scheduled_alarm_list();
201 bool _add_to_scheduled_alarm_list(__alarm_info_t *__alarm_info);
202
203 bool _save_alarms(__alarm_info_t *__alarm_info);
204 bool _delete_alarms(alarm_id_t alarm_id);
205 bool _update_alarms(__alarm_info_t *__alarm_info);
206
207 bool _alarm_destory_timer(timer_t timer);
208 bool _alarm_set_timer(__alarm_server_context_t *alarm_context, int timer, time_t due_time);
209 bool _alarm_disable_timer(__alarm_server_context_t alarm_context);
210 bool _init_scheduled_alarm_list();
211
212 int _set_rtc_time(time_t _time);
213 int _set_sys_time(time_t _time);
214 int _set_time(time_t _time);
215
216 #ifdef _DEBUG_MODE_
217 #define ALARM_MGR_LOG_PRINT(FMT, ARG...)  do { printf("%5d", getpid()); printf
218         ("%s() : "FMT"\n", __FUNCTION__, ##ARG); } while (false)
219 #define ALARM_MGR_EXCEPTION_PRINT(FMT, ARG...)  do { printf("%5d", getpid());
220         printf("%s() : "FMT"\n", __FUNCTION__, ##ARG); } while (false)
221 #define ALARM_MGR_ASSERT_PRINT(FMT, ARG...) do { printf("%5d", getpid()); printf
222         ("%s() : "FMT"\n", __FUNCTION__, ##ARG); } while (false)
223 #else
224 #define ALARM_MGR_LOG_PRINT(FMT, ARG...) LOGD(FMT, ##ARG);
225 #define ALARM_MGR_EXCEPTION_PRINT(FMT, ARG...) LOGW(FMT, ##ARG);
226 #define ALARM_MGR_ASSERT_PRINT(FMT, ARG...) LOGE(FMT, ##ARG);
227 #endif
228
229 #endif /*_ALARM_INTERNAL_H*/