]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/my-lily-lexer.cc
* lily/include/my-lily-parser.hh: rename My_lily -> Lily
[lilypond.git] / lily / my-lily-lexer.cc
index cc3e5df35148a2396d6a60f3b28208c06be9497d..4a3587422a5c6b44b850961b0862799f3164886d 100644 (file)
@@ -1,9 +1,9 @@
 /*
-  my-lily-lexer.cc -- implement My_lily_lexer
+  my-lily-lexer.cc -- implement Lily_lexer
 
   source file of the GNU LilyPond music typesetter
 
-  (c)  1997--2002 Han-Wen Nienhuys <hanwen@cs.uu.nl>
+  (c) 1997--2004 Han-Wen Nienhuys <hanwen@cs.uu.nl>
 */
 
 #include <ctype.h>
@@ -12,7 +12,6 @@
 #include "lily-proto.hh"
 #include "scm-hash.hh"
 #include "interval.hh"
-#include "input-file-results.hh"
 #include "lily-guile.hh"
 #include "parser.hh"
 #include "keyword.hh"
 #include "main.hh"
 #include "input.hh"
 #include "moment.hh"
-#include "ly-modules.hh"
+#include "ly-module.hh"
 
 
-static Keyword_ent the_key_tab[]={
-  {"alias", ALIAS},
-  {"apply", APPLY},
-  {"autochange", AUTOCHANGE},
-  {"simultaneous", SIMULTANEOUS},
-  {"sequential", SEQUENTIAL},
+static Keyword_ent the_key_tab[] = {
   {"accepts", ACCEPTS},
+  {"addquote", ADDQUOTE},
+  {"alias", ALIAS},
   {"alternative", ALTERNATIVE},
   {"bar", BAR},
-  {"breathe", BREATHE},
-  {"chordmodifiers", CHORDMODIFIERS},
+  {"book", BOOK},
+  {"bookpaper", BOOKPAPER},
+  {"change", CHANGE},
   {"chords", CHORDS},
   {"clef", CLEF},
   {"consists", CONSISTS},
-  {"consistsend", CONSISTSEND},
   {"context", CONTEXT},
   {"default", DEFAULT},
   {"denies", DENIES},
-  {"duration", DURATION},
-  {"grobdescriptions", GROBDESCRIPTIONS},
+  {"drums", DRUMS},
+  {"description", DESCRIPTION},
   {"figures",FIGURES},
-  {"grace", GRACE},
+  {"grobdescriptions", GROBDESCRIPTIONS},
   {"header", HEADER},
-  {"lyrics", LYRICS},
   {"key", KEY},
+  {"lyrics", LYRICS},
+  {"lyricsto", LYRICSTO},
   {"mark", MARK},
-  {"once", ONCE},
-  {"pitch", PITCH},
-  {"time", TIME_T},
-  {"times", TIMES},
+  {"markup", MARKUP},
   {"midi", MIDI},
   {"name", NAME},
-  {"pitchnames", PITCHNAMES},
+  {"new", NEWCONTEXT},
+  {"newlyrics", NEWLYRICS},
   {"notes", NOTES},
-  {"outputproperty", OUTPUTPROPERTY},
+  {"octave", OCTAVE},
+  {"once", ONCE},
   {"override", OVERRIDE},
-  {"set", SET},
-  {"rest", REST},
-  {"revert", REVERT},
-  {"partial", PARTIAL},
   {"paper", PAPER},
-  {"property", PROPERTY},
+  {"partial", PARTIAL},
+  {"quote", QUOTE},
   {"relative", RELATIVE},
   {"remove", REMOVE},
   {"repeat", REPEAT},
-  {"addlyrics", ADDLYRICS},
-  {"partcombine", PARTCOMBINE},
+  {"rest", REST},
+  {"revert", REVERT},
   {"score", SCORE},
+  {"sequential", SEQUENTIAL},
+  {"set", SET},
+  {"simultaneous", SIMULTANEOUS},
   {"skip", SKIP},
+  {"tag", TAG},
   {"tempo", TEMPO},
-  {"translator", TRANSLATOR},
+  {"time", TIME_T},
+  {"times", TIMES},
   {"transpose", TRANSPOSE},
+  {"transposition", TRANSPOSITION},
   {"type", TYPE},
   {"unset", UNSET},
-  {0,0}
+  {"with", WITH},
+  {0, 0}
 };
 
 
-My_lily_lexer::My_lily_lexer ()
+Lily_lexer::Lily_lexer (Sources *sources)
 {
   keytable_ = new Keyword_table (the_key_tab);
+  encoding_ = SCM_EOL;
+  chordmodifier_tab_ = SCM_EOL;
+  pitchname_tab_stack_ = SCM_EOL; 
+  sources_ = sources;
   scopes_ = SCM_EOL;
+  error_level_ = 0; 
+  main_input_b_ = false;
+
+  smobify_self ();
   
-  add_scope(ly_make_anonymous_module());
-  errorlevel_ =0; 
+  add_scope (ly_make_anonymous_module (false));
+  push_note_state (scm_c_make_hash_table (0));
+  chordmodifier_tab_ = scm_make_vector (scm_int2num (1), SCM_EOL);
+}
 
-  main_input_b_ = false;
+Lily_lexer::Lily_lexer (Lily_lexer const &src)
+  : Includable_lexer ()
+{
+  keytable_ =  (src.keytable_) ? new Keyword_table (*src.keytable_) : 0;
+  encoding_ = src.encoding_;
+  chordmodifier_tab_ = src.chordmodifier_tab_;
+  pitchname_tab_stack_ = src.pitchname_tab_stack_;
+  sources_ = src.sources_;
+  
+  error_level_ = src.error_level_; 
+  main_input_b_ = src.main_input_b_;
+
+  scopes_ = SCM_EOL;
+  
+  smobify_self ();
+  
+  SCM scopes = SCM_EOL;
+  SCM* tail = &scopes;
+  for (SCM s = src.scopes_; ly_c_pair_p (s); s = ly_cdr (s))
+    {
+      SCM newmod = ly_make_anonymous_module (false);
+      ly_import_module (newmod, ly_car (s));
+      *tail = scm_cons (newmod, SCM_EOL);
+      tail = SCM_CDRLOC (*tail);
+    }
+  
+  scopes_ =  scopes;
+  push_note_state (scm_c_make_hash_table (0));
 }
 
+Lily_lexer::~Lily_lexer ()
+{
+  delete keytable_;
+}
+
+SCM
+Lily_lexer::encoding () const
+{
+  return encoding_ ;
+}
+
+
 void
-My_lily_lexer::add_scope (SCM module)
+Lily_lexer::add_scope (SCM module)
 {
-  ly_reexport_module (scm_current_module());
+  ly_reexport_module (scm_current_module ());
   scm_set_current_module (module);
-  for (SCM s = scopes_; gh_pair_p (s); s = gh_cdr (s))
+  for (SCM s = scopes_; ly_c_pair_p (s); s = ly_cdr (s))
     {
-      /*
-       UGH. how to do this more neatly? 
-      */      
-      SCM expr = scm_list_n (ly_symbol2scm ("module-use!"),
-                            module, scm_list_n (ly_symbol2scm ("module-public-interface"),
-                                                gh_car (s), SCM_UNDEFINED),
-                            SCM_UNDEFINED);
-      
-      scm_primitive_eval(expr);
+      ly_use_module (module, ly_car (s));
     }
-  
   scopes_ = scm_cons (module, scopes_);
 }
 
 SCM
-My_lily_lexer::remove_scope ()
+Lily_lexer::remove_scope ()
 {
-  SCM sc = gh_car (scopes_);
-  scopes_ = gh_cdr (scopes_);
-  scm_set_current_module (gh_car (scopes_));
+  SCM sc = ly_car (scopes_);
+  scopes_ = ly_cdr (scopes_);
+  scm_set_current_module (ly_car (scopes_));
 
   return sc;
 }
 
 
 int
-My_lily_lexer::lookup_keyword (String s)
+Lily_lexer::lookup_keyword (String s)
 {
   return keytable_->lookup (s.to_str0 ());
 }
 
 SCM
-My_lily_lexer::lookup_identifier (String s)
+Lily_lexer::lookup_identifier_symbol (SCM sym)
 {
-  SCM sym = ly_symbol2scm (s.to_str0());
-  for (SCM s = scopes_; gh_pair_p (s); s = gh_cdr (s))
+  for (SCM s = scopes_; ly_c_pair_p (s); s = ly_cdr (s))
     {
-      SCM var = ly_module_lookup (gh_car (s), sym);
+      SCM var = ly_module_lookup (ly_car (s), sym);
       if (var != SCM_BOOL_F)
-       return scm_variable_ref(var);
+       return scm_variable_ref (var);
     }
 
-  return SCM_UNSPECIFIED;
+  return SCM_UNDEFINED;
 }
 
-void
-My_lily_lexer::start_main_input ()
-{  
-  new_input (main_input_string_, &global_input_file->sources_);
-  allow_includes_b_ = allow_includes_b_ &&  ! (safe_global_b);
+SCM
+Lily_lexer::lookup_identifier (String name)
+{
+  return lookup_identifier_symbol (ly_symbol2scm (name.to_str0 ()));
 }
 
 void
-My_lily_lexer::set_identifier (SCM name, SCM s)
+Lily_lexer::start_main_input ()
 {
-  assert (gh_string_p (name));
+  // yy_flex_debug = 1;
+  new_input (main_input_name_, sources_);
   
-  if (lookup_keyword (ly_scm2string (name)) >= 0)
-    {
-      size_t sz;
-      char * str = gh_scm2newstr (name, &sz) ;
-      warning (_f ("Identifier name is a keyword: `%s'", str));
-      free  (str);
-    }
-
-  SCM sym = scm_string_to_symbol (name);
-  SCM mod = gh_car (scopes_);
+  /* Do not allow \include in --safe-mode */
+  allow_includes_b_ = allow_includes_b_ && !safe_global_b;
 
-  scm_module_define (mod, sym, s);
+  scm_module_define (ly_car (scopes_),
+                    ly_symbol2scm ("input-file-name"),
+                    scm_makfrom0str (main_input_name_.to_str0 ()));
 }
 
-My_lily_lexer::~My_lily_lexer ()
+void
+Lily_lexer::set_identifier (SCM name, SCM s)
 {
-  delete keytable_;
-}
+  SCM sym = name;
+  if (ly_c_string_p (name))
+    sym =  scm_string_to_symbol (name);
+  
+  if (ly_c_symbol_p (sym))
+    {
+      if (lookup_keyword (ly_symbol2string (sym)) >= 0)
+       {
+         warning (_f ("Identifier name is a keyword: `%s'", SCM_SYMBOL_CHARS (sym)));
+       }
 
+      SCM mod = ly_car (scopes_);
 
+      scm_module_define (mod, sym, s);
+    }
+  else
+    {
+      programming_error ("Identifier is not a symbol.");
+    }
+}
 
 void
-My_lily_lexer::LexerError (char const *s)
+Lily_lexer::LexerError (char const *s)
 {
-  if (include_stack_.empty ())
-    {
-      progress_indication (_f ("error at EOF: %s", s)+ String ("\n"));
-    }
+  if (include_stack_.is_empty ())
+    progress_indication (_f ("error at EOF: %s", s) + String ("\n"));
   else
     {
-      errorlevel_ |= 1;
+      error_level_ |= 1;
       Input spot (get_source_file (), here_str0 ());
       spot.error (s);
     }
 }
 
 char
-My_lily_lexer::escaped_char (char c) const
+Lily_lexer::escaped_char (char c) const
 {
   switch (c)
     {
@@ -203,7 +251,6 @@ My_lily_lexer::escaped_char (char c) const
       return '\n';
     case 't':
       return '\t';
-
     case '\'':
     case '\"':
     case '\\':
@@ -213,14 +260,49 @@ My_lily_lexer::escaped_char (char c) const
 }
 
 Input
-My_lily_lexer::here_input () const
+Lily_lexer::here_input () const
 {
   Source_file * f= get_source_file ();
   return Input (f, (char*)here_str0 ());
 }
 
 void
-My_lily_lexer::prepare_for_next_token ()
+Lily_lexer::prepare_for_next_token ()
+{
+  last_input_ = here_input ();
+}
+
+void
+Lily_lexer::set_encoding (String s)
+{
+  if (s.length ())
+    encoding_ = ly_symbol2scm (s.to_str0 ());
+  else
+    encoding_ = SCM_EOL;
+}
+
+
+#include "ly-smobs.icc"
+
+IMPLEMENT_SMOBS (Lily_lexer);
+IMPLEMENT_TYPE_P (Lily_lexer, "ly:my-lily-lexer?");
+IMPLEMENT_DEFAULT_EQUAL_P (Lily_lexer);
+
+SCM
+Lily_lexer::mark_smob (SCM s)
+{
+  Lily_lexer *lexer = (Lily_lexer*) ly_cdr (s);
+
+  scm_gc_mark (lexer->chordmodifier_tab_);
+  scm_gc_mark (lexer->pitchname_tab_stack_);
+  scm_gc_mark (lexer->scopes_);
+  return lexer->encoding_;
+}
+
+int
+Lily_lexer::print_smob (SCM, SCM port, scm_print_state*)
 {
-  last_input_ = here_input();
+  scm_puts ("#<Lily_lexer ", port);
+  scm_puts (" >", port);
+  return 1;
 }