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 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389
|
/* tex-glyph.c: Search for GF/PK files.
Copyright (C) 1993, 94, 95, 96 Karl Berry.
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 <kpathsea/config.h>
#include <kpathsea/absolute.h>
#include <kpathsea/expand.h>
#include <kpathsea/fontmap.h>
#include <kpathsea/pathsearch.h>
#include <kpathsea/tex-glyph.h>
#include <kpathsea/tex-make.h>
#include <kpathsea/variable.h>
/* Routines are in bottom-up order. */
/* Support both cmr10.300pk and dpi300/cmr10.pk. (Use the latter
instead of dpi300\cmr10.pk since DOS supports /'s, but Unix doesn't
support \'s. */
#define UNIX_BITMAP_SPEC "$KPATHSEA_NAME.$KPATHSEA_DPI$KPATHSEA_FORMAT"
#define DPI_BITMAP_SPEC "dpi$KPATHSEA_DPI/$KPATHSEA_NAME.$KPATHSEA_FORMAT"
/* Look up FONTNAME at resolution DPI in PATH, with filename suffix
EXTENSION. Return file found or NULL. */
static string
try_format P3C(const_string, fontname, unsigned, dpi,
kpse_file_format_type, format)
{
static const_string bitmap_specs[]
= { UNIX_BITMAP_SPEC, DPI_BITMAP_SPEC, NULL };
const_string *spec;
boolean must_exist;
string ret = NULL;
const_string path = kpse_format_info[format].path;
const_string *sfx;
if (!path)
path = kpse_init_format (format);
/* Set the suffix on the name we'll be searching for. */
sfx = kpse_format_info[format].suffix;
if (sfx && *sfx)
xputenv ("KPATHSEA_FORMAT", *sfx);
/* OK, the limits on this for loop are a little hokey, but it saves
having to repeat the body. We want to do it once with `must_exist'
false to avoid looking on the disk for cmr10.600pk if
dpi600/cmr10.pk is in ls-R. (The time spent in the extra variable
expansions and db searches is negligible.) */
for (must_exist = false; !ret && must_exist <= true; must_exist++)
{
for (spec = bitmap_specs; !ret && *spec; spec++)
{
string name = kpse_var_expand (*spec);
ret = kpse_path_search (path, name, must_exist);
if (name != ret)
free (name);
}
}
return ret;
}
/* Look for FONTNAME at resolution DPI in format FORMAT. Search the
(entire) PK path first, then the GF path, if we're looking for both.
Return any filename found, and (if we succeeded) fill in GLYPH_FILE. */
static string
try_size P4C(const_string, fontname, unsigned, dpi,
kpse_file_format_type, format,
kpse_glyph_file_type *, glyph_file)
{
kpse_file_format_type format_found;
string ret;
boolean try_gf = format == kpse_gf_format || format == kpse_any_glyph_format;
boolean try_pk = format == kpse_pk_format || format == kpse_any_glyph_format;
xputenv_int ("KPATHSEA_DPI", dpi);
/* Look for PK first (since it's more likely to be found), then GF. */
ret = try_pk ? try_format (fontname, dpi, kpse_pk_format) : NULL;
if (ret != NULL)
format_found = kpse_pk_format;
else
{
if (try_gf)
{
ret = try_format (fontname, dpi, kpse_gf_format);
format_found = kpse_gf_format;
}
}
if (ret != NULL && glyph_file)
{ /* Success. Fill in the return info. Discard const. */
glyph_file->name = (string) fontname;
glyph_file->dpi = dpi;
glyph_file->format = format_found;
}
return ret;
}
/* Look for FONTNAME at resolution DPI, then at the resolutions within
KPSE_BITMAP_TOLERANCE of DPI. */
static string
try_resolution P4C(const_string, fontname, unsigned, dpi,
kpse_file_format_type, format,
kpse_glyph_file_type *, glyph_file)
{
string ret = try_size (fontname, dpi, format, glyph_file);
if (!ret)
{
unsigned r;
unsigned tolerance = KPSE_BITMAP_TOLERANCE (dpi);
/* Cast to unsigned to shut up stupid compilers. */
unsigned lower_bound = (int) (dpi - tolerance) < 0 ? 0 : (unsigned)(dpi - tolerance);
unsigned upper_bound = (unsigned)(dpi + tolerance);
/* Prefer scaling up to scaling down, since scaling down can omit
character features (Tom did this in dvips). */
for (r = lower_bound; !ret && r <= upper_bound; r++)
if (r != dpi)
ret = try_size (fontname, r, format, glyph_file);
}
return ret;
}
/* Look up *FONTNAME_PTR in format FORMAT at DPI in the texfonts.map files
that we can find, returning the filename found and GLYPH_FILE. Also
set *FONTNAME_PTR to the real name corresponding to the alias found
or the first alias, if that is not an alias itself. (This allows
mktexpk to only deal with real names.) */
static string
try_fontmap P4C(string *, fontname_ptr, unsigned, dpi,
kpse_file_format_type, format,
kpse_glyph_file_type *, glyph_file)
{
string *mapped_names;
string fontname = *fontname_ptr;
string ret = NULL;
mapped_names = kpse_fontmap_lookup (fontname);
if (mapped_names) {
string mapped_name;
string first_name = *mapped_names;
while (!ret && (mapped_name = *mapped_names++)) {
xputenv ("KPATHSEA_NAME", mapped_name);
ret = try_resolution (mapped_name, dpi, format, glyph_file);
}
if (ret) {
/* If some alias succeeeded, return that alias. */
*fontname_ptr = xstrdup (mapped_name);
/* Return first alias name, unless that itself is an alias,
in which case do nothing. */
} else if (!kpse_fontmap_lookup (first_name)) {
*fontname_ptr = xstrdup (first_name);
}
}
return ret;
}
/* Look for FONTNAME in `kpse_fallback_resolutions', omitting DPI if we
happen across it. Return NULL if nothing found. Pass GLYPH_FILE
along as usual. Assume `kpse_fallback_resolutions' is sorted. */
static string
try_fallback_resolutions P4C(const_string, fontname, unsigned, dpi,
kpse_file_format_type, format,
kpse_glyph_file_type *, glyph_file)
{
unsigned s;
int loc, max_loc;
int lower_loc, upper_loc;
unsigned lower_diff, upper_diff;
unsigned closest_diff = UINT_MAX;
string ret = NULL; /* In case the only fallback resolution is DPI. */
/* First find the fallback size closest to DPI, even including DPI. */
for (s = 0; kpse_fallback_resolutions[s] != 0; s++)
{
unsigned this_diff = abs (kpse_fallback_resolutions[s] - dpi);
if (this_diff < closest_diff)
{
closest_diff = this_diff;
loc = s;
}
}
if (s == 0)
return ret; /* If nothing in list, quit now. */
max_loc = s;
lower_loc = loc - 1;
upper_loc = loc + 1;
for (;;)
{
unsigned fallback = kpse_fallback_resolutions[loc];
/* Don't bother to try DPI itself again. */
if (fallback != dpi)
{
ret = try_resolution (fontname, fallback, format, glyph_file);
if (ret)
break;
}
/* That didn't work. How far away are the locs above or below? */
lower_diff = lower_loc > -1
? dpi - kpse_fallback_resolutions[lower_loc] : INT_MAX;
upper_diff = upper_loc < max_loc
? kpse_fallback_resolutions[upper_loc] - dpi : INT_MAX;
/* But if we're at the end in both directions, quit. */
if (lower_diff == INT_MAX && upper_diff == INT_MAX)
break;
/* Go in whichever direction is closest. */
if (lower_diff < upper_diff)
{
loc = lower_loc;
lower_loc--;
}
else
{
loc = upper_loc;
upper_loc++;
}
}
return ret;
}
/* See the .h file for description. This is the entry point. */
string
kpse_find_glyph P4C(const_string, passed_fontname, unsigned, dpi,
kpse_file_format_type, format,
kpse_glyph_file_type *, glyph_file)
{
string ret;
kpse_glyph_source_type source;
string fontname = (string) passed_fontname; /* discard const */
/* Start the search: try the name we're given. */
source = kpse_glyph_source_normal;
xputenv ("KPATHSEA_NAME", fontname);
ret = try_resolution (fontname, dpi, format, glyph_file);
/* Try all the various possibilities in order of preference. */
if (!ret) {
/* Maybe FONTNAME was an alias. */
source = kpse_glyph_source_alias;
ret = try_fontmap (&fontname, dpi, format, glyph_file);
/* If not an alias, try creating it on the fly with mktexpk,
unless FONTNAME is absolute or explicitly relative. */
if (!ret && !kpse_absolute_p (fontname, true)) {
source = kpse_glyph_source_maketex;
/* `try_resolution' leaves the envvar set randomly. */
xputenv_int ("KPATHSEA_DPI", dpi);
ret = kpse_make_tex (format, fontname);
}
/* If mktex... succeeded, set return struct. Doesn't make sense for
`kpse_make_tex' to set it, since it can only succeed or fail,
unlike the other routines. */
if (ret && glyph_file) {
KPSE_GLYPH_FILE_DPI (*glyph_file) = dpi;
KPSE_GLYPH_FILE_NAME (*glyph_file) = fontname;
}
/* If mktex... failed, try any fallback resolutions. */
else {
if (kpse_fallback_resolutions)
ret = try_fallback_resolutions (fontname, dpi, format, glyph_file);
/* We're down to the font of last resort. */
if (!ret && kpse_fallback_font) {
const_string name = kpse_fallback_font;
source = kpse_glyph_source_fallback;
xputenv ("KPATHSEA_NAME", name);
/* As before, first try it at the given size. */
ret = try_resolution (name, dpi, format, glyph_file);
/* The fallback font at the fallback resolutions. */
if (!ret && kpse_fallback_resolutions)
ret = try_fallback_resolutions (name, dpi, format, glyph_file);
}
}
}
/* If RET is null, then the caller is not supposed to look at GLYPH_FILE,
so it doesn't matter if we assign something incorrect. */
if (glyph_file)
KPSE_GLYPH_FILE_SOURCE (*glyph_file) = source;
/* FIXME: fontname may have been allocated, but (worse) it may also
have been assigned to struct that's passed out of this function.
if (fontname != passed_fontname)
free (fontname);
*/
return ret;
}
/* The tolerances change whether we base things on DPI1 or DPI2. */
boolean
kpse_bitmap_tolerance P2C(double, dpi1, double, dpi2)
{
unsigned tolerance = KPSE_BITMAP_TOLERANCE (dpi2);
unsigned lower_bound = (int) (dpi2 - tolerance) < 0 ? 0 : dpi2 - tolerance;
unsigned upper_bound = dpi2 + tolerance;
return lower_bound <= dpi1 && dpi1 <= upper_bound;
}
#ifdef TEST
void
test_find_glyph (const_string fontname, unsigned dpi)
{
string answer;
kpse_glyph_file_type ret;
printf ("\nSearch for %s@%u:\n\t", fontname, dpi);
answer = kpse_find_glyph_format (fontname, dpi,
kpse_any_glyph_format, &ret);
if (answer)
{
string format = ret.format == kpse_pk_format ? "pk" : "gf";
if (!ret.name)
ret.name = "(nil)";
printf ("%s\n\t(%s@%u, %s)\n", answer, ret.name, ret.dpi, format);
}
else
puts ("(nil)");
}
int
main ()
{
test_find_glyph ("/usr/local/lib/tex/fonts/cm/cmr10", 300); /* absolute */
test_find_glyph ("cmr10", 300); /* normal */
test_find_glyph ("logo10", 300); /* find gf */
test_find_glyph ("cmr10", 299); /* find 300 */
test_find_glyph ("circle10", 300); /* in fontmap */
test_find_glyph ("none", 300); /* do not find */
kpse_fallback_font = "cmr10";
test_find_glyph ("fallback", 300); /* find fallback font cmr10 */
kpse_init_fallback_resolutions ("KPATHSEA_TEST_SIZES");
test_find_glyph ("fallbackdpi", 759); /* find fallback font cmr10@300 */
xputenv ("GFFONTS", ".");
test_find_glyph ("cmr10", 300); /* different GFFONTS/TEXFONTS */
return 0;
}
#endif /* TEST */
/*
Local variables:
test-compile-command: "gcc -g -I. -I.. -DTEST tex-glyph.c kpathsea.a"
End:
*/
|