X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Fmy-lily-lexer.cc;h=82948a3067447e6fe31c043f95d8257895575015;hb=30270f615f32a6b93e7b09bf55d1b8a7d7aad7ca;hp=cdbfd35b785da9624948664f38e721dee9f978dd;hpb=8309cbcd6660ea1f0b35abacbb424ddc4158e448;p=lilypond.git diff --git a/lily/my-lily-lexer.cc b/lily/my-lily-lexer.cc index cdbfd35b78..82948a3067 100644 --- a/lily/my-lily-lexer.cc +++ b/lily/my-lily-lexer.cc @@ -1,138 +1,207 @@ /* my-lily-lexer.cc -- implement My_lily_lexer - source file of the LilyPond music typesetter + source file of the GNU LilyPond music typesetter - (c) 1997 Han-Wen Nienhuys + (c) 1997--1998 Han-Wen Nienhuys */ #include #include - +#include "notename-table.hh" #include "interval.hh" #include "identifier.hh" #include "assoc-iter.hh" -#include "out/parser.hh" +#include "parser.hh" #include "keyword.hh" #include "assoc.hh" #include "my-lily-lexer.hh" #include "debug.hh" #include "source-file.hh" #include "parseconstruct.hh" +#include "main.hh" +#include "scope.hh" static Keyword_ent the_key_tab[]={ - "bar", BAR, - "cadenza", CADENZA, - "clef", CLEF, - "cm", CM_T, - "duration", DURATIONCOMMAND, - "dynamic", DYNAMIC, - "geometric", GEOMETRIC, - "in", IN_T, - "lyrics", LYRICS, - "key", KEY, - "melodic" , MELODIC, - "meter", METER, - "midi", MIDI, - "mm", MM_T, - "multivoice", MULTIVOICE, - "octave", OCTAVECOMMAND, - "output", OUTPUT, - "partial", PARTIAL, - "paper", PAPER, - "plet", PLET, - "pt", PT_T, - "score", SCORE, - "script", SCRIPT, - "skip", SKIP, - "staff", STAFF, - "start", START_T, - "stem", STEM, - "table", TABLE, - "symboltables", SYMBOLTABLES, - "tempo", TEMPO, - "texid", TEXID, - "textstyle", TEXTSTYLE, - "transpose", TRANSPOSE, - "unitspace", UNITSPACE, - "width", WIDTH, - "music", MUSIC, - "grouping", GROUPING, - 0,0 + {"absdynamic", ABSDYNAMIC}, + {"accepts", ACCEPTS}, + {"bar", BAR}, + {"cadenza", CADENZA}, + {"clef", CLEF}, + {"cm", CM_T}, + {"consists", CONSISTS}, + {"duration", DURATION}, + {"font", FONT}, + {"grouping", GROUPING}, + {"header", HEADER}, + {"in", IN_T}, + {"lyrics", LYRICS}, + {"key", KEY}, + {"keysignature", KEYSIGNATURE}, + {"mark", MARK}, + {"musicalpitch", MUSICAL_PITCH}, + {"time", TIME_T}, + {"times", TIMES}, + {"midi", MIDI}, + {"mm", MM_T}, + {"name", NAME}, + {"notenames", NOTENAMES}, + {"notes" , NOTES}, + {"output", OUTPUT}, + {"partial", PARTIAL}, + {"paper", PAPER}, + {"penalty", PENALTY}, + {"property", PROPERTY}, + {"pt", PT_T}, + {"relative", RELATIVE}, + {"remove", REMOVE}, + {"score", SCORE}, + {"script", SCRIPT}, + {"shape", SHAPE}, + {"skip", SKIP}, + {"table", TABLE}, + {"spandynamic", SPANDYNAMIC}, + {"symboltables", SYMBOLTABLES}, + {"tempo", TEMPO}, + {"translator", TRANSLATOR}, + {"type", TYPE}, + {"transpose", TRANSPOSE}, + {"version", VERSION}, + {0,0} }; My_lily_lexer::My_lily_lexer() { - keytable_p_ = new Keyword_table(the_key_tab); - identifier_assoc_p_ = new Assoc; - errorlevel_i_ = 0; - post_quotes_b_ = false; - + keytable_p_ = new Keyword_table (the_key_tab); + toplevel_scope_p_ = new Scope; + scope_l_arr_.push (toplevel_scope_p_); + errorlevel_i_ = 0; + note_tab_p_ = new Notename_table; } int -My_lily_lexer::lookup_keyword(String s) +My_lily_lexer::lookup_keyword (String s) { - return keytable_p_->lookup(s); + return keytable_p_->lookup (s.ch_C ()); } Identifier* -My_lily_lexer::lookup_identifier(String s) +My_lily_lexer::lookup_identifier (String s) { - if (!identifier_assoc_p_->elt_query(s)) - return 0; - - return (*identifier_assoc_p_)[s]; + for (int i = scope_l_arr_.size (); i--; ) + if (scope_l_arr_[i]->elem_b (s)) + return (*scope_l_arr_[i])[s]; + return 0; } +void +My_lily_lexer::start_main_input () +{ + if (!monitor->silent_b ("InitDeclarations") && check_debug) + print_declarations (true); + if (!monitor->silent_b ("InitLexer") && check_debug) + set_debug (1); + + new_input (main_input_str_, source_global_l); + + print_declarations(true); +} void -My_lily_lexer::add_identifier(Identifier*i) +My_lily_lexer::set_identifier (String name_str, Identifier* i, bool unique_b) { - delete lookup_identifier(i->name); - (*identifier_assoc_p_)[i->name] = i; + Identifier *old =0; + if (scope_l_arr_.top ()->elem_b (name_str)) + old = scope_l_arr_.top ()->elem(name_str); + + + if (old) + { +#if 0 + if (unique_b) + old->warning(_f ("redeclaration of `\\%s\'", name_str)); +#endif + delete old; + } + if (lookup_keyword (name_str) >= 0) + { + warning ( _f ("Identifier name is a keyword (`%s')", name_str)); + } + + (*scope_l_arr_.top ())[name_str] = i; } My_lily_lexer::~My_lily_lexer() { - delete keytable_p_; - - for (Assoc_iter - ai(*identifier_assoc_p_); ai.ok(); ai++) { - mtor << "deleting: " << ai.key()<<'\n'; - Identifier *i_p = ai.val(); - if (!i_p->accessed_b_ && !i_p->init_b_) - warning("Variable not used", i_p->defined_ch_C_); - - delete ai.val(); - } - delete identifier_assoc_p_; + delete keytable_p_; + delete toplevel_scope_p_ ; + delete note_tab_p_; } + void -My_lily_lexer::print_declarations(bool init_b)const +My_lily_lexer::print_declarations (bool init_b) const { - for (Assoc_iter ai(*identifier_assoc_p_); ai.ok(); - ai++) { - if (ai.val()->init_b_ == init_b) - ai.val()->print(); + for (int i=scope_l_arr_.size (); i--; ) + { + DOUT << "Scope no. " << i << '\n'; + scope_l_arr_[i]->print (); } } void -My_lily_lexer::LexerError(char const *s) +My_lily_lexer::LexerError (char const *s) { - if (include_stack_.empty()) { - *mlog << "error at EOF" << s << '\n'; - } else { - char const* ch_C = here_ch_C(); - if ( ch_C ) { - ch_C--; - while (isspace(*ch_C == ' ' )) - ch_C--; - ch_C++; - } - errorlevel_i_ |= 1; - error( s, ch_C ); + if (include_stack_.empty()) + { + *mlog << _f ("error at EOF: %s", s) << endl; + } + else + { + errorlevel_i_ |= 1; + Input spot (source_file_l(),here_ch_C()); + spot.error (s); } } +Musical_pitch +My_lily_lexer::lookup_pitch (String s) +{ + return (*note_tab_p_)[s]; +} + +bool +My_lily_lexer::notename_b (String s) const +{ + return note_tab_p_->elem_b (s); +} + +void +My_lily_lexer::add_notename (String s, Musical_pitch p) +{ + (*note_tab_p_)[s] = p; +} + +void +My_lily_lexer::set_notename_table(Notename_table *p) +{ + delete note_tab_p_; + note_tab_p_ = p; +} + +char +My_lily_lexer::escaped_char(char c) const +{ + switch(c) + { + case 'n': + return '\n'; + case 't': + return '\t'; + + case '\'': + case '\"': + case '\\': + return c; + } + return 0; +}