]> git.donarmstrong.com Git - lilypond.git/blob - lily/all-font-metrics.cc
patch::: 1.3.144.jcn2
[lilypond.git] / lily / all-font-metrics.cc
1 /*   
2   all-font-metrics.cc --  implement All_font_metrics
3   
4   source file of the GNU LilyPond music typesetter
5   
6   (c) 1999--2001 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7   
8  */
9
10 #include "config.h"
11 #include "main.hh"
12 #include "all-font-metrics.hh"
13 #include "debug.hh"
14 #include "warn.hh"
15 #include "afm.hh"
16 #include "tfm.hh"
17 #include "lily-guile.hh"
18 #include "scm-hash.hh"
19 #include "kpath.hh"
20
21 static const char * default_font_sz_ = "cmr10";
22
23 All_font_metrics::All_font_metrics (String path)
24 {
25   afm_p_dict_ = new Scheme_hash_table;
26   tfm_p_dict_ = new Scheme_hash_table;
27   
28   search_path_.parse_path (path);
29 }
30
31 All_font_metrics::~All_font_metrics ()
32 {
33   scm_unprotect_object (afm_p_dict_->self_scm ());
34   scm_unprotect_object (tfm_p_dict_->self_scm ());
35 }
36
37 Adobe_font_metric *
38 All_font_metrics::find_afm (String name)
39 {
40   SCM sname = ly_symbol2scm (name.ch_C ());
41
42   SCM name_str = ly_str02scm (name.ch_C ());
43
44   SCM val;
45   
46   if (!afm_p_dict_->try_retrieve (sname, &val))
47     {
48       String path;
49
50       if (path.empty_b ())
51         path = search_path_.find (name  + ".afm");
52
53       if (path.empty_b ())
54         {
55           char  * p = ly_find_afm (name.ch_C ());
56           if (p)
57             path = p;
58         }
59
60       if (path.empty_b ())
61         return 0;
62       
63       if (verbose_global_b)
64         progress_indication ("[" + path);
65       val = read_afm_file (path);
66       unsmob_metrics (val)->path_ = path;
67       
68       unsmob_metrics (val)->description_ = gh_cons (name_str, gh_double2scm (1.0));
69
70       if (verbose_global_b)
71         progress_indication ("]");
72
73       afm_p_dict_->set (sname,val);
74
75       scm_unprotect_object (val);
76
77
78       Adobe_font_metric *afm
79         = dynamic_cast<Adobe_font_metric*> (unsmob_metrics (val));
80
81       if (output_format_global == "tex")
82         {
83           Tex_font_metric * tfm = find_tfm (name);
84           
85           /* FIXME: better warning message
86              (maybe check upon startup for feta16.afm, feta16.tfm?)
87           */
88           if (tfm && tfm->info_.checksum != afm->checksum_)
89             {
90               String s = _f ("checksum mismatch for font file: `%s'",
91                              path.ch_C ());
92               s += " " + _f ("does not match: `%s'", tfm->path_.ch_C ()); // FIXME
93               s += "\n";
94               s += " TFM: " + to_str ((int) tfm->info_.checksum);
95               s += " AFM: " + to_str ((int) afm->checksum_);
96               s += "\n";
97               s += _ (" Rebuild all .afm files, and remove all .pk and .tfm files.  Rerun with -V to show font paths.");
98               
99               error (s);
100             }
101         }
102     }
103   
104   return dynamic_cast<Adobe_font_metric*> (unsmob_metrics (val));
105 }
106
107
108 Tex_font_metric *
109 All_font_metrics::find_tfm (String name)
110 {
111   SCM sname = ly_symbol2scm (name.ch_C ());
112   SCM name_str = ly_str02scm (name.ch_C ());
113
114   SCM val;
115   if (!tfm_p_dict_->try_retrieve (sname, &val))
116     {
117       String path;
118       
119       if (path.empty_b ())
120         {
121           char * p = ly_find_tfm (name.ch_C ());
122           if (p)
123             path = p;
124         }
125
126       if (path.empty_b ())
127         path = search_path_.find (name  + ".tfm");
128       if (path.empty_b ())
129         return 0;
130
131       
132       if (verbose_global_b)
133         progress_indication ("[" + path);
134       val = Tex_font_metric::make_tfm (path);
135
136       if (verbose_global_b)
137         progress_indication ("]");
138
139       unsmob_metrics (val)->path_ = path;
140       unsmob_metrics (val)->description_ = gh_cons (name_str, gh_double2scm (1.0));
141       tfm_p_dict_->set (sname, val);
142
143       scm_unprotect_object (val);
144     }
145
146   return
147     dynamic_cast<Tex_font_metric*> (unsmob_metrics (val));
148 }
149
150
151 Font_metric *
152 All_font_metrics::find_font (String name)
153 {
154   Font_metric * f= find_afm (name);
155   if (f)
156     return f;
157
158   f = find_tfm (name);
159   if (f)
160     return f;
161
162   warning (_f ("can't find font: `%s'", name.ch_C ()));
163   warning (_ ("Loading default font"));
164   
165   String def_name = default_font_sz_;
166
167   /*
168     we're in emergency recovery mode here anyway, so don't try to do
169     anything smart that runs the risk of failing.  */
170   f= find_afm (def_name);
171   if (f)
172     return f;
173
174   f =  find_tfm (def_name);
175   if (f)
176     return f;
177
178   error (_f ("can't find default font: `%s'", def_name.ch_C ()));
179   error (_f ("(search path: `%s')", search_path_.str ()));
180   error (_ ("Giving up"));
181
182   return 0;
183 }
184
185