2 my-lily-lexer.cc -- implement My_lily_lexer
4 source file of the GNU LilyPond music typesetter
6 (c) 1997--2001 Han-Wen Nienhuys <hanwen@cs.uu.nl>
12 #include "lily-proto.hh"
13 #include "scm-hash.hh"
14 #include "interval.hh"
16 #include "lily-guile.hh"
19 #include "my-lily-lexer.hh"
21 #include "source-file.hh"
27 static Keyword_ent the_key_tab
[]={
30 {"arpeggio", ARPEGGIO
},
31 {"autochange", AUTOCHANGE
},
32 {"spanrequest", SPANREQUEST
},
33 {"commandspanrequest", COMMANDSPANREQUEST
},
34 {"simultaneous", SIMULTANEOUS
},
35 {"sequential", SEQUENTIAL
},
37 {"alternative", ALTERNATIVE
},
41 {"chordmodifiers", CHORDMODIFIERS
},
45 {"consists", CONSISTS
},
46 {"consistsend", CONSISTSEND
},
50 {"duration", DURATION
},
51 {"dynamicscript", DYNAMICSCRIPT
},
52 {"elementdescriptions", ELEMENTDESCRIPTIONS
},
56 {"glissando", GLISSANDO
},
68 {"pitchnames", PITCHNAMES
},
70 {"outputproperty", OUTPUTPROPERTY
},
71 {"override", OVERRIDE
},
77 {"property", PROPERTY
},
79 {"relative", RELATIVE
},
82 {"addlyrics", ADDLYRICS
},
83 {"partcombine", PARTCOMBINE
},
86 {"stylesheet", STYLESHEET
},
89 {"translator", TRANSLATOR
},
90 {"transpose", TRANSPOSE
},
96 My_lily_lexer::My_lily_lexer ()
98 keytable_p_
= new Keyword_table (the_key_tab
);
99 toplevel_variable_tab_
= new Scheme_hash_table
;
100 scope_p_
= new Scope (toplevel_variable_tab_
);
102 scope_l_arr_
.push (scope_p_
);
105 main_input_b_
= false;
109 My_lily_lexer::lookup_keyword (String s
)
111 return keytable_p_
->lookup (s
.ch_C ());
115 My_lily_lexer::lookup_identifier (String s
)
117 SCM sym
= ly_symbol2scm (s
.ch_C ());
119 for (int i
= scope_l_arr_
.size (); i
--;)
121 SCM val
= SCM_UNSPECIFIED
;
122 if (scope_l_arr_
[i
]->try_retrieve (sym
, &val
))
125 return SCM_UNSPECIFIED
;
129 My_lily_lexer::start_main_input ()
131 new_input (main_input_str_
, source_global_l
);
132 allow_includes_b_
= allow_includes_b_
&& ! (safe_global_b
);
136 My_lily_lexer::set_identifier (String name_str
, SCM s
)
138 if (lookup_keyword (name_str
) >= 0)
140 warning (_f ("Identifier name is a keyword: `%s'", name_str
));
143 scope_l_arr_
.top ()->set (name_str
, s
);
146 My_lily_lexer::~My_lily_lexer ()
149 scm_gc_unprotect_object (toplevel_variable_tab_
->self_scm ());
156 My_lily_lexer::LexerError (char const *s
)
158 if (include_stack_
.empty ())
160 progress_indication (_f ("error at EOF: %s", s
)+ String ("\n"));
165 Input
spot (source_file_l (),here_ch_C ());
171 My_lily_lexer::escaped_char (char c
) const
189 My_lily_lexer::here_input () const
191 Source_file
* f_l
= source_file_l ();
192 return Input (f_l
, (char*)here_ch_C ());