]> git.donarmstrong.com Git - lilypond.git/blob - lily/all-font-metrics.cc
release: 1.3.115
[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--2000 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
22
23
24
25 const char * default_font_sz_ = "cmr10";
26
27 All_font_metrics::All_font_metrics (String path)
28 {
29   afm_p_dict_ = new Scheme_hash_table;
30   tfm_p_dict_ = new Scheme_hash_table;
31   
32   search_path_.parse_path (path);
33 }
34
35 All_font_metrics::~All_font_metrics ()
36 {
37   scm_unprotect_object (afm_p_dict_->self_scm ());
38   scm_unprotect_object (tfm_p_dict_->self_scm ());
39 }
40
41 Adobe_font_metric *
42 All_font_metrics::find_afm (String name)
43 {
44   SCM sname = ly_symbol2scm (name.ch_C ());
45
46   SCM name_str = ly_str02scm (name.ch_C ());
47
48   SCM val;
49   
50   if (!afm_p_dict_->try_retrieve  (sname, &val))
51     {
52       String path;
53
54       if (path.empty_b())
55         path = search_path_.find (name  + ".afm");
56
57       if (path.empty_b ())
58         {
59           char  * p = ly_find_afm (name.ch_C());
60           if (p)
61             path = p;
62         }
63
64       if (path.empty_b())
65         return 0;
66       
67       if (verbose_global_b)
68         progress_indication ("[" + path);
69       val = read_afm_file (path);
70
71       unsmob_metrics (val)->description_ = gh_cons (name_str, gh_double2scm (1.0));
72
73       if (verbose_global_b)
74         progress_indication ("]");
75
76       afm_p_dict_->set (sname,val);
77
78       scm_unprotect_object (val);
79
80
81       Adobe_font_metric *afm
82         = dynamic_cast<Adobe_font_metric*> (unsmob_metrics (val) );
83       Tex_font_metric * tfm = find_tfm (name);
84
85       if (tfm->info_.checksum != afm->checksum_)
86         {
87           String s = _f("Font checksum mismatch for font file `%s'", path.ch_C());
88           s+= "\n";
89           s += " TFM: " + to_str ((int) tfm->info_.checksum);
90           s += " AFM: " + to_str ((int) afm->checksum_);
91           s += "\n";
92           s += _(" Rebuild all AFM files, and remove all .pk and .tfm files. Rerun with -V to show font paths.");
93
94           error (s);
95         }
96     }
97   
98   return dynamic_cast<Adobe_font_metric*> (unsmob_metrics (val));
99 }
100
101
102 Tex_font_metric *
103 All_font_metrics::find_tfm (String name)
104 {
105   SCM sname = ly_symbol2scm (name.ch_C ());
106   SCM name_str = ly_str02scm (name.ch_C ());
107
108   SCM val;
109   if (!tfm_p_dict_->try_retrieve (sname, &val))
110     {
111       String path;
112       
113       if (path.empty_b())
114         {
115           char * p = ly_find_tfm (name.ch_C());
116           if (p)
117             path = p;
118         }
119
120       if (path.empty_b())
121         path = search_path_.find (name  + ".tfm");
122       if (path.empty_b())
123         return 0;
124
125       if (verbose_global_b)
126         progress_indication ("[" + path);
127       val = Tex_font_metric::make_tfm (path);
128       if (verbose_global_b)
129         progress_indication ("]");
130
131       unsmob_metrics (val)->description_ = gh_cons (name_str, gh_double2scm (1.0));
132       tfm_p_dict_->set (sname, val);
133
134       scm_unprotect_object (val);
135     }
136     
137   return
138     dynamic_cast<Tex_font_metric*> (unsmob_metrics (val));
139 }
140
141
142 Font_metric *
143 All_font_metrics::find_font (String name)
144 {
145   Font_metric * f= find_afm (name);
146   if (f)
147     return f;
148
149   f = find_tfm (name);
150   if (f)
151     return f;
152
153   warning (_f ("can't find font: `%s'", name.ch_C ()));
154   warning (_ ("Loading default font"));
155   
156   String def_name = default_font_sz_;
157   SCM l = scm_assoc (ly_str02scm ("default"),
158                      scm_eval2 (ly_symbol2scm ("cmr-alist"), SCM_EOL));
159   
160   if (l != SCM_BOOL_F)
161     def_name = ly_scm2string (gh_cdr (l));
162
163   f= find_afm (def_name);
164   if (f)
165     return f;
166
167   f =  find_tfm (def_name);
168   if (f)
169     return f;
170
171   error (_f ("can't find default font: `%s'", def_name.ch_C ()));
172   error (_f ("(search path: `%s')", search_path_.str ()));
173   error (_ ("Giving up"));
174
175   return 0;
176 }
177
178