]> Pileus Git - ~andy/gtk/blob - gtk/gtkmodules.c
Intern some more strings.
[~andy/gtk] / gtk / gtkmodules.c
1 /* GTK - The GIMP Toolkit
2  * Copyright 1998-2002 Tim Janik, Red Hat, Inc., and others.
3  * Copyright (C) 2003 Alex Graveley
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Lesser General Public
7  * License as published by the Free Software Foundation; either
8  * version 2 of the License, or (at your option) any later version.
9  *
10  * This library is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * Lesser General Public License for more details.
14  *
15  * You should have received a copy of the GNU Lesser General Public
16  * License along with this library; if not, write to the
17  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18  * Boston, MA 02111-1307, USA.
19  */
20
21 #include <config.h>
22
23 #include <string.h>
24
25 #include "gtkmodules.h"
26 #include "gtksettings.h"
27 #include "gtkdebug.h"
28 #include "gtkprivate.h" /* GTK_LIBDIR */
29 #include "gtkintl.h" 
30
31 #include <gmodule.h>
32 #include <pango/pango-utils.h>  /* For pango_split_file_list */
33
34 typedef struct _GtkModuleInfo GtkModuleInfo;
35 struct _GtkModuleInfo
36 {
37   GModule                 *module;
38   gint                     ref_count;
39   GtkModuleInitFunc        init_func;
40   GtkModuleDisplayInitFunc display_init_func;
41   GSList                  *names;
42 };
43
44 static GSList *gtk_modules = NULL;
45
46 static gboolean default_display_opened = FALSE;
47
48 /* Saved argc, argv for delayed module initialization
49  */
50 static gint    gtk_argc = 0;
51 static gchar **gtk_argv = NULL;
52
53 static gchar **
54 get_module_path (void)
55 {
56   const gchar *module_path_env;
57   const gchar *exe_prefix;
58   const gchar *home_dir;
59   gchar *home_gtk_dir = NULL;
60   gchar *module_path;
61   gchar *default_dir;
62   static gchar **result = NULL;
63
64   if (result)
65     return result;
66
67   home_dir = g_get_home_dir();
68   if (home_dir)
69     home_gtk_dir = g_build_filename (home_dir, ".gtk-2.0", NULL);
70
71   module_path_env = g_getenv ("GTK_PATH");
72   exe_prefix = g_getenv ("GTK_EXE_PREFIX");
73
74   if (exe_prefix)
75     default_dir = g_build_filename (exe_prefix, "lib", "gtk-2.0", NULL);
76   else
77     default_dir = g_build_filename (GTK_LIBDIR, "gtk-2.0", NULL);
78
79   if (module_path_env && home_gtk_dir)
80     module_path = g_build_path (G_SEARCHPATH_SEPARATOR_S,
81                                 module_path_env, home_gtk_dir, default_dir, NULL);
82   else if (module_path_env)
83     module_path = g_build_path (G_SEARCHPATH_SEPARATOR_S,
84                                 module_path_env, default_dir, NULL);
85   else if (home_gtk_dir)
86     module_path = g_build_path (G_SEARCHPATH_SEPARATOR_S,
87                                 home_gtk_dir, default_dir, NULL);
88   else
89     module_path = g_build_path (G_SEARCHPATH_SEPARATOR_S,
90                                 default_dir, NULL);
91
92   g_free (home_gtk_dir);
93   g_free (default_dir);
94
95   result = pango_split_file_list (module_path);
96   g_free (module_path);
97
98   return result;
99 }
100
101 /**
102  * _gtk_get_module_path:
103  * @type: the type of the module, for instance 'modules', 'engines', immodules'
104  * 
105  * Determines the search path for a particular type of module.
106  * 
107  * Return value: the search path for the module type. Free with g_strfreev().
108  **/
109 gchar **
110 _gtk_get_module_path (const gchar *type)
111 {
112   gchar **paths = get_module_path();
113   gchar **path;
114   gchar **result;
115   gint count = 0;
116
117   for (path = paths; *path; path++)
118     count++;
119
120   result = g_new (gchar *, count * 4 + 1);
121
122   count = 0;
123   for (path = get_module_path (); *path; path++)
124     {
125       gint use_version, use_host;
126       
127       for (use_version = TRUE; use_version >= FALSE; use_version--)
128         for (use_host = TRUE; use_host >= FALSE; use_host--)
129           {
130             gchar *tmp_dir;
131             
132             if (use_version && use_host)
133               tmp_dir = g_build_filename (*path, GTK_BINARY_VERSION, GTK_HOST, type, NULL);
134             else if (use_version)
135               tmp_dir = g_build_filename (*path, GTK_BINARY_VERSION, type, NULL);
136             else if (use_host)
137               tmp_dir = g_build_filename (*path, GTK_HOST, type, NULL);
138             else
139               tmp_dir = g_build_filename (*path, type, NULL);
140
141             result[count++] = tmp_dir;
142           }
143     }
144
145   result[count++] = NULL;
146
147   return result;
148 }
149
150 /* Like g_module_path, but use .la as the suffix
151  */
152 static gchar*
153 module_build_la_path (const gchar *directory,
154                       const gchar *module_name)
155 {
156   gchar *filename;
157   gchar *result;
158         
159   if (strncmp (module_name, "lib", 3) == 0)
160     filename = (gchar *)module_name;
161   else
162     filename =  g_strconcat ("lib", module_name, ".la", NULL);
163
164   if (directory && *directory)
165     result = g_build_filename (directory, filename, NULL);
166   else
167     result = g_strdup (filename);
168
169   if (filename != module_name)
170     g_free (filename);
171
172   return result;
173 }
174
175 /**
176  * _gtk_find_module:
177  * @name: the name of the module
178  * @type: the type of the module, for instance 'modules', 'engines', immodules'
179  * 
180  * Looks for a dynamically module named @name of type @type in the standard GTK+
181  *  module search path.
182  * 
183  * Return value: the pathname to the found module, or %NULL if it wasn't found.
184  *  Free with g_free().
185  **/
186 gchar *
187 _gtk_find_module (const gchar *name,
188                   const gchar *type)
189 {
190   gchar **paths;
191   gchar **path;
192   gchar *module_name = NULL;
193
194   if (g_path_is_absolute (name))
195     return g_strdup (name);
196
197   paths = _gtk_get_module_path (type);
198   for (path = paths; *path; path++)
199     {
200       gchar *tmp_name;
201
202       tmp_name = g_module_build_path (*path, name);
203       if (g_file_test (tmp_name, G_FILE_TEST_EXISTS))
204         {
205           module_name = tmp_name;
206           goto found;
207         }
208       g_free(tmp_name);
209
210       tmp_name = module_build_la_path (*path, name);
211       if (g_file_test (tmp_name, G_FILE_TEST_EXISTS))
212         {
213           module_name = tmp_name;
214           goto found;
215         }
216       g_free(tmp_name);
217     }
218
219  found:
220   g_strfreev (paths);
221   return module_name;
222 }
223
224 static GModule *
225 find_module (const gchar *name)
226 {
227   GModule *module;
228   gchar *module_name;
229
230   module_name = _gtk_find_module (name, "modules");
231   if (!module_name)
232     {
233       /* As last resort, try loading without an absolute path (using system
234        * library path)
235        */
236       module_name = g_module_build_path (NULL, name);
237     }
238
239   module = g_module_open (module_name, G_MODULE_BIND_LAZY);
240   g_free(module_name);
241
242   return module;
243 }
244
245 static gint
246 cmp_module (GtkModuleInfo *info,
247             GModule       *module)
248 {
249   return info->module != module;
250 }
251
252 static GSList *
253 load_module (GSList      *module_list,
254              const gchar *name)
255 {
256   GtkModuleInitFunc modinit_func;
257   GtkModuleInfo *info = NULL;
258   GModule *module = NULL;
259   GSList *l;
260   gboolean success = FALSE;
261   
262   if (g_module_supported ())
263     {
264       for (l = gtk_modules; l; l = l->next)
265         {
266           info = l->data;
267           if (g_slist_find_custom (info->names, name, 
268                                    (GCompareFunc)strcmp))
269             {
270               info->ref_count++;
271               
272               success = TRUE;
273             }
274         }
275
276       if (!success) 
277         {
278           module = find_module (name);
279
280           if (module)
281             {
282               if (!g_module_symbol (module, "gtk_module_init", (gpointer *) &modinit_func) ||
283                   !modinit_func)
284                 g_module_close (module);
285               else
286                 {
287                   success = TRUE;
288                   info = (GtkModuleInfo *) g_slist_find_custom (gtk_modules, module,
289                                                                 (GCompareFunc)cmp_module);
290                   if (!info)
291                     {
292                       info = g_new0 (GtkModuleInfo, 1);
293                       
294                       info->names = g_slist_prepend (info->names, g_strdup (name));
295                       info->module = module;
296                       info->ref_count = 1;
297                       info->init_func = modinit_func;
298                       g_module_symbol (module, "gtk_module_display_init",
299                                        (gpointer *) &info->display_init_func);
300                       
301                       gtk_modules = g_slist_append (gtk_modules, info);
302                       
303                       /* display_init == NULL indicates a non-multihead aware module.
304                        * For these, we delay the call to init_func until first display is 
305                        * opened, see default_display_notify_cb().
306                        * For multihead aware modules, we call init_func immediately,
307                        * and also call display_init_func on all opened displays.
308                        */
309                       if (default_display_opened || info->display_init_func)
310                         (* info->init_func) (&gtk_argc, &gtk_argv);
311                       
312                       if (info->display_init_func) 
313                         {
314                           GSList *displays, *iter;                
315                           displays = gdk_display_manager_list_displays (gdk_display_manager_get ());
316                           for (iter = displays; iter; iter = iter->next)
317                             {
318                               GdkDisplay *display = iter->data;
319                           (* info->display_init_func) (display);
320                             }
321                           g_slist_free (displays);
322                         }
323                     }
324                   else
325                     {
326                       GTK_NOTE (MODULES, g_print ("Module already loaded, ignoring: %s\n", name));
327                       info->names = g_slist_prepend (info->names, g_strdup (name));
328                       info->ref_count++;
329                       /* remove new reference count on module, we already have one */
330                       g_module_close (module);
331                     }
332                 }
333             }
334         }
335     }
336
337   if (success)
338     {
339       if (!g_slist_find (module_list, info))
340         {
341           module_list = g_slist_prepend (module_list, info);
342         }
343     }
344   else
345     g_message ("Failed to load module \"%s\": %s", name, g_module_error ());
346   
347   return module_list;
348 }
349
350
351 static void
352 gtk_module_info_unref (GtkModuleInfo *info)
353 {
354   GSList *l;
355
356   info->ref_count--;
357
358   if (info->ref_count == 0) 
359     {
360       GTK_NOTE (MODULES, 
361                 g_print ("Unloading module: %s", g_module_name (info->module)));
362
363       gtk_modules = g_slist_remove (gtk_modules, info);
364       g_module_close (info->module);
365       for (l = info->names; l; l = l->next)
366         g_free (l->data);
367       g_slist_free (info->names);
368       g_free (info);
369     }
370 }
371
372 static GSList *
373 load_modules (const char *module_str)
374 {
375   gchar **module_names;
376   GSList *module_list = NULL;
377   gint i;
378
379   GTK_NOTE (MODULES, g_print ("Loading module list: %s", module_str));
380
381   module_names = pango_split_file_list (module_str);
382   for (i = 0; module_names[i]; i++) 
383     module_list = load_module (module_list, module_names[i]);
384
385   module_list = g_slist_reverse (module_list);
386   g_strfreev (module_names);
387
388   return module_list;
389 }
390
391 static void
392 default_display_notify_cb (GdkDisplayManager *display_manager)
393 {
394   GSList *slist;
395
396   /* Initialize non-multihead-aware modules when the
397    * default display is first set to a non-NULL value.
398    */
399
400   if (!gdk_display_get_default () || default_display_opened)
401     return;
402
403   default_display_opened = TRUE;
404
405   for (slist = gtk_modules; slist; slist = slist->next)
406     {
407       if (slist->data)
408         {
409           GtkModuleInfo *info = slist->data;
410
411           if (!info->display_init_func)
412             (* info->init_func) (&gtk_argc, &gtk_argv);
413         }
414     }
415 }
416
417 static void
418 display_closed_cb (GdkDisplay *display,
419                    gboolean    is_error)
420 {
421   GdkScreen *screen;
422   GtkSettings *settings;
423   gint i;
424
425   for (i = 0; i < gdk_display_get_n_screens (display); i++)
426     {
427       screen = gdk_display_get_screen (display, i);
428
429       settings = gtk_settings_get_for_screen (screen);
430
431       g_object_set_data_full (G_OBJECT (settings),
432                               I_("gtk-modules"),
433                               NULL, NULL);
434     }  
435 }
436                    
437
438 static void
439 display_opened_cb (GdkDisplayManager *display_manager,
440                    GdkDisplay        *display)
441 {
442   GSList *slist;
443   GdkScreen *screen;
444   GtkSettings *settings;
445   gint i;
446
447   for (slist = gtk_modules; slist; slist = slist->next)
448     {
449       if (slist->data)
450         {
451           GtkModuleInfo *info = slist->data;
452
453           if (info->display_init_func)
454             (* info->display_init_func) (display);
455         }
456     }
457   
458   for (i = 0; i < gdk_display_get_n_screens (display); i++)
459     {
460       GValue value = { 0, };
461
462       g_value_init (&value, G_TYPE_STRING);
463
464       screen = gdk_display_get_screen (display, i);
465
466       if (gdk_screen_get_setting (screen, "gtk-modules", &value))
467         {
468           settings = gtk_settings_get_for_screen (screen);
469           _gtk_modules_settings_changed (settings, g_value_get_string (&value));
470           g_value_unset (&value);
471         }
472     }
473
474   /* Since closing display doesn't actually release the resources yet,
475    * we have to connect to the ::closed signal.
476    */
477   g_signal_connect (display, "closed", G_CALLBACK (display_closed_cb), NULL);
478 }
479
480 void
481 _gtk_modules_init (gint        *argc, 
482                    gchar     ***argv, 
483                    const gchar *gtk_modules_args)
484 {
485   GdkDisplayManager *display_manager;
486   gint i;
487
488   g_assert (gtk_argv == NULL);
489
490   if (argc && argv) 
491     {
492       /* store argc and argv for later use in mod initialization */
493       gtk_argc = *argc;
494       gtk_argv = g_new (gchar *, *argc + 1);
495       for (i = 0; i < gtk_argc; i++)
496         gtk_argv [i] = g_strdup ((*argv) [i]);
497       gtk_argv [*argc] = NULL;
498     }
499
500   display_manager = gdk_display_manager_get ();
501   g_signal_connect (display_manager, "notify::default-display",
502                     G_CALLBACK (default_display_notify_cb), 
503                     NULL);
504   g_signal_connect (display_manager, "display-opened",
505                     G_CALLBACK (display_opened_cb), 
506                     NULL);
507
508   /* Modules specified in the GTK_MODULES environment variable
509    * or on the command line are always loaded, so we'll just leak 
510    * the refcounts.
511    */
512   g_slist_free (load_modules (gtk_modules_args));
513 }
514
515 static void
516 settings_destroy_notify (gpointer data)
517 {
518   GSList *iter, *modules = data;
519
520   for (iter = modules; iter; iter = iter->next) 
521     {
522       GtkModuleInfo *info = iter->data;
523       gtk_module_info_unref (info);
524     }
525   g_slist_free (modules);
526 }
527
528 void
529 _gtk_modules_settings_changed (GtkSettings *settings, 
530                                const gchar *modules)
531 {
532   GSList *new_modules = NULL;
533
534   /* load/ref before unreffing existing */
535   if (modules && modules[0])
536     new_modules = load_modules (modules);
537
538   g_object_set_data_full (G_OBJECT (settings),
539                           I_("gtk-modules"),
540                           new_modules,
541                           settings_destroy_notify);
542 }