(get_line): backport off by two fix from
[lilypond.git] / lily / source-file.cc
blob85ed8ca64b0d6e1360c749a5ad4235d1c77ea36a
1 /*
2 source-file.cc -- implement Source_file
4 source file of the GNU LilyPond music typesetter
6 (c) 1997--2000 Jan Nieuwenhuizen <janneke@gnu.org>
7 & Han-Wen Nienhuys <hanwen@cs.uu.nl>
8 */
10 #include "config.h"
12 #include <stdio.h>
13 #include <assert.h>
14 #if HAVE_SSTREAM
15 #include <sstream>
16 #else
17 #include <strstream.h>
18 #define istringstream(x) istrstream(x, length ())
19 #endif
21 #include "string.hh"
22 #include "flower-proto.hh"
23 #include "warn.hh"
24 #include "source-file.hh"
25 #include "array.hh"
27 void
28 Source_file::load_stdin ()
30 length_ = 0;
32 int c;
33 Array<char> chs; // ugh.
34 while ((c = fgetc (stdin)) != EOF)
35 chs.push (c);
37 length_ = chs.size ();
38 contents_str0_ = chs.remove_array ();
43 char *
44 gulp_file (String fn, int* len)
47 let's hope that "b" opens anything binary, and does not apply
48 CR/LF translation
50 FILE * f = fopen (fn.to_str0 (), "rb");
52 if (!f)
54 warning (_f ("can't open file: `%s'", fn.to_str0 ()));
55 return 0;
58 int ret = fseek (f, 0, SEEK_END);
60 *len = ftell (f);
61 rewind (f);
62 char * str = new char[*len+1];
63 str[*len] = 0;
64 ret = fread (str, sizeof (char), *len, f);
66 if (ret!=*len)
67 warning (_f ("Huh? Got %d, expected %d characters", ret, *len));
69 fclose (f);
72 return str;
77 Source_file::Source_file (String filename, String data)
79 name_string_ = "";
80 istream_ = 0;
81 contents_str0_ = data.get_copy_str0();
82 length_ = data.length();
83 pos_str0_ = to_str0 ();
84 init_port();
90 Source_file::Source_file (String filename_string)
92 name_string_ = filename_string;
93 istream_ = 0;
94 contents_str0_ = 0;
96 if (filename_string == "-")
97 load_stdin ();
98 else
99 contents_str0_ = gulp_file (filename_string, &length_);
101 pos_str0_ = to_str0 ();
103 init_port();
105 for (int i = 0; i < length_; i++)
106 if (contents_str0_[i] == '\n')
107 newline_locations_.push (contents_str0_ + i);
110 void
111 Source_file::init_port ()
113 SCM str =scm_makfrom0str (contents_str0_);
115 str_port_ = scm_mkstrport (SCM_INUM0, str, SCM_OPN | SCM_RDNG,
116 __FUNCTION__);
117 scm_set_port_filename_x (str_port_,
118 scm_makfrom0str (name_string_.get_str0()));
122 Source_file::tell () const
124 return pos_str0_ - contents_str0_;
127 std::istream*
128 Source_file::get_istream ()
130 if (!istream_)
132 if (length ()) // can-t this be done without such a hack?
133 istream_ = new std::istringstream (to_str0 ());
134 else
136 istream_ = new std::istringstream ("");
137 istream_->setstate (std::ios::eofbit);
138 // istream_->set (ios::eofbit);
141 return istream_;
144 String
145 Source_file::file_line_column_string (char const *context_str0) const
147 if (!to_str0 ())
148 return " (" + _ ("position unknown") + ")";
149 else
150 return name_string () + ":" + to_string (get_line (context_str0))
151 + ":" + to_string (get_char (context_str0));
154 String
155 Source_file::name_string () const
157 return name_string_;
160 Source_file::~Source_file ()
162 delete istream_;
163 istream_ = 0;
164 delete[] contents_str0_;
167 Slice
168 Source_file::line_slice (char const* pos_str0) const
170 if (!in_b (pos_str0))
171 return Slice (0,0);
173 char const* data_str0 = to_str0 ();
174 char const * eof_C_ = data_str0 + length ();
176 if (pos_str0 == eof_C_)
177 pos_str0 --;
178 char const* begin_str0 = pos_str0;
179 while (begin_str0 > data_str0)
180 if (*--begin_str0 == '\n')
182 begin_str0++;
183 break;
186 char const* end_str0 = pos_str0;
187 while (end_str0 < eof_C_)
188 if (*end_str0++ == '\n')
190 end_str0--;
191 break;
194 return Slice (begin_str0 - data_str0, end_str0 - data_str0);
197 String
198 Source_file::line_string (char const* pos_str0) const
200 if (!in_b (pos_str0))
201 return "";
203 Slice line = line_slice (pos_str0);
204 char const* data_str0 = to_str0 ();
205 return String ((Byte const*)data_str0 + line[LEFT], line.length ());
209 Source_file::get_char (char const* pos_str0) const
211 if (!in_b (pos_str0))
212 return 0;
214 char const* data_str0 = to_str0 ();
215 return pos_str0 - (line_slice (pos_str0)[SMALLER] + data_str0);
219 Source_file::get_column (char const* pos_str0) const
221 if (!in_b (pos_str0))
222 return 0;
224 int ch_i = get_char (pos_str0);
225 String line = line_string (pos_str0);
227 int col_i = 0;
228 for (int i = 0; i < ch_i; i++)
229 if (line[i] == '\t')
230 col_i = (col_i / 8 + 1) * 8;
231 else
232 col_i++;
234 return col_i;
237 String
238 Source_file::error_string (char const* pos_str0) const
240 if (!in_b (pos_str0))
241 return " (" + _ ("position unknown") + ")";
243 int ch_i = get_char (pos_str0);
244 String line = line_string (pos_str0);
245 String context = line.left_string (ch_i)
246 + to_string ('\n')
247 + to_string (' ', get_column (pos_str0))
248 + line.cut_string (ch_i, INT_MAX);
250 return context;
253 bool
254 Source_file::in_b (char const* pos_str0) const
256 return (pos_str0 && (pos_str0 >= to_str0 ()) && (pos_str0 <= to_str0 () + length ()));
260 Source_file::get_line (char const* pos_str0) const
262 if (!in_b (pos_str0))
263 return 0;
265 if (!newline_locations_.size())
266 return 1;
269 int lo=0;
270 int hi = newline_locations_.size();
271 if (newline_locations_[lo] > pos_str0)
272 return 1;
274 if (newline_locations_[hi-1] < pos_str0)
275 return hi;
277 binary_search_bounds (newline_locations_,
278 pos_str0,
279 Link_array<char>::default_compare,
280 &lo, &hi);
282 if (*pos_str0 == '\n')
283 lo --;
284 return lo + 2;
288 Source_file::length () const
290 return length_;
293 char const *
294 Source_file::to_str0 () const
296 return contents_str0_;
299 void
300 Source_file::set_pos (char const * pos_str0)
302 if (in_b (pos_str0))
303 pos_str0_ = pos_str0;
304 else
305 error (error_string (pos_str0) + "invalid pos");
308 char const*
309 Source_file::seek_str0 (int n)
311 char const* new_str0 = to_str0 () + n;
312 if (n < 0)
313 new_str0 += length ();
314 if (in_b (new_str0))
315 pos_str0_ = new_str0;
316 else
317 error (error_string (new_str0) + "seek past eof");
319 return pos_str0_;
322 char const*
323 Source_file::forward_str0 (int n)
325 char const* old_pos = pos_str0_;
326 char const* new_str0 = pos_str0_ + n;
327 if (in_b (new_str0))
328 pos_str0_ = new_str0;
329 else
330 error (error_string (new_str0) + "forward past eof");
332 return old_pos;
335 String
336 Source_file::get_string (int n)
338 String str = String ((Byte const*)forward_str0 (n), n);
339 return str;