X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Fincludable-lexer.cc;h=6d5207a084b33289766b7d557e537c91ac368f6d;hb=d145acbbd1250d861b3e8559d40c342273b2bb63;hp=524519623cb585673f57b35a89b5f1dab03ef333;hpb=4bbc3761de1012c805f55bc957cb9c7c35ef3ddc;p=lilypond.git diff --git a/lily/includable-lexer.cc b/lily/includable-lexer.cc index 524519623c..6d5207a084 100644 --- a/lily/includable-lexer.cc +++ b/lily/includable-lexer.cc @@ -3,24 +3,26 @@ source file of the LilyPond music typesetter - (c) 1997--1999 Han-Wen Nienhuys + (c) 1997--2003 Han-Wen Nienhuys */ -#include +#include #include "file-path.hh" #include "includable-lexer.hh" #include "source-file.hh" #include "source.hh" -#include "debug.hh" +#include "warn.hh" +#include "main.hh" #ifndef YY_BUF_SIZE #define YY_BUF_SIZE 16384 #endif #ifndef YY_START -#define YY_START ((yy_start - 1) / 2) +#define YY_START\ + ((yy_start - 1) / 2) #define YYSTATE YY_START #endif @@ -41,21 +43,26 @@ Includable_lexer::new_input (String s, Sources * global_sources) return; } - Source_file * sl = global_sources->get_file_l (s); + Source_file * sl = global_sources->get_file (s); if (!sl) { - String msg = _f ("can't find file: `%s\'", s); - msg += _f ("\nSearch path is `%s'\n", global_sources->path_C_->str ().ch_C()); - LexerError (msg.ch_C ()); + String msg = _f ("can't find file: `%s'", s); + msg += "\n"; + msg += _f ("(search path: `%s')", global_sources->path_C_->to_string ().to_str0 ()); + msg += "\n"; + LexerError (msg.to_str0 ()); return; } - filename_str_arr_.push (sl->name_str ()); + filename_strings_.push (sl->name_string ()); char_count_stack_.push (0); if (yy_current_buffer) state_stack_.push (yy_current_buffer); - *mlog << "[" << s<< flush; + + if (verbose_global_b) + progress_indication (String ("[") + s); + include_stack_.push (sl); /* @@ -64,24 +71,29 @@ Includable_lexer::new_input (String s, Sources * global_sources) Whoops. The size argument to yy_create_buffer is not the filelength but a BUFFERSIZE. Maybe this is why reading stdin fucks up. - */ - yy_switch_to_buffer (yy_create_buffer (sl->istream_l (), YY_BUF_SIZE)); - + */ + yy_switch_to_buffer (yy_create_buffer (sl->get_istream (), YY_BUF_SIZE)); } + +/* + Unused. + */ void Includable_lexer::new_input (String name, String data, Sources* sources) { Source_file* file = new Source_file (name, data); sources->add (file); - filename_str_arr_.push (name); + filename_strings_.push (name); char_count_stack_.push (0); if (yy_current_buffer) state_stack_.push (yy_current_buffer); - *mlog << "[" << name << flush; + + if (verbose_global_b) + progress_indication (String ("[") + name); include_stack_.push (file); - yy_switch_to_buffer (yy_create_buffer (file->istream_l (), YY_BUF_SIZE)); + yy_switch_to_buffer (yy_create_buffer (file->get_istream (), YY_BUF_SIZE)); } /** pop the inputstack. conceptually this is a destructor, but it @@ -91,7 +103,8 @@ Includable_lexer::close_input () { include_stack_.pop (); char_count_stack_.pop (); - *mlog << "]"<ch_C () + char_count_stack_.top (); + return include_stack_.top ()->to_str0 () + char_count_stack_.top (); } Includable_lexer::~Includable_lexer () @@ -132,7 +145,7 @@ Includable_lexer::add_lexed_char (int count) } Source_file* -Includable_lexer::source_file_l () const +Includable_lexer::get_source_file () const { if (include_stack_.empty ()) return 0;