lib/core: fix read_bytes_to_cstring implementation
[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 var cs = new CString(i)
219 var rd = read_bytes_to_cstring(cs, i)
220 return codec.decode_string(cs, rd)
221 end
222
223 # Reads up to `max` bytes from source
224 fun read_bytes(max: Int): Bytes do
225 var cs = new CString(max)
226 var rd = read_bytes_to_cstring(cs, max)
227 return new Bytes(cs, rd, max)
228 end
229
230 # Reads up to `max` bytes from source and stores them in `bytes`
231 fun read_bytes_to_cstring(bytes: CString, max: Int): Int do
232 var llen = lookahead_length
233 if llen == 0 then return raw_read_bytes(bytes, max)
234 var rd = max.min(llen)
235 var lk = lookahead
236 lk.copy_to(bytes, rd, 0, 0)
237 if rd < llen then
238 lk.lshift(rd, llen - rd, rd)
239 lookahead_length -= rd
240 else
241 lookahead_length = 0
242 end
243 return rd + raw_read_bytes(bytes.fast_cstring(rd), max - rd)
244 end
245
246 # Read a string until the end of the line.
247 #
248 # The line terminator '\n' and '\r\n', if any, is removed in each line.
249 #
250 # ~~~
251 # var txt = "Hello\n\nWorld\n"
252 # var i = new StringReader(txt)
253 # assert i.read_line == "Hello"
254 # assert i.read_line == ""
255 # assert i.read_line == "World"
256 # assert i.eof
257 # ~~~
258 #
259 # Only LINE FEED (`\n`), CARRIAGE RETURN & LINE FEED (`\r\n`), and
260 # the end or file (EOF) is considered to delimit the end of lines.
261 # CARRIAGE RETURN (`\r`) alone is not used for the end of line.
262 #
263 # ~~~
264 # var txt2 = "Hello\r\n\n\rWorld"
265 # var i2 = new StringReader(txt2)
266 # assert i2.read_line == "Hello"
267 # assert i2.read_line == ""
268 # assert i2.read_line == "\rWorld"
269 # assert i2.eof
270 # ~~~
271 #
272 # NOTE: Use `append_line_to` if the line terminator needs to be preserved.
273 fun read_line: String
274 do
275 if last_error != null then return ""
276 if eof then return ""
277 var s = new FlatBuffer
278 append_line_to(s)
279 return s.to_s.chomp
280 end
281
282 # Read all the lines until the eof.
283 #
284 # The line terminator '\n' and `\r\n` is removed in each line,
285 #
286 # ~~~
287 # var txt = "Hello\n\nWorld\n"
288 # var i = new StringReader(txt)
289 # assert i.read_lines == ["Hello", "", "World"]
290 # ~~~
291 #
292 # This method is more efficient that splitting
293 # the result of `read_all`.
294 #
295 # NOTE: SEE `read_line` for details.
296 fun read_lines: Array[String]
297 do
298 var res = new Array[String]
299 while not eof do
300 res.add read_line
301 end
302 return res
303 end
304
305 # Return an iterator that read each line.
306 #
307 # The line terminator '\n' and `\r\n` is removed in each line,
308 # The line are read with `read_line`. See this method for details.
309 #
310 # ~~~
311 # var txt = "Hello\n\nWorld\n"
312 # var i = new StringReader(txt)
313 # assert i.each_line.to_a == ["Hello", "", "World"]
314 # ~~~
315 #
316 # Unlike `read_lines` that read all lines at the call, `each_line` is lazy.
317 # Therefore, the stream should no be closed until the end of the stream.
318 #
319 # ~~~
320 # i = new StringReader(txt)
321 # var el = i.each_line
322 #
323 # assert el.item == "Hello"
324 # el.next
325 # assert el.item == ""
326 # el.next
327 #
328 # i.close
329 #
330 # assert not el.is_ok
331 # # closed before "world" is read
332 # ~~~
333 fun each_line: LineIterator do return new LineIterator(self)
334
335 # Read all the stream until the eof.
336 #
337 # The content of the file is returned as a String.
338 #
339 # ~~~
340 # var txt = "Hello\n\nWorld\n"
341 # var i = new StringReader(txt)
342 # assert i.read_all == txt
343 # ~~~
344 fun read_all: String do
345 var s = read_all_bytes
346 var slen = s.length
347 if slen == 0 then return ""
348 return codec.decode_string(s.items, s.length)
349 end
350
351 # Read all the stream until the eof.
352 #
353 # The content of the file is returned verbatim.
354 fun read_all_bytes: Bytes
355 do
356 if last_error != null then return new Bytes.empty
357 var s = new Bytes.empty
358 var buf = new CString(4096)
359 while not eof do
360 var rd = read_bytes_to_cstring(buf, 4096)
361 s.append_ns(buf, rd)
362 end
363 return s
364 end
365
366 # Read a string until the end of the line and append it to `s`.
367 #
368 # Unlike `read_line` and other related methods,
369 # the line terminator '\n', if any, is preserved in each line.
370 # Use the method `Text::chomp` to safely remove it.
371 #
372 # ~~~
373 # var txt = "Hello\n\nWorld\n"
374 # var i = new StringReader(txt)
375 # var b = new FlatBuffer
376 # i.append_line_to(b)
377 # assert b == "Hello\n"
378 # i.append_line_to(b)
379 # assert b == "Hello\n\n"
380 # i.append_line_to(b)
381 # assert b == txt
382 # assert i.eof
383 # ~~~
384 #
385 # If `\n` is not present at the end of the result, it means that
386 # a non-eol terminated last line was returned.
387 #
388 # ~~~
389 # var i2 = new StringReader("hello")
390 # assert not i2.eof
391 # var b2 = new FlatBuffer
392 # i2.append_line_to(b2)
393 # assert b2 == "hello"
394 # assert i2.eof
395 # ~~~
396 #
397 # NOTE: The single character LINE FEED (`\n`) delimits the end of lines.
398 # Therefore CARRIAGE RETURN & LINE FEED (`\r\n`) is also recognized.
399 fun append_line_to(s: Buffer)
400 do
401 if last_error != null then return
402 loop
403 var x = read_char
404 if x == null then
405 if eof then return
406 else
407 s.chars.push(x)
408 if x == '\n' then return
409 end
410 end
411 end
412
413 # Is there something to read.
414 # This function returns 'false' if there is something to read.
415 fun eof: Bool is abstract
416
417 # Read the next sequence of non whitespace characters.
418 #
419 # Leading whitespace characters are skipped.
420 # The first whitespace character that follows the result is consumed.
421 #
422 # An empty string is returned if the end of the file or an error is encounter.
423 #
424 # ~~~
425 # var w = new StringReader(" Hello, \n\t World!")
426 # assert w.read_word == "Hello,"
427 # assert w.read_char == '\n'
428 # assert w.read_word == "World!"
429 # assert w.read_word == ""
430 # ~~~
431 #
432 # `Char::is_whitespace` determines what is a whitespace.
433 fun read_word: String
434 do
435 var buf = new FlatBuffer
436 var c = read_nonwhitespace
437 if c != null then
438 buf.add(c)
439 while not eof do
440 c = read_char
441 if c == null then break
442 if c.is_whitespace then break
443 buf.add(c)
444 end
445 end
446 var res = buf.to_s
447 return res
448 end
449
450 # Skip whitespace characters (if any) then return the following non-whitespace character.
451 #
452 # Returns the code point of the character.
453 # Returns `null` on end of file or error.
454 #
455 # In fact, this method works like `read_char` except it skips whitespace.
456 #
457 # ~~~
458 # var w = new StringReader(" \nab\tc")
459 # assert w.read_nonwhitespace == 'a'
460 # assert w.read_nonwhitespace == 'b'
461 # assert w.read_nonwhitespace == 'c'
462 # assert w.read_nonwhitespace == null
463 # ~~~
464 #
465 # `Char::is_whitespace` determines what is a whitespace.
466 fun read_nonwhitespace: nullable Char
467 do
468 var c: nullable Char = null
469 while not eof do
470 c = read_char
471 if c == null or not c.is_whitespace then break
472 end
473 return c
474 end
475 end
476
477 # Iterator returned by `Reader::each_line`.
478 # See the aforementioned method for details.
479 class LineIterator
480 super Iterator[String]
481
482 # The original stream
483 var stream: Reader
484
485 redef fun is_ok
486 do
487 var res = not stream.eof
488 if not res and close_on_finish then stream.close
489 return res
490 end
491
492 redef fun item
493 do
494 var line = self.line
495 if line == null then
496 line = stream.read_line
497 end
498 self.line = line
499 return line
500 end
501
502 # The last line read (cache)
503 private var line: nullable String = null
504
505 redef fun next
506 do
507 # force the read
508 if line == null then item
509 # drop the line
510 line = null
511 end
512
513 # Close the stream when the stream is at the EOF.
514 #
515 # Default is false.
516 var close_on_finish = false is writable
517
518 redef fun finish
519 do
520 if close_on_finish then stream.close
521 end
522 end
523
524 # `Reader` capable of declaring if readable without blocking
525 abstract class PollableReader
526 super Reader
527
528 # Is there something to read? (without blocking)
529 fun poll_in: Bool is abstract
530
531 end
532
533 # A `Stream` that can be written to
534 abstract class Writer
535 super Stream
536
537 # Write bytes from `s`
538 fun write_bytes(s: Bytes) do write_bytes_from_cstring(s.items, s.length)
539
540 # Write `len` bytes from `ns`
541 fun write_bytes_from_cstring(ns: CString, len: Int) is abstract
542
543 # Write a string
544 fun write(s: Text) is abstract
545
546 # Write a single byte
547 fun write_byte(value: Byte) is abstract
548
549 # Write a single char
550 fun write_char(c: Char) do
551 var ln = codec.add_char_to(c, write_buffer)
552 write_bytes_from_cstring(write_buffer, ln)
553 end
554
555 # Can the stream be used to write
556 fun is_writable: Bool is abstract
557 end
558
559 # Things that can be efficienlty written to a `Writer`
560 #
561 # The point of this interface is to allow the instance to be efficiently
562 # written into a `Writer`.
563 #
564 # Ready-to-save documents usually provide this interface.
565 interface Writable
566 # Write itself to a `stream`
567 # The specific logic it let to the concrete subclasses
568 fun write_to(stream: Writer) is abstract
569
570 # Like `write_to` but return a new String (may be quite large)
571 #
572 # This funtionality is anectodical, since the point
573 # of streamable object to to be efficienlty written to a
574 # stream without having to allocate and concatenate strings
575 fun write_to_string: String
576 do
577 var stream = new StringWriter
578 write_to(stream)
579 return stream.to_s
580 end
581 end
582
583 redef class Bytes
584 super Writable
585 redef fun write_to(s) do s.write_bytes(self)
586
587 redef fun write_to_string do return to_s
588 end
589
590 redef class Text
591 super Writable
592 redef fun write_to(stream) do stream.write(self)
593 end
594
595 # Input streams with a buffered input for efficiency purposes
596 abstract class BufferedReader
597 super Reader
598
599 redef fun raw_read_byte
600 do
601 if last_error != null then return -1
602 if eof then
603 last_error = new IOError("Stream has reached eof")
604 return -1
605 end
606 var c = _buffer[_buffer_pos]
607 _buffer_pos += 1
608 return c.to_i
609 end
610
611 # Resets the internal buffer
612 fun buffer_reset do
613 _buffer_length = 0
614 _buffer_pos = 0
615 end
616
617 # Peeks up to `n` bytes in the buffer
618 #
619 # The operation does not consume the buffer
620 #
621 # ~~~nitish
622 # var x = new FileReader.open("File.txt")
623 # assert x.peek(5) == x.read(5)
624 # ~~~
625 fun peek(i: Int): Bytes do
626 if eof then return new Bytes.empty
627 var remsp = _buffer_length - _buffer_pos
628 if i <= remsp then
629 var bf = new Bytes.with_capacity(i)
630 bf.append_ns_from(_buffer, i, _buffer_pos)
631 return bf
632 end
633 var bf = new Bytes.with_capacity(i)
634 bf.append_ns_from(_buffer, remsp, _buffer_pos)
635 _buffer_pos = _buffer_length
636 read_intern(i - bf.length, bf)
637 remsp = _buffer_length - _buffer_pos
638 var full_len = bf.length + remsp
639 if full_len > _buffer_capacity then
640 var c = _buffer_capacity
641 while c < full_len do c = c * 2 + 2
642 _buffer_capacity = c
643 end
644 var nns = new CString(_buffer_capacity)
645 bf.items.copy_to(nns, bf.length, 0, 0)
646 _buffer.copy_to(nns, remsp, _buffer_pos, bf.length)
647 _buffer = nns
648 _buffer_pos = 0
649 _buffer_length = full_len
650 return bf
651 end
652
653 redef fun read_bytes_to_cstring(buf, i)
654 do
655 if last_error != null then return 0
656 var bbf = new Bytes(buf, 0, i)
657 return read_intern(i, bbf)
658 end
659
660 # Fills `buf` with at most `i` bytes read from `self`
661 private fun read_intern(i: Int, buf: Bytes): Int do
662 if eof then return 0
663 var p = _buffer_pos
664 var bufsp = _buffer_length - p
665 if bufsp >= i then
666 _buffer_pos += i
667 buf.append_ns_from(_buffer, i, p)
668 return i
669 end
670 _buffer_pos = _buffer_length
671 var readln = _buffer_length - p
672 buf.append_ns_from(_buffer, readln, p)
673 var rd = read_intern(i - readln, buf)
674 return rd + readln
675 end
676
677 redef fun read_all_bytes
678 do
679 if last_error != null then return new Bytes.empty
680 var s = new Bytes.with_capacity(10)
681 var b = _buffer
682 while not eof do
683 var j = _buffer_pos
684 var k = _buffer_length
685 var rd_sz = k - j
686 s.append_ns_from(b, rd_sz, j)
687 _buffer_pos = k
688 fill_buffer
689 end
690 return s
691 end
692
693 redef fun append_line_to(s)
694 do
695 var lb = new Bytes.with_capacity(10)
696 loop
697 # First phase: look for a '\n'
698 var i = _buffer_pos
699 while i < _buffer_length and _buffer[i] != 0xAu8 do
700 i += 1
701 end
702
703 var eol
704 if i < _buffer_length then
705 assert _buffer[i] == 0xAu8
706 i += 1
707 eol = true
708 else
709 eol = false
710 end
711
712 # if there is something to append
713 if i > _buffer_pos then
714 # Copy from the buffer to the string
715 var j = _buffer_pos
716 while j < i do
717 lb.add(_buffer[j])
718 j += 1
719 end
720 _buffer_pos = i
721 else
722 assert end_reached
723 s.append lb.to_s
724 return
725 end
726
727 if eol then
728 # so \n is found
729 s.append lb.to_s
730 return
731 else
732 # so \n is not found
733 if end_reached then
734 s.append lb.to_s
735 return
736 end
737 fill_buffer
738 end
739 end
740 end
741
742 redef fun eof
743 do
744 if _buffer_pos < _buffer_length then return false
745 if end_reached then return true
746 fill_buffer
747 return _buffer_pos >= _buffer_length and end_reached
748 end
749
750 # The buffer
751 private var buffer: CString = new CString(0)
752
753 # The current position in the buffer
754 private var buffer_pos = 0
755
756 # Length of the current buffer (i.e. nuber of bytes in the buffer)
757 private var buffer_length = 0
758
759 # Capacity of the buffer
760 private var buffer_capacity = 0
761
762 # Fill the buffer
763 protected fun fill_buffer is abstract
764
765 # Has the last fill_buffer reached the end
766 protected fun end_reached: Bool is abstract
767
768 # Allocate a `_buffer` for a given `capacity`.
769 protected fun prepare_buffer(capacity: Int)
770 do
771 _buffer = new CString(capacity)
772 _buffer_pos = 0 # need to read
773 _buffer_length = 0
774 _buffer_capacity = capacity
775 end
776 end
777
778 # A `Stream` that can be written to and read from
779 abstract class Duplex
780 super Reader
781 super Writer
782 end
783
784 # Write to `bytes` in memory
785 #
786 # ~~~
787 # var writer = new BytesWriter
788 #
789 # writer.write "Strings "
790 # writer.write_char '&'
791 # writer.write_byte 0x20u8
792 # writer.write_bytes "bytes".to_bytes
793 #
794 # assert writer.to_s == "\\x53\\x74\\x72\\x69\\x6E\\x67\\x73\\x20\\x26\\x20\\x62\\x79\\x74\\x65\\x73"
795 # assert writer.bytes.to_s == "Strings & bytes"
796 # ~~~
797 #
798 # As with any binary data, UTF-8 code points encoded on two bytes or more
799 # can be constructed byte by byte.
800 #
801 # ~~~
802 # writer = new BytesWriter
803 #
804 # # Write just the character first half
805 # writer.write_byte 0xC2u8
806 # assert writer.to_s == "\\xC2"
807 # assert writer.bytes.to_s == "�"
808 #
809 # # Complete the character
810 # writer.write_byte 0xA2u8
811 # assert writer.to_s == "\\xC2\\xA2"
812 # assert writer.bytes.to_s == "¢"
813 # ~~~
814 class BytesWriter
815 super Writer
816
817 # Written memory
818 var bytes = new Bytes.empty
819
820 redef fun to_s do return bytes.chexdigest
821
822 redef fun write(str)
823 do
824 if closed then return
825 str.append_to_bytes bytes
826 end
827
828 redef fun write_char(c)
829 do
830 if closed then return
831 bytes.add_char c
832 end
833
834 redef fun write_byte(value)
835 do
836 if closed then return
837 bytes.add value
838 end
839
840 redef fun write_bytes_from_cstring(ns, len) do
841 if closed then return
842 bytes.append_ns(ns, len)
843 end
844
845 # Is the stream closed?
846 protected var closed = false
847
848 redef fun close do closed = true
849 redef fun is_writable do return not closed
850 end
851
852 # `Stream` writing to a `String`
853 #
854 # This class has the same behavior as `BytesWriter`
855 # except for `to_s` which decodes `bytes` to a string.
856 #
857 # ~~~
858 # var writer = new StringWriter
859 #
860 # writer.write "Strings "
861 # writer.write_char '&'
862 # writer.write_byte 0x20u8
863 # writer.write_bytes "bytes".to_bytes
864 #
865 # assert writer.to_s == "Strings & bytes"
866 # ~~~
867 class StringWriter
868 super BytesWriter
869
870 redef fun to_s do return bytes.to_s
871 end
872
873 # Read from `bytes` in memory
874 #
875 # ~~~
876 # var reader = new BytesReader(b"a…b")
877 # assert reader.read_char == 'a'
878 # assert reader.read_byte == 0xE2 # 1st byte of '…'
879 # assert reader.read_byte == 0x80 # 2nd byte of '…'
880 # assert reader.read_char == '�' # Reads the last byte as an invalid char
881 # assert reader.read_all_bytes == b"b"
882 # ~~~
883 class BytesReader
884 super Reader
885
886 # Source data to read
887 var bytes: Bytes
888
889 # The current position in `bytes`
890 private var cursor = 0
891
892 redef fun raw_read_byte
893 do
894 if cursor >= bytes.length then return -1
895
896 var c = bytes[cursor]
897 cursor += 1
898 return c.to_i
899 end
900
901 redef fun close do bytes = new Bytes.empty
902
903 redef fun read_all_bytes
904 do
905 var res = bytes.slice_from(cursor)
906 cursor = bytes.length
907 return res
908 end
909
910 redef fun raw_read_bytes(ns, max) do
911 if cursor >= bytes.length then return 0
912
913 var copy = max.min(bytes.length - cursor)
914 bytes.items.copy_to(ns, copy, cursor, 0)
915 cursor += copy
916 return copy
917 end
918
919 redef fun eof do return cursor >= bytes.length
920 end
921
922 # `Stream` reading from a `String` source
923 #
924 # This class has the same behavior as `BytesReader`
925 # except for its constructor accepting a `String`.
926 #
927 # ~~~
928 # var reader = new StringReader("a…b")
929 # assert reader.read_char == 'a'
930 # assert reader.read_byte == 0xE2 # 1st byte of '…'
931 # assert reader.read_byte == 0x80 # 2nd byte of '…'
932 # assert reader.read_char == '�' # Reads the last byte as an invalid char
933 # assert reader.read_all == "b"
934 # ~~~
935 class StringReader
936 super BytesReader
937
938 autoinit source
939
940 # Source data to read
941 var source: String
942
943 init do bytes = source.to_bytes
944
945 redef fun close
946 do
947 source = ""
948 super
949 end
950 end