]> git.donarmstrong.com Git - lilypond.git/blob - lily/font-config.cc
(init_fontconfig): add warning if cache_file
[lilypond.git] / lily / font-config.cc
1 /*
2   font-config.cc -- implement FontConfig related functions
3
4   source file of the GNU LilyPond music typesetter
5
6   (c) 2005--2006 Han-Wen Nienhuys <hanwen@xs4all.nl>
7 */
8
9 #include "config.hh"
10
11 #if HAVE_FONTCONFIG
12
13 #include <fontconfig/fontconfig.h>
14 #include <sys/stat.h>
15
16 #include "file-path.hh"
17 #include "international.hh"
18 #include "main.hh"
19 #include "warn.hh"
20
21
22 FcConfig *font_config_global = 0;
23
24 void
25 init_fontconfig ()
26 {
27   if (be_verbose_global)
28     message (_ ("Initializing FontConfig..."));
29
30   font_config_global = FcInitLoadConfig ();
31   FcChar8 *cache_file = FcConfigGetCache (font_config_global);
32
33   if (!cache_file)
34     programming_error ("Cannot find file for FontConfig cache.");
35
36   /*
37     This is a terrible kludge, but there is apparently no way for
38     FontConfig to signal whether it needs to rescan directories.
39    */ 
40   if (cache_file
41       && !is_file ((char const *)cache_file))
42     message (_f ("Rebuilding FontConfig cache %s, this may take a while...", cache_file));
43                         
44   vector<string> dirs;
45
46   dirs.push_back (prefix_directory + "/fonts/otf/");
47   dirs.push_back (prefix_directory + "/fonts/type1/");
48   
49   for (vsize i = 0; i < dirs.size (); i++)
50     {
51       string dir = dirs[i];
52       if (!FcConfigAppFontAddDir (font_config_global, (FcChar8 *)dir.c_str ()))
53         error (_f ("adding font directory: %s", dir.c_str ()));
54       else if (be_verbose_global)
55         message (_f ("adding font directory: %s", dir.c_str ()));
56     }
57   
58   if (be_verbose_global)
59     progress_indication ("Building font database.\n");
60   FcConfigBuildFonts (font_config_global);
61   FcConfigSetCurrent (font_config_global);
62   if (be_verbose_global)
63     progress_indication ("\n");
64
65   if (cache_file
66       && !is_file ((char*)cache_file))
67     {
68       /* inhibit future messages. */
69       FILE *f = fopen ((char*)cache_file, "w");
70       if (f)
71         fclose (f);
72     }
73   
74 }
75
76 #else
77
78 void
79 init_fontconfig ()
80 {
81 }
82
83 #endif