]> Pileus Git - ~andy/gtk/blob - gtk/gtkmodules.c
Make 3.0 parallel-installable to 2.x
[~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 #include "gtkalias.h"
31
32 #include <gmodule.h>
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-3.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-3.0", NULL);
76   else
77     default_dir = g_build_filename (GTK_LIBDIR, "gtk-3.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_LOCAL | 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   gpointer modinit_func_ptr;
258   GtkModuleInfo *info = NULL;
259   GModule *module = NULL;
260   GSList *l;
261   gboolean success = FALSE;
262   
263   if (g_module_supported ())
264     {
265       for (l = gtk_modules; l; l = l->next)
266         {
267           info = l->data;
268           if (g_slist_find_custom (info->names, name, 
269                                    (GCompareFunc)strcmp))
270             {
271               info->ref_count++;
272               
273               success = TRUE;
274             }
275         }
276
277       if (!success) 
278         {
279           module = find_module (name);
280
281           if (module)
282             {
283               if (g_module_symbol (module, "gtk_module_init", &modinit_func_ptr))
284                 modinit_func = modinit_func_ptr;
285               else
286                 modinit_func = NULL;
287
288               if (!modinit_func)
289                 g_module_close (module);
290               else
291                 {
292                   GSList *temp;
293
294                   success = TRUE;
295                   info = NULL;
296
297                   temp = g_slist_find_custom (gtk_modules, module,
298                         (GCompareFunc)cmp_module);
299                   if (temp != NULL)
300                         info = temp->data;
301
302                   if (!info)
303                     {
304                       info = g_new0 (GtkModuleInfo, 1);
305                       
306                       info->names = g_slist_prepend (info->names, g_strdup (name));
307                       info->module = module;
308                       info->ref_count = 1;
309                       info->init_func = modinit_func;
310                       g_module_symbol (module, "gtk_module_display_init",
311                                        (gpointer *) &info->display_init_func);
312                       
313                       gtk_modules = g_slist_append (gtk_modules, info);
314                       
315                       /* display_init == NULL indicates a non-multihead aware module.
316                        * For these, we delay the call to init_func until first display is 
317                        * opened, see default_display_notify_cb().
318                        * For multihead aware modules, we call init_func immediately,
319                        * and also call display_init_func on all opened displays.
320                        */
321                       if (default_display_opened || info->display_init_func)
322                         (* info->init_func) (&gtk_argc, &gtk_argv);
323                       
324                       if (info->display_init_func) 
325                         {
326                           GSList *displays, *iter;                
327                           displays = gdk_display_manager_list_displays (gdk_display_manager_get ());
328                           for (iter = displays; iter; iter = iter->next)
329                             {
330                               GdkDisplay *display = iter->data;
331                           (* info->display_init_func) (display);
332                             }
333                           g_slist_free (displays);
334                         }
335                     }
336                   else
337                     {
338                       GTK_NOTE (MODULES, g_print ("Module already loaded, ignoring: %s\n", name));
339                       info->names = g_slist_prepend (info->names, g_strdup (name));
340                       info->ref_count++;
341                       /* remove new reference count on module, we already have one */
342                       g_module_close (module);
343                     }
344                 }
345             }
346         }
347     }
348
349   if (success)
350     {
351       if (!g_slist_find (module_list, info))
352         {
353           module_list = g_slist_prepend (module_list, info);
354         }
355     }
356   else
357     g_message ("Failed to load module \"%s\": %s", name, g_module_error ());
358   
359   return module_list;
360 }
361
362
363 static void
364 gtk_module_info_unref (GtkModuleInfo *info)
365 {
366   GSList *l;
367
368   info->ref_count--;
369
370   if (info->ref_count == 0) 
371     {
372       GTK_NOTE (MODULES, 
373                 g_print ("Unloading module: %s\n", g_module_name (info->module)));
374
375       gtk_modules = g_slist_remove (gtk_modules, info);
376       g_module_close (info->module);
377       for (l = info->names; l; l = l->next)
378         g_free (l->data);
379       g_slist_free (info->names);
380       g_free (info);
381     }
382 }
383
384 static GSList *
385 load_modules (const char *module_str)
386 {
387   gchar **module_names;
388   GSList *module_list = NULL;
389   gint i;
390
391   GTK_NOTE (MODULES, g_print ("Loading module list: %s\n", module_str));
392
393   module_names = pango_split_file_list (module_str);
394   for (i = 0; module_names[i]; i++) 
395     module_list = load_module (module_list, module_names[i]);
396
397   module_list = g_slist_reverse (module_list);
398   g_strfreev (module_names);
399
400   return module_list;
401 }
402
403 static void
404 default_display_notify_cb (GdkDisplayManager *display_manager)
405 {
406   GSList *slist;
407
408   /* Initialize non-multihead-aware modules when the
409    * default display is first set to a non-NULL value.
410    */
411
412   if (!gdk_display_get_default () || default_display_opened)
413     return;
414
415   default_display_opened = TRUE;
416
417   for (slist = gtk_modules; slist; slist = slist->next)
418     {
419       if (slist->data)
420         {
421           GtkModuleInfo *info = slist->data;
422
423           if (!info->display_init_func)
424             (* info->init_func) (&gtk_argc, &gtk_argv);
425         }
426     }
427 }
428
429 static void
430 display_closed_cb (GdkDisplay *display,
431                    gboolean    is_error)
432 {
433   GdkScreen *screen;
434   GtkSettings *settings;
435   gint i;
436
437   for (i = 0; i < gdk_display_get_n_screens (display); i++)
438     {
439       screen = gdk_display_get_screen (display, i);
440
441       settings = gtk_settings_get_for_screen (screen);
442
443       g_object_set_data_full (G_OBJECT (settings),
444                               I_("gtk-modules"),
445                               NULL, NULL);
446     }  
447 }
448                    
449
450 static void
451 display_opened_cb (GdkDisplayManager *display_manager,
452                    GdkDisplay        *display)
453 {
454   GSList *slist;
455   GdkScreen *screen;
456   GtkSettings *settings;
457   gint i;
458
459   for (slist = gtk_modules; slist; slist = slist->next)
460     {
461       if (slist->data)
462         {
463           GtkModuleInfo *info = slist->data;
464
465           if (info->display_init_func)
466             (* info->display_init_func) (display);
467         }
468     }
469   
470   for (i = 0; i < gdk_display_get_n_screens (display); i++)
471     {
472       GValue value = { 0, };
473
474       g_value_init (&value, G_TYPE_STRING);
475
476       screen = gdk_display_get_screen (display, i);
477
478       if (gdk_screen_get_setting (screen, "gtk-modules", &value))
479         {
480           settings = gtk_settings_get_for_screen (screen);
481           _gtk_modules_settings_changed (settings, g_value_get_string (&value));
482           g_value_unset (&value);
483         }
484     }
485
486   /* Since closing display doesn't actually release the resources yet,
487    * we have to connect to the ::closed signal.
488    */
489   g_signal_connect (display, "closed", G_CALLBACK (display_closed_cb), NULL);
490 }
491
492 void
493 _gtk_modules_init (gint        *argc, 
494                    gchar     ***argv, 
495                    const gchar *gtk_modules_args)
496 {
497   GdkDisplayManager *display_manager;
498   gint i;
499
500   g_assert (gtk_argv == NULL);
501
502   if (argc && argv) 
503     {
504       /* store argc and argv for later use in mod initialization */
505       gtk_argc = *argc;
506       gtk_argv = g_new (gchar *, *argc + 1);
507       for (i = 0; i < gtk_argc; i++)
508         gtk_argv [i] = g_strdup ((*argv) [i]);
509       gtk_argv [*argc] = NULL;
510     }
511
512   display_manager = gdk_display_manager_get ();
513   default_display_opened = gdk_display_get_default () != NULL;
514   g_signal_connect (display_manager, "notify::default-display",
515                     G_CALLBACK (default_display_notify_cb), 
516                     NULL);
517   g_signal_connect (display_manager, "display-opened",
518                     G_CALLBACK (display_opened_cb), 
519                     NULL);
520
521   if (gtk_modules_args) {
522     /* Modules specified in the GTK_MODULES environment variable
523      * or on the command line are always loaded, so we'll just leak 
524      * the refcounts.
525      */
526     g_slist_free (load_modules (gtk_modules_args));
527   }
528 }
529
530 static void
531 settings_destroy_notify (gpointer data)
532 {
533   GSList *iter, *modules = data;
534
535   for (iter = modules; iter; iter = iter->next) 
536     {
537       GtkModuleInfo *info = iter->data;
538       gtk_module_info_unref (info);
539     }
540   g_slist_free (modules);
541 }
542
543 void
544 _gtk_modules_settings_changed (GtkSettings *settings, 
545                                const gchar *modules)
546 {
547   GSList *new_modules = NULL;
548
549   GTK_NOTE (MODULES, g_print ("gtk-modules setting changed to: %s\n", modules));
550
551   /* load/ref before unreffing existing */
552   if (modules && modules[0])
553     new_modules = load_modules (modules);
554
555   g_object_set_data_full (G_OBJECT (settings),
556                           I_("gtk-modules"),
557                           new_modules,
558                           settings_destroy_notify);
559 }