]> git.donarmstrong.com Git - lilypond.git/blob - lily/function-documentation.cc
Issue 4550 (1/2) Avoid "using namespace std;" in included files
[lilypond.git] / lily / function-documentation.cc
1 /*
2   This file is part of LilyPond, the GNU music typesetter.
3
4   Copyright (C) 2004--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 <cstring>
21 #include <map>
22 using namespace std;
23
24 #include "std-string.hh"
25 #include "lily-guile.hh"
26 #include "warn.hh"
27
28 /* type predicates. */
29 #include "global-context.hh"
30 #include "input.hh"
31 #include "item.hh"
32 #include "music.hh"
33 #include "music-function.hh"
34 #include "paper-score.hh"
35 #include "performance.hh"
36 #include "spanner.hh"
37 #include "stream-event.hh"
38 #include "unpure-pure-container.hh"
39
40 using std::map;
41 using std::string;
42
43 static SCM doc_hash_table;
44
45 void
46 ly_check_name (const string &cxx, const string &scm_name)
47 {
48   string mangle = mangle_cxx_identifier (cxx);
49   if (mangle != scm_name)
50     {
51       programming_error ("wrong cxx name: " + mangle + ", " + cxx + ", " + scm_name);
52     }
53 }
54
55 void
56 ly_add_function_documentation (SCM func,
57                                const string &fname,
58                                const string &varlist,
59                                const string &doc)
60 {
61   if (doc == "")
62     return;
63
64   if (!doc_hash_table)
65     doc_hash_table = scm_permanent_object (scm_c_make_hash_table (59));
66
67   string s = string (" - ") + "LilyPond procedure: " + fname + " " + varlist
68              + "\n" + doc;
69
70   scm_set_procedure_property_x (func, ly_symbol2scm ("documentation"),
71                                 ly_string2scm (s));
72   SCM entry = scm_cons (ly_string2scm (varlist), ly_string2scm (doc));
73   scm_hashq_set_x (doc_hash_table, ly_symbol2scm (fname.c_str ()), entry);
74 }
75
76 LY_DEFINE (ly_get_all_function_documentation, "ly:get-all-function-documentation",
77            0, 0, 0, (),
78            "Get a hash table with all LilyPond Scheme extension functions.")
79 {
80   return doc_hash_table;
81 }
82
83 map<void *, string> type_names;
84
85 void
86 ly_add_type_predicate (void *ptr,
87                        const string &name)
88 {
89   type_names[ptr] = name;
90 }
91
92 string
93 predicate_to_typename (void *ptr)
94 {
95   if (type_names.find (ptr) == type_names.end ())
96     {
97       programming_error ("Unknown type predicate");
98       return "unknown type";
99     }
100   else
101     return type_names[ptr];
102 }
103
104 void
105 init_func_doc ()
106 {
107   ly_add_type_predicate ((void *) &is_direction, "direction");
108   ly_add_type_predicate ((void *) &ly_is_port, "port");
109   ly_add_type_predicate ((void *) &ly_cheap_is_list, "list");
110   ly_add_type_predicate ((void *) &unsmob<Global_context>, "Global_context");
111   ly_add_type_predicate ((void *) &unsmob<Paper_score>, "Paper_score");
112   ly_add_type_predicate ((void *) &unsmob<Performance>, "Performance");
113   ly_add_type_predicate ((void *) &is_axis, "axis");
114   ly_add_type_predicate ((void *) &is_number_pair, "number pair");
115   ly_add_type_predicate ((void *) &ly_is_list, "list");
116   ly_add_type_predicate ((void *) &ly_is_procedure, "procedure");
117   ly_add_type_predicate ((void *) &ly_is_symbol, "symbol");
118   ly_add_type_predicate ((void *) &scm_is_bool, "boolean");
119   ly_add_type_predicate ((void *) &scm_is_integer, "integer");
120   ly_add_type_predicate ((void *) &scm_is_number, "number");
121   ly_add_type_predicate ((void *) &scm_is_pair, "pair");
122   ly_add_type_predicate ((void *) &scm_is_rational, "rational");
123   ly_add_type_predicate ((void *) &scm_is_string, "string");
124   ly_add_type_predicate ((void *) &scm_is_vector, "vector");
125   ly_add_type_predicate ((void *) &unsmob<Item>, "Item");
126   ly_add_type_predicate ((void *) &unsmob<Music>, "Music");
127   ly_add_type_predicate ((void *) &unsmob<Spanner>, "Spanner");
128   ly_add_type_predicate ((void *) &unsmob<Stream_event>, "Stream_event");
129 }
130
131 ADD_SCM_INIT_FUNC (func_doc, init_func_doc);