X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Finclude%2Fsource-file.hh;h=21060e370497c220184dc19b7b85082ed4d06065;hb=18037c60a42e96cf61b13006bb391e3699bdc45e;hp=759bb78425b5e22149d626aba5c489bcf1e8bae0;hpb=58bcc84c9480dae1b21bc24d8396b91fe19e0131;p=lilypond.git diff --git a/lily/include/source-file.hh b/lily/include/source-file.hh index 759bb78425..21060e3704 100644 --- a/lily/include/source-file.hh +++ b/lily/include/source-file.hh @@ -3,17 +3,19 @@ source file of the GNU LilyPond music typesetter - (c) 1999--2005 Jan Nieuwenhuizen + (c) 1999--2006 Jan Nieuwenhuizen */ #ifndef SOURCE_FILE_HH #define SOURCE_FILE_HH -#include +#include "flower-proto.hh" +#include "std-vector.hh" +#include "lily-proto.hh" +#include "smobs.hh" -#include "string.hh" -#include "protected-scm.hh" -#include "parray.hh" +#include +using namespace std; /** class for reading and mapping a file. @@ -25,58 +27,43 @@ class Source_file { -public: - Source_file (String fn); - Source_file (String, String); + vector newline_locations_; + istream *istream_; + vector characters_; + SCM str_port_; - virtual ~Source_file (); + void load_stdin (); + void init_port (); + void init (); + + DECLARE_SMOBS(Source_file, bla); +public: + Source_file (string fn); + Source_file (string, string); - char const *to_str0 () const; - virtual String error_string (char const *pos_str0) const; - std::istream * get_istream (); + char const *c_str () const; + virtual string quote_input (char const *pos_str0) const; + istream *get_istream (); bool contains (char const *pos_str0) const; int length () const; virtual int get_line (char const *pos_str0) const; - String name_string () const; - String file_line_column_string (char const *str0) const; - - // return start + n - char const *seek_str0 (int n); + void set_line (char const *pos_str0, int i); + string name_string () const; + string file_line_column_string (char const *str0) const; - int tell () const; - // return here + n bytes - char const *forward_str0 (int n); - char const *pos_str0 () { return pos_str0_; } - String get_string (int n); - void set_pos (char const *pos_str0); public: Slice line_slice (char const *pos_str0) const; - String line_string (char const *pos_str0) const; - int get_column (char const *pos_str0) const; - int get_char (char const *pos_str0) const; - - /* - JUNKME. - - This thing doubles as a file-storage/file-iterator object. - */ - char const *pos_str0_; - - SCM get_port () const { return str_port_; } - String name_; - -private: - Link_array newline_locations_; - std::istream* istream_; - char *contents_str0_; - int length_; - void load_stdin (); - void init_port (); - - Protected_scm str_port_; + string line_string (char const *pos_str0) const; + void get_counts (char const *pos_str0, int *, int *, int *) const; + + SCM get_port () const; + string name_; + +protected: + int line_offset_; }; -char *gulp_file (String fn, int *len); +vector gulp_file (string fn, int desired); #endif /* SOURCE_FILE_HH */