1 /* GIO - GLib Input, Output and Streaming Library
3 * Copyright (C) 2006-2007 Red Hat, Inc.
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.
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.
15 * You should have received a copy of the GNU Lesser General
16 * Public License along with this library; if not, see <http://www.gnu.org/licenses/>.
18 * Author: Alexander Larsson <alexl@redhat.com>
22 #include "giomodule.h"
29 is_valid_module_name (const gchar
*basename
)
31 #if !defined(G_OS_WIN32) && !defined(G_WITH_CYGWIN)
33 g_str_has_prefix (basename
, "lib") &&
34 g_str_has_suffix (basename
, ".so");
36 return g_str_has_suffix (basename
, ".dll");
41 query_dir (const char *dirname
)
47 char **(* query
) (void);
51 if (!g_module_supported ())
55 dir
= g_dir_open (dirname
, 0, &error
);
58 g_printerr ("Unable to open directory %s: %s\n", dirname
, error
->message
);
63 data
= g_string_new ("");
65 while ((name
= g_dir_read_name (dir
)))
69 char **extension_points
;
71 if (!is_valid_module_name (name
))
74 path
= g_build_filename (dirname
, name
, NULL
);
75 module
= g_module_open (path
, G_MODULE_BIND_LAZY
| G_MODULE_BIND_LOCAL
);
80 g_module_symbol (module
, "g_io_module_query", (gpointer
) &query
);
84 extension_points
= query ();
88 g_string_append_printf (data
, "%s: ", name
);
90 for (i
= 0; extension_points
[i
] != NULL
; i
++)
91 g_string_append_printf (data
, "%s%s", i
== 0 ? "" : ",", extension_points
[i
]);
93 g_string_append (data
, "\n");
94 g_strfreev (extension_points
);
98 g_module_close (module
);
104 cachename
= g_build_filename (dirname
, "giomodule.cache", NULL
);
110 if (!g_file_set_contents (cachename
, data
->str
, data
->len
, &error
))
112 g_printerr ("Unable to create %s: %s\n", cachename
, error
->message
);
113 g_error_free (error
);
118 if (g_unlink (cachename
) != 0 && errno
!= ENOENT
)
119 g_printerr ("Unable to unlink %s: %s\n", cachename
, g_strerror (errno
));
122 g_string_free (data
, TRUE
);
133 g_print ("Usage: gio-querymodules <directory1> [<directory2> ...]\n");
134 g_print ("Will update giomodule.cache in the listed directories\n");
138 setlocale (LC_ALL
, "");
140 /* Be defensive and ensure we're linked to GObject */
141 g_type_ensure (G_TYPE_OBJECT
);
143 for (i
= 1; i
< argc
; i
++)