1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284
|
/* Pango
* querymodules.c:
*
* Copyright (C) 1999 Red Hat Software
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public
* License along with this library; if not, write to the
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
* Boston, MA 02111-1307, USA.
*/
#include <stdlib.h>
#include "config.h"
#include <glib.h>
#include <gmodule.h>
#include "pango-break.h"
#include "pango-context.h"
#include "pango-impl-utils.h"
#include "pango-engine.h"
#include "pango-enum-types.h"
#include <errno.h>
#include <string.h>
#ifdef HAVE_UNISTD_H
#include <unistd.h>
#endif
#include <glib/gprintf.h>
#ifdef USE_LA_MODULES
#define SOEXT ".la"
#else
#define SOEXT ("." G_MODULE_SUFFIX)
#endif
#define SOEXT_LEN ((int) strlen (SOEXT))
static gboolean
string_needs_escape (const char *str)
{
while (TRUE)
{
char c = *str++;
if (!c)
return FALSE;
else if (c == '\"' || c == '\\' || g_ascii_isspace (c))
return TRUE;
}
}
static char *
escape_string (const char *str)
{
GString *result = g_string_new (NULL);
while (TRUE)
{
char c = *str++;
switch (c)
{
case '\0':
goto done;
case '\n':
g_string_append (result, "\\n");
break;
case '\"':
g_string_append (result, "\\\"");
break;
case '\\':
g_string_append (result, "\\\\");
break;
default:
g_string_append_c (result, c);
}
}
done:
return g_string_free (result, FALSE);
}
#define GET_SYMBOL(module,name,location) \
g_module_symbol (module, name, (gpointer *)(void *)&location)
static const char *
string_from_script (PangoScript script)
{
static GEnumClass *class = NULL;
GEnumValue *value;
if (!class)
class = g_type_class_ref (PANGO_TYPE_SCRIPT);
value = g_enum_get_value (class, script);
if (!value)
{
g_warning ("Engine reported invalid script value %d\n", script);
return string_from_script (PANGO_SCRIPT_INVALID_CODE);
}
return value->value_nick;
}
static void
query_module (const char *dir, const char *name)
{
void (*list) (PangoEngineInfo **engines, gint *n_engines);
void (*init) (GTypeModule *module);
void (*exit) (void);
PangoEngine *(*create) (const gchar *id);
GModule *module;
gchar *path;
if (g_path_is_absolute (name))
path = g_strdup (name);
else
path = g_build_filename (dir, name, NULL);
module = g_module_open (path, G_MODULE_BIND_LAZY | G_MODULE_BIND_LOCAL);
if (!module)
g_printerr ("Cannot load module %s: %s\n", path, g_module_error ());
if (module &&
GET_SYMBOL (module, "script_engine_list", list) &&
GET_SYMBOL (module, "script_engine_init", init) &&
GET_SYMBOL (module, "script_engine_exit", exit) &&
GET_SYMBOL (module, "script_engine_create", create))
{
gint i,j;
PangoEngineInfo *engines;
gint n_engines;
(*list) (&engines, &n_engines);
for (i=0; i<n_engines; i++)
{
const gchar *quote;
gchar *quoted_path;
if (string_needs_escape (path))
{
quote = "\"";
quoted_path = escape_string (path);
}
else
{
quote = "";
quoted_path = g_strdup (path);
}
g_printf ("%s%s%s %s %s %s", quote, quoted_path, quote,
engines[i].id, engines[i].engine_type, engines[i].render_type);
g_free (quoted_path);
for (j=0; j < engines[i].n_scripts; j++)
{
g_printf (" %s:%s",
string_from_script (engines[i].scripts[j].script),
engines[i].scripts[j].langs);
}
g_printf ("\n");
}
}
else
{
g_printerr ("%s does not export Pango module API\n", path);
}
g_free (path);
if (module)
g_module_close (module);
}
static G_GNUC_NORETURN gboolean
show_version(const char *name G_GNUC_UNUSED,
const char *arg G_GNUC_UNUSED,
gpointer data G_GNUC_UNUSED,
GError **error G_GNUC_UNUSED)
{
g_printf("pango-querymodules (%s) %s\n", PACKAGE_NAME, PACKAGE_VERSION);
g_printf("module interface version: %s\n", MODULE_VERSION);
exit(0);
}
int
main (int argc, char **argv)
{
char *cwd;
int i;
char *path;
GOptionContext *context;
GError *parse_error = NULL;
GOptionEntry entries[] =
{
{"version", 0, G_OPTION_FLAG_NO_ARG, G_OPTION_ARG_CALLBACK, &show_version,
"Show version numbers", NULL},
{NULL}
};
context = g_option_context_new ("- [MODULE]...");
g_option_context_add_main_entries (context, entries, NULL);
if (!g_option_context_parse (context, &argc, &argv, &parse_error))
{
if (parse_error != NULL)
{
g_printerr("Parse option error: %s\n", parse_error->message);
}
else
{
g_printerr("Parse option error\n");
}
exit(1);
}
g_option_context_free(context);
g_type_init ();
g_printf ("# Pango Modules file\n"
"# Automatically generated file, do not edit\n"
"#\n");
if (argc == 1) /* No arguments given */
{
char **dirs;
int i;
path = pango_config_key_get ("Pango/ModulesPath");
if (!path)
path = g_build_filename (pango_get_lib_subdirectory (),
MODULE_VERSION,
"modules",
NULL);
g_printf ("# ModulesPath = %s\n#\n", path);
dirs = pango_split_file_list (path);
g_free (path);
for (i=0; dirs[i]; i++)
{
GDir *dir = g_dir_open (dirs[i], 0, NULL);
if (dir)
{
const char *dent;
while ((dent = g_dir_read_name (dir)))
{
int len = strlen (dent);
if (len > SOEXT_LEN && strcmp (dent + len - SOEXT_LEN, SOEXT) == 0)
query_module (dirs[i], dent);
}
g_dir_close (dir);
}
}
g_strfreev (dirs);
}
else
{
cwd = g_get_current_dir ();
for (i=1; i<argc; i++)
query_module (cwd, argv[i]);
g_free (cwd);
}
return 0;
}
|