home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / octa21fs.zip / octave / kpathsea / tex-glyph.c < prev    next >
C/C++ Source or Header  |  2000-01-15  |  13KB  |  395 lines

  1. /* tex-glyph.c: Search for GF/PK files.
  2.  
  3. Copyright (C) 1993, 94, 95, 96 Karl Berry.
  4.  
  5. This library is free software; you can redistribute it and/or
  6. modify it under the terms of the GNU Library 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. Library General Public License for more details.
  14.  
  15. You should have received a copy of the GNU Library General Public
  16. License along with this library; if not, write to the Free Software
  17. Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
  18.  
  19. /* Modified by Klaus Gebhardt, 1999 */
  20.  
  21. #include <kpathsea/config.h>
  22.  
  23. #include <kpathsea/absolute.h>
  24. #include <kpathsea/expand.h>
  25. #include <kpathsea/fontmap.h>
  26. #include <kpathsea/pathsearch.h>
  27. #include <kpathsea/tex-glyph.h>
  28. #include <kpathsea/tex-make.h>
  29. #include <kpathsea/variable.h>
  30.  
  31. /* Routines are in bottom-up order.  */
  32.  
  33. /* Support both cmr10.300pk and dpi300/cmr10.pk.  (Use the latter
  34.    instead of dpi300\cmr10.pk since DOS supports /'s, but Unix doesn't
  35.    support \'s.  */
  36. #define UNIX_BITMAP_SPEC "$KPATHSEA_NAME.$KPATHSEA_DPI$KPATHSEA_FORMAT"
  37. #define DPI_BITMAP_SPEC  "dpi$KPATHSEA_DPI/$KPATHSEA_NAME.$KPATHSEA_FORMAT"
  38.  
  39. /* Look up FONTNAME at resolution DPI in PATH, with filename suffix
  40.    EXTENSION.  Return file found or NULL.  */
  41.  
  42. static string
  43. try_format P3C(const_string, fontname,  unsigned, dpi,
  44.                kpse_file_format_type,  format)
  45. {
  46.   static const_string bitmap_specs[]
  47.     = { UNIX_BITMAP_SPEC, DPI_BITMAP_SPEC, NULL };
  48.   const_string *spec;
  49.   boolean must_exist;
  50.   string ret = NULL;
  51.   const_string path = kpse_format_info[format].path;
  52.   const_string *sfx;
  53.   if (!path)
  54.     path = kpse_init_format (format);
  55.   
  56.   /* Set the suffix on the name we'll be searching for.  */
  57.   sfx = kpse_format_info[format].suffix;
  58.   if (sfx && *sfx) 
  59.     xputenv ("KPATHSEA_FORMAT", *sfx);
  60.  
  61.   /* OK, the limits on this for loop are a little hokey, but it saves
  62.      having to repeat the body.  We want to do it once with `must_exist'
  63.      false to avoid looking on the disk for cmr10.600pk if
  64.      dpi600/cmr10.pk is in ls-R.  (The time spent in the extra variable
  65.      expansions and db searches is negligible.)  */
  66.   for (must_exist = false; !ret && must_exist <= true; must_exist++)
  67.     {
  68.       for (spec = bitmap_specs; !ret && *spec; spec++)
  69.         {
  70.           string name = kpse_var_expand (*spec);
  71.           ret = kpse_path_search (path, name, must_exist);
  72.           if (name != ret)
  73.             free (name);
  74.         }
  75.     }
  76.     
  77.   return ret;
  78. }
  79.  
  80. /* Look for FONTNAME at resolution DPI in format FORMAT.  Search the
  81.    (entire) PK path first, then the GF path, if we're looking for both.
  82.    Return any filename found, and (if we succeeded) fill in GLYPH_FILE.  */
  83.  
  84. static string
  85. try_size P4C(const_string, fontname,  unsigned, dpi,
  86.              kpse_file_format_type, format,
  87.              kpse_glyph_file_type *, glyph_file)
  88. {
  89. #ifdef __EMX__
  90.   kpse_file_format_type format_found = 0;
  91. #else
  92.   kpse_file_format_type format_found;
  93. #endif
  94.   string ret;
  95.   boolean try_gf = format == kpse_gf_format || format == kpse_any_glyph_format;
  96.   boolean try_pk = format == kpse_pk_format || format == kpse_any_glyph_format;
  97.  
  98.   xputenv_int ("KPATHSEA_DPI", dpi);
  99.   
  100.   /* Look for PK first (since it's more likely to be found), then GF.  */
  101.   ret = try_pk ? try_format (fontname, dpi, kpse_pk_format) : NULL;
  102.  
  103.   if (ret != NULL)
  104.     format_found = kpse_pk_format;
  105.   else
  106.     {
  107.       if (try_gf)
  108.         {
  109.           ret = try_format (fontname, dpi, kpse_gf_format);
  110.           format_found = kpse_gf_format;
  111.         }
  112.     }
  113.   
  114.   if (ret != NULL && glyph_file)
  115.     { /* Success.  Fill in the return info.  Discard const.  */
  116.       glyph_file->name = (string) fontname;
  117.       glyph_file->dpi = dpi;
  118.       glyph_file->format = format_found;
  119.     }
  120.     
  121.   return ret;
  122. }
  123.  
  124. /* Look for FONTNAME at resolution DPI, then at the resolutions within
  125.    KPSE_BITMAP_TOLERANCE of DPI.  */
  126.  
  127. static string
  128. try_resolution P4C(const_string, fontname,  unsigned, dpi,
  129.                    kpse_file_format_type, format,
  130.                    kpse_glyph_file_type *, glyph_file)
  131. {
  132.   string ret = try_size (fontname, dpi, format, glyph_file);
  133.   
  134.   if (!ret)
  135.     {
  136.       unsigned r;
  137.       unsigned tolerance = KPSE_BITMAP_TOLERANCE (dpi);
  138.       unsigned lower_bound = (int) (dpi - tolerance) < 0 ? 0 : dpi - tolerance;
  139.       unsigned upper_bound = dpi + tolerance;
  140.       
  141.       /* Prefer scaling up to scaling down, since scaling down can omit
  142.          character features (Tom did this in dvips).  */
  143.       for (r = lower_bound; !ret && r <= upper_bound; r++)
  144.         if (r != dpi)
  145.           ret = try_size (fontname, r, format, glyph_file);
  146.     }
  147.   
  148.   return ret;
  149. }
  150.  
  151. /* Look up *FONTNAME_PTR in format FORMAT at DPI in the texfonts.map files
  152.    that we can find, returning the filename found and GLYPH_FILE.  Also
  153.    set *FONTNAME_PTR to the real name corresponding to the alias found
  154.    or the first alias, if that is not an alias itself.  (This allows
  155.    mktexpk to only deal with real names.)  */
  156.  
  157. static string
  158. try_fontmap P4C(string *, fontname_ptr,  unsigned, dpi,
  159.                 kpse_file_format_type, format,
  160.                 kpse_glyph_file_type *, glyph_file)
  161. {
  162.   string *mapped_names;
  163.   string fontname = *fontname_ptr;
  164.   string ret = NULL;
  165.  
  166.   mapped_names = kpse_fontmap_lookup (fontname);
  167.   if (mapped_names) {
  168.     string mapped_name;
  169.     string first_name = *mapped_names;
  170.     while ((mapped_name = *mapped_names++) && !ret) {
  171.       xputenv ("KPATHSEA_NAME", mapped_name);
  172.       ret = try_resolution (mapped_name, dpi, format, glyph_file);
  173.     }
  174.     if (ret) {
  175.       /* If some alias succeeeded, return that alias.  */
  176.       *fontname_ptr = xstrdup (mapped_name);
  177.     /* Return first alias name, unless that itself is an alias,
  178.        in which case do nothing.  */
  179.     } else if (!kpse_fontmap_lookup (first_name)) {
  180.       *fontname_ptr = xstrdup (first_name);
  181.     }
  182.   } 
  183.  
  184.   return ret;
  185. }
  186.  
  187. /* Look for FONTNAME in `kpse_fallback_resolutions', omitting DPI if we
  188.    happen across it.  Return NULL if nothing found.  Pass GLYPH_FILE
  189.    along as usual.  Assume `kpse_fallback_resolutions' is sorted.  */
  190.  
  191. static string
  192. try_fallback_resolutions P4C(const_string, fontname,  unsigned, dpi,
  193.                              kpse_file_format_type, format,
  194.                              kpse_glyph_file_type *, glyph_file)
  195. {
  196.   unsigned s;
  197. #ifdef __EMX__
  198.   int loc = 0, max_loc;
  199. #else
  200.   int loc, max_loc;
  201. #endif
  202.   int lower_loc, upper_loc;
  203.   unsigned lower_diff, upper_diff;
  204.   unsigned closest_diff = UINT_MAX;
  205.   string ret = NULL; /* In case the only fallback resolution is DPI.  */
  206.  
  207.   /* First find the fallback size closest to DPI, even including DPI.  */
  208.   for (s = 0; kpse_fallback_resolutions[s] != 0; s++)
  209.     {
  210.       unsigned this_diff = abs (kpse_fallback_resolutions[s] - dpi);
  211.       if (this_diff < closest_diff)
  212.         {
  213.           closest_diff = this_diff;
  214.           loc = s;
  215.         }
  216.     }
  217.   if (s == 0)
  218.     return ret; /* If nothing in list, quit now.  */
  219.   
  220.   max_loc = s;
  221.   lower_loc = loc - 1;
  222.   upper_loc = loc + 1;
  223.   
  224.   for (;;)
  225.     {
  226.       unsigned fallback = kpse_fallback_resolutions[loc];
  227.       /* Don't bother to try DPI itself again.  */
  228.       if (fallback != dpi)
  229.         {
  230.           ret = try_resolution (fontname, fallback, format, glyph_file);
  231.           if (ret)
  232.             break;
  233.         }
  234.       
  235.       /* That didn't work. How far away are the locs above or below?  */
  236.       lower_diff = lower_loc > -1
  237.                    ? dpi - kpse_fallback_resolutions[lower_loc] : INT_MAX;
  238.       upper_diff = upper_loc < max_loc
  239.                    ? kpse_fallback_resolutions[upper_loc] - dpi : INT_MAX;
  240.       
  241.       /* But if we're at the end in both directions, quit.  */
  242.       if (lower_diff == INT_MAX && upper_diff == INT_MAX)
  243.         break;
  244.       
  245.       /* Go in whichever direction is closest.  */
  246.       if (lower_diff < upper_diff)
  247.         {
  248.           loc = lower_loc;
  249.           lower_loc--;
  250.         }
  251.       else
  252.         {
  253.           loc = upper_loc;
  254.           upper_loc++;
  255.         }
  256.     }
  257.  
  258.   return ret;
  259. }
  260.  
  261. /* See the .h file for description.  This is the entry point.  */
  262.  
  263. string
  264. kpse_find_glyph P4C(const_string, passed_fontname,  unsigned, dpi,
  265.                     kpse_file_format_type, format,
  266.                     kpse_glyph_file_type *, glyph_file)
  267. {
  268.   string ret;
  269.   kpse_glyph_source_type source;
  270.   string fontname = (string) passed_fontname; /* discard const */
  271.   
  272.   /* Start the search: try the name we're given.  */
  273.   source = kpse_glyph_source_normal;
  274.   xputenv ("KPATHSEA_NAME", fontname);
  275.   ret = try_resolution (fontname, dpi, format, glyph_file);
  276.   
  277.   /* Try all the various possibilities in order of preference.  */
  278.   if (!ret) {
  279.     /* Maybe FONTNAME was an alias.  */
  280.     source = kpse_glyph_source_alias;
  281.     ret = try_fontmap (&fontname, dpi, format, glyph_file);
  282.  
  283.     /* If not an alias, try creating it on the fly with mktexpk,
  284.        unless FONTNAME is absolute or explicitly relative.  */
  285.     if (!ret && !kpse_absolute_p (fontname, true)) {
  286.       source = kpse_glyph_source_maketex;
  287.       /* `try_resolution' leaves the envvar set randomly.  */
  288.       xputenv_int ("KPATHSEA_DPI", dpi);
  289.       ret = kpse_make_tex (format, fontname);
  290.     }
  291.  
  292.     /* If mktex... succeeded, set return struct.  Doesn't make sense for
  293.        `kpse_make_tex' to set it, since it can only succeed or fail,
  294.        unlike the other routines.  */
  295.     if (ret) {
  296.       KPSE_GLYPH_FILE_DPI (*glyph_file) = dpi;
  297.       KPSE_GLYPH_FILE_NAME (*glyph_file) = fontname;
  298.     }
  299.  
  300.     /* If mktex... failed, try any fallback resolutions.  */
  301.     else {
  302.       if (kpse_fallback_resolutions)
  303.         ret = try_fallback_resolutions (fontname, dpi, format, glyph_file);
  304.  
  305.       /* We're down to the font of last resort.  */
  306.       if (!ret && kpse_fallback_font) {
  307.         const_string name = kpse_fallback_font;
  308.         source = kpse_glyph_source_fallback;
  309.         xputenv ("KPATHSEA_NAME", name);
  310.  
  311.         /* As before, first try it at the given size.  */
  312.         ret = try_resolution (name, dpi, format, glyph_file);
  313.  
  314.         /* The fallback font at the fallback resolutions.  */
  315.         if (!ret && kpse_fallback_resolutions)
  316.           ret = try_fallback_resolutions (name, dpi, format, glyph_file);
  317.       }
  318.     }
  319.   }
  320.   
  321.   /* If RET is null, then the caller is not supposed to look at GLYPH_FILE,
  322.      so it doesn't matter if we assign something incorrect.  */
  323.   KPSE_GLYPH_FILE_SOURCE (*glyph_file) = source;
  324.   
  325.   if (fontname != passed_fontname)
  326.     free (fontname);
  327.  
  328.   return ret;
  329. }
  330.  
  331. /* The tolerances change whether we base things on DPI1 or DPI2.  */
  332.  
  333. boolean
  334. kpse_bitmap_tolerance P2C(double, dpi1,  double, dpi2)
  335. {
  336.   unsigned tolerance = KPSE_BITMAP_TOLERANCE (dpi2);
  337.   unsigned lower_bound = (int) (dpi2 - tolerance) < 0 ? 0 : dpi2 - tolerance;
  338.   unsigned upper_bound = dpi2 + tolerance;
  339.  
  340.   return lower_bound <= dpi1 && dpi1 <= upper_bound;
  341. }
  342.  
  343. #ifdef TEST
  344.  
  345. void
  346. test_find_glyph (const_string fontname, unsigned dpi)
  347. {
  348.   string answer;
  349.   kpse_glyph_file_type ret;
  350.   
  351.   printf ("\nSearch for %s@%u:\n\t", fontname, dpi);
  352.  
  353.   answer = kpse_find_glyph_format (fontname, dpi,
  354.                                    kpse_any_glyph_format, &ret);
  355.   if (answer)
  356.     {
  357.       string format = ret.format == kpse_pk_format ? "pk" : "gf";
  358.       if (!ret.name)
  359.         ret.name = "(nil)";
  360.       printf ("%s\n\t(%s@%u, %s)\n", answer, ret.name, ret.dpi, format);
  361.     }
  362.   else
  363.     puts ("(nil)");
  364. }
  365.  
  366.  
  367. int
  368. main ()
  369. {
  370.   test_find_glyph ("/usr/local/lib/tex/fonts/cm/cmr10", 300); /* absolute */
  371.   test_find_glyph ("cmr10", 300);     /* normal */
  372.   test_find_glyph ("logo10", 300);    /* find gf */
  373.   test_find_glyph ("cmr10", 299);     /* find 300 */
  374.   test_find_glyph ("circle10", 300);  /* in fontmap */
  375.   test_find_glyph ("none", 300);      /* do not find */
  376.   kpse_fallback_font = "cmr10";
  377.   test_find_glyph ("fallback", 300);  /* find fallback font cmr10 */
  378.   kpse_init_fallback_resolutions ("KPATHSEA_TEST_SIZES");
  379.   test_find_glyph ("fallbackdpi", 759); /* find fallback font cmr10@300 */
  380.   
  381.   xputenv ("GFFONTS", ".");
  382.   test_find_glyph ("cmr10", 300);     /* different GFFONTS/TEXFONTS */
  383.   
  384.   return 0;
  385. }
  386.  
  387. #endif /* TEST */
  388.  
  389.  
  390. /*
  391. Local variables:
  392. test-compile-command: "gcc -g -I. -I.. -DTEST tex-glyph.c kpathsea.a"
  393. End:
  394. */
  395.