]> git.donarmstrong.com Git - lilypond.git/blob - lily/translator-ctors.cc
Issue 4989/2: Fix Type 1 (PFB) font embedding
[lilypond.git] / lily / translator-ctors.cc
1 /*
2   This file is part of LilyPond, the GNU music typesetter.
3
4   Copyright (C) 1997--2015 Han-Wen Nienhuys <hanwen@xs4all.nl>
5
6   LilyPond is free software: you can redistribute it and/or modify
7   it under the terms of the GNU General Public License as published by
8   the Free Software Foundation, either version 3 of the License, or
9   (at your option) any later version.
10
11   LilyPond is distributed in the hope that it will be useful,
12   but WITHOUT ANY WARRANTY; without even the implied warranty of
13   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14   GNU General Public License for more details.
15
16   You should have received a copy of the GNU General Public License
17   along with LilyPond.  If not, see <http://www.gnu.org/licenses/>.
18 */
19
20 #include "translator.hh"
21
22 #include "international.hh"
23 #include "scm-hash.hh"
24 #include "warn.hh"
25 #include "protected-scm.hh"
26
27 /*
28   should delete these after exit.
29 */
30
31 Protected_scm global_translator_dict;
32
33 LY_DEFINE (get_all_translators, "ly:get-all-translators", 0, 0, 0, (),
34            "Return a list of all translator objects that may be"
35            " instantiated.")
36 {
37   Scheme_hash_table *dict = unsmob<Scheme_hash_table> (global_translator_dict);
38   SCM l = dict ? dict->to_alist () : SCM_EOL;
39
40   for (SCM s = l; scm_is_pair (s); s = scm_cdr (s))
41     scm_set_car_x (s, scm_cdar (s));
42
43   return l;
44 }
45
46 void
47 add_translator (Translator *t)
48 {
49   Scheme_hash_table *dict = unsmob<Scheme_hash_table> (global_translator_dict);
50   if (!dict)
51     {
52       global_translator_dict = Scheme_hash_table::make_smob ();
53       dict = unsmob<Scheme_hash_table> (global_translator_dict);
54     }
55
56   SCM k = ly_symbol2scm (t->class_name ());
57   dict->set (k, t->unprotect ());
58 }
59
60 Translator *
61 get_translator (SCM sym)
62 {
63   SCM v = SCM_BOOL_F;
64   Scheme_hash_table *dict = unsmob<Scheme_hash_table> (global_translator_dict);
65   if (dict)
66     dict->try_retrieve (sym, &v);
67
68   if (scm_is_false (v))
69     {
70       warning (_f ("unknown translator: `%s'", ly_symbol2string (sym).c_str ()));
71       return 0;
72     }
73
74   return unsmob<Translator> (v);
75 }