]> git.donarmstrong.com Git - lilypond.git/blob - lily/my-lily-lexer.cc
release: 0.0.49
[lilypond.git] / lily / my-lily-lexer.cc
1 /*
2   my-lily-lexer.cc -- implement My_lily_lexer
3
4   source file of the LilyPond music typesetter
5
6   (c) 1997 Han-Wen Nienhuys <hanwen@stack.nl>
7 */
8
9 #include <strstream.h>
10 #include <ctype.h>
11 #include "notename-table.hh"
12 #include "interval.hh"
13 #include "identifier.hh"
14 #include "assoc-iter.hh"
15 #include "parser.hh"
16 #include "keyword.hh"
17 #include "assoc.hh"
18 #include "my-lily-lexer.hh"
19 #include "debug.hh"
20 #include "source-file.hh"
21 #include "parseconstruct.hh"
22
23 static Keyword_ent the_key_tab[]={
24     {"bar", BAR},
25     {"cadenza", CADENZA},
26     {"clear", CLEAR},
27     {"clef", CLEF},
28     {"cm", CM_T},
29     {"duration", DURATIONCOMMAND},
30     {"absdynamic", ABSDYNAMIC},
31     {"group", GROUP},
32     {"geometric", GEOMETRIC},
33     {"in", IN_T},
34     {"inputregister", INPUT_REGS},
35     {"lyric", LYRIC},
36     {"key", KEY},
37     {"melodic" , MELODIC},
38     {"melodic_request", MELODIC_REQUEST},
39     {"meter", METER},
40     {"midi", MIDI},
41     {"mm", MM_T},
42     {"multivoice", MULTIVOICE},
43     {"note", NOTE},
44     {"notenames", NOTENAMES},
45     {"octave", OCTAVECOMMAND},
46     {"output", OUTPUT},
47     {"partial", PARTIAL},
48     {"paper", PAPER},
49     {"plet", PLET},
50     {"pt", PT_T},
51     {"score", SCORE},
52     {"script", SCRIPT},
53     {"skip", SKIP},
54     {"staff", STAFF},
55     {"start", START_T},
56     {"stem", STEM},
57     {"table", TABLE},
58     {"spandynamic", SPANDYNAMIC}, 
59     {"symboltables", SYMBOLTABLES},
60     {"tempo", TEMPO},
61     {"texid", TEXID},
62     {"textstyle", TEXTSTYLE},
63     {"transpose", TRANSPOSE},
64     {"unitspace", UNITSPACE},
65     {"width", WIDTH},
66     {"grouping", GROUPING},
67     {0,0}
68 };
69
70 My_lily_lexer::My_lily_lexer()
71 {
72     keytable_p_ = new Keyword_table(the_key_tab);
73     identifier_assoc_p_ = new Assoc<String, Identifier*>;
74     errorlevel_i_ = 0;
75     post_quotes_b_ = false;
76     note_tab_p_ = new Notename_table;
77 }
78
79 int
80 My_lily_lexer::lookup_keyword(String s)
81 {
82     return keytable_p_->lookup(s);
83 }
84
85 Identifier*
86 My_lily_lexer::lookup_identifier(String s)
87 {
88     if (!identifier_assoc_p_->elt_b(s))
89         return 0;
90     
91     return (*identifier_assoc_p_)[s];
92 }
93
94
95 void
96 My_lily_lexer::add_identifier(Identifier*i)
97 {
98     delete lookup_identifier(i->name_str_);
99     (*identifier_assoc_p_)[i->name_str_] = i;
100 }
101
102 My_lily_lexer::~My_lily_lexer()
103 {
104     delete keytable_p_;
105
106     for (Assoc_iter<String,Identifier*>
107              ai(*identifier_assoc_p_); ai.ok(); ai++) {
108         mtor << "deleting: " << ai.key()<<'\n';
109         delete ai.val();
110     }
111     delete note_tab_p_;
112     delete identifier_assoc_p_;
113 }
114 void
115 My_lily_lexer::print_declarations(bool init_b)const
116 {
117     for (Assoc_iter<String,Identifier*> ai(*identifier_assoc_p_); ai.ok(); 
118          ai++) {
119         if (ai.val()->init_b_ == init_b)
120             ai.val()->print();
121     }
122 }
123
124 void
125 My_lily_lexer::LexerError(char const *s)
126 {
127     if (include_stack_.empty()) {
128         *mlog << "error at EOF" << s << '\n';
129     } else {
130         errorlevel_i_ |= 1;
131  
132         Input spot(source_file_l(),here_ch_C());
133
134         spot.error( s );
135     }
136 }
137
138 Melodic_req*
139 My_lily_lexer::lookup_melodic_req_l(String s)
140 {
141     return note_tab_p_->get_l(s);
142 }
143
144 void
145 My_lily_lexer::add_notename(String s, Melodic_req *p)
146 {
147     note_tab_p_->add(s,p);
148 }
149
150 void
151 My_lily_lexer::clear_notenames()
152 {
153     delete note_tab_p_;
154     note_tab_p_ = new Notename_table;
155 }