]> git.donarmstrong.com Git - lilypond.git/blob - lily/lily-parser.cc
(parse_symbol_list): Bugfix.
[lilypond.git] / lily / lily-parser.cc
1 /*
2   lily-parser.cc -- implement Lily_parser
3
4   source file of the GNU LilyPond music typesetter
5
6   (c) 1997--2005 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7   Jan Nieuwenhuizen <janneke@gnu.org>
8 */
9
10 #include "lily-parser.hh"
11 #include "text-metrics.hh"
12 #include "book.hh"
13 #include "lilypond-key.hh"
14 #include "lily-version.hh"
15 #include "main.hh"
16 #include "lily-lexer.hh"
17 #include "output-def.hh"
18 #include "paper-book.hh"
19 #include "parser.hh"
20 #include "score.hh"
21 #include "file-name.hh"
22 #include "file-path.hh"
23 #include "source.hh"
24 #include "warn.hh"
25
26 Lily_parser::Lily_parser (Sources *sources)
27 {
28   lexer_ = 0;
29   sources_ = sources;
30   default_duration_ = Duration (2, 0);
31   error_level_ = 0;
32
33   smobify_self ();
34
35   lexer_ = new Lily_lexer (sources_);
36   lexer_->unprotect ();
37 }
38
39 Lily_parser::Lily_parser (Lily_parser const &src)
40 {
41   lexer_ = 0;
42   sources_ = src.sources_;
43   default_duration_ = src.default_duration_;
44   error_level_ = src.error_level_;
45
46   smobify_self ();
47   if (src.lexer_)
48     lexer_ = new Lily_lexer (*src.lexer_);
49
50   lexer_->unprotect ();
51 }
52
53 Lily_parser::~Lily_parser ()
54 {
55 }
56
57 #include "ly-smobs.icc"
58
59 IMPLEMENT_SMOBS (Lily_parser);
60 IMPLEMENT_TYPE_P (Lily_parser, "ly:lily-parser?");
61 IMPLEMENT_DEFAULT_EQUAL_P (Lily_parser);
62
63 SCM
64 Lily_parser::mark_smob (SCM s)
65 {
66   Lily_parser *parser = (Lily_parser *) SCM_CELL_WORD_1 (s);
67   return (parser->lexer_) ? parser->lexer_->self_scm () : SCM_EOL;
68 }
69
70 int
71 Lily_parser::print_smob (SCM s, SCM port, scm_print_state*)
72 {
73   scm_puts ("#<Lily_parser ", port);
74   Lily_parser *parser = (Lily_parser *) SCM_CELL_WORD_1 (s);
75   if (parser->lexer_)
76     scm_display (parser->lexer_->self_scm (), port);
77   else
78     scm_puts ("(no lexer yet)", port);
79   scm_puts (" >", port);
80   return 1;
81 }
82
83 /* Process one .ly file, or book.  */
84 void
85 Lily_parser::parse_file (String init, String name, String out_name)
86 {
87   if (output_backend_global == "tex")
88     {
89       try_load_text_metrics (out_name);
90     }
91
92   // TODO: use $parser 
93   lexer_->set_identifier (ly_symbol2scm ("parser"),
94                           self_scm ());
95   output_basename_ = out_name;
96
97   lexer_->main_input_name_ = name;
98
99   message (_ ("Parsing..."));
100   //  progress_indication ("\n");
101
102   set_yydebug (0);
103
104   lexer_->new_input (init, sources_);
105
106   File_name f (name);
107   String s = global_path.find (f.base_ + ".twy");
108   s = gulp_file_to_string (s, false);
109   scm_eval_string (scm_makfrom0str (s.to_str0 ()));
110
111   /* Read .ly IN_FILE, lex, parse, write \score blocks from IN_FILE to
112      OUT_FILE (unless IN_FILE redefines output file name).  */
113
114   SCM mod = lexer_->set_current_scope ();
115   do_yyparse ();
116
117   /*
118     Don't mix cyclic pointers with weak tables.
119   */
120   lexer_->set_identifier (ly_symbol2scm ("parser"),
121                           SCM_EOL);
122   ly_reexport_module (scm_current_module ());
123
124   scm_set_current_module (mod);
125
126   if (!define_spots_.is_empty ())
127     {
128       define_spots_.top ().warning (_ ("braces don't match"));
129       error_level_ = 1;
130     }
131
132   error_level_ = error_level_ | lexer_->error_level_;
133   lexer_ = 0;
134 }
135
136 void
137 Lily_parser::parse_string (String ly_code)
138 {
139   // TODO: use $parser 
140   lexer_->set_identifier (ly_symbol2scm ("parser"),
141                           self_scm ());
142
143   lexer_->main_input_name_ = "<string>";
144   lexer_->is_main_input_ = true;
145
146   set_yydebug (0);
147   lexer_->new_input (lexer_->main_input_name_, ly_code, sources_);
148
149   SCM mod = lexer_->set_current_scope ();
150   do_yyparse ();
151   scm_set_current_module (mod);
152
153   if (!define_spots_.is_empty ())
154     {
155       if (define_spots_.is_empty ()
156           && !error_level_)
157         programming_error ("define_spots_ don't match, but error_level_ not set.");
158     }
159
160   error_level_ = error_level_ | lexer_->error_level_;
161 }
162
163 char const *
164 Lily_parser::here_str0 () const
165 {
166   return lexer_->here_str0 ();
167 }
168
169 void
170 Lily_parser::parser_error (String s)
171 {
172   lexer_->here_input ().error (_ (s.to_str0 ()));
173   error_level_ = 1;
174 }
175
176 void
177 Lily_parser::parser_error (Input const &i, String s)
178 {
179   i.error (s);
180   error_level_ = 1;
181 }
182
183 /****************************************************************/
184
185 Output_def *
186 get_layout (Lily_parser *parser)
187 {
188   SCM id = parser->lexer_->lookup_identifier ("$defaultlayout");
189   Output_def *layout = unsmob_output_def (id);
190   layout = layout ? layout->clone () : new Output_def;
191   layout->set_variable (ly_symbol2scm ("is-layout"), SCM_BOOL_T);
192
193   return layout;
194 }
195
196 Output_def *
197 get_midi (Lily_parser *parser)
198 {
199   SCM id = parser->lexer_->lookup_identifier ("$defaultmidi");
200   Output_def *layout = unsmob_output_def (id);
201   layout = layout ? layout->clone () : new Output_def;
202   layout->set_variable (ly_symbol2scm ("is-midi"), SCM_BOOL_T);
203   return layout;
204 }
205
206 Output_def *
207 get_paper (Lily_parser *parser)
208 {
209   SCM id = parser->lexer_->lookup_identifier ("$defaultpaper");
210   Output_def *layout = unsmob_output_def (id);
211
212   layout = layout ? dynamic_cast<Output_def *> (layout->clone ()) : new Output_def;
213   layout->set_variable (ly_symbol2scm ("is-paper"), SCM_BOOL_T);
214   return layout;
215 }
216
217 SCM
218 get_header (Lily_parser *parser)
219 {
220   SCM id = parser->lexer_->lookup_identifier ("$defaultheader");
221   if (!ly_is_module (id))
222     id = ly_make_anonymous_module (be_safe_global);
223
224   return id;
225 }