]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/source-file.hh
* lily/lexer.ll: Add \sourcefileline command
[lilypond.git] / lily / include / source-file.hh
1 /*
2   source-file.hh -- declare Source_file
3
4   source file of the GNU LilyPond music typesetter
5
6   (c) 1999--2006 Jan Nieuwenhuizen <janneke@gnu.org>
7 */
8
9 #ifndef SOURCE_FILE_HH
10 #define SOURCE_FILE_HH
11
12 #include "flower-proto.hh"
13 #include "std-vector.hh"
14 #include "lily-proto.hh"
15 #include "protected-scm.hh"
16
17 #include <iostream>
18 using namespace std;
19
20 /**
21    class for reading and mapping a file.
22
23    duplicates a lot of Data_file and Text_stream.
24    should look at including Data_file's functionality:
25    get_line (), get_word () here.
26 */
27
28 class Source_file
29 {
30 public:
31   Source_file (string fn);
32   Source_file (string, string);
33
34   virtual ~Source_file ();
35
36   char const *c_str () const;
37   virtual string quote_input (char const *pos_str0) const;
38   istream *get_istream ();
39   bool contains (char const *pos_str0) const;
40   int length () const;
41   virtual int get_line (char const *pos_str0) const;
42   void set_line (char const *pos_str0, int i);
43   string name_string () const;
44   string file_line_column_string (char const *str0) const;
45
46   // return start + n
47   char const *seek_str0 (int n);
48
49   int tell () const;
50   // return here + n bytes
51   char const *forward_str0 (int n);
52   char const *pos_str0 () { return pos_str0_; }
53   string get_string (int n);
54   void set_pos (char const *pos_str0);
55 public:
56   Slice line_slice (char const *pos_str0) const;
57   string line_string (char const *pos_str0) const;
58   void get_counts (char const *pos_str0, int *, int *, int *) const;
59
60   /*
61     JUNKME.
62
63     This thing doubles as a file-storage/file-iterator object.
64   */
65   char const *pos_str0_;
66
67   SCM get_port () const;
68   string name_;
69
70 protected:
71   int line_offset_;
72
73 private:
74   vector<char*> newline_locations_;
75   istream *istream_;
76   char *contents_str0_;
77   vector<char> chs_;
78   int length_;
79   void load_stdin ();
80   void init_port ();
81
82   Protected_scm str_port_;
83 };
84
85 char *gulp_file (string fn, int *len);
86
87 #endif /* SOURCE_FILE_HH */
88