Tizen 2.1 base
[platform/core/uifw/ise-engine-sunpinyin.git] / wrapper / xim / main.c
1 /*
2  * Copyright (c) 2010 Mike Qin <mikeandmore@gmail.com>
3  *
4  * The contents of this file are subject to the terms of either the GNU Lesser
5  * General Public License Version 2.1 only ("LGPL") or the Common Development and
6  * Distribution License ("CDDL")(collectively, the "License"). You may not use this
7  * file except in compliance with the License. You can obtain a copy of the CDDL at
8  * http://www.opensource.org/licenses/cddl1.php and a copy of the LGPLv2.1 at
9  * http://www.opensource.org/licenses/lgpl-license.php. See the License for the
10  * specific language governing permissions and limitations under the License. When
11  * distributing the software, include this License Header Notice in each file and
12  * include the full text of the License in the License file as well as the
13  * following notice:
14  *
15  * NOTICE PURSUANT TO SECTION 9 OF THE COMMON DEVELOPMENT AND DISTRIBUTION LICENSE
16  * (CDDL)
17  * For Covered Software in this distribution, this License shall be governed by the
18  * laws of the State of California (excluding conflict-of-law provisions).
19  * Any litigation relating to this License shall be subject to the jurisdiction of
20  * the Federal Courts of the Northern District of California and the state courts
21  * of the State of California, with venue lying in Santa Clara County, California.
22  *
23  * Contributor(s):
24  *
25  * If you wish your version of this file to be governed by only the CDDL or only
26  * the LGPL Version 2.1, indicate your decision by adding "[Contributor]" elects to
27  * include this software in this distribution under the [CDDL or LGPL Version 2.1]
28  * license." If you don't indicate a single choice of license, a recipient has the
29  * option to distribute your version of this file under either the CDDL or the LGPL
30  * Version 2.1, or to extend the choice of license to its licensees as provided
31  * above. However, if you add LGPL Version 2.1 code and therefore, elected the LGPL
32  * Version 2 license, then the option applies only if the new code is made subject
33  * to such option by the copyright holder.
34  */
35
36 #include <gtk/gtk.h>
37 #include <gdk/gdkx.h>
38 #include <signal.h>
39 #include <langinfo.h>
40
41 #include "xim.h"
42 #include "xmisc.h"
43 #include "ic.h"
44 #include "settings.h"
45
46 #define XIM_NAME "xsunpinyin"
47
48 static void
49 finalize(void)
50 {
51     preedit_finalize();
52     icmgr_finalize();
53     settings_save();
54     settings_destroy();
55 }
56
57 static void
58 on_app_sig(int sig)
59 {
60     if (sig == SIGUSR1) {
61         /* reload the settings */
62         settings_load();
63         preedit_reload();
64     } else {
65         exit(0);
66     }
67 }
68
69 #define ALL_LOCALES_STRING "ca,cs,en,es,et,eu,fr,zh,zu"
70
71 int
72 main(int argc, char* argv[])
73 {
74     if (argc == 2 && strcmp(argv[1], "-d") == 0) {
75         int pid = fork();
76         if (pid < 0)
77             return -1;
78         else if (pid > 0)
79             return 0;
80     }
81
82     init_display(&argc, &argv);
83
84     settings_init();
85     settings_load();
86
87     preedit_init();
88
89     /* check if the codeset is utf-8 */
90     if (strcmp(nl_langinfo(CODESET), "UTF-8") != 0) {
91         fprintf(stderr, "Warning: using codeset %s might cause xsunpinyin unable to trigger.\n", nl_langinfo(CODESET));
92     }
93
94     /* guess the locale */
95     char* locale = getenv("LC_CTYPE");
96     if (locale == NULL) {
97         locale = getenv("LANG");
98         if (locale == NULL) {
99             fprintf(stderr, "Can't guess locale.\n");
100             return -1;
101         }
102     }
103     char final_locale[256];
104     snprintf(final_locale, 256, "%s,%s", ALL_LOCALES_STRING, locale);
105
106     XIMHandle* hdl = create_xim_server(XIM_NAME, final_locale);
107     preedit_set_handle(hdl);
108     preedit_reload();
109
110     signal(SIGUSR1, on_app_sig);
111     signal(SIGHUP, on_app_sig);
112     signal(SIGINT, on_app_sig);
113     signal(SIGTERM, on_app_sig);
114
115     atexit(finalize);
116     gtk_main();
117
118     return 0;
119 }