Fixed prevent issues
[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                 free(__alarm_info);
1058                 return true;
1059         } else {
1060                 char due_time_r[100] = { 0 };
1061                 struct tm ts_ret;
1062                 localtime_r(&due_time, &ts_ret);
1063                 strftime(due_time_r, 30, "%c", &ts_ret);
1064                 ALARM_MGR_LOG_PRINT("[alarm-server]:Update alarm: alarm(%d) "
1065                                     "due_time(%s)\n", alarm_id, due_time_r);
1066         }
1067
1068         ALARM_MGR_LOG_PRINT("[alarm-server]:alarm_context.c_due_time(%d), "
1069                             "due_time(%d)", alarm_context.c_due_time, due_time);
1070
1071         if (alarm_context.c_due_time == -1
1072             || due_time < alarm_context.c_due_time) {
1073                 _clear_scheduled_alarm_list();
1074                 _add_to_scheduled_alarm_list(__alarm_info);
1075                 _alarm_set_timer(&alarm_context, alarm_context.timer, due_time,
1076                                  alarm_id);
1077                 alarm_context.c_due_time = due_time;
1078                 ALARM_MGR_LOG_PRINT("[alarm-server1]:alarm_context.c_due_time "
1079                      "(%d), due_time(%d)", alarm_context.c_due_time, due_time);
1080         } else if (due_time == alarm_context.c_due_time) {
1081                 _add_to_scheduled_alarm_list(__alarm_info);
1082                 ALARM_MGR_LOG_PRINT("[alarm-server2]:alarm_context.c_due_time "
1083                      "(%d), due_time(%d)", alarm_context.c_due_time, due_time);
1084         }
1085
1086         __rtc_set();
1087
1088 #ifdef __ALARM_BOOT
1089         /*alarm boot */
1090         if (enable_power_on_alarm) {
1091                 /* orginally first arg's value was 21(app_id, WAKEUP_ALARM_APP_ID) 
1092                  * in a platform with app-server.because __alarm_power_on(..) fuction 
1093                  * don't use first parameter internally, we set this value to 0(zero)
1094                  */
1095                 __alarm_power_on(0, enable_power_on_alarm, NULL);
1096         }
1097 #endif
1098
1099         return true;
1100 }
1101
1102 static bool __alarm_delete(int pid, alarm_id_t alarm_id, int *error_code)
1103 {
1104         bool result = false;
1105
1106         ALARM_MGR_LOG_PRINT("[alarm-server]:delete alarm: alarm(%d) pid(%d)\n",\
1107                             alarm_id, pid);
1108         result = _remove_from_scheduled_alarm_list(pid, alarm_id);
1109
1110         if (!__alarm_remove_from_list(pid, alarm_id, error_code)) {
1111
1112                 ALARM_MGR_EXCEPTION_PRINT("[alarm-server]:delete alarm: "
1113                                           "alarm(%d) pid(%d) has failed with error_code(%d)\n",
1114                                           alarm_id, pid, *error_code);
1115                 return false;
1116         }
1117
1118         if (result == true && g_slist_length(g_scheduled_alarm_list) == 0) {
1119                 _alarm_disable_timer(alarm_context);
1120                 _alarm_schedule();
1121         }
1122
1123         __rtc_set();
1124
1125 #ifdef __ALARM_BOOT
1126         /*alarm boot */
1127         if (enable_power_on_alarm) {
1128                 /* orginally first arg's value was 21(app_id, WAKEUP_ALARM_APP_ID) in a 
1129                  * platform with app-server.because __alarm_power_on(..) fuction don't 
1130                  * use first parameter internally, we set this value to 0(zero)
1131                  */
1132                 __alarm_power_on(0, enable_power_on_alarm, NULL);
1133         }
1134 #endif
1135
1136         return true;
1137 }
1138
1139 static bool __alarm_power_on(int app_id, bool on_off, int *error_code)
1140 {
1141 #ifdef __ALARM_BOOT
1142         time_t min_time = 0;
1143         time_t current_time = 0;
1144         struct tm *temp_info;
1145         struct rtc_time rtc_tm = { 0, };
1146         struct tm min_time_r;
1147         int fd = 0;
1148         int retval;
1149
1150         enable_power_on_alarm = on_off;
1151         /*_update_power_on(on_off); */ /*currently its empty*/
1152
1153         fd = open(power_rtc, O_RDONLY);
1154         if (fd < 0) {
1155                 ALARM_MGR_EXCEPTION_PRINT("cannot open /dev/rtc0\n");
1156                 return false;
1157         }
1158
1159         if (on_off == true) {
1160                 if (_alarm_find_mintime_power_on(&min_time) == true) {
1161
1162                         ab_due_time = min_time;
1163
1164                         min_time = min_time - 60;
1165
1166                         time(&current_time);
1167
1168                         if (min_time <= current_time)
1169                                 min_time = current_time + 5;
1170
1171                         temp_info = gmtime_r(&min_time, &min_time_r);
1172
1173                         ALARM_MGR_LOG_PRINT("__alarm_power_on : %d %d %d %d "
1174                                                 "%d\n", \
1175                                            min_time_r.tm_year,\
1176                                            min_time_r.tm_mon,\
1177                                            min_time_r.tm_mday,\
1178                                            min_time_r.tm_hour,\
1179                                            min_time_r.tm_min);
1180                         ALARM_MGR_LOG_PRINT("__alarm_power_on : %d %d %d %d "
1181                                                 "%d\n", \
1182                                            min_time_r.tm_year,\
1183                                            min_time_r.tm_mon,\
1184                                            min_time_r.tm_mday,\
1185                                            min_time_r.tm_hour,\
1186                                            min_time_r.tm_min);
1187
1188                         rtc_tm.tm_mday = min_time_r.tm_mday;
1189                         rtc_tm.tm_mon = min_time_r.tm_mon;
1190                         rtc_tm.tm_year = min_time_r.tm_year;
1191                         rtc_tm.tm_hour = min_time_r.tm_hour;
1192                         rtc_tm.tm_min = min_time_r.tm_min;
1193                         rtc_tm.tm_sec = min_time_r.tm_sec;
1194                         /*set_info.time_zone = 0; */
1195                         /*set_info.u_interval.day_of_week = 0; */
1196
1197                         /*ALARM_MGR_LOG_PRINT("####__alarm_power_on : %d %d 
1198                         %d %d %d\n",set_info.year,set_info.month,set_info.day,
1199                         set_info.hour,set_info.minute); */
1200
1201                         ALARM_MGR_LOG_PRINT("due_time : %d \n", ab_due_time);
1202
1203                         ALARM_MGR_LOG_PRINT("\n\nSetted RTC Alarm date/time is "
1204                                             "%d-%d-%d, %02d:%02d:%02d.\n",
1205                                             rtc_tm.tm_mday, rtc_tm.tm_mon + 1,
1206                                 rtc_tm.tm_year + 1900, rtc_tm.tm_hour, 
1207                                 rtc_tm.tm_min, rtc_tm.tm_sec);
1208
1209                         retval = ioctl(fd, RTC_ALM_SET, &rtc_tm);
1210                         if (retval == -1) {
1211                                 if (errno == ENOTTY) {
1212                                         ALARM_MGR_EXCEPTION_PRINT(
1213                                         "\n...Alarm IRQs not supported.\n");
1214                                 }
1215                                 ALARM_MGR_EXCEPTION_PRINT("RTC_ALM_SET ioctl");
1216                                 close(fd);
1217                                 return false;
1218                         }
1219                         ALARM_MGR_LOG_PRINT("[alarm-server]RTC "
1220                                             "alarm(POWER ON) is setted");
1221
1222                         /* Enable alarm interrupts */
1223                         retval = ioctl(fd, RTC_AIE_ON, 0);
1224                         if (retval == -1) {
1225                                 ALARM_MGR_EXCEPTION_PRINT(
1226                                     "RTC_AIE_ON ioctl failed");
1227                                 close(fd);
1228                                 return false;
1229                         }
1230                         ALARM_MGR_LOG_PRINT("[alarm-server]RTC(POWER ON) "
1231                                             "alarm is on");
1232
1233                 } else
1234                         retval = ioctl(fd, RTC_AIE_OFF, 0);
1235         } else {
1236                 ALARM_MGR_LOG_PRINT("__alarm_power_on : off\n");
1237                 retval = ioctl(fd, RTC_AIE_OFF, 0);
1238         }
1239
1240         close(fd);
1241 #endif                          /* #ifdef __ALARM_BOOT */
1242
1243         return true;
1244 }
1245
1246 static bool __alarm_power_off(int app_id, int *error_code)
1247 {
1248 #ifdef __ALARM_BOOT
1249
1250 #endif                          /* #ifdef __ALARM_BOOT */
1251         return true;
1252 }
1253
1254 static bool __alarm_check_next_duetime(int app_id, int *error_code)
1255 {
1256 #ifdef __ALARM_BOOT
1257         time_t current_time;
1258         time_t interval;
1259
1260         time(&current_time);
1261
1262         interval = ab_due_time - current_time;
1263
1264         ALARM_MGR_LOG_PRINT("due_time : %d / current_time %d\n", ab_due_time,
1265                             current_time);
1266
1267         if (interval > 0 && interval <= 60)
1268                 return true;
1269         else
1270                 return false;
1271 #else                           /* #ifdef __ALARM_BOOT */
1272         return true;
1273 #endif
1274 }
1275
1276 static void __alarm_send_noti_to_application(const char *app_service_name,
1277                                              alarm_id_t alarm_id)
1278 {
1279
1280
1281         char service_name[MAX_SERVICE_NAME_LEN];
1282         char object_name[MAX_SERVICE_NAME_LEN];
1283
1284         DBusMessage *message;
1285         DBusMessageIter iter;
1286
1287         if (app_service_name == NULL || strlen(app_service_name) == 0) {
1288                 ALARM_MGR_EXCEPTION_PRINT("This alarm destination is "
1289                                           "invalid\n");
1290                 return;
1291         }
1292         memset(service_name, 0, MAX_SERVICE_NAME_LEN);
1293         memcpy(service_name, app_service_name, strlen(app_service_name));
1294
1295         snprintf(object_name, MAX_SERVICE_NAME_LEN,
1296                  "/org/tizen/alarm/client");
1297
1298         ALARM_MGR_LOG_PRINT("[alarm server][send expired_alarm(alarm_id=%d)to"
1299         "app_service_name(%s), object_name(%s), interface_name(%s)]\n",\
1300         alarm_id, service_name, object_name, "org.tizen.alarm.client");
1301
1302         message = dbus_message_new_method_call(service_name,
1303                                                object_name,
1304                                                "org.tizen.alarm.client",
1305                                                "alarm_expired");
1306         if (message == NULL) {
1307                 ALARM_MGR_EXCEPTION_PRINT("[alarm server] "
1308                         "dbus_message_new_method_call faild. maybe OOM!.\n");
1309                 ALARM_MGR_EXCEPTION_PRINT("[alarm server] so we cannot "
1310                         "send expired alarm to %s\n", service_name);
1311                 return;
1312         }
1313
1314         dbus_message_set_no_reply(message, TRUE);
1315         /*      if(service_name[0]==':') */
1316         /* we don't need auto activation in a case that 
1317            destination_app_service_name starts with a charactor like (:) */
1318         dbus_message_set_auto_start(message, FALSE);
1319
1320         dbus_message_iter_init_append(message, &iter);
1321         if (!dbus_message_iter_append_basic 
1322                 (&iter, DBUS_TYPE_INT32, &alarm_id)) {
1323                 dbus_message_unref(message);
1324                 ALARM_MGR_EXCEPTION_PRINT("[alarm server] "
1325                 "dbus_message_iter_append_basic faild. maybe OOM!.\n");
1326                 return;
1327         }
1328
1329         dbus_connection_send(dbus_g_connection_get_connection
1330                              (alarm_context.bus), message, NULL);
1331         dbus_connection_flush(dbus_g_connection_get_connection
1332                               (alarm_context.bus));
1333         dbus_message_unref(message);
1334
1335 }
1336
1337 static void __alarm_expired()
1338 {
1339         const char *destination_app_service_name = NULL;
1340         alarm_id_t alarm_id = -1;
1341         int app_pid = 0;
1342         __alarm_info_t *__alarm_info = NULL;
1343         char alarm_id_val[32]={0,};
1344         int b_len = 0;
1345         bundle *b = NULL;
1346
1347         ALARM_MGR_LOG_PRINT("[alarm-server]: Enter \n");
1348
1349         time_t current_time;
1350         double interval;
1351
1352         time(&current_time);
1353
1354         interval = difftime(alarm_context.c_due_time, current_time);
1355         ALARM_MGR_LOG_PRINT("[alarm-server]: c_due_time(%d), "
1356                 "current_time(%d), interval(%d)\n", alarm_context.c_due_time,
1357                 current_time, interval);
1358
1359         if (alarm_context.c_due_time > current_time) {
1360                 ALARM_MGR_LOG_PRINT("[alarm-server]: False Alarm\n");
1361                 goto done;
1362         }
1363
1364         GSList *iter = NULL;
1365         __scheduled_alarm_t *alarm = NULL;
1366
1367         for (iter = g_scheduled_alarm_list; iter != NULL;
1368              iter = g_slist_next(iter)) {
1369                 alarm = iter->data;
1370                 alarm_id = alarm->alarm_id;
1371
1372                 __alarm_info = alarm->__alarm_info;
1373
1374                 app_pid = __alarm_info->pid;
1375
1376                 if (strncmp
1377                     (g_quark_to_string(__alarm_info->quark_bundle),
1378                      "null", 4) != 0) {
1379
1380                                 b_len = strlen(g_quark_to_string(__alarm_info->quark_bundle));
1381
1382                                 b = bundle_decode((bundle_raw *)g_quark_to_string(__alarm_info->quark_bundle), b_len);
1383
1384                                 if (NULL == b)
1385                                 {
1386                                         ALARM_MGR_EXCEPTION_PRINT("Error!!!..Unable to decode the bundle!!\n");
1387                                 }
1388                                 else
1389                                 {
1390                                         snprintf(alarm_id_val,31,"%d",alarm_id);
1391
1392                                         if (bundle_add(b,"http://tizen.org/appcontrol/data/alarm_id", alarm_id_val)){
1393                                                 ALARM_MGR_EXCEPTION_PRINT("Unable to add alarm id to the bundle\n");
1394                                         }
1395                                         else
1396                                         {
1397                                                 if ( appsvc_run_service(b, 0, NULL, NULL) < 0)
1398                                                 {
1399                                                         ALARM_MGR_EXCEPTION_PRINT("Unable to run app svc\n");
1400                                                 }
1401                                                 else
1402                                                 {
1403                                                         ALARM_MGR_LOG_PRINT("Successfuly ran app svc\n");
1404                                                 }
1405                                         }
1406                                         bundle_free(b);
1407                                 }
1408
1409                 }
1410                 else
1411                 {
1412                         if (strncmp
1413                             (g_quark_to_string(__alarm_info->quark_dst_service_name),
1414                              "null",4) == 0) {
1415                                 ALARM_MGR_LOG_PRINT("[alarm-server]:destination is "
1416                                 "null, so we send expired alarm to %s(%u)\n",\
1417                                         g_quark_to_string(
1418                                         __alarm_info->quark_app_service_name),
1419                                         __alarm_info->quark_app_service_name); 
1420                                         destination_app_service_name = g_quark_to_string(
1421                                         __alarm_info->quark_app_service_name_mod);
1422                         } else {
1423                                 ALARM_MGR_LOG_PRINT("[alarm-server]:destination "
1424                                                     ":%s(%u)\n",
1425                                         g_quark_to_string(
1426                                         __alarm_info->quark_dst_service_name), 
1427                                         __alarm_info->quark_dst_service_name);
1428                                         destination_app_service_name = g_quark_to_string(
1429                                                 __alarm_info->quark_dst_service_name_mod);
1430                         }
1431
1432 #ifdef __ALARM_BOOT
1433                         /* orginally this code had if(__alarm_info->app_id==21) in a 
1434                            platform with app-server. */
1435                         /*if(__alarm_info->quark_dst_service_name  == 
1436                            g_quark_from_string (WAKEUP_ALARM_APP_ID)) */
1437                         if (strcmp
1438                             (g_quark_to_string(__alarm_info->quark_dst_service_name),
1439                              WAKEUP_ALARM_APP_ID) == 0) {
1440                                 int fd = 0;
1441                                 fd = open(power_rtc, O_RDONLY);
1442                                 if (fd < 0) {
1443                                         ALARM_MGR_LOG_PRINT("cannot open /dev/rtc0\n");
1444                                 } else {
1445                                         ioctl(fd, RTC_AIE_OFF, 0);
1446                                         close(fd);
1447                                 }
1448                         }
1449 #endif
1450
1451                         /* 
1452                          * we should consider a situation that 
1453                          * destination_app_service_name is owner_name like (:xxxx) and
1454                          * application's pid which registered this alarm was killed.In that case,
1455                          * we don't need to send the expire event because the process was killed.
1456                          * this causes needless message to be sent.
1457                          */
1458                         ALARM_MGR_LOG_PRINT("[alarm-server]: "
1459                                             "destination_app_service_name :%s, app_pid=%d\n",
1460                                             destination_app_service_name, app_pid);
1461                         /* the following is a code that checks the above situation. 
1462                            please verify this code. */
1463
1464                         if (dbus_bus_name_has_owner(
1465                              dbus_g_connection_get_connection(alarm_context.bus),
1466                              destination_app_service_name, NULL) == FALSE) {
1467                                 __expired_alarm_t *expire_info;
1468                                 char appid[MAX_SERVICE_NAME_LEN] = { 0, };
1469                                 char alarm_id_str[32] = { 0, };
1470
1471                                 expire_info = malloc(sizeof(__expired_alarm_t));
1472                                 if (G_UNLIKELY(NULL == expire_info)){
1473                                         ALARM_MGR_ASSERT_PRINT("[alarm-server]:Malloc failed!Can't notify alarm expiry info\n");
1474                                         goto done;
1475                                 }
1476                                 strncpy(expire_info->service_name,
1477                                         destination_app_service_name,
1478                                         MAX_SERVICE_NAME_LEN-1);
1479                                 expire_info->alarm_id = alarm_id;
1480                                 g_expired_alarm_list =
1481                                     g_slist_append(g_expired_alarm_list, expire_info);
1482
1483
1484                                 if (strncmp
1485                                         (g_quark_to_string(__alarm_info->quark_dst_service_name),
1486                                              "null",4) == 0) {
1487                                         strncpy(appid,g_quark_to_string(__alarm_info->quark_app_service_name),strlen(g_quark_to_string(__alarm_info->quark_app_service_name))-6);
1488                                 }
1489                                 else
1490                                 {
1491                                         strncpy(appid,g_quark_to_string(__alarm_info->quark_dst_service_name),strlen(g_quark_to_string(__alarm_info->quark_dst_service_name))-6);
1492                                 }
1493
1494                                 snprintf(alarm_id_str, 31, "%d", alarm_id);
1495
1496                                 ALARM_MGR_LOG_PRINT("before aul_launch appid(%s) "
1497                                         "alarm_id_str(%s)\n", appid, alarm_id_str);
1498
1499                                 bundle *kb;
1500                                 kb = bundle_create();
1501                                 bundle_add(kb, "__ALARM_MGR_ID", alarm_id_str);
1502                                 aul_launch_app(appid, kb);
1503                                 bundle_free(kb);
1504                         } else {
1505                                 ALARM_MGR_LOG_PRINT(
1506                                         "before alarm_send_noti_to_application\n");
1507                                 __alarm_send_noti_to_application(
1508                                              destination_app_service_name, alarm_id);
1509                         }
1510                 }
1511                 ALARM_MGR_LOG_PRINT("after __alarm_send_noti_to_application\n");
1512
1513 /*              if( !(__alarm_info->alarm_info.alarm_type 
1514                                         & ALARM_TYPE_VOLATILE) ) {
1515                         __alarm_remove_from_list(__alarm_info->pid, 
1516                                                         alarm_id, NULL);
1517                 }
1518                 else */
1519                 if (__alarm_info->alarm_info.mode.repeat
1520                     == ALARM_REPEAT_MODE_ONCE) {
1521 /*                      _alarm_next_duetime(__alarm_info);*/
1522 /*                      _update_alarms(__alarm_info);*/
1523                         __alarm_remove_from_list(__alarm_info->pid, alarm_id,
1524                                                  NULL);
1525                 } else {
1526
1527                         _alarm_next_duetime(__alarm_info);
1528 /*                      _update_alarms(__alarm_info);*/
1529                 }
1530
1531         }
1532
1533  done:
1534         _clear_scheduled_alarm_list();
1535         alarm_context.c_due_time = -1;
1536
1537         ALARM_MGR_LOG_PRINT("[alarm-server]: Leave  \n");
1538 }
1539
1540 static gboolean __alarm_handler_idle()
1541 {
1542         if (g_dummy_timer_is_set == true) {
1543                 ALARM_MGR_LOG_PRINT("dummy alarm timer has expired\n");
1544         } else {
1545                 ALARM_MGR_LOG_PRINT("__alarm_handler \n");
1546                 ALARM_MGR_LOG_PRINT("__alarm_handler \n");
1547
1548                 __alarm_expired();
1549
1550         }
1551
1552         _alarm_schedule();
1553
1554         __rtc_set();
1555
1556 #ifdef __ALARM_BOOT
1557         /*alarm boot */
1558         if (enable_power_on_alarm) {
1559                 /* orginally first arg's value was 21(app_id, WAKEUP_ALARM_APP_ID) 
1560                  *in a platform with app-server.because __alarm_power_on(..) fuction 
1561                  *don't use first parameter internally, we set this value to 0(zero)
1562                  */
1563                 __alarm_power_on(0, enable_power_on_alarm, NULL);
1564         }
1565 #endif
1566         pm_unlock_state(LCD_OFF, PM_SLEEP_MARGIN);
1567         return false;
1568
1569 }
1570
1571 static void __alarm_handler(int sigNum, siginfo_t *pSigInfo, void *pUContext)
1572 {
1573
1574         pm_lock_state(LCD_OFF, STAY_CUR_STATE, 0);
1575
1576         /* we moved __alarm_expired() function to __alarm_handler_idle GSource
1577            because of signal safety. */
1578         g_idle_add_full(G_PRIORITY_HIGH_IDLE, __alarm_handler_idle, NULL, NULL);
1579 }
1580
1581 static void __clean_registry()
1582 {
1583
1584         /*TODO:remove all db entries */
1585 }
1586
1587 static bool __alarm_manager_reset()
1588 {
1589
1590         _alarm_disable_timer(alarm_context);
1591
1592         __alarm_clean_list();
1593
1594         _clear_scheduled_alarm_list();
1595         __clean_registry();
1596
1597         return true;
1598 }
1599
1600 static void __on_system_time_changed(keynode_t *node, void *data)
1601 {
1602         double diff_time;
1603         time_t _time;
1604         time_t before;
1605
1606         _alarm_disable_timer(alarm_context);
1607
1608         if (node) {
1609                 _time = vconf_keynode_get_int(node);
1610         } else {
1611                 vconf_get_int(VCONFKEY_SYSTEM_TIMECHANGE, (int *)&_time);
1612         }
1613
1614         time(&before);
1615         diff_time = difftime(_time, before);
1616
1617         tzset();
1618
1619         ALARM_MGR_ASSERT_PRINT("diff_time is %f\n", diff_time);
1620
1621         ALARM_MGR_LOG_PRINT("[alarm-server] System time has been changed\n");
1622         ALARM_MGR_LOG_PRINT("1.alarm_context.c_due_time is %d\n",
1623                             alarm_context.c_due_time);
1624
1625         _set_time(_time);
1626
1627         vconf_set_dbl(VCONFKEY_SYSTEM_TIMEDIFF, diff_time);
1628         vconf_set_int(VCONFKEY_SYSTEM_TIME_CHANGED,(int)diff_time);
1629
1630         __alarm_update_due_time_of_all_items_in_list(diff_time);
1631
1632         ALARM_MGR_LOG_PRINT("2.alarm_context.c_due_time is %d\n",
1633                             alarm_context.c_due_time);
1634         _clear_scheduled_alarm_list();
1635         _alarm_schedule();
1636         __rtc_set();
1637 #ifdef __ALARM_BOOT
1638         /*alarm boot */
1639         if (enable_power_on_alarm) {
1640 /* orginally first arg's value was 21(app_id, WAKEUP_ALARM_
1641 APP_ID) in a platform with app-server. because _alarm_power_
1642 on(..) fuction don't use first parameter internally, we set 
1643 this value to 0(zero)
1644 */
1645                 __alarm_power_on(0, enable_power_on_alarm, NULL);
1646         }
1647 #endif
1648         return;
1649 }
1650
1651 gboolean alarm_manager_alarm_set_rtc_time(void *pObject, int pid,
1652                                 int year, int mon, int day,
1653                                 int hour, int min, int sec, char *e_cookie,
1654                                 int *return_code){
1655         guchar *cookie = NULL;
1656         gsize size;
1657         int retval = 0;
1658         gboolean result = true;
1659         gid_t call_gid;
1660
1661         const char *rtc = power_rtc;
1662         int fd = 0;
1663         struct rtc_time rtc_tm = {0,};
1664         struct rtc_wkalrm rtc_wk;
1665         struct tm *alarm_tm = NULL;
1666         struct tm due_tm = {0,};
1667
1668
1669         if (return_code){
1670                 *return_code = ALARMMGR_RESULT_SUCCESS;
1671         }
1672
1673         cookie = g_base64_decode(e_cookie, &size);
1674         if (NULL == cookie)
1675         {
1676                 if (return_code)
1677                         *return_code = ERR_ALARM_NO_PERMISSION;
1678                 ALARM_MGR_EXCEPTION_PRINT("Unable to decode cookie!!!\n");
1679                 return true;
1680         }
1681
1682         call_gid = security_server_get_gid("alarm");
1683
1684         ALARM_MGR_LOG_PRINT("call_gid : %d\n", call_gid);
1685
1686         retval = security_server_check_privilege((const char *)cookie, call_gid);
1687         if (retval < 0) {
1688                 if (retval == SECURITY_SERVER_API_ERROR_ACCESS_DENIED) {
1689                         ALARM_MGR_EXCEPTION_PRINT(
1690                                 "%s", "access has been denied\n");
1691                 }
1692                 ALARM_MGR_EXCEPTION_PRINT("Error has occurred in security_server_check_privilege()\n");
1693                 if (return_code)
1694                         *return_code = ERR_ALARM_NO_PERMISSION;
1695         }
1696         else {
1697
1698                 /*extract day of the week, day in the year &
1699                 daylight saving time from system*/
1700                 time_t ctime;
1701                 ctime = time(NULL);
1702                 alarm_tm = localtime(&ctime);
1703
1704                 alarm_tm->tm_year = year;
1705                 alarm_tm->tm_mon = mon;
1706                 alarm_tm->tm_mday = day;
1707                 alarm_tm->tm_hour = hour;
1708                 alarm_tm->tm_min = min;
1709                 alarm_tm->tm_sec = sec;
1710
1711                 /*convert to calendar time representation*/
1712                 time_t rtc_time = mktime(alarm_tm);
1713
1714                 /*convert to Coordinated Universal Time (UTC)*/
1715                 gmtime_r(&rtc_time, &due_tm);
1716
1717                 fd = open(rtc, O_RDONLY);
1718                 if (fd == -1) {
1719                         ALARM_MGR_EXCEPTION_PRINT("RTC open failed.\n");
1720                         if (return_code)
1721                                 *return_code = ERR_ALARM_SYSTEM_FAIL;
1722                         return result;
1723                 }
1724
1725                 /* Read the RTC time/date */
1726                 retval = ioctl(fd, RTC_RD_TIME, &rtc_tm);
1727                 if (retval == -1) {
1728                         ALARM_MGR_EXCEPTION_PRINT("RTC_RD_TIME ioctl failed");
1729                         close(fd);
1730                         if (return_code)
1731                                 *return_code = ERR_ALARM_SYSTEM_FAIL;
1732                         return result;
1733                 }
1734
1735                 rtc_tm.tm_mday = due_tm.tm_mday;
1736                 rtc_tm.tm_mon = due_tm.tm_mon;
1737                 rtc_tm.tm_year = due_tm.tm_year;
1738                 rtc_tm.tm_hour = due_tm.tm_hour;
1739                 rtc_tm.tm_min = due_tm.tm_min;
1740                 rtc_tm.tm_sec = due_tm.tm_sec;
1741
1742                 memcpy(&rtc_wk.time, &rtc_tm, sizeof(rtc_tm));
1743
1744                 rtc_wk.enabled = 1;
1745                 rtc_wk.pending = 0;
1746
1747                 retval = ioctl(fd, RTC_WKALM_BOOT_SET, &rtc_wk);
1748                 if (retval == -1) {
1749                         if (errno == ENOTTY) {
1750                                 ALARM_MGR_EXCEPTION_PRINT("\nAlarm IRQs not"
1751                                                           "supported.\n");
1752                         }
1753                         ALARM_MGR_EXCEPTION_PRINT("RTC_ALM_SET ioctl");
1754                         close(fd);
1755                         if (return_code)
1756                                 *return_code = ERR_ALARM_SYSTEM_FAIL;
1757                 }
1758                 else{
1759                         ALARM_MGR_LOG_PRINT("[alarm-server]RTC alarm is setted");
1760                         /* Enable alarm interrupts */
1761                         retval = ioctl(fd, RTC_AIE_ON, 0);
1762                         if (retval == -1) {
1763                                 ALARM_MGR_EXCEPTION_PRINT("RTC_AIE_ON ioctl failed");
1764                                 if (return_code)
1765                                         *return_code = ERR_ALARM_SYSTEM_FAIL;
1766                         }
1767                         close(fd);
1768                 }
1769         }
1770
1771         if (cookie){
1772                 g_free(cookie);
1773                 cookie = NULL;
1774         }
1775
1776         return result;
1777
1778 }
1779
1780 gboolean alarm_manager_alarm_create_appsvc(void *pObject, int pid,
1781                                     int start_year,
1782                                     int start_month, int start_day,
1783                                     int start_hour, int start_min,
1784                                     int start_sec, int end_year, int end_month,
1785                                     int end_day, int mode_day_of_week,
1786                                     int mode_repeat, int alarm_type,
1787                                     int reserved_info,
1788                                     char *bundle_data, char *e_cookie,
1789                                     int *alarm_id, int *return_code)
1790 {
1791         alarm_info_t alarm_info;
1792         guchar *cookie = NULL;
1793         gsize size;
1794         int retval = 0;
1795         gid_t call_gid;
1796         gboolean result = true;
1797
1798         alarm_info.start.year = start_year;
1799         alarm_info.start.month = start_month;
1800         alarm_info.start.day = start_day;
1801         alarm_info.start.hour = start_hour;
1802         alarm_info.start.min = start_min;
1803         alarm_info.start.sec = start_sec;
1804
1805         alarm_info.end.year = end_year;
1806         alarm_info.end.month = end_month;
1807         alarm_info.end.day = end_day;
1808
1809         alarm_info.mode.u_interval.day_of_week = mode_day_of_week;
1810         alarm_info.mode.repeat = mode_repeat;
1811
1812         alarm_info.alarm_type = alarm_type;
1813         alarm_info.reserved_info = reserved_info;
1814
1815         *return_code = 0;
1816
1817         cookie = g_base64_decode(e_cookie, &size);
1818         if (NULL == cookie)
1819         {
1820                 *return_code = -1;
1821                 ALARM_MGR_EXCEPTION_PRINT("Unable to decode cookie!!!\n");
1822                 return false;
1823         }
1824         
1825         call_gid = security_server_get_gid("alarm");
1826
1827         ALARM_MGR_LOG_PRINT("call_gid : %d\n", call_gid);
1828
1829         retval = security_server_check_privilege((const char *)cookie, call_gid);
1830         if (retval < 0) {
1831                 if (retval == SECURITY_SERVER_API_ERROR_ACCESS_DENIED) {
1832                         ALARM_MGR_EXCEPTION_PRINT(
1833                                 "%s", "access has been denied\n");
1834                 }
1835                 ALARM_MGR_EXCEPTION_PRINT("Error has occurred in security_server_check_privilege()\n");
1836                 *return_code = -1;
1837                 result = false;
1838         }
1839         else {
1840                 result = __alarm_create_appsvc(&alarm_info, alarm_id, pid,
1841                                bundle_data, return_code);
1842                 if (false == result)
1843                 {
1844                         ALARM_MGR_EXCEPTION_PRINT("Unable to create alarm!\n");
1845                 }
1846         }
1847
1848         if (cookie){
1849                 g_free(cookie);
1850                 cookie = NULL;
1851         }
1852
1853         return result;
1854 }
1855
1856 gboolean alarm_manager_alarm_create(void *pObject, int pid,
1857                                     char *app_service_name, char *app_service_name_mod,  int start_year,
1858                                     int start_month, int start_day,
1859                                     int start_hour, int start_min,
1860                                     int start_sec, int end_year, int end_month,
1861                                     int end_day, int mode_day_of_week,
1862                                     int mode_repeat, int alarm_type,
1863                                     int reserved_info,
1864                                     char *reserved_service_name, char *reserved_service_name_mod, char *e_cookie,
1865                                     int *alarm_id, int *return_code)
1866 {
1867         alarm_info_t alarm_info;
1868         guchar *cookie;
1869         gsize size;
1870         int retval;
1871         gid_t call_gid;
1872
1873         alarm_info.start.year = start_year;
1874         alarm_info.start.month = start_month;
1875         alarm_info.start.day = start_day;
1876         alarm_info.start.hour = start_hour;
1877         alarm_info.start.min = start_min;
1878         alarm_info.start.sec = start_sec;
1879
1880         alarm_info.end.year = end_year;
1881         alarm_info.end.month = end_month;
1882         alarm_info.end.day = end_day;
1883
1884         alarm_info.mode.u_interval.day_of_week = mode_day_of_week;
1885         alarm_info.mode.repeat = mode_repeat;
1886
1887         alarm_info.alarm_type = alarm_type;
1888         alarm_info.reserved_info = reserved_info;
1889
1890         *return_code = 0;
1891
1892         cookie = g_base64_decode(e_cookie, &size);
1893         call_gid = security_server_get_gid("alarm");
1894
1895         ALARM_MGR_LOG_PRINT("call_gid : %d\n", call_gid);
1896
1897         retval = security_server_check_privilege((const char *)cookie, call_gid);
1898         if (retval < 0) {
1899                 if (retval == SECURITY_SERVER_API_ERROR_ACCESS_DENIED) {
1900                         ALARM_MGR_EXCEPTION_PRINT(
1901                                 "%s", "access has been denied\n");
1902                 }
1903                 ALARM_MGR_EXCEPTION_PRINT("%s", "Error has occurred\n");
1904
1905                 *return_code = -1;
1906         }
1907
1908         else {
1909                 /* return valule and return_code should be checked */
1910                 __alarm_create(&alarm_info, alarm_id, pid, app_service_name,app_service_name_mod,
1911                                reserved_service_name, reserved_service_name_mod, return_code);
1912         }
1913
1914         g_free(cookie);
1915
1916         return true;
1917 }
1918
1919 gboolean alarm_manager_alarm_delete(void *pObject, int pid, alarm_id_t alarm_id,
1920                                     char *e_cookie, int *return_code)
1921 {
1922         guchar *cookie;
1923         gsize size;
1924         int retval;
1925         gid_t call_gid;
1926
1927         cookie = g_base64_decode(e_cookie, &size);
1928         call_gid = security_server_get_gid("alarm");
1929
1930         ALARM_MGR_LOG_PRINT("call_gid : %d\n", call_gid);
1931
1932         retval = security_server_check_privilege((const char *)cookie, call_gid);
1933         if (retval < 0) {
1934                 if (retval == SECURITY_SERVER_API_ERROR_ACCESS_DENIED) {
1935                         ALARM_MGR_EXCEPTION_PRINT("%s",
1936                                                   "access has been denied\n");
1937                 }
1938                 ALARM_MGR_EXCEPTION_PRINT("%s", "Error has occurred\n");
1939
1940                 *return_code = -1;
1941         }
1942
1943         else {
1944                 __alarm_delete(pid, alarm_id, return_code);
1945         }
1946
1947         g_free(cookie);
1948
1949         return true;
1950 }
1951
1952 gboolean alarm_manager_alarm_power_on(void *pObject, int pid, bool on_off,
1953                                       int *return_code)
1954 {
1955
1956         return __alarm_power_on(pid, on_off, return_code);
1957 }
1958
1959 gboolean alarm_manager_alarm_power_off(void *pObject, int pid, int *return_code)
1960 {
1961
1962         return __alarm_power_off(pid, return_code);
1963 }
1964
1965 bool alarm_manager_alarm_check_next_duetime(void *pObject, int pid,
1966                                             int *return_code)
1967 {
1968         return __alarm_check_next_duetime(pid, return_code);
1969 }
1970
1971 gboolean alarm_manager_alarm_update(void *pObject, int pid,
1972                                     char *app_service_name, alarm_id_t alarm_id,
1973                                     int start_year, int start_month,
1974                                     int start_day, int start_hour,
1975                                     int start_min, int start_sec, int end_year,
1976                                     int end_month, int end_day,
1977                                     int mode_day_of_week, int mode_repeat,
1978                                     int alarm_type, int reserved_info,
1979                                     int *return_code)
1980 {
1981         alarm_info_t alarm_info;
1982         alarm_info.start.year = start_year;
1983         alarm_info.start.month = start_month;
1984         alarm_info.start.day = start_day;
1985         alarm_info.start.hour = start_hour;
1986         alarm_info.start.min = start_min;
1987         alarm_info.start.sec = start_sec;
1988
1989         alarm_info.end.year = end_year;
1990         alarm_info.end.month = end_month;
1991         alarm_info.end.day = end_day;
1992
1993         alarm_info.mode.u_interval.day_of_week = mode_day_of_week;
1994         alarm_info.mode.repeat = mode_repeat;
1995
1996         alarm_info.alarm_type = alarm_type;
1997         alarm_info.reserved_info = reserved_info;
1998
1999         *return_code = 0;
2000
2001         __alarm_update(pid, app_service_name, alarm_id, &alarm_info,
2002                        return_code);
2003
2004         return true;
2005 }
2006
2007 gboolean alarm_manager_alarm_get_number_of_ids(void *pObject, int pid,
2008                                                int *num_of_ids,
2009                                                int *return_code)
2010 {
2011         GSList *gs_iter = NULL;
2012         GQuark quark_app_unique_name;   /* the fullpath of pid(pid) is 
2013                                            converted  to quark value. */
2014         char proc_file[256] = { 0 };
2015         char process_name[512] = { 0 };
2016         char app_name[256] = { 0 };
2017         char *word = NULL;
2018         __alarm_info_t *entry = NULL;
2019         char *proc_name_ptr = NULL;
2020
2021         *num_of_ids = 0;
2022         *return_code = 0;
2023
2024         /* we should consider to check whether  pid is running or Not
2025          */
2026         memset(process_name, '\0', 512);
2027         memset(proc_file, '\0', 256);
2028         snprintf(proc_file, 256, "/proc/%d/cmdline", pid);
2029
2030         int fd;
2031         int ret;
2032         int i = 0;
2033         fd = open(proc_file, O_RDONLY);
2034         if (fd > 0) {
2035                 ret = read(fd, process_name, 512);
2036                 close(fd);
2037                 while (process_name[i] != '\0') {
2038                         if (process_name[i] == ' ') {
2039                                 process_name[i] = '\0';
2040                                 break;
2041                         }
2042                         i++;
2043                 }
2044                 /*if (readlink(proc_file, process_name, 256)!=-1) */
2045                 /*success */
2046
2047                 word = strtok_r(process_name, "/", &proc_name_ptr);
2048                 while (word != NULL) {
2049                         memset(app_name, 0, 256);
2050                         snprintf(app_name, 256, "%s", word);
2051                         word = strtok_r(NULL, "/", &proc_name_ptr);
2052                 }
2053                 quark_app_unique_name = g_quark_from_string(app_name);
2054         } else {                /* failure */
2055
2056                 quark_app_unique_name = g_quark_from_string("unknown");
2057                 memcpy(app_name, "unknown", strlen("unknown") + 1);
2058
2059                 ALARM_MGR_EXCEPTION_PRINT("Caution!! app_pid(%d) seems to be "
2060                                           "killed, so we failed to get proc file(%s) \n",
2061                                           pid, proc_file);
2062                 *return_code = -1;      /* -1 means that system 
2063                                            failed internally. */
2064                 return true;
2065         }
2066
2067         ALARM_MGR_LOG_PRINT("called for  app(pid:%d, name=%s)\n",
2068                             pid, app_name);
2069
2070         for (gs_iter = alarm_context.alarms; gs_iter != NULL;
2071              gs_iter = g_slist_next(gs_iter)) {
2072                 entry = gs_iter->data;
2073                 ALARM_MGR_LOG_PRINT("alarm_manager_alarm_get_number_of_ids(): "
2074                                     "app_name=%s,quark_app_unique_name=%s\n",
2075                 app_name, g_quark_to_string(entry->quark_app_unique_name));
2076                 if (strcmp
2077                     (app_name,
2078                      g_quark_to_string(entry->quark_app_unique_name)) == 0
2079                     && strcmp(app_name, "unknown") != 0) {
2080                         (*num_of_ids)++;
2081                         ALARM_MGR_LOG_PRINT("inc number of alarms of app "
2082                                             "(pid:%d, name:%s) is %d\n",
2083                                             pid, app_name, *num_of_ids);
2084                 }
2085         }
2086         *return_code = 0;
2087         ALARM_MGR_LOG_PRINT("number of alarms of app(pid:%d, name:%s) is %d\n",
2088                             pid, app_name, *num_of_ids);
2089         return true;
2090 }
2091
2092 gboolean alarm_manager_alarm_get_list_of_ids(void *pObject, int pid,
2093                                              int max_number_of_ids,
2094                                              GArray **arr, int *num_of_ids,
2095                                              int *return_code)
2096 {
2097         GSList *gs_iter = NULL;
2098         GQuark quark_app_unique_name;   /* the fullpath of pid(pid) is converted
2099                                            to quark value. */
2100         char proc_file[256] = { 0 };
2101         char process_name[512] = { 0 };
2102         char app_name[256] = { 0 };
2103         char *word = NULL;
2104         __alarm_info_t *entry = NULL;
2105         int index = 0;
2106         char *proc_name_ptr = NULL;
2107         int fd;
2108         int ret;
2109         int i = 0;
2110         GArray *garray = NULL;
2111
2112         *return_code = 0;
2113
2114         garray = g_array_new(false, true, sizeof(alarm_id_t));
2115
2116         /* we should check that there is a resource leak.
2117          * Now we don't have free code for g_array_new().
2118          */
2119         if (max_number_of_ids <= 0) {
2120                 *arr = garray;
2121                 ALARM_MGR_EXCEPTION_PRINT("called for  pid(%d), but "
2122                                           "max_number_of_ids(%d) is less than 0.\n",
2123                                           pid, max_number_of_ids);
2124                 return true;
2125         }
2126
2127         /* we should consider to check whether  pid is running or Not
2128          */
2129         memset(process_name, '\0', 512);
2130         memset(proc_file, '\0', 256);
2131         snprintf(proc_file, 256, "/proc/%d/cmdline", pid);
2132
2133         fd = open(proc_file, O_RDONLY);
2134         if (fd > 0) {
2135                 ret = read(fd, process_name, 512);
2136                 close(fd);
2137                 while (process_name[i] != '\0') {
2138                         if (process_name[i] == ' ') {
2139                                 process_name[i] = '\0';
2140                                 break;
2141                         }
2142                         i++;
2143                 }
2144                 /* if (readlink(proc_file, process_name, 256)!=-1) */
2145                 /*success */
2146
2147                 word = strtok_r(process_name, "/", &proc_name_ptr);
2148                 while (word != NULL) {
2149                         memset(app_name, 0, 256);
2150                         snprintf(app_name, 256, "%s", word);
2151                         word = strtok_r(NULL, "/", &proc_name_ptr);
2152                 }
2153                 quark_app_unique_name = g_quark_from_string(app_name);
2154         } else {                /* failure */
2155
2156                 quark_app_unique_name = g_quark_from_string("unknown");
2157                 memcpy(app_name, "unknown", strlen("unknown") + 1);
2158
2159                 ALARM_MGR_EXCEPTION_PRINT("Caution!! app_pid(%d) seems to be "
2160                 "killed, so we failed to get proc file(%s)\n", pid, proc_file);
2161                 *return_code = -1;
2162                 /* -1 means that system failed internally. */
2163                 return true;
2164         }
2165
2166         ALARM_MGR_LOG_PRINT("called for  app(pid:%d, name=%s)\n",
2167                             pid, app_name);
2168
2169         for (gs_iter = alarm_context.alarms; gs_iter != NULL;
2170              gs_iter = g_slist_next(gs_iter)) {
2171                 entry = gs_iter->data;
2172                 if (strcmp
2173                     (app_name,
2174                      g_quark_to_string(entry->quark_app_unique_name)) == 0
2175                     && strcmp(app_name, "unknown") != 0) {
2176                         g_array_append_val(garray, entry->alarm_id);
2177                 }
2178         }
2179
2180         *num_of_ids = index;
2181
2182         *arr = garray;
2183
2184         return true;
2185 }
2186
2187 gboolean alarm_manager_alarm_get_appsvc_info(void *pObject, int pid, alarm_id_t alarm_id,
2188                                 char *e_cookie, gchar **b_data, int *return_code)
2189 {
2190         bool found = false;
2191
2192         GSList *gs_iter = NULL;
2193         __alarm_info_t *entry = NULL;
2194
2195         guchar *cookie = NULL;
2196         gsize size;
2197         int retval = 0;
2198         gid_t call_gid;
2199
2200         ALARM_MGR_LOG_PRINT("called for  pid(%d) and alarm_id(%d)\n", pid,
2201                             alarm_id);
2202
2203         cookie = g_base64_decode(e_cookie, &size);
2204         if (NULL == cookie)
2205         {
2206                 if (return_code)
2207                         *return_code = ERR_ALARM_SYSTEM_FAIL;
2208                 ALARM_MGR_EXCEPTION_PRINT("Unable to decode cookie!!!\n");
2209                 return true;
2210         }
2211         call_gid = security_server_get_gid("alarm");
2212
2213         ALARM_MGR_LOG_PRINT("call_gid : %d\n", call_gid);
2214
2215         retval = security_server_check_privilege((const char *)cookie, call_gid);
2216         if (retval < 0) {
2217                 if (retval == SECURITY_SERVER_API_ERROR_ACCESS_DENIED) {
2218                         ALARM_MGR_EXCEPTION_PRINT(
2219                                 "%s", "access has been denied\n");
2220                 }
2221                 ALARM_MGR_EXCEPTION_PRINT("%s", "Error has occurred\n");
2222
2223                 if (return_code)
2224                         *return_code = ERR_ALARM_NO_PERMISSION;
2225
2226                 if (cookie)
2227                         g_free(cookie);
2228
2229                 return true;
2230         }
2231
2232         if (return_code)
2233                 *return_code = 0;
2234
2235         for (gs_iter = alarm_context.alarms; gs_iter != NULL;
2236              gs_iter = g_slist_next(gs_iter)) {
2237                 entry = gs_iter->data;
2238                 if (entry->alarm_id == alarm_id) {
2239                         found = true;
2240                         *b_data = g_strdup(g_quark_to_string(entry->quark_bundle));
2241                         break;
2242                 }
2243         }
2244
2245         if (found) {
2246                 if ( *b_data && strlen(*b_data) == 4 && strncmp(*b_data,"null",4) == 0){
2247                         ALARM_MGR_EXCEPTION_PRINT("Regular alarm,not svc alarm");
2248                         if (return_code)
2249                                 *return_code = ERR_ALARM_INVALID_TYPE;
2250                 }
2251         } else {
2252                 if (return_code)
2253                         *return_code = ERR_ALARM_INVALID_ID;
2254         }
2255
2256         if (cookie)
2257                 g_free(cookie);
2258
2259         return true;
2260 }
2261
2262 gboolean alarm_manager_alarm_get_info(void *pObject, int pid,
2263                                       alarm_id_t alarm_id, int *start_year,
2264                                       int *start_month, int *start_day,
2265                                       int *start_hour, int *start_min,
2266                                       int *start_sec, int *end_year,
2267                                       int *end_month, int *end_day,
2268                                       int *mode_day_of_week, int *mode_repeat,
2269                                       int *alarm_type, int *reserved_info,
2270                                       int *return_code)
2271 {
2272         ALARM_MGR_LOG_PRINT("called for  pid(%d) and alarm_id(%d)\n", pid,
2273                             alarm_id);
2274
2275         GSList *gs_iter = NULL;
2276         __alarm_info_t *entry = NULL;
2277
2278         alarm_info_t *alarm_info = NULL;
2279         *return_code = 0;
2280
2281         for (gs_iter = alarm_context.alarms; gs_iter != NULL;
2282              gs_iter = g_slist_next(gs_iter)) {
2283                 entry = gs_iter->data;
2284                 if (entry->alarm_id == alarm_id) {
2285                         alarm_info = &(entry->alarm_info);
2286                         break;
2287                 }
2288         }
2289
2290         if (alarm_info == NULL)
2291         {
2292                 ALARM_MGR_EXCEPTION_PRINT("alarm id(%d) was not found\n",
2293                                           alarm_id);
2294                 *return_code = ERR_ALARM_INVALID_ID;
2295         } else {
2296                 ALARM_MGR_LOG_PRINT("alarm was found\n");
2297                 *start_year = alarm_info->start.year;
2298                 *start_month = alarm_info->start.month;
2299                 *start_day = alarm_info->start.day;
2300                 *start_hour = alarm_info->start.hour;
2301                 *start_min = alarm_info->start.min;
2302                 *start_sec = alarm_info->start.sec;
2303
2304                 *end_year = alarm_info->end.year;
2305                 *end_year = alarm_info->end.month;
2306                 *end_year = alarm_info->end.day;
2307
2308                 *mode_day_of_week = alarm_info->mode.u_interval.day_of_week;
2309                 *mode_repeat = alarm_info->mode.repeat;
2310
2311                 *alarm_type = alarm_info->alarm_type;
2312                 *reserved_info = alarm_info->reserved_info;
2313
2314                 *return_code = 0;
2315         }
2316         return true;
2317 }
2318
2319 #include "alarm-skeleton.h"
2320
2321 typedef struct AlarmManagerObject AlarmManagerObject;
2322 typedef struct AlarmManagerObjectClass AlarmManagerObjectClass;
2323 GType Server_Object_get_type(void);
2324 struct AlarmManagerObject {
2325         GObject parent;
2326 };
2327 struct AlarmManagerObjectClass {
2328         GObjectClass parent;
2329 };
2330
2331 #define DBUS_NAME_FLAG_PROHIBIT_REPLACEMENT 0
2332
2333 #define ALARM_MANAGER_TYPE_OBJECT              (Server_Object_get_type())
2334 #define ALARM_MANAGER_OBJECT(object)           (G_TYPE_CHECK_INSTANCE_CAST \
2335 ((object), ALARM_MANAGER_TYPE_OBJECT, AlarmManagerObject))
2336 #define ALARM_MANAGER_OBJECT_CLASS(klass)      (G_TYPE_CHECK_CLASS_CAST \
2337 ((klass), ALARM_MANAGER_TYPE_OBJECT, AlarmManagerObjectClass))
2338 #define ALARM_MANAGER_IS_OBJECT(object)        (G_TYPE_CHECK_INSTANCE_TYPE \
2339 ((object), ALARM_MANAGER_TYPE_OBJECT))
2340 #define ALARM_MANAGER_IS_OBJECT_CLASS(klass)   (G_TYPE_CHECK_CLASS_TYPE \
2341 ((klass), ALARM_MANAGER_TYPE_OBJECT))
2342 #define ALARM_MANAGER_OBJECT_GET_CLASS(obj)    (G_TYPE_INSTANCE_GET_CLASS \
2343 ((obj), ALARM_MANAGER_TYPE_OBJECT, AlarmManagerObjectClass))
2344 G_DEFINE_TYPE(AlarmManagerObject, Server_Object, G_TYPE_OBJECT)
2345 static void Server_Object_init(AlarmManagerObject * obj)
2346 {
2347         ;
2348 }
2349
2350 static void Server_Object_class_init(AlarmManagerObjectClass *klass)
2351 {
2352         ;
2353 }
2354
2355 static void __initialize_timer()
2356 {
2357         struct sigaction sig_timer;
2358         sigemptyset(&sig_timer.sa_mask);
2359         sig_timer.sa_flags = SA_SIGINFO;
2360         sig_timer.sa_sigaction = (void *)__alarm_handler;
2361         sigaction(SIG_TIMER, &sig_timer, NULL);
2362
2363         alarm_context.timer = _alarm_create_timer();
2364
2365 }
2366
2367 static void __initialize_alarm_list()
2368 {
2369
2370         alarm_context.alarms = NULL;
2371         alarm_context.c_due_time = -1;
2372
2373         _load_alarms_from_registry();
2374
2375         __rtc_set();    /*Set RTC1 Alarm with alarm due time for alarm-manager initialization*/
2376
2377         /*alarm boot */
2378 #ifdef __ALARM_BOOT
2379         /*alarm boot */
2380         if (enable_power_on_alarm) {
2381                 /* orginally first arg's value was 21(app_id, WAKEUP_ALARM_APP_ID) in a
2382                  * platform with app-server. because __alarm_power_on(..) fuction don't 
2383                  * use first parameter internally, we set this value to 0(zero)
2384                  */
2385                 __alarm_power_on(0, enable_power_on_alarm, NULL);
2386         }
2387 #endif
2388 }
2389
2390 static void __initialize_scheduled_alarm_lsit()
2391 {
2392         _init_scheduled_alarm_list();
2393 }
2394
2395
2396 static void __hibernation_leave_callback()
2397 {
2398
2399         __initialize_scheduled_alarm_lsit();
2400
2401         __alarm_clean_list();
2402
2403         __initialize_alarm_list();
2404 }
2405
2406 static bool __initialize_noti()
2407 {
2408
2409         int fd = heynoti_init();
2410         if (fd < 0) {
2411                 ALARM_MGR_EXCEPTION_PRINT("fail to heynoti_init\n");
2412                 return false;
2413         }
2414         heynoti_subscribe(fd, "HIBERNATION_LEAVE", __hibernation_leave_callback,
2415                           NULL);
2416         heynoti_attach_handler(fd);
2417
2418         if (vconf_notify_key_changed
2419             (VCONFKEY_SYSTEM_TIMECHANGE, __on_system_time_changed, NULL) < 0) {
2420                 ALARM_MGR_LOG_PRINT(
2421                         "Failed to add callback for time changing event\n");
2422         }
2423         /*system state change noti ÃƒÂ³Â¸Â® */
2424
2425         return true;
2426 }
2427
2428
2429 static DBusHandlerResult __alarm_server_filter(DBusConnection *connection,
2430                                                DBusMessage *message,
2431                                                void *user_data)
2432 {
2433
2434         if (dbus_message_is_signal
2435             (message, DBUS_INTERFACE_DBUS, "NameOwnerChanged")) {
2436                 char *service;
2437                 char *old_owner;
2438                 char *new_owner;
2439                 GSList *entry;
2440                 __expired_alarm_t *expire_info;
2441
2442                 dbus_message_get_args(message,
2443                                       NULL,
2444                                       DBUS_TYPE_STRING, &service,
2445                                       DBUS_TYPE_STRING, &old_owner,
2446                                       DBUS_TYPE_STRING, &new_owner,
2447                                       DBUS_TYPE_INVALID);
2448
2449                 for (entry = g_expired_alarm_list; entry; entry = entry->next) {
2450                         if (entry->data) {
2451                                 expire_info = (__expired_alarm_t *) entry->data;
2452
2453                                 if (strcmp(expire_info->service_name, service)
2454                                     == 0) {
2455                                         ALARM_MGR_EXCEPTION_PRINT(
2456                                         "__alarm_server_filter : "
2457                                              "service name(%s) alarm_id (%d)\n",
2458                                              expire_info->service_name,\
2459                                              expire_info->alarm_id);
2460
2461                                         __alarm_send_noti_to_application(
2462                                              expire_info->service_name,
2463                                              expire_info->alarm_id);
2464                                         g_expired_alarm_list =
2465                                             g_slist_remove(g_expired_alarm_list,
2466                                                            entry->data);
2467                                         free(expire_info);
2468                                 }
2469                         }
2470                 }
2471
2472                 return DBUS_HANDLER_RESULT_NOT_YET_HANDLED;
2473         }
2474
2475         return DBUS_HANDLER_RESULT_NOT_YET_HANDLED;
2476 }
2477
2478 static bool __initialize_dbus()
2479 {
2480         GError *error = NULL;
2481         GObject *obj = NULL;
2482         DBusGConnection *connection = NULL;
2483         DBusError derror;
2484         int request_name_result = 0;
2485
2486         dbus_g_object_type_install_info(ALARM_MANAGER_TYPE_OBJECT,
2487                                         &dbus_glib_alarm_manager_object_info);
2488
2489         connection = dbus_g_bus_get(DBUS_BUS_SYSTEM, &error);
2490         if (!connection) {
2491
2492                 ALARM_MGR_EXCEPTION_PRINT("dbus_g_bus_get failed\n");
2493                 return false;
2494         }
2495
2496         dbus_error_init(&derror);
2497
2498         request_name_result =
2499             dbus_bus_request_name(dbus_g_connection_get_connection(connection),
2500                                   "org.tizen.alarm.manager",
2501                                   DBUS_NAME_FLAG_PROHIBIT_REPLACEMENT, &derror);
2502         if (dbus_error_is_set(&derror)) {       /* failure */
2503                 ALARM_MGR_EXCEPTION_PRINT("Failed to dbus_bus_request_name "
2504                 "(org.tizen.alarm.manager): %s\n", derror.message);
2505                 dbus_error_free(&derror);
2506                 return false;
2507         }
2508
2509         if (!(obj = g_object_new(ALARM_MANAGER_TYPE_OBJECT, NULL))) {
2510                 ALARM_MGR_EXCEPTION_PRINT("Could not allocate new object\n");
2511                 return false;
2512         }
2513
2514         dbus_g_connection_register_g_object(connection,
2515                                             "/org/tizen/alarm/manager",
2516                                             G_OBJECT(obj));
2517
2518         /*dbus_bus_add_match (dbus_g_connection_get_connection(connection),
2519            "type='signal',member='NameOwnerChanged'",NULL); */
2520
2521         dbus_bus_add_match(dbus_g_connection_get_connection(connection),
2522                            "type='signal',sender='" DBUS_SERVICE_DBUS
2523                            "',path='" DBUS_PATH_DBUS
2524                            "',interface='" DBUS_INTERFACE_DBUS
2525                            "',member='NameOwnerChanged'", NULL);
2526
2527         if (!dbus_connection_add_filter
2528             (dbus_g_connection_get_connection(connection),
2529              __alarm_server_filter, NULL, NULL)) {
2530                 ALARM_MGR_EXCEPTION_PRINT("add __expire_alarm_filter failed\n");
2531
2532                 return false;
2533         }
2534
2535         alarm_context.bus = connection;
2536         return true;
2537 }
2538
2539 #define ALARMMGR_DB_FILE "/opt/dbspace/.alarmmgr.db"
2540 sqlite3 *alarmmgr_db;
2541 #define QUERY_CREATE_TABLE_ALARMMGR "create table alarmmgr \
2542                                 (alarm_id integer primary key,\
2543                                                 start integer,\
2544                                                 end integer,\
2545                                                 pid integer,\
2546                                                 app_unique_name text,\
2547                                                 app_service_name text,\
2548                                                 app_service_name_mod text,\
2549                                                 bundle text, \
2550                                                 year integer,\
2551                                                 month integer,\
2552                                                 day integer,\
2553                                                 hour integer,\
2554                                                 min integer,\
2555                                                 sec integer,\
2556                                                 day_of_week integer,\
2557                                                 repeat integer,\
2558                                                 alarm_type integer,\
2559                                                 reserved_info integer,\
2560                                                 dst_service_name text, \
2561                                                 dst_service_name_mod text \
2562                                                 )"
2563
2564 static bool __initialize_db()
2565 {
2566         char *error_message = NULL;
2567         int ret;
2568
2569         if (access("/opt/dbspace/.alarmmgr.db", F_OK) == 0) {
2570                 ret =
2571                     db_util_open(ALARMMGR_DB_FILE, &alarmmgr_db,
2572                                  DB_UTIL_REGISTER_HOOK_METHOD);
2573
2574                 if (ret != SQLITE_OK) {
2575                         ALARM_MGR_EXCEPTION_PRINT(
2576                             "====>>>> connect menu_db [%s] failed!\n",
2577                              ALARMMGR_DB_FILE);
2578                         return false;
2579                 }
2580
2581                 return true;
2582         }
2583
2584         ret =
2585             db_util_open(ALARMMGR_DB_FILE, &alarmmgr_db,
2586                          DB_UTIL_REGISTER_HOOK_METHOD);
2587
2588         if (ret != SQLITE_OK) {
2589                 ALARM_MGR_EXCEPTION_PRINT(
2590                     "====>>>> connect menu_db [%s] failed!\n",
2591                      ALARMMGR_DB_FILE);
2592                 return false;
2593         }
2594
2595         if (SQLITE_OK !=
2596             sqlite3_exec(alarmmgr_db, QUERY_CREATE_TABLE_ALARMMGR, NULL, NULL,\
2597                          &error_message)) {
2598                 ALARM_MGR_EXCEPTION_PRINT("Don't execute query = %s, "
2599                 "error message = %s\n", QUERY_CREATE_TABLE_ALARMMGR, 
2600                                           error_message);
2601                 return false;
2602         }
2603
2604         return true;
2605 }
2606
2607 static void __initialize()
2608 {
2609
2610         g_type_init();
2611 #ifdef __ALARM_BOOT
2612         FILE *fp;
2613         char temp[2];
2614         int size;
2615
2616         fp = fopen("/proc/alarm_boot", "r");
2617         if (fp == NULL)
2618                 alarm_boot = 0;
2619         else {
2620
2621                 size = fread(&temp, 1, 1, fp);
2622                 if (size != 1)
2623                         alarm_boot = 0;
2624                 else {
2625                         temp[1] = 0;
2626                         alarm_boot = atoi(temp);
2627                 }
2628                 fclose(fp);
2629         }
2630 #endif
2631
2632         int fd;
2633         int fd2;
2634         struct rtc_time rtc_tm;
2635         int retval;
2636
2637         fd = open(power_rtc, O_RDONLY);
2638         if (fd < 0) {
2639                 ALARM_MGR_EXCEPTION_PRINT("cannot open /dev/rtc0\n");
2640                 return;
2641         }
2642         retval = ioctl(fd, RTC_RD_TIME, &rtc_tm);
2643         close(fd);
2644
2645         fd2 = open(default_rtc, O_RDWR);
2646         if (fd2 < 0) {
2647                 ALARM_MGR_EXCEPTION_PRINT("cannot open /dev/rtc1\n");
2648                 return;
2649         }
2650         retval = ioctl(fd2, RTC_SET_TIME, &rtc_tm);
2651         close(fd2);
2652
2653         __initialize_timer();
2654         if (__initialize_dbus() == false) {     /* because dbus's initialize 
2655                                         failed, we cannot continue any more. */
2656                 ALARM_MGR_EXCEPTION_PRINT("because __initialize_dbus failed, "
2657                                           "alarm-server cannot be runned.\n");
2658                 exit(1);
2659         }
2660         __initialize_scheduled_alarm_lsit();
2661         __initialize_db();
2662         __initialize_alarm_list();
2663         __initialize_noti();
2664
2665 }
2666
2667 #ifdef __ALARM_BOOT
2668 static bool __check_false_alarm()
2669 {
2670         time_t current_time;
2671         time_t interval;
2672
2673         time(&current_time);
2674
2675         interval = ab_due_time - current_time;
2676
2677         ALARM_MGR_LOG_PRINT("due_time : %d / current_time %d\n", \
2678                             alarm_context.c_due_time, current_time);
2679
2680         if (interval > 0 && interval <= 30) {
2681                 return true;
2682         } else if (!poweron_alarm_expired) {
2683                 /* originally, first arguement's value was 121(app_id) which means 
2684                  * alarm_booting ui application.and this application's dbus-service 
2685                  * name had a org.tizen.alarmboot.ui in a platform with app-server.
2686                  * so we set "org.tizen.alarmboot.ui.ALARM" instead of 121.
2687                  */
2688                 __alarm_send_noti_to_application(
2689                         WAKEUP_ALARMBOOTING_APP_ID, -1);
2690                 return false;
2691         }
2692
2693         return true;
2694 }
2695 #endif
2696
2697 int main()
2698 {
2699         GMainLoop *mainloop = NULL;
2700
2701         ALARM_MGR_LOG_PRINT("Enter main loop\n");
2702
2703         mainloop = g_main_loop_new(NULL, FALSE);
2704
2705         __initialize();
2706
2707 #ifdef __ALARM_BOOT
2708         if (alarm_boot){
2709                 __check_false_alarm();
2710         }
2711 #endif
2712
2713         g_main_loop_run(mainloop);
2714
2715         return 0;
2716 }