]> git.donarmstrong.com Git - lilypond.git/blob - lily/translator-ctors.cc
Doc: CG - removed information about test-patchy
[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 Scheme_hash_table *global_translator_dict = 0;
32 Protected_scm global_translator_dict_scm;
33
34 LY_DEFINE (get_all_translators, "ly:get-all-translators", 0, 0, 0, (),
35            "Return a list of all translator objects that may be"
36            " instantiated.")
37 {
38   SCM l = global_translator_dict ? global_translator_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   if (!global_translator_dict)
50     {
51       global_translator_dict = new Scheme_hash_table;
52       global_translator_dict_scm = global_translator_dict->unprotect ();
53     }
54
55   SCM k = ly_symbol2scm (t->class_name ());
56   global_translator_dict->set (k, t->unprotect ());
57 }
58
59 Translator *
60 get_translator (SCM sym)
61 {
62   SCM v = SCM_BOOL_F;
63   if (global_translator_dict)
64     global_translator_dict->try_retrieve (sym, &v);
65
66   if (scm_is_false (v))
67     {
68       warning (_f ("unknown translator: `%s'", ly_symbol2string (sym).c_str ()));
69       return 0;
70     }
71
72   return unsmob<Translator> (v);
73 }
74