]> git.donarmstrong.com Git - lilypond.git/blob - lily/lily-parser.cc
(DECLARE_BASE_SMOBS): add methods
[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
125     scm_set_current_module (mod);
126  
127   if (!define_spots_.is_empty ())
128     {
129       define_spots_.top ().warning (_ ("braces don't match"));
130       error_level_ = 1;
131     }
132
133   error_level_ = error_level_ | lexer_->error_level_;
134   lexer_ = 0;
135 }
136
137 void
138 Lily_parser::parse_string (String ly_code)
139 {
140    // TODO: use $parser 
141   lexer_->set_identifier (ly_symbol2scm ("parser"),
142                           self_scm ());
143   
144   lexer_->main_input_name_ = "<string>";
145   lexer_->is_main_input_ = true;
146
147   set_yydebug (0);
148   lexer_->new_input (lexer_->main_input_name_, ly_code, sources_);
149
150   SCM mod = lexer_->set_current_scope ();
151   do_yyparse ();
152   scm_set_current_module (mod);
153   
154   if (!define_spots_.is_empty ())
155     {
156       if (define_spots_.is_empty ()
157           && !error_level_)
158         programming_error ("define_spots_ don't match, but error_level_ not set.");
159     }
160
161   error_level_ = error_level_ | lexer_->error_level_;
162 }
163
164 char const *
165 Lily_parser::here_str0 () const
166 {
167   return lexer_->here_str0 ();
168 }
169
170 void
171 Lily_parser::parser_error (String s)
172 {
173   lexer_->here_input ().error (_ (s.to_str0 ()));
174   error_level_ = 1;
175 }
176
177 void
178 Lily_parser::parser_error (Input const &i, String s)
179 {
180   i.error (s);
181   error_level_ = 1;
182 }
183
184 /****************************************************************/
185
186 Output_def *
187 get_layout (Lily_parser *parser)
188 {
189   SCM id = parser->lexer_->lookup_identifier ("$defaultlayout");
190   Output_def *layout = unsmob_output_def (id);
191   layout = layout ? layout->clone () : new Output_def;
192   layout->set_variable (ly_symbol2scm ("is-layout"), SCM_BOOL_T);
193
194   return layout;
195 }
196
197 Output_def *
198 get_midi (Lily_parser *parser)
199 {
200   SCM id = parser->lexer_->lookup_identifier ("$defaultmidi");
201   Output_def *layout = unsmob_output_def (id);
202   layout = layout ? layout->clone () : new Output_def;
203   layout->set_variable (ly_symbol2scm ("is-midi"), SCM_BOOL_T);
204   return layout;
205 }
206
207 Output_def *
208 get_paper (Lily_parser *parser)
209 {
210   SCM id = parser->lexer_->lookup_identifier ("$defaultpaper");
211   Output_def *layout = unsmob_output_def (id);
212
213   layout = layout ? dynamic_cast<Output_def *> (layout->clone ()) : new Output_def;
214   layout->set_variable (ly_symbol2scm ("is-paper"), SCM_BOOL_T);
215   return layout;
216 }
217