Merge branch 'systemd'
[framework/appfw/alarm-manager.git] / alarm-manager.c
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
24
25 #define _BSD_SOURCE /*for localtime_r*/
26 #include<stdio.h>
27 #include<stdlib.h>
28 #include<time.h>
29 #include<signal.h>
30 #include<string.h>
31 #include<sys/types.h>
32 #include <sys/stat.h>
33 #include <unistd.h>
34
35 #include<dbus/dbus.h>
36 #include<dbus/dbus-glib-lowlevel.h>
37 #include<glib.h>
38 #if !GLIB_CHECK_VERSION (2, 31, 0)
39 #include <glib/gmacros.h>
40 #else
41 #endif
42
43 /*#include "global-gconf.h"*/
44 #include"alarm.h"
45 #include"alarm-internal.h"
46
47 /*#include"limo-event-delivery.h"*/
48
49 #include <aul.h>
50 #include <bundle.h>
51 #include <heynoti.h>
52 #include <security-server.h>
53 #include <db-util.h>
54 #include <vconf.h>
55 #include <vconf-keys.h>
56
57 #define SIG_TIMER 0x32
58 #define WAKEUP_ALARM_APP_ID       "org.tizen.alarm.ALARM"
59         /* alarm ui application's alarm's dbus_service name instead of 21
60            (alarm application's app_id) value */
61 #define WAKEUP_ALARMBOOTING_APP_ID      "org.tizen.alarmboot.ui.ALARM"
62 /*alrmbooting ui application's dbus_service name instead of 121(alarmbooting
63         application's app_id) value */
64 /*
65 #include "tapi_misc_ext.h"
66 #include "TelMisc.h"
67 #include "tapi_misc_data.h"
68 #include "tapi_power.h"
69 */
70
71 #include "pmapi.h"
72
73 __alarm_server_context_t alarm_context;
74 bool g_dummy_timer_is_set = FALSE;
75
76 GSList *g_scheduled_alarm_list = NULL;
77
78 GSList *g_expired_alarm_list = NULL;
79
80 #ifndef RTC_WKALM_BOOT_SET
81 #define RTC_WKALM_BOOT_SET _IOW('p', 0x80, struct rtc_wkalrm)
82 #endif
83
84 #ifdef __ALARM_BOOT
85 bool enable_power_on_alarm;
86 bool alarm_boot;
87 time_t ab_due_time = -1;
88 bool poweron_alarm_expired = false;
89 #endif
90
91 /*      2008. 6. 3 sewook7.park
92        When the alarm becoms sleeping mode, alarm timer is not expired.
93        So using RTC, phone is awaken before alarm rings.
94 */
95 #define __WAKEUP_USING_RTC__
96 #ifdef __WAKEUP_USING_RTC__
97 #include<errno.h>
98 #include <linux/rtc.h>
99 #include <sys/ioctl.h>
100 #include <fcntl.h>
101
102 static const char default_rtc[] = "/dev/rtc1";
103 static const char power_rtc[] = "/dev/rtc0";
104
105 #endif                          /*__WAKEUP_USING_RTC__*/
106
107 static bool __alarm_add_to_list(__alarm_info_t *__alarm_info,
108                                 alarm_id_t *alarm_id);
109 static bool __alarm_update_in_list(int pid, alarm_id_t alarm_id,
110                                    __alarm_info_t *__alarm_info,
111                                    int *error_code);
112 static bool __alarm_remove_from_list(int pid, alarm_id_t alarm_id,
113                                      int *error_code);
114 static bool __alarm_set_start_and_end_time(alarm_info_t *alarm_info,
115                                            __alarm_info_t *__alarm_info);
116 static bool __alarm_update_due_time_of_all_items_in_list(double diff_time);
117 static bool __alarm_create(alarm_info_t *alarm_info, alarm_id_t *alarm_id,
118                            int pid, char *app_service_name, char *app_service_name_mod,
119                            const char *dst_service_name, const char *dst_service_name_mod, int *error_code);
120 static bool __alarm_create_appsvc(alarm_info_t *alarm_info, alarm_id_t *alarm_id,
121                            int pid, char *bundle_data, int *error_code);
122
123 static bool __alarm_delete(int pid, alarm_id_t alarm_id, int *error_code);
124 static bool __alarm_update(int pid, char *app_service_name, alarm_id_t alarm_id,
125                            alarm_info_t *alarm_info, int *error_code);
126 static bool __alarm_power_on(int app_id, bool on_off, int *error_code);
127 static bool __alarm_power_off(int app_id, int *error_code);
128 static bool __alarm_check_next_duetime(int app_id, int *error_code);
129 static void __alarm_send_noti_to_application(const char *app_service_name,
130                                              alarm_id_t alarm_id);
131 static void __alarm_expired();
132 static gboolean __alarm_handler_idle();
133 static void __alarm_handler(int sigNum, siginfo_t *pSigInfo, void *pUContext);
134 static void __clean_registry();
135 static bool __alarm_manager_reset();
136 static void __on_system_time_changed(keynode_t *node, void *data);
137 static void __initialize_timer();
138 static void __initialize_alarm_list();
139 static void __initialize_scheduled_alarm_lsit();
140 static void __hibernation_leave_callback();
141 static bool __initialize_noti();
142
143 static bool __initialize_dbus();
144 static bool __initialize_db();
145 static void __initialize();
146 static bool __check_false_alarm();
147 static DBusHandlerResult __alarm_server_filter(DBusConnection *connection,
148                                                DBusMessage *message,
149                                                void *user_data);
150
151 static void __rtc_set()
152 {
153 #ifdef __WAKEUP_USING_RTC__
154
155         const char *rtc = default_rtc;
156         int fd = 0;
157         struct rtc_time rtc_tm;
158         struct rtc_wkalrm rtc_wk;
159         struct tm due_tm;
160
161 #ifdef _SIMUL                   /*if build is simulator, we don't need to set
162                                    RTC because RTC does not work in simulator.*/
163         ALARM_MGR_EXCEPTION_PRINT("because it is simulator's mode, "
164                                   "we don't set RTC.\n");
165         return;
166 #endif
167
168         fd = open(rtc, O_RDONLY);
169         if (fd == -1) {
170                 ALARM_MGR_EXCEPTION_PRINT("RTC open failed.\n");
171                 return;
172         }
173
174         /* Read the RTC time/date */
175         int retval = ioctl(fd, RTC_RD_TIME, &rtc_tm);
176         if (retval == -1) {
177                 ALARM_MGR_EXCEPTION_PRINT("RTC_RD_TIME ioctl failed");
178                 close(fd);
179                 return;
180         }
181
182         ALARM_MGR_LOG_PRINT("\n\nCurrent RTC date/time is %d-%d-%d, "
183                 "%02d:%02d:%02d.\n", rtc_tm.tm_mday, rtc_tm.tm_mon + 1, 
184                 rtc_tm.tm_year + 1900, rtc_tm.tm_hour, rtc_tm.tm_min, 
185                 rtc_tm.tm_sec);
186
187         ALARM_MGR_LOG_PRINT("alarm_context.c_due_time is %d\n", \
188                             alarm_context.c_due_time);
189
190         if (alarm_context.c_due_time != -1) {
191                 time_t due_time = alarm_context.c_due_time - 1;
192                 gmtime_r(&due_time, &due_tm);
193
194                 rtc_tm.tm_mday = due_tm.tm_mday;
195                 rtc_tm.tm_mon = due_tm.tm_mon;
196                 rtc_tm.tm_year = due_tm.tm_year;
197                 rtc_tm.tm_hour = due_tm.tm_hour;
198                 rtc_tm.tm_min = due_tm.tm_min;
199                 rtc_tm.tm_sec = due_tm.tm_sec;
200                 memcpy(&rtc_wk.time, &rtc_tm, sizeof(rtc_tm));
201                 rtc_wk.enabled = 1;
202                 rtc_wk.pending = 0;
203
204                 ALARM_MGR_LOG_PRINT("\n\nSetted RTC Alarm date/time is "
205                         "%d-%d-%d, %02d:%02d:%02d.\n", rtc_tm.tm_mday, 
206                         rtc_tm.tm_mon + 1, rtc_tm.tm_year + 1900, 
207                         rtc_tm.tm_hour, rtc_tm.tm_min, rtc_tm.tm_sec);
208
209                 retval = ioctl(fd, RTC_WKALM_SET, &rtc_wk);
210                 if (retval == -1) {
211                         if (errno == ENOTTY) {
212                                 ALARM_MGR_EXCEPTION_PRINT("\nAlarm IRQs not"
213                                                           "supported.\n");
214                         }
215                         ALARM_MGR_EXCEPTION_PRINT("RTC_ALM_SET ioctl");
216                         close(fd);
217                         return;
218                 }
219                 ALARM_MGR_LOG_PRINT("[alarm-server]RTC alarm is setted");
220
221                 /* Enable alarm interrupts */
222                 retval = ioctl(fd, RTC_AIE_ON, 0);
223                 if (retval == -1) {
224                         ALARM_MGR_EXCEPTION_PRINT("RTC_AIE_ON ioctl failed");
225                         close(fd);
226                         return;
227                 }
228                 ALARM_MGR_LOG_PRINT("[alarm-server]RTC alarm is on");
229         } else
230                 ALARM_MGR_LOG_PRINT("[alarm-server]alarm_context.c_due_time is"
231                                     "less than 10 sec. RTC alarm does not need to be set\n");
232
233         close(fd);
234
235 #endif                          /* __WAKEUP_USING_RTC__ */
236 }
237
238 int _set_rtc_time(time_t _time)
239 {
240         int fd0 = 0;
241         int fd1 = 0;
242         int retval0 = 0;
243         int retval1 = 0;
244         struct rtc_time rtc_tm;
245         const char *rtc0 = power_rtc;
246         const char *rtc1 = default_rtc;
247         struct tm *_tm;
248         struct tm time_r;
249
250         fd0 = open(rtc0, O_RDONLY);
251         fd1 = open(rtc1, O_RDONLY);
252
253         if (fd0 == -1) {
254                 ALARM_MGR_LOG_PRINT("error to open /dev/rtc0.");
255                 perror("\t");
256         }
257
258         if (fd1 == -1) {
259                 ALARM_MGR_LOG_PRINT("error to open /dev/rtc1.");
260                 perror("\t");
261         }
262
263         memset(&rtc_tm, 0, sizeof(struct rtc_time));
264
265
266         _tm = gmtime_r(&_time, &time_r);
267
268         /* Write the RTC time/date 2008:05:21 19:20:00 */
269
270
271         rtc_tm.tm_mday = time_r.tm_mday;
272         rtc_tm.tm_mon = time_r.tm_mon;
273         rtc_tm.tm_year = time_r.tm_year;
274         rtc_tm.tm_hour = time_r.tm_hour;
275         rtc_tm.tm_min = time_r.tm_min;
276         rtc_tm.tm_sec = 0;
277         
278
279         retval0 = ioctl(fd0, RTC_SET_TIME, &rtc_tm);
280
281         if (retval0 == -1) {
282                 close(fd0);
283                 ALARM_MGR_LOG_PRINT("error to ioctl fd0.");
284                 perror("\t");
285         }
286         close(fd0);
287
288         retval1 = ioctl(fd1, RTC_SET_TIME, &rtc_tm);
289
290         if (retval1 == -1) {
291                 close(fd1);
292                 ALARM_MGR_LOG_PRINT("error to ioctl fd1.");
293                 perror("\t");
294         }
295         close(fd1);
296
297         return 1;
298 }
299
300 bool __alarm_clean_list()
301 {
302         GSList *iter = NULL;
303
304         for (iter = alarm_context.alarms; iter != NULL;
305              iter = g_slist_next(iter)) {
306                 free(iter->data);
307         }
308
309         g_slist_free(alarm_context.alarms);
310         return true;
311 }
312
313 static bool __alarm_add_to_list(__alarm_info_t *__alarm_info,
314                                 alarm_id_t *alarm_id)
315 {
316
317         bool unique_id = false;
318         alarm_info_t *alarm_info = &__alarm_info->alarm_info;
319         __alarm_info_t *entry = NULL;
320
321         GSList *iter = NULL;
322
323         /* FIXME: alarm id must be unique. */
324         __alarm_info->alarm_id = (int)(void *)__alarm_info;
325         ALARM_MGR_LOG_PRINT("__alarm_info->alarm_id is %d", \
326                             __alarm_info->alarm_id);
327
328         while (unique_id == false) {
329                 unique_id = true;
330
331                 for (iter = alarm_context.alarms; iter != NULL;
332                      iter = g_slist_next(iter)) {
333                         entry = iter->data;
334                         if (entry->alarm_id == __alarm_info->alarm_id) {
335                                 __alarm_info->alarm_id++;
336                                 unique_id = false;
337                         }
338                 }
339
340         }
341
342         /* list alarms */
343         ALARM_MGR_LOG_PRINT("[alarm-server]: before add\n");
344         for (iter = alarm_context.alarms; iter != NULL;
345              iter = g_slist_next(iter)) {
346                 entry = iter->data;
347                 /*ALARM_MGR_LOG_PRINT("[alarm-server]: alarm_id(%d)\n", 
348                    entry->alarm_id); */
349         }
350
351         alarm_context.alarms =
352             g_slist_append(alarm_context.alarms, __alarm_info);
353         /*list alarms */
354         ALARM_MGR_LOG_PRINT("[alarm-server]: after add\n");
355         for (iter = alarm_context.alarms; iter != NULL;
356              iter = g_slist_next(iter)) {
357                 entry = iter->data;
358                 ALARM_MGR_LOG_PRINT("[alarm-server]: alarm_id(%d)\n",
359                                     entry->alarm_id);
360         }
361
362         if (!(alarm_info->alarm_type & ALARM_TYPE_VOLATILE)) {
363                 _save_alarms(__alarm_info);
364         }
365
366         *alarm_id = __alarm_info->alarm_id;
367
368         return true;
369 }
370
371 static bool __alarm_update_in_list(int pid, alarm_id_t alarm_id,
372                                    __alarm_info_t *__alarm_info,
373                                    int *error_code)
374 {
375         bool found = false;
376         alarm_info_t *alarm_info = &__alarm_info->alarm_info;
377         GSList *iter = NULL;
378         __alarm_info_t *entry = NULL;
379
380         for (iter = alarm_context.alarms; iter != NULL;
381              iter = g_slist_next(iter)) {
382                 entry = iter->data;
383                 if (entry->alarm_id == alarm_id) {
384
385                         found = true;
386                         __alarm_info->quark_app_unique_name =
387                             entry->quark_app_unique_name;
388                         __alarm_info->quark_dst_service_name =
389                             entry->quark_dst_service_name;
390                         memcpy(entry, __alarm_info, sizeof(__alarm_info_t));
391
392                         break;
393                 }
394         }
395
396         if (!found) {
397                 if (error_code)
398                         *error_code = ERR_ALARM_INVALID_ID;
399                 return false;
400         }
401
402         if (!(alarm_info->alarm_type & ALARM_TYPE_VOLATILE)) {
403                 _update_alarms(__alarm_info);
404         }
405
406         return true;
407 }
408
409 static bool __alarm_remove_from_list(int pid, alarm_id_t alarm_id,
410                                      int *error_code)
411 {
412         bool found = false;
413
414         alarm_info_t *alarm_info = NULL;
415
416         GSList *iter = NULL;
417         __alarm_info_t *entry = NULL;
418
419         /*list alarms */
420         ALARM_MGR_LOG_PRINT("[alarm-server]: before del : alarm id(%d)\n",
421                             alarm_id);
422
423         for (iter = alarm_context.alarms; iter != NULL;
424              iter = g_slist_next(iter)) {
425                 entry = iter->data;
426                 if (entry->alarm_id == alarm_id) {
427                         alarm_info = &entry->alarm_info;
428
429                         ALARM_MGR_LOG_PRINT("[alarm-server]: "
430                                             "__alarm_remove_from_list : alarm id(%d)\n",
431                                             entry->alarm_id);
432
433                         if (!(alarm_info->alarm_type & ALARM_TYPE_VOLATILE)) {
434                                 _delete_alarms(alarm_id);
435                         }
436
437                         alarm_context.alarms =
438                             g_slist_remove(alarm_context.alarms, iter->data);
439                         found = true;
440                         break;
441                 }
442
443         }
444
445         ALARM_MGR_LOG_PRINT("[alarm-server]: after del\n");
446
447         if (!found) {
448                 if (error_code)
449                         *error_code = ERR_ALARM_INVALID_ID;
450                 return false;
451         }
452
453         return true;
454 }
455
456 static bool __alarm_set_start_and_end_time(alarm_info_t *alarm_info,
457                                            __alarm_info_t *__alarm_info)
458 {
459         alarm_date_t *start = &alarm_info->start;
460         alarm_date_t *end = &alarm_info->end;
461
462         struct tm alarm_tm = { 0, };
463
464         if (start->year != 0) {
465                 alarm_tm.tm_year = start->year - 1900;
466                 alarm_tm.tm_mon = start->month - 1;
467                 alarm_tm.tm_mday = start->day;
468
469                 alarm_tm.tm_hour = 0;
470                 alarm_tm.tm_min = 0;
471                 alarm_tm.tm_sec = 0;
472
473                 __alarm_info->start = mktime(&alarm_tm);
474         } else {
475                 __alarm_info->start = 0;
476         }
477
478         if (end->year != 0) {
479                 alarm_tm.tm_year = end->year - 1900;
480                 alarm_tm.tm_mon = end->month - 1;
481                 alarm_tm.tm_mday = end->day;
482
483                 alarm_tm.tm_hour = 23;
484                 alarm_tm.tm_min = 59;
485                 alarm_tm.tm_sec = 59;
486
487                 __alarm_info->end = mktime(&alarm_tm);
488         } else {
489                 __alarm_info->end = 0;
490         }
491
492         return true;
493 }
494
495 /*
496 static bool alarm_get_tz_info(int *gmt_idx, int *dst)
497 {
498         GConfValue *value1 = NULL;
499         GConfValue *value2 = NULL;
500         GConfClient* gConfClient = NULL;
501         GError* err = NULL;             
502         
503         gConfClient = gconf_client_get_default();
504
505         if(gConfClient) {
506                 value1 = gconf_client_get(gConfClient, SETTINGS_CLOCKTIMEZONE, 
507                                                                         &err);
508                 if (err) {
509                         ALARM_MGR_LOG_PRINT("__on_system_time_changed:
510                         gconf_client_get() failed:
511                         error:[%s]\n", err->message);
512                         g_error_free(err);
513                         err = NULL;
514                 }
515                 *gmt_idx = gconf_value_get_int(value1);
516                 ALARM_MGR_LOG_PRINT("gconf return gmt_idx =%d\n ", *gmt_idx);
517         
518                 value2 = gconf_client_get(gConfClient, 
519                         SETTINGS_DAYLIGHTSTATUS, &err);
520                 if (err) {
521                         ALARM_MGR_LOG_PRINT("__on_system_time_changed:
522                 gconf_client_get() failed: error:[%s]\n", err->message);
523                 g_error_free(err);
524                 err = NULL;
525         }
526         
527         *dst = gconf_value_get_int(value2);
528         ALARM_MGR_LOG_PRINT("gconf return dst =%d\n ", *dst);
529         
530         if(gConfClient != NULL) {
531                 g_object_unref(gConfClient);
532                 gConfClient = NULL;
533                 }
534         }
535         else
536                 ALARM_MGR_LOG_PRINT("check the gconf setting failed!!!!! \n ");
537         
538         if(value1) {
539                 gconf_value_free(value1);
540                 value1 = NULL;
541         }
542         if(value2) {
543                 gconf_value_free(value2);
544                 value2 = NULL;
545         }
546
547         return true;
548 }
549 */
550
551 static bool __alarm_update_due_time_of_all_items_in_list(double diff_time)
552 {
553         time_t current_time;
554         time_t min_time = -1;
555         time_t due_time = 0;
556         GSList *iter = NULL;
557         __alarm_info_t *entry = NULL;
558         struct tm *p_time = NULL ;
559         struct tm due_time_result ;
560         struct tm fixed_time ;
561
562         for (iter = alarm_context.alarms; iter != NULL;
563              iter = g_slist_next(iter)) {
564                 entry = iter->data;
565                 alarm_info_t *alarm_info = &(entry->alarm_info);
566                 if (alarm_info->alarm_type & ALARM_TYPE_RELATIVE) {
567                         /*diff_time ÃƒÂ³Â¸Â® */
568
569                         entry->due_time += diff_time;
570
571                         alarm_date_t *start = &alarm_info->start; /**< start 
572                                                         time of the alarm */
573                         alarm_date_t *end = &alarm_info->end;;
574                                                 /**< end time of the alarm */
575
576                         tzset();
577                         p_time = localtime_r(&entry->due_time, &due_time_result);
578                         if (p_time != NULL) {
579                                 start->year = p_time->tm_year + 1900;
580                                 start->month = p_time->tm_mon + 1;
581                                 start->day = p_time->tm_mday;
582                                 start->hour = p_time->tm_hour;
583                                 start->min = p_time->tm_min;
584                                 start->sec = p_time->tm_sec;
585
586                                 end->year = p_time->tm_year + 1900;
587                                 end->month = p_time->tm_mon + 1;
588                                 end->day = p_time->tm_mday;
589
590                                 
591                                 memset(&fixed_time, 0, sizeof(fixed_time));
592                                 fixed_time.tm_year = p_time->tm_year;
593                                 fixed_time.tm_mon = p_time->tm_mon;
594                                 fixed_time.tm_mday = p_time->tm_mday;
595                                 fixed_time.tm_hour = 0;
596                                 fixed_time.tm_min = 0;
597                                 fixed_time.tm_sec = 0;
598                         }
599                         entry->start = mktime(&fixed_time);
600
601                         fixed_time.tm_hour = 23;
602                         fixed_time.tm_min = 59;
603                         fixed_time.tm_sec = 59;
604
605                         entry->end = mktime(&fixed_time);
606
607                         ALARM_MGR_LOG_PRINT("alarm_info->alarm_type is "
608                                             "ALARM_TYPE_RELATIVE\n");
609
610                         _update_alarms(entry);
611                 }
612
613                 _alarm_next_duetime(entry);
614                 ALARM_MGR_LOG_PRINT("entry->due_time is %d\n", entry->due_time);
615         }
616
617         time(&current_time);
618
619         for (iter = alarm_context.alarms; iter != NULL;
620              iter = g_slist_next(iter)) {
621                 entry = iter->data;
622                 due_time = entry->due_time;
623
624                 double interval = 0;
625
626                 ALARM_MGR_LOG_PRINT("alarm[%d] with duetime(%u) at "
627                 "current(%u)\n", entry->alarm_id, due_time, current_time);
628                 if (due_time == 0) {    /* 0 means this alarm has been 
629                                            disabled */
630                         continue;
631                 }
632
633                 interval = difftime(due_time, current_time);
634
635                 if (interval <= 0) {
636                         ALARM_MGR_LOG_PRINT("this may be error.. alarm[%d]\n", \
637                                             entry->alarm_id);
638                         continue;
639                 }
640
641                 interval = difftime(due_time, min_time);
642
643                 if ((interval < 0) || min_time == -1) {
644                         min_time = due_time;
645                 }
646
647         }
648
649         alarm_context.c_due_time = min_time;
650
651         return true;
652 }
653
654 static bool __alarm_create_appsvc(alarm_info_t *alarm_info, alarm_id_t *alarm_id,
655                            int pid,char *bundle_data, int *error_code){
656
657         time_t current_time;
658         time_t due_time;
659         struct tm ts_ret;
660         char due_time_r[100] = { 0 };
661         char proc_file[512] = { 0 };
662         char process_name[512] = { 0 };
663         char app_name[512] = { 0 };
664         char *word = NULL;
665         char *proc_name_ptr = NULL;
666         int fd = 0;
667         int ret = 0;
668         int i = 0;
669
670         __alarm_info_t *__alarm_info = NULL;
671
672         __alarm_info = malloc(sizeof(__alarm_info_t));
673         if (__alarm_info == NULL) {
674                 ALARM_MGR_EXCEPTION_PRINT("Caution!! app_pid=%d, malloc "
675                                           "failed. it seems to be OOM\n", pid);
676                 *error_code = -1;       /* -1 means that system 
677                                            failed internally. */
678                 return false;
679         }
680         __alarm_info->pid = pid;
681         __alarm_info->alarm_id = -1;
682
683
684         /* we should consider to check whether  pid is running or Not
685          */
686         memset(process_name, '\0', 512);
687         memset(proc_file, '\0', 512);
688         snprintf(proc_file, 512, "/proc/%d/cmdline", pid);
689
690         fd = open(proc_file, O_RDONLY);
691         if (fd > 0) {
692                 ret = read(fd, process_name, 512);
693                 close(fd);
694                 if (ret <=0)
695                 {
696                         ALARM_MGR_EXCEPTION_PRINT("Unable to get application name\n");
697                         *error_code = -1;
698                         free(__alarm_info);
699                         return false;
700                 }
701                 while (process_name[i] != '\0') {
702                         if (process_name[i] == ' ') {
703                                 process_name[i] = '\0';
704                                 break;
705                         }
706                         i++;
707                 }
708
709                 word = strtok_r(process_name, "/", &proc_name_ptr);
710                 while (word != NULL) {
711                         memset(app_name, 0, 512);
712                         snprintf(app_name, 512, "%s", word);
713                         word = strtok_r(NULL, "/", &proc_name_ptr);
714                 }
715                 __alarm_info->quark_app_unique_name =
716                     g_quark_from_string(app_name);
717         } else {                /* failure */
718                 ALARM_MGR_EXCEPTION_PRINT("Caution!! app_pid(%d) seems to be "
719                                           "killed, so we failed to get proc file(%s) and do not create "
720                                           "alarm_info\n", pid, proc_file);
721                 *error_code = -1;       /*-1 means that system failed 
722                                                         internally.*/
723                 free(__alarm_info);
724                 return false;
725         }
726
727         __alarm_info->quark_bundle=g_quark_from_string(bundle_data);
728         __alarm_info->quark_app_service_name = g_quark_from_string("null");
729         __alarm_info->quark_dst_service_name = g_quark_from_string("null");
730         __alarm_info->quark_app_service_name_mod = g_quark_from_string("null");
731         __alarm_info->quark_dst_service_name_mod = g_quark_from_string("null");
732
733         __alarm_set_start_and_end_time(alarm_info, __alarm_info);
734         memcpy(&(__alarm_info->alarm_info), alarm_info, sizeof(alarm_info_t));
735
736         time(&current_time);
737
738         if (alarm_context.c_due_time < current_time) {
739                 ALARM_MGR_EXCEPTION_PRINT("Caution!! alarm_context.c_due_time "
740                 "(%d) is less than current time(%d)", alarm_context.c_due_time,
741                                           current_time);
742                 alarm_context.c_due_time = -1;
743         }
744
745         due_time = _alarm_next_duetime(__alarm_info);
746         if (__alarm_add_to_list(__alarm_info, alarm_id) == false) {
747                 free(__alarm_info);
748                 *error_code = -1;
749                 return false;
750         }
751
752         if (due_time == 0) {
753                 ALARM_MGR_EXCEPTION_PRINT("[alarm-server]:Create a new alarm: "
754                 "due_time is 0, alarm(%d) \n", *alarm_id);
755                 return true;
756         } else if (current_time == due_time) {
757                 ALARM_MGR_EXCEPTION_PRINT("[alarm-server]:Create alarm: "
758                      "current_time(%d) is same as due_time(%d)", current_time,
759                      due_time);
760                 return true;
761         }else if (difftime(due_time, current_time) <  0){
762                 ALARM_MGR_EXCEPTION_PRINT("[alarm-server]: Expired Due Time.[Due time=%d, Current Time=%d]!!!Do not add to schedule list\n", due_time, current_time);
763                 return true;
764         }else {
765                 localtime_r(&due_time, &ts_ret);
766                 strftime(due_time_r, 30, "%c", &ts_ret);
767                 ALARM_MGR_LOG_PRINT("[alarm-server]:Create a new alarm: "
768                                     "alarm(%d) due_time(%s)", *alarm_id,
769                                     due_time_r);
770         }
771
772         ALARM_MGR_LOG_PRINT("[alarm-server]:alarm_context.c_due_time(%d), "
773                             "due_time(%d)", alarm_context.c_due_time, due_time);
774
775         if (alarm_context.c_due_time == -1
776             || due_time < alarm_context.c_due_time) {
777                 _clear_scheduled_alarm_list();
778                 _add_to_scheduled_alarm_list(__alarm_info);
779                 _alarm_set_timer(&alarm_context, alarm_context.timer, due_time,
780                                  *alarm_id);
781                 alarm_context.c_due_time = due_time;
782
783         } else if (due_time == alarm_context.c_due_time) {
784                 _add_to_scheduled_alarm_list(__alarm_info);
785
786         }
787
788         __rtc_set();
789
790 #ifdef __ALARM_BOOT
791         /*alarm boot */
792         if (enable_power_on_alarm) {
793                 __alarm_power_on(0, enable_power_on_alarm, NULL);
794         }
795 #endif
796
797         return true;
798
799 }
800
801 static bool __alarm_create(alarm_info_t *alarm_info, alarm_id_t *alarm_id,
802                            int pid, char *app_service_name, char *app_service_name_mod,
803                            const char *dst_service_name,const char *dst_service_name_mod,  int *error_code)
804 {
805
806         time_t current_time;
807         time_t due_time;
808         char proc_file[256] = { 0 };
809         char process_name[512] = { 0 };
810         char app_name[256] = { 0 };
811         char *word = NULL;
812         char *proc_name_ptr = NULL;
813
814         __alarm_info_t *__alarm_info = NULL;
815
816         __alarm_info = malloc(sizeof(__alarm_info_t));
817         if (__alarm_info == NULL) {
818                 ALARM_MGR_EXCEPTION_PRINT("Caution!! app_pid=%d, malloc "
819                                           "failed. it seems to be OOM\n", pid);
820                 *error_code = -1;       /* -1 means that system 
821                                            failed internally. */
822                 return false;
823         }
824         __alarm_info->pid = pid;
825         __alarm_info->alarm_id = -1;
826
827         /* we should consider to check whether  pid is running or Not
828          */
829         memset(process_name, '\0', 512);
830         memset(proc_file, '\0', 256);
831         snprintf(proc_file, 256, "/proc/%d/cmdline", pid);
832
833         int fd;
834         int ret;
835         int i = 0;
836         fd = open(proc_file, O_RDONLY);
837         if (fd > 0) {
838                 ret = read(fd, process_name, 512);
839                 close(fd);
840                 while (process_name[i] != '\0') {
841                         if (process_name[i] == ' ') {
842                                 process_name[i] = '\0';
843                                 break;
844                         }
845                         i++;
846                 }
847                 /* if (readlink(proc_file, process_name, 256)!=-1) */
848                 /*success */
849
850                 word = strtok_r(process_name, "/", &proc_name_ptr);
851                 while (word != NULL) {
852                         memset(app_name, 0, 256);
853                         snprintf(app_name, 256, "%s", word);
854                         word = strtok_r(NULL, "/", &proc_name_ptr);
855                 }
856                 __alarm_info->quark_app_unique_name =
857                     g_quark_from_string(app_name);
858         } else {                /* failure */
859
860                 __alarm_info->quark_app_unique_name =
861                     g_quark_from_string("unknown");
862                 ALARM_MGR_EXCEPTION_PRINT("Caution!! app_pid(%d) seems to be "
863                                           "killed, so we failed to get proc file(%s) and do not create "
864                                           "alarm_info\n", pid, proc_file);
865                 *error_code = -1;       /*-1 means that system failed 
866                                                         internally.*/
867                 free(__alarm_info);
868                 return false;
869         }
870
871         __alarm_info->quark_app_service_name =
872             g_quark_from_string(app_service_name);
873         __alarm_info->quark_app_service_name_mod =
874         g_quark_from_string(app_service_name_mod);
875         __alarm_info->quark_dst_service_name =
876             g_quark_from_string(dst_service_name);
877         __alarm_info->quark_dst_service_name_mod =
878             g_quark_from_string(dst_service_name_mod);
879         __alarm_info->quark_bundle = g_quark_from_string("null");
880
881
882         __alarm_set_start_and_end_time(alarm_info, __alarm_info);
883         memcpy(&(__alarm_info->alarm_info), alarm_info, sizeof(alarm_info_t));
884
885         time(&current_time);
886
887         ALARM_MGR_LOG_PRINT("[alarm-server]:pid=%d, app_unique_name=%s, "
888                 "app_service_name=%s,dst_service_name=%s, c_due_time=%d", \
889                 pid, g_quark_to_string(__alarm_info->quark_app_unique_name), \
890                 g_quark_to_string(__alarm_info->quark_app_service_name), \
891                 g_quark_to_string(__alarm_info->quark_dst_service_name), \
892                             alarm_context.c_due_time);
893
894         if (alarm_context.c_due_time < current_time) {
895                 ALARM_MGR_EXCEPTION_PRINT("Caution!! alarm_context.c_due_time "
896                 "(%d) is less than current time(%d)", alarm_context.c_due_time,
897                                           current_time);
898                 alarm_context.c_due_time = -1;
899         }
900
901         due_time = _alarm_next_duetime(__alarm_info);
902         if (__alarm_add_to_list(__alarm_info, alarm_id) == false) {
903                 free(__alarm_info);
904                 return false;
905         }
906
907         if (due_time == 0) {
908                 ALARM_MGR_EXCEPTION_PRINT("[alarm-server]:Create a new alarm: "
909                 "due_time is 0, alarm(%d) \n", *alarm_id);
910                 return true;
911         } else if (current_time == due_time) {
912                 ALARM_MGR_EXCEPTION_PRINT("[alarm-server]:Create alarm: "
913                      "current_time(%d) is same as due_time(%d)", current_time,
914                      due_time);
915                 return true;
916         }else if (difftime(due_time, current_time) <  0){
917                 ALARM_MGR_EXCEPTION_PRINT("[alarm-server]: Expired Due Time.[Due time=%d, Current Time=%d]!!!Do not add to schedule list\n", due_time, current_time);
918                 return true;
919         } else {
920                 char due_time_r[100] = { 0 };
921                 struct tm ts_ret;
922                 localtime_r(&due_time, &ts_ret);
923                 strftime(due_time_r, 30, "%c", &ts_ret);
924                 ALARM_MGR_LOG_PRINT("[alarm-server]:Create a new alarm: "
925                                     "alarm(%d) due_time(%s)", *alarm_id,
926                                     due_time_r);
927         }
928
929         ALARM_MGR_LOG_PRINT("[alarm-server]:alarm_context.c_due_time(%d), "
930                             "due_time(%d)", alarm_context.c_due_time, due_time);
931
932         if (alarm_context.c_due_time == -1
933             || due_time < alarm_context.c_due_time) {
934                 _clear_scheduled_alarm_list();
935                 _add_to_scheduled_alarm_list(__alarm_info);
936                 _alarm_set_timer(&alarm_context, alarm_context.timer, due_time,
937                                  *alarm_id);
938                 alarm_context.c_due_time = due_time;
939
940         } else if (due_time == alarm_context.c_due_time) {
941                 _add_to_scheduled_alarm_list(__alarm_info);
942
943         }
944
945         __rtc_set();
946
947 #ifdef __ALARM_BOOT
948         /*alarm boot */
949         if (enable_power_on_alarm) {
950                 /* orginally first arg's value was 21(app_id, WAKEUP_ALARM_APP_ID) in a
951                  * platform with app-server.because __alarm_power_on(..) fuction don't 
952                  * use first parameter internally, we set this value to 0(zero)
953                  */
954                 __alarm_power_on(0, enable_power_on_alarm, NULL);
955         }
956 #endif
957         return true;
958 }
959
960 static bool __alarm_update(int pid, char *app_service_name, alarm_id_t alarm_id,
961                            alarm_info_t *alarm_info, int *error_code)
962 {
963         time_t current_time;
964         time_t due_time;
965
966         __alarm_info_t *__alarm_info = NULL;
967         bool result = false;
968
969         __alarm_info = malloc(sizeof(__alarm_info_t));
970         if (__alarm_info == NULL) {
971                 ALARM_MGR_EXCEPTION_PRINT("Caution!! app_pid=%d, "
972                         "malloc failed. it seems to be OOM\n", pid);
973                 *error_code = -1;       /*-1 means that system failed 
974                                                 internally.*/
975                 return false;
976         }
977
978         __alarm_info->pid = pid;
979         __alarm_info->alarm_id = alarm_id;
980
981         /* we should consider to check whether  pid is running or Not
982          */
983
984         __alarm_info->quark_app_service_name =
985             g_quark_from_string(app_service_name);
986         __alarm_set_start_and_end_time(alarm_info, __alarm_info);
987         memcpy(&(__alarm_info->alarm_info), alarm_info, sizeof(alarm_info_t));
988
989         time(&current_time);
990
991         if (alarm_context.c_due_time < current_time) {
992                 ALARM_MGR_EXCEPTION_PRINT("Caution!! alarm_context.c_due_time "
993                 "(%d) is less than current time(%d)", alarm_context.c_due_time,
994                                           current_time);
995                 alarm_context.c_due_time = -1;
996         }
997
998         due_time = _alarm_next_duetime(__alarm_info);
999         if (!__alarm_update_in_list(pid, alarm_id, __alarm_info, error_code)) {
1000                 free(__alarm_info);
1001                 ALARM_MGR_EXCEPTION_PRINT("[alarm-server]: requested alarm_id "
1002                 "(%d) does not exist. so this value is invalid id.", alarm_id);
1003                 return false;
1004         }
1005         /* ALARM_MGR_LOG_PRINT("[alarm-server]:request_pid=%d, alarm_id=%d, 
1006          * app_unique_name=%s, app_service_name=%s, dst_service_name=%s, 
1007          * c_due_time=%d", pid, alarm_id, g_quark_to_string
1008          * (__alarm_info->quark_app_unique_name), g_quark_to_string
1009          * (__alarm_info->quark_app_service_name), g_quark_to_string
1010          * (__alarm_info->quark_dst_service_name), alarm_context.c_due_time);
1011          */
1012
1013         result = _remove_from_scheduled_alarm_list(pid, alarm_id);
1014
1015         if (result == true && g_slist_length(g_scheduled_alarm_list) == 0) {
1016                 /*there is no scheduled alarm */
1017                 _alarm_disable_timer(alarm_context);
1018                 _alarm_schedule();
1019
1020                 ALARM_MGR_LOG_PRINT("[alarm-server]:Update alarm: alarm(%d)\n",
1021                                     alarm_id);
1022
1023                 __rtc_set();
1024
1025 #ifdef __ALARM_BOOT
1026                 /*alarm boot */
1027                 if (enable_power_on_alarm) {
1028                         /* orginally first arg's value was 21(app_id, WAKEUP_ALARM_APP_ID) in 
1029                          * a platform with app-server.because __alarm_power_on(..) fuction don't
1030                          * use first parameter internally, we set this value to 0(zero)
1031                          */
1032                         __alarm_power_on(0, enable_power_on_alarm, NULL);
1033                 }
1034 #endif
1035
1036                 if (due_time == 0) {
1037                         ALARM_MGR_EXCEPTION_PRINT("[alarm-server]:Update alarm: "
1038                                         "due_time is 0\n");
1039                 }
1040                 free(__alarm_info);
1041                 return true;
1042         }
1043
1044         if (due_time == 0) {
1045                 ALARM_MGR_EXCEPTION_PRINT("[alarm-server]:Update alarm: "
1046                                 "due_time is 0, alarm(%d)\n", alarm_id);
1047                 free(__alarm_info);
1048                 return true;
1049         } else if (current_time == due_time) {
1050                 ALARM_MGR_EXCEPTION_PRINT("[alarm-server]:Update alarm: "
1051                 "current_time(%d) is same as due_time(%d)", current_time,
1052                 due_time);
1053                 free(__alarm_info);
1054                 return true;
1055         }else if (difftime(due_time, current_time)< 0){
1056                 ALARM_MGR_EXCEPTION_PRINT("[alarm-server]: Expired Due Time.[Due time=%d, Current Time=%d]!!!Do not add to schedule list\n", due_time, current_time);
1057                 return true;
1058         } else {
1059                 char due_time_r[100] = { 0 };
1060                 struct tm ts_ret;
1061                 localtime_r(&due_time, &ts_ret);
1062                 strftime(due_time_r, 30, "%c", &ts_ret);
1063                 ALARM_MGR_LOG_PRINT("[alarm-server]:Update alarm: alarm(%d) "
1064                                     "due_time(%s)\n", alarm_id, due_time_r);
1065         }
1066
1067         ALARM_MGR_LOG_PRINT("[alarm-server]:alarm_context.c_due_time(%d), "
1068                             "due_time(%d)", alarm_context.c_due_time, due_time);
1069
1070         if (alarm_context.c_due_time == -1
1071             || due_time < alarm_context.c_due_time) {
1072                 _clear_scheduled_alarm_list();
1073                 _add_to_scheduled_alarm_list(__alarm_info);
1074                 _alarm_set_timer(&alarm_context, alarm_context.timer, due_time,
1075                                  alarm_id);
1076                 alarm_context.c_due_time = due_time;
1077                 ALARM_MGR_LOG_PRINT("[alarm-server1]:alarm_context.c_due_time "
1078                      "(%d), due_time(%d)", alarm_context.c_due_time, due_time);
1079         } else if (due_time == alarm_context.c_due_time) {
1080                 _add_to_scheduled_alarm_list(__alarm_info);
1081                 ALARM_MGR_LOG_PRINT("[alarm-server2]:alarm_context.c_due_time "
1082                      "(%d), due_time(%d)", alarm_context.c_due_time, due_time);
1083         }
1084
1085         __rtc_set();
1086
1087 #ifdef __ALARM_BOOT
1088         /*alarm boot */
1089         if (enable_power_on_alarm) {
1090                 /* orginally first arg's value was 21(app_id, WAKEUP_ALARM_APP_ID) 
1091                  * in a platform with app-server.because __alarm_power_on(..) fuction 
1092                  * don't use first parameter internally, we set this value to 0(zero)
1093                  */
1094                 __alarm_power_on(0, enable_power_on_alarm, NULL);
1095         }
1096 #endif
1097
1098         return true;
1099 }
1100
1101 static bool __alarm_delete(int pid, alarm_id_t alarm_id, int *error_code)
1102 {
1103         bool result = false;
1104
1105         ALARM_MGR_LOG_PRINT("[alarm-server]:delete alarm: alarm(%d) pid(%d)\n",\
1106                             alarm_id, pid);
1107         result = _remove_from_scheduled_alarm_list(pid, alarm_id);
1108
1109         if (!__alarm_remove_from_list(pid, alarm_id, error_code)) {
1110
1111                 ALARM_MGR_EXCEPTION_PRINT("[alarm-server]:delete alarm: "
1112                                           "alarm(%d) pid(%d) has failed with error_code(%d)\n",
1113                                           alarm_id, pid, *error_code);
1114                 return false;
1115         }
1116
1117         if (result == true && g_slist_length(g_scheduled_alarm_list) == 0) {
1118                 _alarm_disable_timer(alarm_context);
1119                 _alarm_schedule();
1120         }
1121
1122         __rtc_set();
1123
1124 #ifdef __ALARM_BOOT
1125         /*alarm boot */
1126         if (enable_power_on_alarm) {
1127                 /* orginally first arg's value was 21(app_id, WAKEUP_ALARM_APP_ID) in a 
1128                  * platform with app-server.because __alarm_power_on(..) fuction don't 
1129                  * use first parameter internally, we set this value to 0(zero)
1130                  */
1131                 __alarm_power_on(0, enable_power_on_alarm, NULL);
1132         }
1133 #endif
1134
1135         return true;
1136 }
1137
1138 static bool __alarm_power_on(int app_id, bool on_off, int *error_code)
1139 {
1140 #ifdef __ALARM_BOOT
1141         time_t min_time = 0;
1142         time_t current_time = 0;
1143         struct tm *temp_info;
1144         struct rtc_time rtc_tm = { 0, };
1145         struct tm min_time_r;
1146         int fd = 0;
1147         int retval;
1148
1149         enable_power_on_alarm = on_off;
1150         /*_update_power_on(on_off); */ /*currently its empty*/
1151
1152         fd = open(power_rtc, O_RDONLY);
1153         if (fd < 0) {
1154                 ALARM_MGR_EXCEPTION_PRINT("cannot open /dev/rtc0\n");
1155                 return false;
1156         }
1157
1158         if (on_off == true) {
1159                 if (_alarm_find_mintime_power_on(&min_time) == true) {
1160
1161                         ab_due_time = min_time;
1162
1163                         min_time = min_time - 60;
1164
1165                         time(&current_time);
1166
1167                         if (min_time <= current_time)
1168                                 min_time = current_time + 5;
1169
1170                         temp_info = gmtime_r(&min_time, &min_time_r);
1171
1172                         ALARM_MGR_LOG_PRINT("__alarm_power_on : %d %d %d %d "
1173                                                 "%d\n", \
1174                                            min_time_r.tm_year,\
1175                                            min_time_r.tm_mon,\
1176                                            min_time_r.tm_mday,\
1177                                            min_time_r.tm_hour,\
1178                                            min_time_r.tm_min);
1179                         ALARM_MGR_LOG_PRINT("__alarm_power_on : %d %d %d %d "
1180                                                 "%d\n", \
1181                                            min_time_r.tm_year,\
1182                                            min_time_r.tm_mon,\
1183                                            min_time_r.tm_mday,\
1184                                            min_time_r.tm_hour,\
1185                                            min_time_r.tm_min);
1186
1187                         rtc_tm.tm_mday = min_time_r.tm_mday;
1188                         rtc_tm.tm_mon = min_time_r.tm_mon;
1189                         rtc_tm.tm_year = min_time_r.tm_year;
1190                         rtc_tm.tm_hour = min_time_r.tm_hour;
1191                         rtc_tm.tm_min = min_time_r.tm_min;
1192                         rtc_tm.tm_sec = min_time_r.tm_sec;
1193                         /*set_info.time_zone = 0; */
1194                         /*set_info.u_interval.day_of_week = 0; */
1195
1196                         /*ALARM_MGR_LOG_PRINT("####__alarm_power_on : %d %d 
1197                         %d %d %d\n",set_info.year,set_info.month,set_info.day,
1198                         set_info.hour,set_info.minute); */
1199
1200                         ALARM_MGR_LOG_PRINT("due_time : %d \n", ab_due_time);
1201
1202                         ALARM_MGR_LOG_PRINT("\n\nSetted RTC Alarm date/time is "
1203                                             "%d-%d-%d, %02d:%02d:%02d.\n",
1204                                             rtc_tm.tm_mday, rtc_tm.tm_mon + 1,
1205                                 rtc_tm.tm_year + 1900, rtc_tm.tm_hour, 
1206                                 rtc_tm.tm_min, rtc_tm.tm_sec);
1207
1208                         retval = ioctl(fd, RTC_ALM_SET, &rtc_tm);
1209                         if (retval == -1) {
1210                                 if (errno == ENOTTY) {
1211                                         ALARM_MGR_EXCEPTION_PRINT(
1212                                         "\n...Alarm IRQs not supported.\n");
1213                                 }
1214                                 ALARM_MGR_EXCEPTION_PRINT("RTC_ALM_SET ioctl");
1215                                 close(fd);
1216                                 return false;
1217                         }
1218                         ALARM_MGR_LOG_PRINT("[alarm-server]RTC "
1219                                             "alarm(POWER ON) is setted");
1220
1221                         /* Enable alarm interrupts */
1222                         retval = ioctl(fd, RTC_AIE_ON, 0);
1223                         if (retval == -1) {
1224                                 ALARM_MGR_EXCEPTION_PRINT(
1225                                     "RTC_AIE_ON ioctl failed");
1226                                 close(fd);
1227                                 return false;
1228                         }
1229                         ALARM_MGR_LOG_PRINT("[alarm-server]RTC(POWER ON) "
1230                                             "alarm is on");
1231
1232                 } else
1233                         retval = ioctl(fd, RTC_AIE_OFF, 0);
1234         } else {
1235                 ALARM_MGR_LOG_PRINT("__alarm_power_on : off\n");
1236                 retval = ioctl(fd, RTC_AIE_OFF, 0);
1237         }
1238
1239         close(fd);
1240 #endif                          /* #ifdef __ALARM_BOOT */
1241
1242         return true;
1243 }
1244
1245 static bool __alarm_power_off(int app_id, int *error_code)
1246 {
1247 #ifdef __ALARM_BOOT
1248
1249 #endif                          /* #ifdef __ALARM_BOOT */
1250         return true;
1251 }
1252
1253 static bool __alarm_check_next_duetime(int app_id, int *error_code)
1254 {
1255 #ifdef __ALARM_BOOT
1256         time_t current_time;
1257         time_t interval;
1258
1259         time(&current_time);
1260
1261         interval = ab_due_time - current_time;
1262
1263         ALARM_MGR_LOG_PRINT("due_time : %d / current_time %d\n", ab_due_time,
1264                             current_time);
1265
1266         if (interval > 0 && interval <= 60)
1267                 return true;
1268         else
1269                 return false;
1270 #else                           /* #ifdef __ALARM_BOOT */
1271         return true;
1272 #endif
1273 }
1274
1275 static void __alarm_send_noti_to_application(const char *app_service_name,
1276                                              alarm_id_t alarm_id)
1277 {
1278
1279
1280         char service_name[MAX_SERVICE_NAME_LEN];
1281         char object_name[MAX_SERVICE_NAME_LEN];
1282
1283         DBusMessage *message;
1284         DBusMessageIter iter;
1285
1286         if (app_service_name == NULL || strlen(app_service_name) == 0) {
1287                 ALARM_MGR_EXCEPTION_PRINT("This alarm destination is "
1288                                           "invalid\n");
1289                 return;
1290         }
1291         memset(service_name, 0, MAX_SERVICE_NAME_LEN);
1292         memcpy(service_name, app_service_name, strlen(app_service_name));
1293
1294         snprintf(object_name, MAX_SERVICE_NAME_LEN,
1295                  "/org/tizen/alarm/client");
1296
1297         ALARM_MGR_LOG_PRINT("[alarm server][send expired_alarm(alarm_id=%d)to"
1298         "app_service_name(%s), object_name(%s), interface_name(%s)]\n",\
1299         alarm_id, service_name, object_name, "org.tizen.alarm.client");
1300
1301         message = dbus_message_new_method_call(service_name,
1302                                                object_name,
1303                                                "org.tizen.alarm.client",
1304                                                "alarm_expired");
1305         if (message == NULL) {
1306                 ALARM_MGR_EXCEPTION_PRINT("[alarm server] "
1307                         "dbus_message_new_method_call faild. maybe OOM!.\n");
1308                 ALARM_MGR_EXCEPTION_PRINT("[alarm server] so we cannot "
1309                         "send expired alarm to %s\n", service_name);
1310                 return;
1311         }
1312
1313         dbus_message_set_no_reply(message, TRUE);
1314         /*      if(service_name[0]==':') */
1315         /* we don't need auto activation in a case that 
1316            destination_app_service_name starts with a charactor like (:) */
1317         dbus_message_set_auto_start(message, FALSE);
1318
1319         dbus_message_iter_init_append(message, &iter);
1320         if (!dbus_message_iter_append_basic 
1321                 (&iter, DBUS_TYPE_INT32, &alarm_id)) {
1322                 dbus_message_unref(message);
1323                 ALARM_MGR_EXCEPTION_PRINT("[alarm server] "
1324                 "dbus_message_iter_append_basic faild. maybe OOM!.\n");
1325                 return;
1326         }
1327
1328         dbus_connection_send(dbus_g_connection_get_connection
1329                              (alarm_context.bus), message, NULL);
1330         dbus_connection_flush(dbus_g_connection_get_connection
1331                               (alarm_context.bus));
1332         dbus_message_unref(message);
1333
1334 }
1335
1336 static void __alarm_expired()
1337 {
1338         const char *destination_app_service_name = NULL;
1339         alarm_id_t alarm_id = -1;
1340         int app_pid = 0;
1341         __alarm_info_t *__alarm_info = NULL;
1342         char alarm_id_val[32]={0,};
1343         int b_len = 0;
1344         bundle *b = NULL;
1345
1346         ALARM_MGR_LOG_PRINT("[alarm-server]: Enter \n");
1347
1348         time_t current_time;
1349         double interval;
1350
1351         time(&current_time);
1352
1353         interval = difftime(alarm_context.c_due_time, current_time);
1354         ALARM_MGR_LOG_PRINT("[alarm-server]: c_due_time(%d), "
1355                 "current_time(%d), interval(%d)\n", alarm_context.c_due_time,
1356                 current_time, interval);
1357
1358         if (alarm_context.c_due_time > current_time) {
1359                 ALARM_MGR_LOG_PRINT("[alarm-server]: False Alarm\n");
1360                 goto done;
1361         }
1362
1363         GSList *iter = NULL;
1364         __scheduled_alarm_t *alarm = NULL;
1365
1366         for (iter = g_scheduled_alarm_list; iter != NULL;
1367              iter = g_slist_next(iter)) {
1368                 alarm = iter->data;
1369                 alarm_id = alarm->alarm_id;
1370
1371                 __alarm_info = alarm->__alarm_info;
1372
1373                 app_pid = __alarm_info->pid;
1374
1375                 if (strncmp
1376                     (g_quark_to_string(__alarm_info->quark_bundle),
1377                      "null", 4) != 0) {
1378
1379                                 b_len = strlen(g_quark_to_string(__alarm_info->quark_bundle));
1380
1381                                 b = bundle_decode((bundle_raw *)g_quark_to_string(__alarm_info->quark_bundle), b_len);
1382
1383                                 if (NULL == b)
1384                                 {
1385                                         ALARM_MGR_EXCEPTION_PRINT("Error!!!..Unable to decode the bundle!!\n");
1386                                 }
1387                                 else
1388                                 {
1389                                         snprintf(alarm_id_val,31,"%d",alarm_id);
1390
1391                                         if (bundle_add(b,"http://tizen.org/appcontrol/data/alarm_id", alarm_id_val)){
1392                                                 ALARM_MGR_EXCEPTION_PRINT("Unable to add alarm id to the bundle\n");
1393                                         }
1394                                         else
1395                                         {
1396                                                 if ( appsvc_run_service(b, 0, NULL, NULL) < 0)
1397                                                 {
1398                                                         ALARM_MGR_EXCEPTION_PRINT("Unable to run app svc\n");
1399                                                 }
1400                                                 else
1401                                                 {
1402                                                         ALARM_MGR_LOG_PRINT("Successfuly ran app svc\n");
1403                                                 }
1404                                         }
1405                                         bundle_free(b);
1406                                 }
1407
1408                 }
1409                 else
1410                 {
1411                         if (strncmp
1412                             (g_quark_to_string(__alarm_info->quark_dst_service_name),
1413                              "null",4) == 0) {
1414                                 ALARM_MGR_LOG_PRINT("[alarm-server]:destination is "
1415                                 "null, so we send expired alarm to %s(%u)\n",\
1416                                         g_quark_to_string(
1417                                         __alarm_info->quark_app_service_name),
1418                                         __alarm_info->quark_app_service_name); 
1419                                         destination_app_service_name = g_quark_to_string(
1420                                         __alarm_info->quark_app_service_name_mod);
1421                         } else {
1422                                 ALARM_MGR_LOG_PRINT("[alarm-server]:destination "
1423                                                     ":%s(%u)\n",
1424                                         g_quark_to_string(
1425                                         __alarm_info->quark_dst_service_name), 
1426                                         __alarm_info->quark_dst_service_name);
1427                                         destination_app_service_name = g_quark_to_string(
1428                                                 __alarm_info->quark_dst_service_name_mod);
1429                         }
1430
1431 #ifdef __ALARM_BOOT
1432                         /* orginally this code had if(__alarm_info->app_id==21) in a 
1433                            platform with app-server. */
1434                         /*if(__alarm_info->quark_dst_service_name  == 
1435                            g_quark_from_string (WAKEUP_ALARM_APP_ID)) */
1436                         if (strcmp
1437                             (g_quark_to_string(__alarm_info->quark_dst_service_name),
1438                              WAKEUP_ALARM_APP_ID) == 0) {
1439                                 int fd = 0;
1440                                 fd = open(power_rtc, O_RDONLY);
1441                                 if (fd < 0) {
1442                                         ALARM_MGR_LOG_PRINT("cannot open /dev/rtc0\n");
1443                                 } else {
1444                                         ioctl(fd, RTC_AIE_OFF, 0);
1445                                         close(fd);
1446                                 }
1447                         }
1448 #endif
1449
1450                         /* 
1451                          * we should consider a situation that 
1452                          * destination_app_service_name is owner_name like (:xxxx) and
1453                          * application's pid which registered this alarm was killed.In that case,
1454                          * we don't need to send the expire event because the process was killed.
1455                          * this causes needless message to be sent.
1456                          */
1457                         ALARM_MGR_LOG_PRINT("[alarm-server]: "
1458                                             "destination_app_service_name :%s, app_pid=%d\n",
1459                                             destination_app_service_name, app_pid);
1460                         /* the following is a code that checks the above situation. 
1461                            please verify this code. */
1462
1463                         if (dbus_bus_name_has_owner(
1464                              dbus_g_connection_get_connection(alarm_context.bus),
1465                              destination_app_service_name, NULL) == FALSE) {
1466                                 __expired_alarm_t *expire_info;
1467                                 char appid[MAX_SERVICE_NAME_LEN] = { 0, };
1468                                 char alarm_id_str[32] = { 0, };
1469
1470                                 expire_info = malloc(sizeof(__expired_alarm_t));
1471                                 if (G_UNLIKELY(NULL == expire_info)){
1472                                         ALARM_MGR_ASSERT_PRINT("[alarm-server]:Malloc failed!Can't notify alarm expiry info\n");
1473                                         goto done;
1474                                 }
1475                                 strncpy(expire_info->service_name,
1476                                         destination_app_service_name,
1477                                         MAX_SERVICE_NAME_LEN);
1478                                 expire_info->alarm_id = alarm_id;
1479                                 g_expired_alarm_list =
1480                                     g_slist_append(g_expired_alarm_list, expire_info);
1481
1482
1483                                 if (strncmp
1484                                         (g_quark_to_string(__alarm_info->quark_dst_service_name),
1485                                              "null",4) == 0) {
1486                                         strncpy(appid,g_quark_to_string(__alarm_info->quark_app_service_name),strlen(g_quark_to_string(__alarm_info->quark_app_service_name))-6);
1487                                 }
1488                                 else
1489                                 {
1490                                         strncpy(appid,g_quark_to_string(__alarm_info->quark_dst_service_name),strlen(g_quark_to_string(__alarm_info->quark_dst_service_name))-6);
1491                                 }
1492
1493                                 snprintf(alarm_id_str, 31, "%d", alarm_id);
1494
1495                                 ALARM_MGR_LOG_PRINT("before aul_launch appid(%s) "
1496                                         "alarm_id_str(%s)\n", appid, alarm_id_str);
1497
1498                                 bundle *kb;
1499                                 kb = bundle_create();
1500                                 bundle_add(kb, "__ALARM_MGR_ID", alarm_id_str);
1501                                 aul_launch_app(appid, kb);
1502                                 bundle_free(kb);
1503                         } else {
1504                                 ALARM_MGR_LOG_PRINT(
1505                                         "before alarm_send_noti_to_application\n");
1506                                 __alarm_send_noti_to_application(
1507                                              destination_app_service_name, alarm_id);
1508                         }
1509                 }
1510                 ALARM_MGR_LOG_PRINT("after __alarm_send_noti_to_application\n");
1511
1512 /*              if( !(__alarm_info->alarm_info.alarm_type 
1513                                         & ALARM_TYPE_VOLATILE) ) {
1514                         __alarm_remove_from_list(__alarm_info->pid, 
1515                                                         alarm_id, NULL);
1516                 }
1517                 else */
1518                 if (__alarm_info->alarm_info.mode.repeat
1519                     == ALARM_REPEAT_MODE_ONCE) {
1520 /*                      _alarm_next_duetime(__alarm_info);*/
1521 /*                      _update_alarms(__alarm_info);*/
1522                         __alarm_remove_from_list(__alarm_info->pid, alarm_id,
1523                                                  NULL);
1524                 } else {
1525
1526                         _alarm_next_duetime(__alarm_info);
1527 /*                      _update_alarms(__alarm_info);*/
1528                 }
1529
1530         }
1531
1532  done:
1533         _clear_scheduled_alarm_list();
1534         alarm_context.c_due_time = -1;
1535
1536         ALARM_MGR_LOG_PRINT("[alarm-server]: Leave  \n");
1537 }
1538
1539 static gboolean __alarm_handler_idle()
1540 {
1541         if (g_dummy_timer_is_set == true) {
1542                 ALARM_MGR_LOG_PRINT("dummy alarm timer has expired\n");
1543         } else {
1544                 ALARM_MGR_LOG_PRINT("__alarm_handler \n");
1545                 ALARM_MGR_LOG_PRINT("__alarm_handler \n");
1546
1547                 __alarm_expired();
1548
1549         }
1550
1551         _alarm_schedule();
1552
1553         __rtc_set();
1554
1555 #ifdef __ALARM_BOOT
1556         /*alarm boot */
1557         if (enable_power_on_alarm) {
1558                 /* orginally first arg's value was 21(app_id, WAKEUP_ALARM_APP_ID) 
1559                  *in a platform with app-server.because __alarm_power_on(..) fuction 
1560                  *don't use first parameter internally, we set this value to 0(zero)
1561                  */
1562                 __alarm_power_on(0, enable_power_on_alarm, NULL);
1563         }
1564 #endif
1565         pm_unlock_state(LCD_OFF, PM_SLEEP_MARGIN);
1566         return false;
1567
1568 }
1569
1570 static void __alarm_handler(int sigNum, siginfo_t *pSigInfo, void *pUContext)
1571 {
1572
1573         pm_lock_state(LCD_OFF, STAY_CUR_STATE, 0);
1574
1575         /* we moved __alarm_expired() function to __alarm_handler_idle GSource
1576            because of signal safety. */
1577         g_idle_add_full(G_PRIORITY_HIGH_IDLE, __alarm_handler_idle, NULL, NULL);
1578 }
1579
1580 static void __clean_registry()
1581 {
1582
1583         /*TODO:remove all db entries */
1584 }
1585
1586 static bool __alarm_manager_reset()
1587 {
1588
1589         _alarm_disable_timer(alarm_context);
1590
1591         __alarm_clean_list();
1592
1593         _clear_scheduled_alarm_list();
1594         __clean_registry();
1595
1596         return true;
1597 }
1598
1599 static void __on_system_time_changed(keynode_t *node, void *data)
1600 {
1601         double diff_time;
1602         time_t _time;
1603         time_t before;
1604
1605         _alarm_disable_timer(alarm_context);
1606
1607         if (node) {
1608                 _time = vconf_keynode_get_int(node);
1609         } else {
1610                 vconf_get_int(VCONFKEY_SYSTEM_TIMECHANGE, (int *)&_time);
1611         }
1612
1613         time(&before);
1614         diff_time = difftime(_time, before);
1615
1616         tzset();
1617
1618         ALARM_MGR_ASSERT_PRINT("diff_time is %f\n", diff_time);
1619
1620         ALARM_MGR_LOG_PRINT("[alarm-server] System time has been changed\n");
1621         ALARM_MGR_LOG_PRINT("1.alarm_context.c_due_time is %d\n",
1622                             alarm_context.c_due_time);
1623
1624         _set_time(_time);
1625
1626         vconf_set_dbl(VCONFKEY_SYSTEM_TIMEDIFF, diff_time);
1627         vconf_set_int(VCONFKEY_SYSTEM_TIME_CHANGED,(int)diff_time);
1628
1629         __alarm_update_due_time_of_all_items_in_list(diff_time);
1630
1631         ALARM_MGR_LOG_PRINT("2.alarm_context.c_due_time is %d\n",
1632                             alarm_context.c_due_time);
1633         _clear_scheduled_alarm_list();
1634         _alarm_schedule();
1635         __rtc_set();
1636 #ifdef __ALARM_BOOT
1637         /*alarm boot */
1638         if (enable_power_on_alarm) {
1639 /* orginally first arg's value was 21(app_id, WAKEUP_ALARM_
1640 APP_ID) in a platform with app-server. because _alarm_power_
1641 on(..) fuction don't use first parameter internally, we set 
1642 this value to 0(zero)
1643 */
1644                 __alarm_power_on(0, enable_power_on_alarm, NULL);
1645         }
1646 #endif
1647         return;
1648 }
1649
1650 gboolean alarm_manager_alarm_set_rtc_time(void *pObject, int pid,
1651                                 int year, int mon, int day,
1652                                 int hour, int min, int sec, char *e_cookie,
1653                                 int *return_code){
1654         guchar *cookie = NULL;
1655         gsize size;
1656         int retval = 0;
1657         gboolean result = true;
1658         gid_t call_gid;
1659
1660         const char *rtc = power_rtc;
1661         int fd = 0;
1662         struct rtc_time rtc_tm = {0,};
1663         struct rtc_wkalrm rtc_wk;
1664         struct tm *alarm_tm = NULL;
1665         struct tm due_tm = {0,};
1666
1667
1668         if (return_code){
1669                 *return_code = ALARMMGR_RESULT_SUCCESS;
1670         }
1671
1672         cookie = g_base64_decode(e_cookie, &size);
1673         if (NULL == cookie)
1674         {
1675                 if (return_code)
1676                         *return_code = ERR_ALARM_NO_PERMISSION;
1677                 ALARM_MGR_EXCEPTION_PRINT("Unable to decode cookie!!!\n");
1678                 return true;
1679         }
1680
1681         call_gid = security_server_get_gid("alarm");
1682
1683         ALARM_MGR_LOG_PRINT("call_gid : %d\n", call_gid);
1684
1685         retval = security_server_check_privilege((const char *)cookie, call_gid);
1686         if (retval < 0) {
1687                 if (retval == SECURITY_SERVER_API_ERROR_ACCESS_DENIED) {
1688                         ALARM_MGR_EXCEPTION_PRINT(
1689                                 "%s", "access has been denied\n");
1690                 }
1691                 ALARM_MGR_EXCEPTION_PRINT("Error has occurred in security_server_check_privilege()\n");
1692                 if (return_code)
1693                         *return_code = ERR_ALARM_NO_PERMISSION;
1694         }
1695         else {
1696
1697                 /*extract day of the week, day in the year &
1698                 daylight saving time from system*/
1699                 time_t ctime;
1700                 ctime = time(NULL);
1701                 alarm_tm = localtime(&ctime);
1702
1703                 alarm_tm->tm_year = year;
1704                 alarm_tm->tm_mon = mon;
1705                 alarm_tm->tm_mday = day;
1706                 alarm_tm->tm_hour = hour;
1707                 alarm_tm->tm_min = min;
1708                 alarm_tm->tm_sec = sec;
1709
1710                 /*convert to calendar time representation*/
1711                 time_t rtc_time = mktime(alarm_tm);
1712
1713                 /*convert to Coordinated Universal Time (UTC)*/
1714                 gmtime_r(&rtc_time, &due_tm);
1715
1716                 fd = open(rtc, O_RDONLY);
1717                 if (fd == -1) {
1718                         ALARM_MGR_EXCEPTION_PRINT("RTC open failed.\n");
1719                         if (return_code)
1720                                 *return_code = ERR_ALARM_SYSTEM_FAIL;
1721                         return result;
1722                 }
1723
1724                 /* Read the RTC time/date */
1725                 retval = ioctl(fd, RTC_RD_TIME, &rtc_tm);
1726                 if (retval == -1) {
1727                         ALARM_MGR_EXCEPTION_PRINT("RTC_RD_TIME ioctl failed");
1728                         close(fd);
1729                         if (return_code)
1730                                 *return_code = ERR_ALARM_SYSTEM_FAIL;
1731                         return result;
1732                 }
1733
1734                 rtc_tm.tm_mday = due_tm.tm_mday;
1735                 rtc_tm.tm_mon = due_tm.tm_mon;
1736                 rtc_tm.tm_year = due_tm.tm_year;
1737                 rtc_tm.tm_hour = due_tm.tm_hour;
1738                 rtc_tm.tm_min = due_tm.tm_min;
1739                 rtc_tm.tm_sec = due_tm.tm_sec;
1740
1741                 memcpy(&rtc_wk.time, &rtc_tm, sizeof(rtc_tm));
1742
1743                 rtc_wk.enabled = 1;
1744                 rtc_wk.pending = 0;
1745
1746                 retval = ioctl(fd, RTC_WKALM_BOOT_SET, &rtc_wk);
1747                 if (retval == -1) {
1748                         if (errno == ENOTTY) {
1749                                 ALARM_MGR_EXCEPTION_PRINT("\nAlarm IRQs not"
1750                                                           "supported.\n");
1751                         }
1752                         ALARM_MGR_EXCEPTION_PRINT("RTC_ALM_SET ioctl");
1753                         close(fd);
1754                         if (return_code)
1755                                 *return_code = ERR_ALARM_SYSTEM_FAIL;
1756                 }
1757                 else{
1758                         ALARM_MGR_LOG_PRINT("[alarm-server]RTC alarm is setted");
1759                         /* Enable alarm interrupts */
1760                         retval = ioctl(fd, RTC_AIE_ON, 0);
1761                         if (retval == -1) {
1762                                 ALARM_MGR_EXCEPTION_PRINT("RTC_AIE_ON ioctl failed");
1763                                 if (return_code)
1764                                         *return_code = ERR_ALARM_SYSTEM_FAIL;
1765                         }
1766                         close(fd);
1767                 }
1768         }
1769
1770         if (cookie){
1771                 g_free(cookie);
1772                 cookie = NULL;
1773         }
1774
1775         return result;
1776
1777 }
1778
1779 gboolean alarm_manager_alarm_create_appsvc(void *pObject, int pid,
1780                                     int start_year,
1781                                     int start_month, int start_day,
1782                                     int start_hour, int start_min,
1783                                     int start_sec, int end_year, int end_month,
1784                                     int end_day, int mode_day_of_week,
1785                                     int mode_repeat, int alarm_type,
1786                                     int reserved_info,
1787                                     char *bundle_data, char *e_cookie,
1788                                     int *alarm_id, int *return_code)
1789 {
1790         alarm_info_t alarm_info;
1791         guchar *cookie = NULL;
1792         gsize size;
1793         int retval = 0;
1794         gid_t call_gid;
1795         gboolean result = true;
1796
1797         alarm_info.start.year = start_year;
1798         alarm_info.start.month = start_month;
1799         alarm_info.start.day = start_day;
1800         alarm_info.start.hour = start_hour;
1801         alarm_info.start.min = start_min;
1802         alarm_info.start.sec = start_sec;
1803
1804         alarm_info.end.year = end_year;
1805         alarm_info.end.month = end_month;
1806         alarm_info.end.day = end_day;
1807
1808         alarm_info.mode.u_interval.day_of_week = mode_day_of_week;
1809         alarm_info.mode.repeat = mode_repeat;
1810
1811         alarm_info.alarm_type = alarm_type;
1812         alarm_info.reserved_info = reserved_info;
1813
1814         *return_code = 0;
1815
1816         cookie = g_base64_decode(e_cookie, &size);
1817         if (NULL == cookie)
1818         {
1819                 *return_code = -1;
1820                 ALARM_MGR_EXCEPTION_PRINT("Unable to decode cookie!!!\n");
1821                 return false;
1822         }
1823         
1824         call_gid = security_server_get_gid("alarm");
1825
1826         ALARM_MGR_LOG_PRINT("call_gid : %d\n", call_gid);
1827
1828         retval = security_server_check_privilege((const char *)cookie, call_gid);
1829         if (retval < 0) {
1830                 if (retval == SECURITY_SERVER_API_ERROR_ACCESS_DENIED) {
1831                         ALARM_MGR_EXCEPTION_PRINT(
1832                                 "%s", "access has been denied\n");
1833                 }
1834                 ALARM_MGR_EXCEPTION_PRINT("Error has occurred in security_server_check_privilege()\n");
1835                 *return_code = -1;
1836                 result = false;
1837         }
1838         else {
1839                 result = __alarm_create_appsvc(&alarm_info, alarm_id, pid,
1840                                bundle_data, return_code);
1841                 if (false == result)
1842                 {
1843                         ALARM_MGR_EXCEPTION_PRINT("Unable to create alarm!\n");
1844                 }
1845         }
1846
1847         if (cookie){
1848                 g_free(cookie);
1849                 cookie = NULL;
1850         }
1851
1852         return result;
1853 }
1854
1855 gboolean alarm_manager_alarm_create(void *pObject, int pid,
1856                                     char *app_service_name, char *app_service_name_mod,  int start_year,
1857                                     int start_month, int start_day,
1858                                     int start_hour, int start_min,
1859                                     int start_sec, int end_year, int end_month,
1860                                     int end_day, int mode_day_of_week,
1861                                     int mode_repeat, int alarm_type,
1862                                     int reserved_info,
1863                                     char *reserved_service_name, char *reserved_service_name_mod, char *e_cookie,
1864                                     int *alarm_id, int *return_code)
1865 {
1866         alarm_info_t alarm_info;
1867         guchar *cookie;
1868         gsize size;
1869         int retval;
1870         gid_t call_gid;
1871
1872         alarm_info.start.year = start_year;
1873         alarm_info.start.month = start_month;
1874         alarm_info.start.day = start_day;
1875         alarm_info.start.hour = start_hour;
1876         alarm_info.start.min = start_min;
1877         alarm_info.start.sec = start_sec;
1878
1879         alarm_info.end.year = end_year;
1880         alarm_info.end.month = end_month;
1881         alarm_info.end.day = end_day;
1882
1883         alarm_info.mode.u_interval.day_of_week = mode_day_of_week;
1884         alarm_info.mode.repeat = mode_repeat;
1885
1886         alarm_info.alarm_type = alarm_type;
1887         alarm_info.reserved_info = reserved_info;
1888
1889         *return_code = 0;
1890
1891         cookie = g_base64_decode(e_cookie, &size);
1892         call_gid = security_server_get_gid("alarm");
1893
1894         ALARM_MGR_LOG_PRINT("call_gid : %d\n", call_gid);
1895
1896         retval = security_server_check_privilege((const char *)cookie, call_gid);
1897         if (retval < 0) {
1898                 if (retval == SECURITY_SERVER_API_ERROR_ACCESS_DENIED) {
1899                         ALARM_MGR_EXCEPTION_PRINT(
1900                                 "%s", "access has been denied\n");
1901                 }
1902                 ALARM_MGR_EXCEPTION_PRINT("%s", "Error has occurred\n");
1903
1904                 *return_code = -1;
1905         }
1906
1907         else {
1908                 /* return valule and return_code should be checked */
1909                 __alarm_create(&alarm_info, alarm_id, pid, app_service_name,app_service_name_mod,
1910                                reserved_service_name, reserved_service_name_mod, return_code);
1911         }
1912
1913         g_free(cookie);
1914
1915         return true;
1916 }
1917
1918 gboolean alarm_manager_alarm_delete(void *pObject, int pid, alarm_id_t alarm_id,
1919                                     char *e_cookie, int *return_code)
1920 {
1921         guchar *cookie;
1922         gsize size;
1923         int retval;
1924         gid_t call_gid;
1925
1926         cookie = g_base64_decode(e_cookie, &size);
1927         call_gid = security_server_get_gid("alarm");
1928
1929         ALARM_MGR_LOG_PRINT("call_gid : %d\n", call_gid);
1930
1931         retval = security_server_check_privilege((const char *)cookie, call_gid);
1932         if (retval < 0) {
1933                 if (retval == SECURITY_SERVER_API_ERROR_ACCESS_DENIED) {
1934                         ALARM_MGR_EXCEPTION_PRINT("%s",
1935                                                   "access has been denied\n");
1936                 }
1937                 ALARM_MGR_EXCEPTION_PRINT("%s", "Error has occurred\n");
1938
1939                 *return_code = -1;
1940         }
1941
1942         else {
1943                 __alarm_delete(pid, alarm_id, return_code);
1944         }
1945
1946         g_free(cookie);
1947
1948         return true;
1949 }
1950
1951 gboolean alarm_manager_alarm_power_on(void *pObject, int pid, bool on_off,
1952                                       int *return_code)
1953 {
1954
1955         return __alarm_power_on(pid, on_off, return_code);
1956 }
1957
1958 gboolean alarm_manager_alarm_power_off(void *pObject, int pid, int *return_code)
1959 {
1960
1961         return __alarm_power_off(pid, return_code);
1962 }
1963
1964 bool alarm_manager_alarm_check_next_duetime(void *pObject, int pid,
1965                                             int *return_code)
1966 {
1967         return __alarm_check_next_duetime(pid, return_code);
1968 }
1969
1970 gboolean alarm_manager_alarm_update(void *pObject, int pid,
1971                                     char *app_service_name, alarm_id_t alarm_id,
1972                                     int start_year, int start_month,
1973                                     int start_day, int start_hour,
1974                                     int start_min, int start_sec, int end_year,
1975                                     int end_month, int end_day,
1976                                     int mode_day_of_week, int mode_repeat,
1977                                     int alarm_type, int reserved_info,
1978                                     int *return_code)
1979 {
1980         alarm_info_t alarm_info;
1981         alarm_info.start.year = start_year;
1982         alarm_info.start.month = start_month;
1983         alarm_info.start.day = start_day;
1984         alarm_info.start.hour = start_hour;
1985         alarm_info.start.min = start_min;
1986         alarm_info.start.sec = start_sec;
1987
1988         alarm_info.end.year = end_year;
1989         alarm_info.end.month = end_month;
1990         alarm_info.end.day = end_day;
1991
1992         alarm_info.mode.u_interval.day_of_week = mode_day_of_week;
1993         alarm_info.mode.repeat = mode_repeat;
1994
1995         alarm_info.alarm_type = alarm_type;
1996         alarm_info.reserved_info = reserved_info;
1997
1998         *return_code = 0;
1999
2000         __alarm_update(pid, app_service_name, alarm_id, &alarm_info,
2001                        return_code);
2002
2003         return true;
2004 }
2005
2006 gboolean alarm_manager_alarm_get_number_of_ids(void *pObject, int pid,
2007                                                int *num_of_ids,
2008                                                int *return_code)
2009 {
2010         GSList *gs_iter = NULL;
2011         GQuark quark_app_unique_name;   /* the fullpath of pid(pid) is 
2012                                            converted  to quark value. */
2013         char proc_file[256] = { 0 };
2014         char process_name[512] = { 0 };
2015         char app_name[256] = { 0 };
2016         char *word = NULL;
2017         __alarm_info_t *entry = NULL;
2018         char *proc_name_ptr = NULL;
2019
2020         *num_of_ids = 0;
2021         *return_code = 0;
2022
2023         /* we should consider to check whether  pid is running or Not
2024          */
2025         memset(process_name, '\0', 512);
2026         memset(proc_file, '\0', 256);
2027         snprintf(proc_file, 256, "/proc/%d/cmdline", pid);
2028
2029         int fd;
2030         int ret;
2031         int i = 0;
2032         fd = open(proc_file, O_RDONLY);
2033         if (fd > 0) {
2034                 ret = read(fd, process_name, 512);
2035                 close(fd);
2036                 while (process_name[i] != '\0') {
2037                         if (process_name[i] == ' ') {
2038                                 process_name[i] = '\0';
2039                                 break;
2040                         }
2041                         i++;
2042                 }
2043                 /*if (readlink(proc_file, process_name, 256)!=-1) */
2044                 /*success */
2045
2046                 word = strtok_r(process_name, "/", &proc_name_ptr);
2047                 while (word != NULL) {
2048                         memset(app_name, 0, 256);
2049                         snprintf(app_name, 256, "%s", word);
2050                         word = strtok_r(NULL, "/", &proc_name_ptr);
2051                 }
2052                 quark_app_unique_name = g_quark_from_string(app_name);
2053         } else {                /* failure */
2054
2055                 quark_app_unique_name = g_quark_from_string("unknown");
2056                 memcpy(app_name, "unknown", strlen("unknown") + 1);
2057
2058                 ALARM_MGR_EXCEPTION_PRINT("Caution!! app_pid(%d) seems to be "
2059                                           "killed, so we failed to get proc file(%s) \n",
2060                                           pid, proc_file);
2061                 *return_code = -1;      /* -1 means that system 
2062                                            failed internally. */
2063                 return true;
2064         }
2065
2066         ALARM_MGR_LOG_PRINT("called for  app(pid:%d, name=%s)\n",
2067                             pid, app_name);
2068
2069         for (gs_iter = alarm_context.alarms; gs_iter != NULL;
2070              gs_iter = g_slist_next(gs_iter)) {
2071                 entry = gs_iter->data;
2072                 ALARM_MGR_LOG_PRINT("alarm_manager_alarm_get_number_of_ids(): "
2073                                     "app_name=%s,quark_app_unique_name=%s\n",
2074                 app_name, g_quark_to_string(entry->quark_app_unique_name));
2075                 if (strcmp
2076                     (app_name,
2077                      g_quark_to_string(entry->quark_app_unique_name)) == 0
2078                     && strcmp(app_name, "unknown") != 0) {
2079                         (*num_of_ids)++;
2080                         ALARM_MGR_LOG_PRINT("inc number of alarms of app "
2081                                             "(pid:%d, name:%s) is %d\n",
2082                                             pid, app_name, *num_of_ids);
2083                 }
2084         }
2085         *return_code = 0;
2086         ALARM_MGR_LOG_PRINT("number of alarms of app(pid:%d, name:%s) is %d\n",
2087                             pid, app_name, *num_of_ids);
2088         return true;
2089 }
2090
2091 gboolean alarm_manager_alarm_get_list_of_ids(void *pObject, int pid,
2092                                              int max_number_of_ids,
2093                                              GArray **arr, int *num_of_ids,
2094                                              int *return_code)
2095 {
2096         GSList *gs_iter = NULL;
2097         GQuark quark_app_unique_name;   /* the fullpath of pid(pid) is converted
2098                                            to quark value. */
2099         char proc_file[256] = { 0 };
2100         char process_name[512] = { 0 };
2101         char app_name[256] = { 0 };
2102         char *word = NULL;
2103         __alarm_info_t *entry = NULL;
2104         int index = 0;
2105         char *proc_name_ptr = NULL;
2106         int fd;
2107         int ret;
2108         int i = 0;
2109         GArray *garray = NULL;
2110
2111         *return_code = 0;
2112
2113         garray = g_array_new(false, true, sizeof(alarm_id_t));
2114
2115         /* we should check that there is a resource leak.
2116          * Now we don't have free code for g_array_new().
2117          */
2118         if (max_number_of_ids <= 0) {
2119                 *arr = garray;
2120                 ALARM_MGR_EXCEPTION_PRINT("called for  pid(%d), but "
2121                                           "max_number_of_ids(%d) is less than 0.\n",
2122                                           pid, max_number_of_ids);
2123                 return true;
2124         }
2125
2126         /* we should consider to check whether  pid is running or Not
2127          */
2128         memset(process_name, '\0', 512);
2129         memset(proc_file, '\0', 256);
2130         snprintf(proc_file, 256, "/proc/%d/cmdline", pid);
2131
2132         fd = open(proc_file, O_RDONLY);
2133         if (fd > 0) {
2134                 ret = read(fd, process_name, 512);
2135                 close(fd);
2136                 while (process_name[i] != '\0') {
2137                         if (process_name[i] == ' ') {
2138                                 process_name[i] = '\0';
2139                                 break;
2140                         }
2141                         i++;
2142                 }
2143                 /* if (readlink(proc_file, process_name, 256)!=-1) */
2144                 /*success */
2145
2146                 word = strtok_r(process_name, "/", &proc_name_ptr);
2147                 while (word != NULL) {
2148                         memset(app_name, 0, 256);
2149                         snprintf(app_name, 256, "%s", word);
2150                         word = strtok_r(NULL, "/", &proc_name_ptr);
2151                 }
2152                 quark_app_unique_name = g_quark_from_string(app_name);
2153         } else {                /* failure */
2154
2155                 quark_app_unique_name = g_quark_from_string("unknown");
2156                 memcpy(app_name, "unknown", strlen("unknown") + 1);
2157
2158                 ALARM_MGR_EXCEPTION_PRINT("Caution!! app_pid(%d) seems to be "
2159                 "killed, so we failed to get proc file(%s)\n", pid, proc_file);
2160                 *return_code = -1;
2161                 /* -1 means that system failed internally. */
2162                 return true;
2163         }
2164
2165         ALARM_MGR_LOG_PRINT("called for  app(pid:%d, name=%s)\n",
2166                             pid, app_name);
2167
2168         for (gs_iter = alarm_context.alarms; gs_iter != NULL;
2169              gs_iter = g_slist_next(gs_iter)) {
2170                 entry = gs_iter->data;
2171                 if (strcmp
2172                     (app_name,
2173                      g_quark_to_string(entry->quark_app_unique_name)) == 0
2174                     && strcmp(app_name, "unknown") != 0) {
2175                         g_array_append_val(garray, entry->alarm_id);
2176                 }
2177         }
2178
2179         *num_of_ids = index;
2180
2181         *arr = garray;
2182
2183         return true;
2184 }
2185
2186 gboolean alarm_manager_alarm_get_appsvc_info(void *pObject, int pid, alarm_id_t alarm_id,
2187                                 char *e_cookie, gchar **b_data, int *return_code)
2188 {
2189         bool found = false;
2190
2191         GSList *gs_iter = NULL;
2192         __alarm_info_t *entry = NULL;
2193
2194         guchar *cookie = NULL;
2195         gsize size;
2196         int retval = 0;
2197         gid_t call_gid;
2198
2199         ALARM_MGR_LOG_PRINT("called for  pid(%d) and alarm_id(%d)\n", pid,
2200                             alarm_id);
2201
2202         cookie = g_base64_decode(e_cookie, &size);
2203         if (NULL == cookie)
2204         {
2205                 if (return_code)
2206                         *return_code = ERR_ALARM_SYSTEM_FAIL;
2207                 ALARM_MGR_EXCEPTION_PRINT("Unable to decode cookie!!!\n");
2208                 return true;
2209         }
2210         call_gid = security_server_get_gid("alarm");
2211
2212         ALARM_MGR_LOG_PRINT("call_gid : %d\n", call_gid);
2213
2214         retval = security_server_check_privilege((const char *)cookie, call_gid);
2215         if (retval < 0) {
2216                 if (retval == SECURITY_SERVER_API_ERROR_ACCESS_DENIED) {
2217                         ALARM_MGR_EXCEPTION_PRINT(
2218                                 "%s", "access has been denied\n");
2219                 }
2220                 ALARM_MGR_EXCEPTION_PRINT("%s", "Error has occurred\n");
2221
2222                 if (return_code)
2223                         *return_code = ERR_ALARM_NO_PERMISSION;
2224
2225                 if (cookie)
2226                         g_free(cookie);
2227
2228                 return true;
2229         }
2230
2231         if (return_code)
2232                 *return_code = 0;
2233
2234         for (gs_iter = alarm_context.alarms; gs_iter != NULL;
2235              gs_iter = g_slist_next(gs_iter)) {
2236                 entry = gs_iter->data;
2237                 if (entry->alarm_id == alarm_id) {
2238                         found = true;
2239                         *b_data = g_strdup(g_quark_to_string(entry->quark_bundle));
2240                         break;
2241                 }
2242         }
2243
2244         if (found) {
2245                 if ( *b_data && strlen(*b_data) == 4 && strncmp(*b_data,"null",4) == 0){
2246                         ALARM_MGR_EXCEPTION_PRINT("Regular alarm,not svc alarm");
2247                         if (return_code)
2248                                 *return_code = ERR_ALARM_INVALID_TYPE;
2249                 }
2250         } else {
2251                 if (return_code)
2252                         *return_code = ERR_ALARM_INVALID_ID;
2253         }
2254
2255         if (cookie)
2256                 g_free(cookie);
2257
2258         return true;
2259 }
2260
2261 gboolean alarm_manager_alarm_get_info(void *pObject, int pid,
2262                                       alarm_id_t alarm_id, int *start_year,
2263                                       int *start_month, int *start_day,
2264                                       int *start_hour, int *start_min,
2265                                       int *start_sec, int *end_year,
2266                                       int *end_month, int *end_day,
2267                                       int *mode_day_of_week, int *mode_repeat,
2268                                       int *alarm_type, int *reserved_info,
2269                                       int *return_code)
2270 {
2271         ALARM_MGR_LOG_PRINT("called for  pid(%d) and alarm_id(%d)\n", pid,
2272                             alarm_id);
2273
2274         GSList *gs_iter = NULL;
2275         __alarm_info_t *entry = NULL;
2276
2277         alarm_info_t *alarm_info = NULL;
2278         *return_code = 0;
2279
2280         for (gs_iter = alarm_context.alarms; gs_iter != NULL;
2281              gs_iter = g_slist_next(gs_iter)) {
2282                 entry = gs_iter->data;
2283                 if (entry->alarm_id == alarm_id) {
2284                         alarm_info = &(entry->alarm_info);
2285                         break;
2286                 }
2287         }
2288
2289         if (alarm_info == NULL)
2290         {
2291                 ALARM_MGR_EXCEPTION_PRINT("alarm id(%d) was not found\n",
2292                                           alarm_id);
2293                 *return_code = ERR_ALARM_INVALID_ID;
2294         } else {
2295                 ALARM_MGR_LOG_PRINT("alarm was found\n");
2296                 *start_year = alarm_info->start.year;
2297                 *start_month = alarm_info->start.month;
2298                 *start_day = alarm_info->start.day;
2299                 *start_hour = alarm_info->start.hour;
2300                 *start_min = alarm_info->start.min;
2301                 *start_sec = alarm_info->start.sec;
2302
2303                 *end_year = alarm_info->end.year;
2304                 *end_year = alarm_info->end.month;
2305                 *end_year = alarm_info->end.day;
2306
2307                 *mode_day_of_week = alarm_info->mode.u_interval.day_of_week;
2308                 *mode_repeat = alarm_info->mode.repeat;
2309
2310                 *alarm_type = alarm_info->alarm_type;
2311                 *reserved_info = alarm_info->reserved_info;
2312
2313                 *return_code = 0;
2314         }
2315         return true;
2316 }
2317
2318 #include "alarm-skeleton.h"
2319
2320 typedef struct AlarmManagerObject AlarmManagerObject;
2321 typedef struct AlarmManagerObjectClass AlarmManagerObjectClass;
2322 GType Server_Object_get_type(void);
2323 struct AlarmManagerObject {
2324         GObject parent;
2325 };
2326 struct AlarmManagerObjectClass {
2327         GObjectClass parent;
2328 };
2329
2330 #define DBUS_NAME_FLAG_PROHIBIT_REPLACEMENT 0
2331
2332 #define ALARM_MANAGER_TYPE_OBJECT              (Server_Object_get_type())
2333 #define ALARM_MANAGER_OBJECT(object)           (G_TYPE_CHECK_INSTANCE_CAST \
2334 ((object), ALARM_MANAGER_TYPE_OBJECT, AlarmManagerObject))
2335 #define ALARM_MANAGER_OBJECT_CLASS(klass)      (G_TYPE_CHECK_CLASS_CAST \
2336 ((klass), ALARM_MANAGER_TYPE_OBJECT, AlarmManagerObjectClass))
2337 #define ALARM_MANAGER_IS_OBJECT(object)        (G_TYPE_CHECK_INSTANCE_TYPE \
2338 ((object), ALARM_MANAGER_TYPE_OBJECT))
2339 #define ALARM_MANAGER_IS_OBJECT_CLASS(klass)   (G_TYPE_CHECK_CLASS_TYPE \
2340 ((klass), ALARM_MANAGER_TYPE_OBJECT))
2341 #define ALARM_MANAGER_OBJECT_GET_CLASS(obj)    (G_TYPE_INSTANCE_GET_CLASS \
2342 ((obj), ALARM_MANAGER_TYPE_OBJECT, AlarmManagerObjectClass))
2343 G_DEFINE_TYPE(AlarmManagerObject, Server_Object, G_TYPE_OBJECT)
2344 static void Server_Object_init(AlarmManagerObject * obj)
2345 {
2346         ;
2347 }
2348
2349 static void Server_Object_class_init(AlarmManagerObjectClass *klass)
2350 {
2351         ;
2352 }
2353
2354 static void __initialize_timer()
2355 {
2356         struct sigaction sig_timer;
2357         sigemptyset(&sig_timer.sa_mask);
2358         sig_timer.sa_flags = SA_SIGINFO;
2359         sig_timer.sa_sigaction = (void *)__alarm_handler;
2360         sigaction(SIG_TIMER, &sig_timer, NULL);
2361
2362         alarm_context.timer = _alarm_create_timer();
2363
2364 }
2365
2366 static void __initialize_alarm_list()
2367 {
2368
2369         alarm_context.alarms = NULL;
2370         alarm_context.c_due_time = -1;
2371
2372         _load_alarms_from_registry();
2373
2374         __rtc_set();    /*Set RTC1 Alarm with alarm due time for alarm-manager initialization*/
2375
2376         /*alarm boot */
2377 #ifdef __ALARM_BOOT
2378         /*alarm boot */
2379         if (enable_power_on_alarm) {
2380                 /* orginally first arg's value was 21(app_id, WAKEUP_ALARM_APP_ID) in a
2381                  * platform with app-server. because __alarm_power_on(..) fuction don't 
2382                  * use first parameter internally, we set this value to 0(zero)
2383                  */
2384                 __alarm_power_on(0, enable_power_on_alarm, NULL);
2385         }
2386 #endif
2387 }
2388
2389 static void __initialize_scheduled_alarm_lsit()
2390 {
2391         _init_scheduled_alarm_list();
2392 }
2393
2394
2395 static void __hibernation_leave_callback()
2396 {
2397
2398         __initialize_scheduled_alarm_lsit();
2399
2400         __alarm_clean_list();
2401
2402         __initialize_alarm_list();
2403 }
2404
2405 static bool __initialize_noti()
2406 {
2407
2408         int fd = heynoti_init();
2409         if (fd < 0) {
2410                 ALARM_MGR_EXCEPTION_PRINT("fail to heynoti_init\n");
2411                 return false;
2412         }
2413         heynoti_subscribe(fd, "HIBERNATION_LEAVE", __hibernation_leave_callback,
2414                           NULL);
2415         heynoti_attach_handler(fd);
2416
2417         if (vconf_notify_key_changed
2418             (VCONFKEY_SYSTEM_TIMECHANGE, __on_system_time_changed, NULL) < 0) {
2419                 ALARM_MGR_LOG_PRINT(
2420                         "Failed to add callback for time changing event\n");
2421         }
2422         /*system state change noti ÃƒÂ³Â¸Â® */
2423
2424         return true;
2425 }
2426
2427
2428 static DBusHandlerResult __alarm_server_filter(DBusConnection *connection,
2429                                                DBusMessage *message,
2430                                                void *user_data)
2431 {
2432
2433         if (dbus_message_is_signal
2434             (message, DBUS_INTERFACE_DBUS, "NameOwnerChanged")) {
2435                 char *service;
2436                 char *old_owner;
2437                 char *new_owner;
2438                 GSList *entry;
2439                 __expired_alarm_t *expire_info;
2440
2441                 dbus_message_get_args(message,
2442                                       NULL,
2443                                       DBUS_TYPE_STRING, &service,
2444                                       DBUS_TYPE_STRING, &old_owner,
2445                                       DBUS_TYPE_STRING, &new_owner,
2446                                       DBUS_TYPE_INVALID);
2447
2448                 for (entry = g_expired_alarm_list; entry; entry = entry->next) {
2449                         if (entry->data) {
2450                                 expire_info = (__expired_alarm_t *) entry->data;
2451
2452                                 if (strcmp(expire_info->service_name, service)
2453                                     == 0) {
2454                                         ALARM_MGR_EXCEPTION_PRINT(
2455                                         "__alarm_server_filter : "
2456                                              "service name(%s) alarm_id (%d)\n",
2457                                              expire_info->service_name,\
2458                                              expire_info->alarm_id);
2459
2460                                         __alarm_send_noti_to_application(
2461                                              expire_info->service_name,
2462                                              expire_info->alarm_id);
2463                                         g_expired_alarm_list =
2464                                             g_slist_remove(g_expired_alarm_list,
2465                                                            entry->data);
2466                                         free(expire_info);
2467                                 }
2468                         }
2469                 }
2470
2471                 return DBUS_HANDLER_RESULT_NOT_YET_HANDLED;
2472         }
2473
2474         return DBUS_HANDLER_RESULT_NOT_YET_HANDLED;
2475 }
2476
2477 static bool __initialize_dbus()
2478 {
2479         GError *error = NULL;
2480         GObject *obj = NULL;
2481         DBusGConnection *connection = NULL;
2482         DBusError derror;
2483         int request_name_result = 0;
2484
2485         dbus_g_object_type_install_info(ALARM_MANAGER_TYPE_OBJECT,
2486                                         &dbus_glib_alarm_manager_object_info);
2487
2488         connection = dbus_g_bus_get(DBUS_BUS_SYSTEM, &error);
2489         if (!connection) {
2490
2491                 ALARM_MGR_EXCEPTION_PRINT("dbus_g_bus_get failed\n");
2492                 return false;
2493         }
2494
2495         dbus_error_init(&derror);
2496
2497         request_name_result =
2498             dbus_bus_request_name(dbus_g_connection_get_connection(connection),
2499                                   "org.tizen.alarm.manager",
2500                                   DBUS_NAME_FLAG_PROHIBIT_REPLACEMENT, &derror);
2501         if (dbus_error_is_set(&derror)) {       /* failure */
2502                 ALARM_MGR_EXCEPTION_PRINT("Failed to dbus_bus_request_name "
2503                 "(org.tizen.alarm.manager): %s\n", derror.message);
2504                 dbus_error_free(&derror);
2505                 return false;
2506         }
2507
2508         if (!(obj = g_object_new(ALARM_MANAGER_TYPE_OBJECT, NULL))) {
2509                 ALARM_MGR_EXCEPTION_PRINT("Could not allocate new object\n");
2510                 return false;
2511         }
2512
2513         dbus_g_connection_register_g_object(connection,
2514                                             "/org/tizen/alarm/manager",
2515                                             G_OBJECT(obj));
2516
2517         /*dbus_bus_add_match (dbus_g_connection_get_connection(connection),
2518            "type='signal',member='NameOwnerChanged'",NULL); */
2519
2520         dbus_bus_add_match(dbus_g_connection_get_connection(connection),
2521                            "type='signal',sender='" DBUS_SERVICE_DBUS
2522                            "',path='" DBUS_PATH_DBUS
2523                            "',interface='" DBUS_INTERFACE_DBUS
2524                            "',member='NameOwnerChanged'", NULL);
2525
2526         if (!dbus_connection_add_filter
2527             (dbus_g_connection_get_connection(connection),
2528              __alarm_server_filter, NULL, NULL)) {
2529                 ALARM_MGR_EXCEPTION_PRINT("add __expire_alarm_filter failed\n");
2530
2531                 return false;
2532         }
2533
2534         alarm_context.bus = connection;
2535         return true;
2536 }
2537
2538 #define ALARMMGR_DB_FILE "/opt/dbspace/.alarmmgr.db"
2539 sqlite3 *alarmmgr_db;
2540 #define QUERY_CREATE_TABLE_ALARMMGR "create table alarmmgr \
2541                                 (alarm_id integer primary key,\
2542                                                 start integer,\
2543                                                 end integer,\
2544                                                 pid integer,\
2545                                                 app_unique_name text,\
2546                                                 app_service_name text,\
2547                                                 app_service_name_mod text,\
2548                                                 bundle text, \
2549                                                 year integer,\
2550                                                 month integer,\
2551                                                 day integer,\
2552                                                 hour integer,\
2553                                                 min integer,\
2554                                                 sec integer,\
2555                                                 day_of_week integer,\
2556                                                 repeat integer,\
2557                                                 alarm_type integer,\
2558                                                 reserved_info integer,\
2559                                                 dst_service_name text, \
2560                                                 dst_service_name_mod text \
2561                                                 )"
2562
2563 static bool __initialize_db()
2564 {
2565         char *error_message = NULL;
2566         int ret;
2567
2568         if (access("/opt/dbspace/.alarmmgr.db", F_OK) == 0) {
2569                 ret =
2570                     db_util_open(ALARMMGR_DB_FILE, &alarmmgr_db,
2571                                  DB_UTIL_REGISTER_HOOK_METHOD);
2572
2573                 if (ret != SQLITE_OK) {
2574                         ALARM_MGR_EXCEPTION_PRINT(
2575                             "====>>>> connect menu_db [%s] failed!\n",
2576                              ALARMMGR_DB_FILE);
2577                         return false;
2578                 }
2579
2580                 return true;
2581         }
2582
2583         ret =
2584             db_util_open(ALARMMGR_DB_FILE, &alarmmgr_db,
2585                          DB_UTIL_REGISTER_HOOK_METHOD);
2586
2587         if (ret != SQLITE_OK) {
2588                 ALARM_MGR_EXCEPTION_PRINT(
2589                     "====>>>> connect menu_db [%s] failed!\n",
2590                      ALARMMGR_DB_FILE);
2591                 return false;
2592         }
2593
2594         if (SQLITE_OK !=
2595             sqlite3_exec(alarmmgr_db, QUERY_CREATE_TABLE_ALARMMGR, NULL, NULL,\
2596                          &error_message)) {
2597                 ALARM_MGR_EXCEPTION_PRINT("Don't execute query = %s, "
2598                 "error message = %s\n", QUERY_CREATE_TABLE_ALARMMGR, 
2599                                           error_message);
2600                 return false;
2601         }
2602
2603         return true;
2604 }
2605
2606 static void __initialize()
2607 {
2608
2609         g_type_init();
2610 #ifdef __ALARM_BOOT
2611         FILE *fp;
2612         char temp[2];
2613         int size;
2614
2615         fp = fopen("/proc/alarm_boot", "r");
2616         if (fp == NULL)
2617                 alarm_boot = 0;
2618         else {
2619
2620                 size = fread(&temp, 1, 1, fp);
2621                 if (size != 1)
2622                         alarm_boot = 0;
2623                 else {
2624                         temp[1] = 0;
2625                         alarm_boot = atoi(temp);
2626                 }
2627                 fclose(fp);
2628         }
2629 #endif
2630
2631         int fd;
2632         int fd2;
2633         struct rtc_time rtc_tm;
2634         int retval;
2635
2636         fd = open(power_rtc, O_RDONLY);
2637         if (fd < 0) {
2638                 ALARM_MGR_EXCEPTION_PRINT("cannot open /dev/rtc0\n");
2639                 return;
2640         }
2641         retval = ioctl(fd, RTC_RD_TIME, &rtc_tm);
2642         close(fd);
2643
2644         fd2 = open(default_rtc, O_RDWR);
2645         if (fd2 < 0) {
2646                 ALARM_MGR_EXCEPTION_PRINT("cannot open /dev/rtc1\n");
2647                 return;
2648         }
2649         retval = ioctl(fd2, RTC_SET_TIME, &rtc_tm);
2650         close(fd2);
2651
2652         __initialize_timer();
2653         if (__initialize_dbus() == false) {     /* because dbus's initialize 
2654                                         failed, we cannot continue any more. */
2655                 ALARM_MGR_EXCEPTION_PRINT("because __initialize_dbus failed, "
2656                                           "alarm-server cannot be runned.\n");
2657                 exit(1);
2658         }
2659         __initialize_scheduled_alarm_lsit();
2660         __initialize_db();
2661         __initialize_alarm_list();
2662         __initialize_noti();
2663
2664 }
2665
2666 #ifdef __ALARM_BOOT
2667 static bool __check_false_alarm()
2668 {
2669         time_t current_time;
2670         time_t interval;
2671
2672         time(&current_time);
2673
2674         interval = ab_due_time - current_time;
2675
2676         ALARM_MGR_LOG_PRINT("due_time : %d / current_time %d\n", \
2677                             alarm_context.c_due_time, current_time);
2678
2679         if (interval > 0 && interval <= 30) {
2680                 return true;
2681         } else if (!poweron_alarm_expired) {
2682                 /* originally, first arguement's value was 121(app_id) which means 
2683                  * alarm_booting ui application.and this application's dbus-service 
2684                  * name had a org.tizen.alarmboot.ui in a platform with app-server.
2685                  * so we set "org.tizen.alarmboot.ui.ALARM" instead of 121.
2686                  */
2687                 __alarm_send_noti_to_application(
2688                         WAKEUP_ALARMBOOTING_APP_ID, -1);
2689                 return false;
2690         }
2691
2692         return true;
2693 }
2694 #endif
2695
2696 int main()
2697 {
2698         GMainLoop *mainloop = NULL;
2699
2700         ALARM_MGR_LOG_PRINT("Enter main loop\n");
2701
2702         mainloop = g_main_loop_new(NULL, FALSE);
2703
2704         __initialize();
2705
2706 #ifdef __ALARM_BOOT
2707         if (alarm_boot){
2708                 __check_false_alarm();
2709         }
2710 #endif
2711
2712         g_main_loop_run(mainloop);
2713
2714         return 0;
2715 }