X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Fsource.cc;h=002768038c0069a8b33fd2f649dfc35c72655a24;hb=ed1d216fea92ba4166562c29e9bd797e526276f0;hp=481bb9d7eeda48241f073bc1ae6144631b66eb2d;hpb=332da9f4d25f9f63a3222efc87fae06b0c7abbdd;p=lilypond.git diff --git a/lily/source.cc b/lily/source.cc index 481bb9d7ee..002768038c 100644 --- a/lily/source.cc +++ b/lily/source.cc @@ -3,18 +3,16 @@ source file of the LilyPond music typesetter - (c) 1997--2004 Han-Wen Nienhuys + (c) 1997--2006 Han-Wen Nienhuys */ #include "source.hh" -#include "killing-cons.tcc" #include "source-file.hh" #include "file-path.hh" Sources::Sources () { - sourcefile_list_ = 0; path_ = 0; is_binary_ = false; } @@ -32,50 +30,47 @@ Sources::set_path (File_path *f) } /** - open a file + open a file - @param file_string the file to be opened, name might be changed if it - is found in a search path. UGH! - - @return 0 if no file found - */ -Source_file* -Sources::get_file (String &file_string) //UGH + File_string the file to be opened, name might be changed if it is + found in a search path. +*/ +Source_file * +Sources::get_file (string *file_string) //UGH { - if ((file_string != "-") && path_) + if (*file_string != "-" && path_) { - String file_string_o = path_->find (file_string); - if ((file_string_o == "") && (file_string != "")) + string file_string_o = path_->find (*file_string); + if ((file_string_o == "") && (*file_string != "")) return 0; - file_string = file_string_o; + *file_string = file_string_o; } - Source_file * f = new Source_file (file_string) ; + Source_file *f = new Source_file (*file_string); add (f); return f; } void -Sources::add (Source_file* sourcefile) +Sources::add (Source_file *sourcefile) { - sourcefile_list_ = new Killing_cons (sourcefile, sourcefile_list_); + sourcefiles_.push_back (sourcefile); } Sources::~Sources () { - delete sourcefile_list_; + junk_pointers (sourcefiles_); } -/** - search the list for file whose map contains pointer #str0# - @return 0 if not found. - */ -Source_file* -Sources::get_sourcefile (char const* str0) +Source_file * +Sources::get_sourcefile (char const *str0) { + for (vector::iterator i = sourcefiles_.begin(); + i != sourcefiles_.end (); i++) + { + if ((*i)->contains (str0)) + return *i; + } - for (Cons *i = sourcefile_list_; i; i = i->next_) - if (i->car_->contains (str0)) - return i->car_; return 0; }