]> git.donarmstrong.com Git - lilypond.git/blob - lily/all-font-metrics.cc
Coverage fixes.
[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--2006 Han-Wen Nienhuys <hanwen@xs4all.nl>
7 */
8
9 #include "all-font-metrics.hh"
10
11 #include "international.hh"
12 #include "main.hh"
13 #include "open-type-font.hh"
14 #include "pango-font.hh"
15 #include "scm-hash.hh"
16 #include "warn.hh"
17
18
19 Index_to_charcode_map const *
20 All_font_metrics::get_index_to_charcode_map (string filename, FT_Face face)
21 {
22   if (filename_charcode_maps_map_.find (filename)
23       == filename_charcode_maps_map_.end ())
24     filename_charcode_maps_map_[filename] = make_index_to_charcode_map (face);
25
26   return &filename_charcode_maps_map_[filename];
27 }
28
29
30 All_font_metrics::All_font_metrics (string path)
31 {
32   otf_dict_ = new Scheme_hash_table;
33
34 #if HAVE_PANGO_FT2
35   PangoFontMap *pfm = pango_ft2_font_map_new ();
36
37   pango_ft2_fontmap_
38     = G_TYPE_CHECK_INSTANCE_CAST (pfm,
39                                   PANGO_TYPE_FT2_FONT_MAP,
40                                   PangoFT2FontMap);
41   pango_dpi_ = 1200;
42   pango_ft2_font_map_set_resolution (pango_ft2_fontmap_,
43                                      pango_dpi_, pango_dpi_);
44
45   pango_dict_ = new Scheme_hash_table;
46 #endif
47
48   search_path_.parse_path (path);
49 }
50
51 All_font_metrics::~All_font_metrics ()
52 {
53   otf_dict_->unprotect ();
54
55 #if HAVE_PANGO_FT2
56   pango_dict_->unprotect ();
57   g_object_unref (pango_ft2_fontmap_);
58 #endif
59 }
60
61 All_font_metrics::All_font_metrics (All_font_metrics const &)
62 {
63 }
64
65 #if HAVE_PANGO_FT2
66
67 Pango_font *
68 All_font_metrics::find_pango_font (PangoFontDescription *description,
69                                    Real magnification,
70                                    Real output_scale
71                                    )
72 {
73   pango_font_description_set_size (description,
74                                    gint (magnification *
75                                          pango_font_description_get_size (description)));
76
77   gchar *pango_fn = pango_font_description_to_filename (description);
78   SCM key = ly_symbol2scm (pango_fn);
79
80   SCM val;
81   if (!pango_dict_->try_retrieve (key, &val))
82     {
83       if (be_verbose_global)
84         progress_indication ("[" + string (pango_fn));
85
86       Pango_font *pf = new Pango_font (pango_ft2_fontmap_,
87                                        description,
88                                        output_scale
89                                        );
90       
91       val = pf->self_scm ();
92       pango_dict_->set (key, val);
93       pf->unprotect ();
94
95       if (be_verbose_global)
96         progress_indication ("]");
97
98       pf->description_ = scm_cons (SCM_BOOL_F,
99                                    scm_from_double (1.0));
100     }
101   g_free (pango_fn);
102   return dynamic_cast<Pango_font *> (unsmob_metrics (val));
103 }
104
105 #endif
106
107
108 Open_type_font *
109 All_font_metrics::find_otf (string name)
110 {
111   SCM sname = ly_symbol2scm (name.c_str ());
112   SCM name_string = scm_makfrom0str (name.c_str ());
113   SCM val;
114   if (!otf_dict_->try_retrieve (sname, &val))
115     {
116       string file_name;
117
118       if (file_name.empty ())
119         file_name = search_path_.find (name + ".otf");
120       if (file_name.empty ())
121         return 0;
122
123       if (be_verbose_global)
124         progress_indication ("[" + file_name);
125
126       val = Open_type_font::make_otf (file_name);
127
128       if (be_verbose_global)
129         progress_indication ("]");
130
131       unsmob_metrics (val)->file_name_ = file_name;
132       unsmob_metrics (val)->description_ = scm_cons (name_string,
133                                                      scm_from_double (1.0));
134       otf_dict_->set (sname, val);
135       unsmob_metrics (val)->unprotect ();
136     }
137
138   return dynamic_cast<Open_type_font *> (unsmob_metrics (val));
139 }
140
141 Font_metric *
142 All_font_metrics::find_font (string name)
143 {
144   Font_metric *f = find_otf (name);
145
146   if (!f)
147     {
148       error (_f ("cannot find font: `%s'", name.c_str ()));
149     }
150
151   return f;
152 }
153
154 All_font_metrics *all_fonts_global;
155
156 LY_DEFINE (ly_reset_all_fonts, "ly:reset-all-fonts", 0, 0, 0,
157            (),
158            "Forget all about previously loaded fonts. ")
159 {
160   delete all_fonts_global;
161   all_fonts_global = new All_font_metrics (global_path.to_string ());
162
163   return SCM_UNSPECIFIED;
164 }
165
166
167 LY_DEFINE (ly_font_load, "ly:font-load", 1, 0, 0,
168            (SCM name),
169            "Load the font @var{name}. ")
170 {
171   SCM_ASSERT_TYPE (scm_is_string (name), name, SCM_ARG1, __FUNCTION__, "string");
172
173   Font_metric *fm = all_fonts_global->find_font (ly_scm2string (name));
174
175   return fm->self_scm ();
176 }
177
178