Merge: Fix Reader::read
[nit.git] / lib / core / stream.nit
1 # This file is part of NIT ( http://www.nitlanguage.org ).
2 #
3 # This file is free software, which comes along with NIT. This software is
4 # distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
5 # without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
6 # PARTICULAR PURPOSE. You can modify it is you want, provided this header
7 # is kept unaltered, and a notification of the changes is added.
8 # You are allowed to redistribute it and sell it, alone or is a part of
9 # another product.
10
11 # Input and output streams of characters
12 module stream
13
14 import error
15 intrude import bytes
16 import codecs
17
18 in "C" `{
19 #include <unistd.h>
20 #include <string.h>
21 #include <signal.h>
22 `}
23
24 # Any kind of error that could be produced by an operation on Streams
25 class IOError
26 super Error
27 end
28
29 # Any kind of stream to read/write/both to or from a source
30 abstract class Stream
31 # Codec used to transform raw data to text
32 #
33 # Note: defaults to UTF-8
34 var codec: Codec = utf8_codec is protected writable(set_codec)
35
36 # Lookahead buffer for codecs
37 #
38 # Since some codecs are multibyte, a lookahead may be required
39 # to store the next bytes and consume them only if a valid character
40 # is read.
41 protected var lookahead: CString is noinit
42
43 # Capacity of the lookahead
44 protected var lookahead_capacity = 0
45
46 # Current occupation of the lookahead
47 protected var lookahead_length = 0
48
49 # Buffer for writing data to a stream
50 protected var write_buffer: CString is noinit
51
52 init do
53 var lcap = codec.max_lookahead
54 lookahead = new CString(lcap)
55 write_buffer = new CString(lcap)
56 lookahead_length = 0
57 lookahead_capacity = lcap
58 end
59
60 # Change the codec for this stream.
61 fun codec=(c: Codec) do
62 if c.max_lookahead > lookahead_capacity then
63 var lcap = codec.max_lookahead
64 var lk = new CString(lcap)
65 var llen = lookahead_length
66 if llen > 0 then
67 lookahead.copy_to(lk, llen, 0, 0)
68 end
69 lookahead = lk
70 lookahead_capacity = lcap
71 write_buffer = new CString(lcap)
72 end
73 set_codec(c)
74 end
75
76 # Error produced by the file stream
77 #
78 # var ifs = new FileReader.open("donotmakethisfile.binx")
79 # ifs.read_all
80 # ifs.close
81 # assert ifs.last_error != null
82 var last_error: nullable IOError = null
83
84 # close the stream
85 fun close is abstract
86
87 # Pre-work hook.
88 #
89 # Used to inform `self` that operations will start.
90 # Specific streams can use this to prepare some resources.
91 #
92 # Is automatically invoked at the beginning of `with` structures.
93 #
94 # Do nothing by default.
95 fun start do end
96
97 # Post-work hook.
98 #
99 # Used to inform `self` that the operations are over.
100 # Specific streams can use this to free some resources.
101 #
102 # Is automatically invoked at the end of `with` structures.
103 #
104 # call `close` by default.
105 fun finish do close
106 end
107
108 # A `Stream` that can be read from
109 abstract class Reader
110 super Stream
111
112 # Read a byte directly from the underlying stream, without
113 # considering any eventual buffer
114 protected fun raw_read_byte: Int is abstract
115
116 # Read at most `max` bytes from the underlying stream into `buf`,
117 # without considering any eventual buffer
118 #
119 # Returns how many bytes were read
120 protected fun raw_read_bytes(buf: CString, max: Int): Int do
121 var rd = 0
122 for i in [0 .. max[ do
123 var b = raw_read_byte
124 if b < 0 then break
125 buf[i] = b.to_b
126 rd += 1
127 end
128 return rd
129 end
130
131 # Reads a character. Returns `null` on EOF or timeout
132 #
133 # Returns unicode replacement character '�' if an
134 # invalid byte sequence is read.
135 #
136 # `read_char` may block if:
137 #
138 # * No byte could be read from the current buffer
139 # * An incomplete char is partially read, and more bytes are
140 # required for full decoding.
141 fun read_char: nullable Char do
142 if eof then return null
143 var cod = codec
144 var codet_sz = cod.codet_size
145 var lk = lookahead
146 var llen = lookahead_length
147 if llen < codet_sz then
148 llen += raw_read_bytes(lk.fast_cstring(llen), codet_sz - llen)
149 end
150 if llen < codet_sz then
151 lookahead_length = 0
152 return 0xFFFD.code_point
153 end
154 var ret = cod.is_valid_char(lk, codet_sz)
155 var max_llen = cod.max_lookahead
156 while ret == 1 and llen < max_llen do
157 var rd = raw_read_bytes(lk.fast_cstring(llen), codet_sz)
158 if rd < codet_sz then
159 llen -= codet_sz
160 if llen > 0 then
161 lookahead.lshift(codet_sz, llen, codet_sz)
162 end
163 lookahead_length = llen.max(0)
164 return 0xFFFD.code_point
165 end
166 llen += codet_sz
167 ret = cod.is_valid_char(lk, llen)
168 end
169 if ret == 0 then
170 var c = cod.decode_char(lk)
171 var clen = c.u8char_len
172 llen -= clen
173 if llen > 0 then
174 lookahead.lshift(clen, llen, clen)
175 end
176 lookahead_length = llen
177 return c
178 end
179 if ret == 2 or ret == 1 then
180 llen -= codet_sz
181 if llen > 0 then
182 lookahead.lshift(codet_sz, llen, codet_sz)
183 end
184 lookahead_length = llen
185 return 0xFFFD.code_point
186 end
187 # Should not happen if the decoder works properly
188 var arr = new Array[Object]
189 arr.push "Decoder error: could not decode nor recover from byte sequence ["
190 for i in [0 .. llen[ do
191 arr.push lk[i]
192 arr.push ", "
193 end
194 arr.push "]"
195 var err = new IOError(arr.plain_to_s)
196 err.cause = last_error
197 last_error = err
198 return 0xFFFD.code_point
199 end
200
201 # Reads a byte. Returns a negative value on error
202 fun read_byte: Int do
203 var llen = lookahead_length
204 if llen == 0 then return raw_read_byte
205 var lk = lookahead
206 var b = lk[0].to_i
207 if llen == 1 then
208 lookahead_length = 0
209 else
210 lk.lshift(1, llen - 1, 1)
211 lookahead_length -= 1
212 end
213 return b
214 end
215
216 # Reads a String of at most `i` length
217 fun read(i: Int): String do
218 assert i >= 0
219 var cs = new CString(i)
220 var rd = read_bytes_to_cstring(cs, i)
221 if rd < 0 then return ""
222 return codec.decode_string(cs, rd)
223 end
224
225 # Reads up to `max` bytes from source
226 fun read_bytes(max: Int): Bytes do
227 assert max >= 0
228 var cs = new CString(max)
229 var rd = read_bytes_to_cstring(cs, max)
230 return new Bytes(cs, rd, max)
231 end
232
233 # Reads up to `max` bytes from source and stores them in `bytes`
234 fun read_bytes_to_cstring(bytes: CString, max: Int): Int do
235 var llen = lookahead_length
236 if llen == 0 then return raw_read_bytes(bytes, max)
237 var rd = max.min(llen)
238 var lk = lookahead
239 lk.copy_to(bytes, rd, 0, 0)
240 if rd < llen then
241 lk.lshift(rd, llen - rd, rd)
242 lookahead_length -= rd
243 else
244 lookahead_length = 0
245 end
246 return rd + raw_read_bytes(bytes, max - rd)
247 end
248
249 # Read a string until the end of the line.
250 #
251 # The line terminator '\n' and '\r\n', if any, is removed in each line.
252 #
253 # ~~~
254 # var txt = "Hello\n\nWorld\n"
255 # var i = new StringReader(txt)
256 # assert i.read_line == "Hello"
257 # assert i.read_line == ""
258 # assert i.read_line == "World"
259 # assert i.eof
260 # ~~~
261 #
262 # Only LINE FEED (`\n`), CARRIAGE RETURN & LINE FEED (`\r\n`), and
263 # the end or file (EOF) is considered to delimit the end of lines.
264 # CARRIAGE RETURN (`\r`) alone is not used for the end of line.
265 #
266 # ~~~
267 # var txt2 = "Hello\r\n\n\rWorld"
268 # var i2 = new StringReader(txt2)
269 # assert i2.read_line == "Hello"
270 # assert i2.read_line == ""
271 # assert i2.read_line == "\rWorld"
272 # assert i2.eof
273 # ~~~
274 #
275 # NOTE: Use `append_line_to` if the line terminator needs to be preserved.
276 fun read_line: String
277 do
278 if last_error != null then return ""
279 if eof then return ""
280 var s = new FlatBuffer
281 append_line_to(s)
282 return s.to_s.chomp
283 end
284
285 # Read all the lines until the eof.
286 #
287 # The line terminator '\n' and `\r\n` is removed in each line,
288 #
289 # ~~~
290 # var txt = "Hello\n\nWorld\n"
291 # var i = new StringReader(txt)
292 # assert i.read_lines == ["Hello", "", "World"]
293 # ~~~
294 #
295 # This method is more efficient that splitting
296 # the result of `read_all`.
297 #
298 # NOTE: SEE `read_line` for details.
299 fun read_lines: Array[String]
300 do
301 var res = new Array[String]
302 while not eof do
303 res.add read_line
304 end
305 return res
306 end
307
308 # Return an iterator that read each line.
309 #
310 # The line terminator '\n' and `\r\n` is removed in each line,
311 # The line are read with `read_line`. See this method for details.
312 #
313 # ~~~
314 # var txt = "Hello\n\nWorld\n"
315 # var i = new StringReader(txt)
316 # assert i.each_line.to_a == ["Hello", "", "World"]
317 # ~~~
318 #
319 # Unlike `read_lines` that read all lines at the call, `each_line` is lazy.
320 # Therefore, the stream should no be closed until the end of the stream.
321 #
322 # ~~~
323 # i = new StringReader(txt)
324 # var el = i.each_line
325 #
326 # assert el.item == "Hello"
327 # el.next
328 # assert el.item == ""
329 # el.next
330 #
331 # i.close
332 #
333 # assert not el.is_ok
334 # # closed before "world" is read
335 # ~~~
336 fun each_line: LineIterator do return new LineIterator(self)
337
338 # Read all the stream until the eof.
339 #
340 # The content of the file is returned as a String.
341 #
342 # ~~~
343 # var txt = "Hello\n\nWorld\n"
344 # var i = new StringReader(txt)
345 # assert i.read_all == txt
346 # ~~~
347 fun read_all: String do
348 var s = read_all_bytes
349 var slen = s.length
350 if slen == 0 then return ""
351 return codec.decode_string(s.items, s.length)
352 end
353
354 # Read all the stream until the eof.
355 #
356 # The content of the file is returned verbatim.
357 fun read_all_bytes: Bytes
358 do
359 if last_error != null then return new Bytes.empty
360 var s = new Bytes.empty
361 var buf = new CString(4096)
362 while not eof do
363 var rd = read_bytes_to_cstring(buf, 4096)
364 s.append_ns(buf, rd)
365 end
366 return s
367 end
368
369 # Read a string until the end of the line and append it to `s`.
370 #
371 # Unlike `read_line` and other related methods,
372 # the line terminator '\n', if any, is preserved in each line.
373 # Use the method `Text::chomp` to safely remove it.
374 #
375 # ~~~
376 # var txt = "Hello\n\nWorld\n"
377 # var i = new StringReader(txt)
378 # var b = new FlatBuffer
379 # i.append_line_to(b)
380 # assert b == "Hello\n"
381 # i.append_line_to(b)
382 # assert b == "Hello\n\n"
383 # i.append_line_to(b)
384 # assert b == txt
385 # assert i.eof
386 # ~~~
387 #
388 # If `\n` is not present at the end of the result, it means that
389 # a non-eol terminated last line was returned.
390 #
391 # ~~~
392 # var i2 = new StringReader("hello")
393 # assert not i2.eof
394 # var b2 = new FlatBuffer
395 # i2.append_line_to(b2)
396 # assert b2 == "hello"
397 # assert i2.eof
398 # ~~~
399 #
400 # NOTE: The single character LINE FEED (`\n`) delimits the end of lines.
401 # Therefore CARRIAGE RETURN & LINE FEED (`\r\n`) is also recognized.
402 fun append_line_to(s: Buffer)
403 do
404 if last_error != null then return
405 loop
406 var x = read_char
407 if x == null then
408 if eof then return
409 else
410 s.chars.push(x)
411 if x == '\n' then return
412 end
413 end
414 end
415
416 # Is there something to read.
417 # This function returns 'false' if there is something to read.
418 fun eof: Bool is abstract
419
420 # Read the next sequence of non whitespace characters.
421 #
422 # Leading whitespace characters are skipped.
423 # The first whitespace character that follows the result is consumed.
424 #
425 # An empty string is returned if the end of the file or an error is encounter.
426 #
427 # ~~~
428 # var w = new StringReader(" Hello, \n\t World!")
429 # assert w.read_word == "Hello,"
430 # assert w.read_char == '\n'
431 # assert w.read_word == "World!"
432 # assert w.read_word == ""
433 # ~~~
434 #
435 # `Char::is_whitespace` determines what is a whitespace.
436 fun read_word: String
437 do
438 var buf = new FlatBuffer
439 var c = read_nonwhitespace
440 if c != null then
441 buf.add(c)
442 while not eof do
443 c = read_char
444 if c == null then break
445 if c.is_whitespace then break
446 buf.add(c)
447 end
448 end
449 var res = buf.to_s
450 return res
451 end
452
453 # Skip whitespace characters (if any) then return the following non-whitespace character.
454 #
455 # Returns the code point of the character.
456 # Returns `null` on end of file or error.
457 #
458 # In fact, this method works like `read_char` except it skips whitespace.
459 #
460 # ~~~
461 # var w = new StringReader(" \nab\tc")
462 # assert w.read_nonwhitespace == 'a'
463 # assert w.read_nonwhitespace == 'b'
464 # assert w.read_nonwhitespace == 'c'
465 # assert w.read_nonwhitespace == null
466 # ~~~
467 #
468 # `Char::is_whitespace` determines what is a whitespace.
469 fun read_nonwhitespace: nullable Char
470 do
471 var c: nullable Char = null
472 while not eof do
473 c = read_char
474 if c == null or not c.is_whitespace then break
475 end
476 return c
477 end
478 end
479
480 # Iterator returned by `Reader::each_line`.
481 # See the aforementioned method for details.
482 class LineIterator
483 super Iterator[String]
484
485 # The original stream
486 var stream: Reader
487
488 redef fun is_ok
489 do
490 var res = not stream.eof
491 if not res and close_on_finish then stream.close
492 return res
493 end
494
495 redef fun item
496 do
497 var line = self.line
498 if line == null then
499 line = stream.read_line
500 end
501 self.line = line
502 return line
503 end
504
505 # The last line read (cache)
506 private var line: nullable String = null
507
508 redef fun next
509 do
510 # force the read
511 if line == null then item
512 # drop the line
513 line = null
514 end
515
516 # Close the stream when the stream is at the EOF.
517 #
518 # Default is false.
519 var close_on_finish = false is writable
520
521 redef fun finish
522 do
523 if close_on_finish then stream.close
524 end
525 end
526
527 # `Reader` capable of declaring if readable without blocking
528 abstract class PollableReader
529 super Reader
530
531 # Is there something to read? (without blocking)
532 fun poll_in: Bool is abstract
533
534 end
535
536 # A `Stream` that can be written to
537 abstract class Writer
538 super Stream
539
540 # Write bytes from `s`
541 fun write_bytes(s: Bytes) do write_bytes_from_cstring(s.items, s.length)
542
543 # Write `len` bytes from `ns`
544 fun write_bytes_from_cstring(ns: CString, len: Int) is abstract
545
546 # Write a string
547 fun write(s: Text) is abstract
548
549 # Write a single byte
550 fun write_byte(value: Byte) is abstract
551
552 # Write a single char
553 fun write_char(c: Char) do
554 var ln = codec.add_char_to(c, write_buffer)
555 write_bytes_from_cstring(write_buffer, ln)
556 end
557
558 # Can the stream be used to write
559 fun is_writable: Bool is abstract
560 end
561
562 # Things that can be efficienlty written to a `Writer`
563 #
564 # The point of this interface is to allow the instance to be efficiently
565 # written into a `Writer`.
566 #
567 # Ready-to-save documents usually provide this interface.
568 interface Writable
569 # Write itself to a `stream`
570 # The specific logic it let to the concrete subclasses
571 fun write_to(stream: Writer) is abstract
572
573 # Like `write_to` but return a new String (may be quite large)
574 #
575 # This funtionality is anectodical, since the point
576 # of streamable object to to be efficienlty written to a
577 # stream without having to allocate and concatenate strings
578 fun write_to_string: String
579 do
580 var stream = new StringWriter
581 write_to(stream)
582 return stream.to_s
583 end
584 end
585
586 redef class Bytes
587 super Writable
588 redef fun write_to(s) do s.write_bytes(self)
589
590 redef fun write_to_string do return to_s
591 end
592
593 redef class Text
594 super Writable
595 redef fun write_to(stream) do stream.write(self)
596 end
597
598 # Input streams with a buffered input for efficiency purposes
599 abstract class BufferedReader
600 super Reader
601
602 redef fun raw_read_byte
603 do
604 if last_error != null then return -1
605 if eof then
606 last_error = new IOError("Stream has reached eof")
607 return -1
608 end
609 var c = _buffer[_buffer_pos]
610 _buffer_pos += 1
611 return c.to_i
612 end
613
614 # Resets the internal buffer
615 fun buffer_reset do
616 _buffer_length = 0
617 _buffer_pos = 0
618 end
619
620 # Peeks up to `n` bytes in the buffer
621 #
622 # The operation does not consume the buffer
623 #
624 # ~~~nitish
625 # var x = new FileReader.open("File.txt")
626 # assert x.peek(5) == x.read(5)
627 # ~~~
628 fun peek(i: Int): Bytes do
629 if eof then return new Bytes.empty
630 var remsp = _buffer_length - _buffer_pos
631 if i <= remsp then
632 var bf = new Bytes.with_capacity(i)
633 bf.append_ns_from(_buffer, i, _buffer_pos)
634 return bf
635 end
636 var bf = new Bytes.with_capacity(i)
637 bf.append_ns_from(_buffer, remsp, _buffer_pos)
638 _buffer_pos = _buffer_length
639 read_intern(i - bf.length, bf)
640 remsp = _buffer_length - _buffer_pos
641 var full_len = bf.length + remsp
642 if full_len > _buffer_capacity then
643 var c = _buffer_capacity
644 while c < full_len do c = c * 2 + 2
645 _buffer_capacity = c
646 end
647 var nns = new CString(_buffer_capacity)
648 bf.items.copy_to(nns, bf.length, 0, 0)
649 _buffer.copy_to(nns, remsp, _buffer_pos, bf.length)
650 _buffer = nns
651 _buffer_pos = 0
652 _buffer_length = full_len
653 return bf
654 end
655
656 redef fun read_bytes_to_cstring(buf, i)
657 do
658 if last_error != null then return 0
659 var bbf = new Bytes(buf, 0, i)
660 return read_intern(i, bbf)
661 end
662
663 # Fills `buf` with at most `i` bytes read from `self`
664 private fun read_intern(i: Int, buf: Bytes): Int do
665 if eof then return 0
666 var p = _buffer_pos
667 var bufsp = _buffer_length - p
668 if bufsp >= i then
669 _buffer_pos += i
670 buf.append_ns_from(_buffer, i, p)
671 return i
672 end
673 _buffer_pos = _buffer_length
674 var readln = _buffer_length - p
675 buf.append_ns_from(_buffer, readln, p)
676 var rd = read_intern(i - readln, buf)
677 return rd + readln
678 end
679
680 redef fun read_all_bytes
681 do
682 if last_error != null then return new Bytes.empty
683 var s = new Bytes.with_capacity(10)
684 var b = _buffer
685 while not eof do
686 var j = _buffer_pos
687 var k = _buffer_length
688 var rd_sz = k - j
689 s.append_ns_from(b, rd_sz, j)
690 _buffer_pos = k
691 fill_buffer
692 end
693 return s
694 end
695
696 redef fun append_line_to(s)
697 do
698 var lb = new Bytes.with_capacity(10)
699 loop
700 # First phase: look for a '\n'
701 var i = _buffer_pos
702 while i < _buffer_length and _buffer[i] != 0xAu8 do
703 i += 1
704 end
705
706 var eol
707 if i < _buffer_length then
708 assert _buffer[i] == 0xAu8
709 i += 1
710 eol = true
711 else
712 eol = false
713 end
714
715 # if there is something to append
716 if i > _buffer_pos then
717 # Copy from the buffer to the string
718 var j = _buffer_pos
719 while j < i do
720 lb.add(_buffer[j])
721 j += 1
722 end
723 _buffer_pos = i
724 else
725 assert end_reached
726 s.append lb.to_s
727 return
728 end
729
730 if eol then
731 # so \n is found
732 s.append lb.to_s
733 return
734 else
735 # so \n is not found
736 if end_reached then
737 s.append lb.to_s
738 return
739 end
740 fill_buffer
741 end
742 end
743 end
744
745 redef fun eof
746 do
747 if _buffer_pos < _buffer_length then return false
748 if end_reached then return true
749 fill_buffer
750 return _buffer_pos >= _buffer_length and end_reached
751 end
752
753 # The buffer
754 private var buffer: CString = new CString(0)
755
756 # The current position in the buffer
757 private var buffer_pos = 0
758
759 # Length of the current buffer (i.e. nuber of bytes in the buffer)
760 private var buffer_length = 0
761
762 # Capacity of the buffer
763 private var buffer_capacity = 0
764
765 # Fill the buffer
766 protected fun fill_buffer is abstract
767
768 # Has the last fill_buffer reached the end
769 protected fun end_reached: Bool is abstract
770
771 # Allocate a `_buffer` for a given `capacity`.
772 protected fun prepare_buffer(capacity: Int)
773 do
774 _buffer = new CString(capacity)
775 _buffer_pos = 0 # need to read
776 _buffer_length = 0
777 _buffer_capacity = capacity
778 end
779 end
780
781 # A `Stream` that can be written to and read from
782 abstract class Duplex
783 super Reader
784 super Writer
785 end
786
787 # Write to `bytes` in memory
788 #
789 # ~~~
790 # var writer = new BytesWriter
791 #
792 # writer.write "Strings "
793 # writer.write_char '&'
794 # writer.write_byte 0x20u8
795 # writer.write_bytes "bytes".to_bytes
796 #
797 # assert writer.to_s == "\\x53\\x74\\x72\\x69\\x6E\\x67\\x73\\x20\\x26\\x20\\x62\\x79\\x74\\x65\\x73"
798 # assert writer.bytes.to_s == "Strings & bytes"
799 # ~~~
800 #
801 # As with any binary data, UTF-8 code points encoded on two bytes or more
802 # can be constructed byte by byte.
803 #
804 # ~~~
805 # writer = new BytesWriter
806 #
807 # # Write just the character first half
808 # writer.write_byte 0xC2u8
809 # assert writer.to_s == "\\xC2"
810 # assert writer.bytes.to_s == "�"
811 #
812 # # Complete the character
813 # writer.write_byte 0xA2u8
814 # assert writer.to_s == "\\xC2\\xA2"
815 # assert writer.bytes.to_s == "¢"
816 # ~~~
817 class BytesWriter
818 super Writer
819
820 # Written memory
821 var bytes = new Bytes.empty
822
823 redef fun to_s do return bytes.chexdigest
824
825 redef fun write(str)
826 do
827 if closed then return
828 str.append_to_bytes bytes
829 end
830
831 redef fun write_char(c)
832 do
833 if closed then return
834 bytes.add_char c
835 end
836
837 redef fun write_byte(value)
838 do
839 if closed then return
840 bytes.add value
841 end
842
843 redef fun write_bytes_from_cstring(ns, len) do
844 if closed then return
845 bytes.append_ns(ns, len)
846 end
847
848 # Is the stream closed?
849 protected var closed = false
850
851 redef fun close do closed = true
852 redef fun is_writable do return not closed
853 end
854
855 # `Stream` writing to a `String`
856 #
857 # This class has the same behavior as `BytesWriter`
858 # except for `to_s` which decodes `bytes` to a string.
859 #
860 # ~~~
861 # var writer = new StringWriter
862 #
863 # writer.write "Strings "
864 # writer.write_char '&'
865 # writer.write_byte 0x20u8
866 # writer.write_bytes "bytes".to_bytes
867 #
868 # assert writer.to_s == "Strings & bytes"
869 # ~~~
870 class StringWriter
871 super BytesWriter
872
873 redef fun to_s do return bytes.to_s
874 end
875
876 # Read from `bytes` in memory
877 #
878 # ~~~
879 # var reader = new BytesReader(b"a…b")
880 # assert reader.read_char == 'a'
881 # assert reader.read_byte == 0xE2 # 1st byte of '…'
882 # assert reader.read_byte == 0x80 # 2nd byte of '…'
883 # assert reader.read_char == '�' # Reads the last byte as an invalid char
884 # assert reader.read_all_bytes == b"b"
885 # ~~~
886 class BytesReader
887 super Reader
888
889 # Source data to read
890 var bytes: Bytes
891
892 # The current position in `bytes`
893 private var cursor = 0
894
895 redef fun raw_read_byte
896 do
897 if cursor >= bytes.length then return -1
898
899 var c = bytes[cursor]
900 cursor += 1
901 return c.to_i
902 end
903
904 redef fun close do bytes = new Bytes.empty
905
906 redef fun read_all_bytes
907 do
908 var res = bytes.slice_from(cursor)
909 cursor = bytes.length
910 return res
911 end
912
913 redef fun raw_read_bytes(ns, max) do
914 if cursor >= bytes.length then return 0
915
916 var copy = max.min(bytes.length - cursor)
917 bytes.items.copy_to(ns, copy, cursor, 0)
918 cursor += copy
919 return copy
920 end
921
922 redef fun eof do return cursor >= bytes.length
923 end
924
925 # `Stream` reading from a `String` source
926 #
927 # This class has the same behavior as `BytesReader`
928 # except for its constructor accepting a `String`.
929 #
930 # ~~~
931 # var reader = new StringReader("a…b")
932 # assert reader.read_char == 'a'
933 # assert reader.read_byte == 0xE2 # 1st byte of '…'
934 # assert reader.read_byte == 0x80 # 2nd byte of '…'
935 # assert reader.read_char == '�' # Reads the last byte as an invalid char
936 # assert reader.read_all == "b"
937 # ~~~
938 class StringReader
939 super BytesReader
940
941 autoinit source
942
943 # Source data to read
944 var source: String
945
946 init do bytes = source.to_bytes
947
948 redef fun close
949 do
950 source = ""
951 super
952 end
953 end