X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Fmy-lily-parser.cc;h=b2529c270e73eab1b25865f99f2a6085b6ce325f;hb=7aabfb20c46e0a1de41698ddc6859ccd3a6dea85;hp=730a6db3430f9cbfbdc1c768369742de5ede32cd;hpb=d9b43b93f2c885409bafdb157138158f65cc49aa;p=lilypond.git diff --git a/lily/my-lily-parser.cc b/lily/my-lily-parser.cc index 730a6db343..b2529c270e 100644 --- a/lily/my-lily-parser.cc +++ b/lily/my-lily-parser.cc @@ -3,83 +3,80 @@ source file of the GNU LilyPond music typesetter - (c) 1997--2002 Han-Wen Nienhuys + (c) 1997--2003 Han-Wen Nienhuys Jan Nieuwenhuizen */ #include "my-lily-parser.hh" #include "my-lily-lexer.hh" -#include "debug.hh" +#include "warn.hh" #include "main.hh" #include "parser.hh" -#include "file-results.hh" -#include "scope.hh" +#include "input-file-results.hh" +#include "scm-hash.hh" -My_lily_parser::My_lily_parser (Sources * source_l) +My_lily_parser::My_lily_parser (Input_file_results * source) { - source_l_ = source_l; - lexer_p_ = 0; + input_file_ = source; + lexer_ = 0; default_duration_ = Duration (2,0); - error_level_i_ = 0; + error_level_ = 0; last_beam_start_ = SCM_EOL; - default_header_p_ =0; + default_header_ =0; } My_lily_parser::~My_lily_parser () { - delete lexer_p_; - delete default_header_p_; + delete lexer_; + if (default_header_) + scm_gc_unprotect_object (default_header_->self_scm()); } -void -My_lily_parser::set_version_check (bool) -{ -} void My_lily_parser::parse_file (String init, String s) { - lexer_p_ = new My_lily_lexer; + lexer_ = new My_lily_lexer; - lexer_p_->main_input_str_ = s; + lexer_->main_input_string_ = s; progress_indication (_ ("Parsing...")); set_yydebug (0); - lexer_p_->new_input (init, source_l_); + lexer_->new_input (init, &input_file_->sources_); do_yyparse (); progress_indication ("\n"); - if (!define_spot_array_.empty ()) + if (!define_spots_.empty ()) { - define_spot_array_.top ().warning (_ ("Braces don't match")); - error_level_i_ = 1; + define_spots_.top ().warning (_ ("Braces don't match")); + error_level_ = 1; } - inclusion_global_array = lexer_p_->filename_str_arr_; + input_file_->inclusion_names_ = lexer_->filename_strings_; - error_level_i_ = error_level_i_ | lexer_p_->errorlevel_i_; // ugh naming. + error_level_ = error_level_ | lexer_->errorlevel_; // ugh naming. } void My_lily_parser::push_spot () { - define_spot_array_.push (here_input ()); + define_spots_.push (here_input ()); } char const * -My_lily_parser::here_ch_C () const +My_lily_parser::here_str0 () const { - return lexer_p_->here_ch_C (); + return lexer_->here_str0 (); } void My_lily_parser::parser_error (String s) { here_input ().error (s); - error_level_i_ = 1; + error_level_ = 1; exit_status_global = 1; } @@ -88,16 +85,19 @@ My_lily_parser::parser_error (String s) Input My_lily_parser::pop_spot () { - return define_spot_array_.pop (); + return define_spots_.pop (); } Input My_lily_parser::here_input () const { - return lexer_p_->here_input (); + /* + Parsing looks ahead , so we really want the previous location of the + lexer, not lexer_->here_input(). + */ + return lexer_->last_input_; } -// move me? #include "paper-def.hh" #include "translator-def.hh" @@ -110,10 +110,10 @@ My_lily_parser::paper_description () { My_lily_parser * me = current_parser; - Music_output_def *id = unsmob_music_output_def (me->lexer_p_->lookup_identifier ("$defaultpaper")); + Music_output_def *id = unsmob_music_output_def (me->lexer_->lookup_identifier ("$defaultpaper")); Paper_def *p = dynamic_cast (id->clone ()); - SCM al = p->translator_p_dict_p_->to_alist (); + SCM al = p->translator_tab_->to_alist (); SCM l = SCM_EOL; for (SCM s = al ; gh_pair_p (s); s = ly_cdr (s)) {