tizen 2.4 release
[framework/appfw/alarm-manager.git] / test / 2alarm_create_test.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 #include<stdio.h>
24 #include<stdlib.h>
25 #include<glib.h>
26
27 #include "alarm.h"
28
29 int callback(alarm_id_t alarm_id,void* user_param)
30 {
31         time_t current_time;
32         time(&current_time);
33
34         printf("Alarm[%d] has expired at %s\n", alarm_id, ctime(&current_time));
35
36         return 0;
37
38 }
39
40 void create_test()
41 {
42                 time_t current_time;
43                 alarm_id_t alarm_id;
44                 int result;
45
46                 time(&current_time);
47
48                 printf("current time: %s\n", ctime(&current_time));
49        
50
51                 result = alarmmgr_add_alarm(ALARM_TYPE_VOLATILE, 8, 0, NULL,&alarm_id);
52                 if(result < 0)
53                         printf("fail to alarmmgr_create : error_code : %d\n",result);
54         
55 }
56
57 int main(int argc, char** argv)
58 {       
59         GMainLoop *mainloop;
60                 int result;
61         
62         g_type_init();
63         
64         mainloop = g_main_loop_new(NULL, FALSE);
65                 
66         result = alarmmgr_init("com.samsung.test");
67
68                 if(result<0)
69                 {
70                         printf("fail to alarmmgr_init : error_code : %d\n",result);
71                 }
72                 else{
73                         
74            result = alarmmgr_set_cb(callback,NULL);
75
76                    if(result<0)
77                         {
78                                 printf("fail to alarmmgr_set_cb : error_code : %d\n",result);
79                         }
80                         else{
81                                 create_test();
82                         }
83                 }
84
85         g_main_loop_run(mainloop);
86 }
87
88