]> git.donarmstrong.com Git - lilypond.git/blob - lily/my-lily-lexer.cc
release: 1.3.39
[lilypond.git] / lily / my-lily-lexer.cc
1 /*
2   my-lily-lexer.cc -- implement My_lily_lexer
3
4   source file of the GNU LilyPond music typesetter
5
6   (c)  1997--2000 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7 */
8
9 #include <strstream.h>
10 #include <ctype.h>
11
12 #include "interval.hh"
13 #include "identifier.hh"
14 #include "lily-guile.hh"
15 #include "parser.hh"
16 #include "keyword.hh"
17 #include "my-lily-lexer.hh"
18 #include "debug.hh"
19 #include "source-file.hh"
20 #include "main.hh"
21 #include "scope.hh"
22 #include "input.hh"
23 #include "moment.hh"
24
25 static Keyword_ent the_key_tab[]={
26   {"autochange", AUTOCHANGE},
27   {"spanrequest", SPANREQUEST},
28   {"commandspanrequest", COMMANDSPANREQUEST},  
29   {"simultaneous", SIMULTANEOUS},
30   {"sequential", SEQUENTIAL},
31   {"accepts", ACCEPTS},
32   {"alternative", ALTERNATIVE},
33   {"bar", BAR},
34   {"breathe", BREATHE},
35   {"char", CHAR_T},
36   {"chordmodifiers", CHORDMODIFIERS},
37   {"chords", CHORDS},
38   {"clef", CLEF},
39   {"cm", CM_T},
40   {"consists", CONSISTS},
41   {"consistsend", CONSISTSEND},
42   {"context", CONTEXT},
43   {"duration", DURATION},
44   {"font", FONT},
45   {"grace", GRACE},
46   {"header", HEADER},
47   {"in", IN_T},
48   {"lyrics", LYRICS},
49   {"key", KEY},
50   {"keysignature", KEYSIGNATURE},
51   {"mark", MARK},
52   {"musicalpitch", MUSICAL_PITCH},
53   {"time", TIME_T},
54   {"times", TIMES},
55   {"midi", MIDI},
56   {"mm", MM_T},
57   {"name", NAME},
58   {"notenames", NOTENAMES},
59   {"notes", NOTES},
60   {"outputproperty", OUTPUTPROPERTY},
61   {"partial", PARTIAL},
62   {"paper", PAPER},
63   {"penalty", PENALTY},
64   {"property", PROPERTY},
65   {"pt", PT_T},
66   {"relative", RELATIVE},
67   {"remove", REMOVE},
68   {"repeat", REPEAT},
69   {"repetitions", REPETITIONS},
70   {"addlyrics", ADDLYRICS},
71   {"score", SCORE},
72   {"script", SCRIPT},
73   {"skip", SKIP},
74   {"textscript", TEXTSCRIPT},
75   {"tempo", TEMPO},
76   {"translator", TRANSLATOR},
77   {"transpose", TRANSPOSE},
78   {"type", TYPE},
79   {0,0}
80 };
81
82 My_lily_lexer::My_lily_lexer()
83 {
84   keytable_p_ = new Keyword_table (the_key_tab);
85   toplevel_scope_p_ = new Scope;
86   scope_l_arr_.push (toplevel_scope_p_);
87   errorlevel_i_ = 0;
88   main_input_b_ = false;
89 }
90
91 int
92 My_lily_lexer::lookup_keyword (String s)
93 {
94   return keytable_p_->lookup (s.ch_C ());
95 }
96
97 Identifier*
98 My_lily_lexer::lookup_identifier (String s)
99 {
100   SCM sym = ly_symbol2scm (s.ch_C());
101   
102   for (int i = scope_l_arr_.size (); i--; )
103     if (scope_l_arr_[i]->elem_b (sym))
104       return scope_l_arr_[i]->elem(sym);
105   return 0;
106 }
107
108 void
109 My_lily_lexer::start_main_input ()
110 {  
111   new_input (main_input_str_, source_global_l);
112   allow_includes_b_ = allow_includes_b_ &&  !(safe_global_b);
113 }
114
115 void
116 My_lily_lexer::set_identifier (String name_str, Identifier* i, bool )
117 {
118   Identifier *old =0;
119   if (scope_l_arr_.top ()->elem_b (name_str))
120     old = scope_l_arr_.top ()->elem(name_str);
121  
122    
123   if  (old)
124     {
125       delete old;
126     }
127   if (lookup_keyword (name_str) >= 0)
128     {
129       warning (  _f ("Identifier name is a keyword: `%s'", name_str));
130     }
131   
132   scope_l_arr_.top ()->elem (name_str) = i;
133 }
134
135 My_lily_lexer::~My_lily_lexer()
136 {
137   delete keytable_p_;
138   delete toplevel_scope_p_ ;
139 }
140
141
142
143 void
144 My_lily_lexer::LexerError (char const *s)
145 {
146   if (include_stack_.empty())
147     {
148       progress_indication (_f ("error at EOF: %s", s)+ String ("\n"));
149     }
150   else
151     {
152       errorlevel_i_ |= 1;
153       Input spot (source_file_l(),here_ch_C());
154       spot.error (s);
155     }
156 }
157
158 char
159 My_lily_lexer::escaped_char(char c) const
160 {
161   switch(c)
162     {
163     case 'n':
164       return '\n';
165     case 't':
166       return '\t';
167
168     case '\'':
169     case '\"':
170     case '\\':
171       return c;
172     }
173   return 0;
174 }
175
176 Input
177 My_lily_lexer::here_input () const
178 {
179   Source_file * f_l= source_file_l ();
180   return Input (f_l, (char*)here_ch_C ());
181 }