Make use of Eina_Log for debugging messages
[profile/ivi/weekeyboard.git] / src / wkb-ibus-test.c
1 /*
2  * Copyright © 2013 Intel Corporation
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 #include "wkb-ibus.h"
18 #include "wkb-log.h"
19
20 #define _GNU_SOURCE
21 #include <signal.h>
22
23 #include <Eina.h>
24 #include <Eet.h>
25 #include <Ecore.h>
26 #include <Eldbus.h>
27 #include <Efreet.h>
28
29 static void
30 _finish(int foo)
31 {
32    ERR("FINISH\n");
33    wkb_ibus_shutdown();
34 }
35
36 static Eina_Bool
37 _connect_timer(void *data)
38 {
39    return !wkb_ibus_connect();
40 }
41
42 int
43 main (int argc, char *argv[])
44 {
45    int ret = 1;
46
47    if (!wkb_log_init("ibus-test"))
48       return 1;
49
50    if (!ecore_init())
51      {
52         ERR("Error initializing ecore");
53         goto ecore_err;
54      }
55
56    if (!efreet_init())
57      {
58         ERR("Error initializing efreet");
59         goto efreet_err;
60      }
61
62    if (!wkb_ibus_init())
63      {
64         ERR("Error initializing ibus");
65         goto end;
66      }
67
68    ecore_timer_add(1, _connect_timer, NULL);
69
70    signal(SIGTERM, _finish);
71    signal(SIGINT, _finish);
72
73    ecore_main_loop_begin();
74    ret = 0;
75
76 end:
77    efreet_shutdown();
78
79 efreet_err:
80    ecore_shutdown();
81
82 ecore_err:
83    eet_shutdown();
84
85 eet_err:
86    wkb_log_shutdown();
87
88    return ret;
89 }