]> Pileus Git - ~andy/gtk/blob - gtk/queryimmodules.c
Remove unused includes
[~andy/gtk] / gtk / queryimmodules.c
1 /* GTK+
2  * querymodules.c:
3  *
4  * Copyright (C) 2000-2010 Red Hat Software
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Library General Public
8  * License as published by the Free Software Foundation; either
9  * version 2 of the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Library General Public License for more details.
15  *
16  * You should have received a copy of the GNU Library General Public
17  * License along with this library; if not, write to the
18  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19  * Boston, MA 02111-1307, USA.
20  */
21
22 #include "config.h"
23
24 #include <glib.h>
25 #include <glib/gprintf.h>
26 #include <gmodule.h>
27
28 #include <errno.h>
29 #include <string.h>
30 #ifdef HAVE_UNISTD_H
31 #include <unistd.h>
32 #endif
33
34 #ifdef USE_LA_MODULES
35 #define SOEXT ".la"
36 #else
37 #define SOEXT ("." G_MODULE_SUFFIX)
38 #endif
39
40 #include "gtk/gtkimmodule.h"
41 #include "gtk/gtkversion.h"
42
43 static void
44 escape_string (GString *contents, const char *str)
45 {
46   while (TRUE)
47     {
48       char c = *str++;
49
50       switch (c)
51         {
52         case '\0':
53           goto done;
54         case '\n':
55           g_string_append (contents, "\\n");
56           break;
57         case '\"':
58           g_string_append (contents, "\\\"");
59           break;
60 #ifdef G_OS_WIN32
61                 /* Replace backslashes in path with forward slashes, so that
62                  * it reads in without problems.
63                  */
64         case '\\':
65           g_string_append (contents, "/");
66           break;
67 #endif
68         default:
69           g_string_append_c (contents, c);
70         }
71     }
72
73  done:;
74 }
75
76 static void
77 print_escaped (GString *contents, const char *str)
78 {
79   g_string_append_c (contents, '"');
80   escape_string (contents, str);
81   g_string_append_c (contents, '"');
82   g_string_append_c (contents, ' ');
83 }
84
85 static gboolean
86 query_module (const char *dir, const char *name, GString *contents)
87 {
88   void          (*list)   (const GtkIMContextInfo ***contexts,
89                            guint                    *n_contexts);
90
91   gpointer list_ptr;
92   gpointer init_ptr;
93   gpointer exit_ptr;
94   gpointer create_ptr;
95
96   GModule *module;
97   gchar *path;
98   gboolean error = FALSE;
99
100   if (g_path_is_absolute (name))
101     path = g_strdup (name);
102   else
103     path = g_build_filename (dir, name, NULL);
104
105   module = g_module_open (path, 0);
106
107   if (!module)
108     {
109       g_fprintf (stderr, "Cannot load module %s: %s\n", path, g_module_error());
110       error = TRUE;
111     }
112
113   if (module &&
114       g_module_symbol (module, "im_module_list", &list_ptr) &&
115       g_module_symbol (module, "im_module_init", &init_ptr) &&
116       g_module_symbol (module, "im_module_exit", &exit_ptr) &&
117       g_module_symbol (module, "im_module_create", &create_ptr))
118     {
119       const GtkIMContextInfo **contexts;
120       guint n_contexts;
121       int i;
122
123       list = list_ptr;
124
125       print_escaped (contents, path);
126       g_string_append_c (contents, '\n');
127
128       (*list) (&contexts, &n_contexts);
129
130       for (i = 0; i < n_contexts; i++)
131         {
132           print_escaped (contents, contexts[i]->context_id);
133           print_escaped (contents, contexts[i]->context_name);
134           print_escaped (contents, contexts[i]->domain);
135           print_escaped (contents, contexts[i]->domain_dirname);
136           print_escaped (contents, contexts[i]->default_locales);
137           g_string_append_c (contents, '\n');
138         }
139       g_string_append_c (contents, '\n');
140     }
141   else
142     {
143       g_fprintf (stderr, "%s does not export GTK+ IM module API: %s\n", path,
144                  g_module_error ());
145       error = TRUE;
146     }
147
148   g_free (path);
149   if (module)
150     g_module_close (module);
151
152   return error;
153 }
154
155 int main (int argc, char **argv)
156 {
157   char *cwd;
158   int i;
159   char *path;
160   gboolean error = FALSE;
161   gchar *cache_file = NULL;
162   gint first_file = 1;
163   GString *contents;
164
165   if (argc > 1 && strcmp (argv[1], "--update-cache") == 0)
166     {
167       cache_file = gtk_rc_get_im_module_file ();
168       first_file = 2;
169     }
170
171   contents = g_string_new ("");
172   g_string_append_printf (contents,
173                           "# GTK+ Input Method Modules file\n"
174                           "# Automatically generated file, do not edit\n"
175                           "# Created by %s from gtk+-%d.%d.%d\n"
176                           "#\n",
177                           argv[0],
178                           GTK_MAJOR_VERSION, GTK_MINOR_VERSION, GTK_MICRO_VERSION);
179
180   if (argc == first_file)  /* No file arguments given */
181     {
182       char **dirs;
183       int i;
184       GHashTable *dirs_done;
185
186       path = gtk_rc_get_im_module_path ();
187
188       g_string_append_printf (contents, "# ModulesPath = %s\n#\n", path);
189
190       dirs = pango_split_file_list (path);
191       dirs_done = g_hash_table_new_full (g_str_hash, g_str_equal, NULL, NULL);
192
193       for (i = 0; dirs[i]; i++)
194         if (!g_hash_table_lookup (dirs_done, dirs[i]))
195           {
196             GDir *dir = g_dir_open (dirs[i], 0, NULL);
197             if (dir)
198               {
199                 const char *dent;
200
201                 while ((dent = g_dir_read_name (dir)))
202                   {
203                     if (g_str_has_suffix (dent, SOEXT))
204                       error |= query_module (dirs[i], dent, contents);
205                   }
206
207                 g_dir_close (dir);
208               }
209
210             g_hash_table_insert (dirs_done, dirs[i], GUINT_TO_POINTER (TRUE));
211           }
212
213       g_hash_table_destroy (dirs_done);
214     }
215   else
216     {
217       cwd = g_get_current_dir ();
218
219       for (i = first_file; i < argc; i++)
220         error |= query_module (cwd, argv[i], contents);
221
222       g_free (cwd);
223     }
224
225   if (!error)
226     {
227       if (cache_file)
228         {
229           GError *err;
230
231           err = NULL;
232           if (!g_file_set_contents (cache_file, contents->str, -1, &err))
233             {
234                 g_fprintf (stderr, "%s\n", err->message);
235                 error = 1;
236             }
237         }
238       else
239         g_print ("%s\n", contents->str);
240     }
241
242   return error ? 1 : 0;
243 }