core/bytes: make Text::hexdigest_to_bytes more permissive
[nit.git] / lib / core / bytes.nit
1 # This file is part of NIT ( http://www.nitlanguage.org ).
2 #
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at
6 #
7 # http://www.apache.org/licenses/LICENSE-2.0
8 #
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License.
14
15 # Services for byte streams and arrays
16 module bytes
17
18 import kernel
19 import collection::array
20 intrude import text::flat
21
22 # Any kind of entity which can be searched for in a Sequence of Byte
23 interface BytePattern
24 # Return the first occurence of `self` in `b`, or -1 if not found
25 fun first_index_in(b: SequenceRead[Byte]): Int do return first_index_in_from(b, 0)
26
27 # Return the first occurence of `self` in `b` starting at `from`, or -1 if not found
28 fun first_index_in_from(b: SequenceRead[Byte], from: Int): Int is abstract
29
30 # Return the last occurence of `self` in `b`, or -1 if not found
31 fun last_index_in(b: SequenceRead[Byte]): Int do return last_index_in_from(b, b.length - 1)
32
33 # Return the last occurence of `self` in `b`, or -1 if not found
34 fun last_index_in_from(b: SequenceRead[Byte], from: Int): Int is abstract
35
36 # Returns the indexes of all the occurences of `self` in `b`
37 fun search_all_in(b: SequenceRead[Byte]): SequenceRead[Int] is abstract
38
39 # Length of the pattern
40 fun pattern_length: Int is abstract
41
42 # Appends `self` to `b`
43 fun append_to(b: Sequence[Byte]) is abstract
44
45 # Is `self` a prefix for `b` ?
46 fun is_prefix(b: SequenceRead[Byte]): Bool is abstract
47
48 # Is `self` a suffix for `b` ?
49 fun is_suffix(b: SequenceRead[Byte]): Bool is abstract
50 end
51
52 redef class Byte
53 super BytePattern
54
55 # Write self as a string into `ns` at position `pos`
56 private fun add_digest_at(ns: NativeString, pos: Int) do
57 var tmp = (0xF0u8 & self) >> 4
58 ns[pos] = if tmp >= 0x0Au8 then tmp + 0x37u8 else tmp + 0x30u8
59 tmp = 0x0Fu8 & self
60 ns[pos + 1] = if tmp >= 0x0Au8 then tmp + 0x37u8 else tmp + 0x30u8
61 end
62
63 # Is `self` a valid hexadecimal digit (in ASCII)
64 #
65 # ~~~nit
66 # intrude import core::bytes
67 # assert not '/'.ascii.is_valid_hexdigit
68 # assert '0'.ascii.is_valid_hexdigit
69 # assert '9'.ascii.is_valid_hexdigit
70 # assert not ':'.ascii.is_valid_hexdigit
71 # assert not '@'.ascii.is_valid_hexdigit
72 # assert 'A'.ascii.is_valid_hexdigit
73 # assert 'F'.ascii.is_valid_hexdigit
74 # assert not 'G'.ascii.is_valid_hexdigit
75 # assert not '`'.ascii.is_valid_hexdigit
76 # assert 'a'.ascii.is_valid_hexdigit
77 # assert 'f'.ascii.is_valid_hexdigit
78 # assert not 'g'.ascii.is_valid_hexdigit
79 # ~~~
80 private fun is_valid_hexdigit: Bool do
81 return (self >= 0x30u8 and self <= 0x39u8) or
82 (self >= 0x41u8 and self <= 0x46u8) or
83 (self >= 0x61u8 and self <= 0x66u8)
84 end
85
86 # `self` as a hexdigit to its byte value
87 #
88 # ~~~nit
89 # intrude import core::bytes
90 # assert 0x39u8.hexdigit_to_byteval == 0x09u8
91 # assert 0x43u8.hexdigit_to_byteval == 0x0Cu8
92 # ~~~
93 #
94 # REQUIRE: `self.is_valid_hexdigit`
95 private fun hexdigit_to_byteval: Byte do
96 if self >= 0x30u8 and self <= 0x39u8 then
97 return self - 0x30u8
98 else if self >= 0x41u8 and self <= 0x46u8 then
99 return self - 0x37u8
100 else if self >= 0x61u8 and self <= 0x66u8 then
101 return self - 0x57u8
102 end
103 # Happens only if the requirement is not met.
104 # i.e. this abort is here to please the compiler
105 abort
106 end
107
108 redef fun first_index_in_from(b, from) do
109 for i in [from .. b.length[ do if b[i] == self then return i
110 return -1
111 end
112
113 redef fun last_index_in_from(b, from) do
114 for i in [0 .. from].step(-1) do if b[i] == self then return i
115 return -1
116 end
117
118 redef fun search_all_in(b) do
119 var ret = new Array[Int]
120 var pos = 0
121 loop
122 pos = first_index_in_from(b, pos)
123 if pos == -1 then return ret
124 ret.add pos
125 pos += 1
126 end
127 end
128
129 redef fun pattern_length do return 1
130
131 redef fun append_to(b) do b.push self
132
133 # assert 'b'.ascii.is_suffix("baqsdb".to_bytes)
134 # assert not 'b'.ascii.is_suffix("baqsd".to_bytes)
135 redef fun is_suffix(b) do return b.length != 0 and b.last == self
136
137 # assert 'b'.ascii.is_prefix("baqsdb".to_bytes)
138 # assert not 'b'.ascii.is_prefix("aqsdb".to_bytes)
139 redef fun is_prefix(b) do return b.length != 0 and b.first == self
140 end
141
142 # A buffer containing Byte-manipulation facilities
143 #
144 # Uses Copy-On-Write when persisted
145 class Bytes
146 super AbstractArray[Byte]
147 super BytePattern
148
149 # A NativeString being a char*, it can be used as underlying representation here.
150 var items: NativeString
151
152 # Number of bytes in the array
153 redef var length
154
155 # Capacity of the array
156 private var capacity: Int
157
158 # Has this buffer been persisted (to_s'd)?
159 #
160 # Used for Copy-On-Write
161 private var persisted = false
162
163 # var b = new Bytes.empty
164 # assert b.to_s == ""
165 init empty do
166 var ns = new NativeString(0)
167 init(ns, 0, 0)
168 end
169
170 # Init a `Bytes` with capacity `cap`
171 init with_capacity(cap: Int) do
172 var ns = new NativeString(cap)
173 init(ns, 0, cap)
174 end
175
176 redef fun pattern_length do return length
177
178 redef fun is_empty do return length == 0
179
180 # var b = new Bytes.empty
181 # b.add 101u8
182 # assert b[0] == 101u8
183 redef fun [](i) do
184 assert i >= 0
185 assert i < length
186 return items[i]
187 end
188
189 # Returns a copy of `self`
190 fun clone: Bytes do
191 var b = new Bytes.with_capacity(length)
192 b.append(self)
193 return b
194 end
195
196 # Trims off the whitespaces at the beginning and the end of `self`
197 #
198 # var b = "102041426E6F1020" .hexdigest_to_bytes
199 # assert b.trim.hexdigest == "41426E6F"
200 #
201 # NOTE: A whitespace is defined here as a byte whose value is <= 0x20
202 fun trim: Bytes do
203 var st = 0
204 while st < length do
205 if self[st] > 0x20u8 then break
206 st += 1
207 end
208 if st >= length then return new Bytes.empty
209 var ed = length - 1
210 while ed > 0 do
211 if self[ed] > 0x20u8 then break
212 ed -= 1
213 end
214 return slice(st, ed - st + 1)
215 end
216
217 # Returns a subset of the content of `self` starting at `from` and of length `count`
218 #
219 # var b = "abcd".to_bytes
220 # assert b.slice(1, 2).hexdigest == "6263"
221 # assert b.slice(-1, 2).hexdigest == "61"
222 # assert b.slice(1, 0).hexdigest == ""
223 # assert b.slice(2, 5).hexdigest == "6364"
224 fun slice(from, count: Int): Bytes do
225 if count <= 0 then return new Bytes.empty
226
227 if from < 0 then
228 count += from
229 if count < 0 then count = 0
230 from = 0
231 end
232
233 if (count + from) > length then count = length - from
234 if count <= 0 then return new Bytes.empty
235
236 var ret = new Bytes.with_capacity(count)
237
238 ret.append_ns(items.fast_cstring(from), count)
239 return ret
240 end
241
242 # Returns a copy of `self` starting at `from`
243 #
244 # var b = "abcd".to_bytes
245 # assert b.slice_from(1).hexdigest == "626364"
246 # assert b.slice_from(-1).hexdigest == "61626364"
247 # assert b.slice_from(2).hexdigest == "6364"
248 fun slice_from(from: Int): Bytes do
249 if from >= length then return new Bytes.empty
250 if from < 0 then from = 0
251 return slice(from, length)
252 end
253
254 # Returns self as an hexadecimal digest.
255 #
256 # Also known as plain hexdump or postscript hexdump.
257 #
258 # ~~~
259 # var b = "abcd".to_bytes
260 # assert b.hexdigest == "61626364"
261 # assert b.hexdigest.hexdigest_to_bytes == b
262 # ~~~
263 fun hexdigest: String do
264 var elen = length * 2
265 var ns = new NativeString(elen)
266 var i = 0
267 var oi = 0
268 while i < length do
269 self[i].add_digest_at(ns, oi)
270 i += 1
271 oi += 2
272 end
273 return new FlatString.full(ns, elen, 0, elen)
274 end
275
276 # Return self as a C hexadecimal digest where bytes are prefixed by `\x`
277 #
278 # The output is compatible with literal stream of bytes for most languages
279 # including C and Nit.
280 #
281 # ~~~
282 # var b = "abcd".to_bytes
283 # assert b.chexdigest == "\\x61\\x62\\x63\\x64"
284 # assert b.chexdigest.unescape_to_bytes == b
285 # ~~~
286 fun chexdigest: String do
287 var elen = length * 4
288 var ns = new NativeString(elen)
289 var i = 0
290 var oi = 0
291 while i < length do
292 ns[oi] = 0x5Cu8 # b'\\'
293 ns[oi+1] = 0x78u8 # b'x'
294 self[i].add_digest_at(ns, oi+2)
295 i += 1
296 oi += 4
297 end
298 return new FlatString.full(ns, elen, 0, elen)
299 end
300
301
302 # Returns self as a stream of bits (0 and 1)
303 #
304 # ~~~
305 # var b = "abcd".to_bytes
306 # assert b.binarydigest == "01100001011000100110001101100100"
307 # assert b.binarydigest.binarydigest_to_bytes == b
308 # ~~~
309 fun binarydigest: String do
310 var elen = length * 8
311 var ns = new NativeString(elen)
312 var i = 0
313 var oi = 0
314 while i < length do
315 var c = self[i]
316 var b = 128u8
317 while b > 0u8 do
318 if c & b == 0u8 then
319 ns[oi] = 0x30u8 # b'0'
320 else
321 ns[oi] = 0x31u8 # b'1'
322 end
323 oi += 1
324 b = b >> 1
325 end
326 i += 1
327 end
328 return new FlatString.full(ns, elen, 0, elen)
329 end
330
331 # var b = new Bytes.with_capacity(1)
332 # b[0] = 101u8
333 # assert b.to_s == "e"
334 redef fun []=(i, v) do
335 if persisted then regen
336 assert i >= 0
337 assert i <= length
338 if i == length then add(v)
339 items[i] = v
340 end
341
342 # var b = new Bytes.empty
343 # b.add 101u8
344 # assert b.to_s == "e"
345 redef fun add(c) do
346 if persisted then regen
347 if length >= capacity then
348 enlarge(length)
349 end
350 items[length] = c
351 length += 1
352 end
353
354 # Adds the UTF-8 representation of `c` to `self`
355 #
356 # var b = new Bytes.empty
357 # b.add_char('A')
358 # b.add_char('キ')
359 # assert b.hexdigest == "41E382AD"
360 fun add_char(c: Char) do
361 if persisted then regen
362 var cln = c.u8char_len
363 var ln = length
364 enlarge(ln + cln)
365 items.set_char_at(length, c)
366 length += cln
367 end
368
369 # var b = new Bytes.empty
370 # b.append([104u8, 101u8, 108u8, 108u8, 111u8])
371 # assert b.to_s == "hello"
372 redef fun append(arr) do
373 if arr isa Bytes then
374 append_ns(arr.items, arr.length)
375 else
376 for i in arr do add i
377 end
378 end
379
380 # var b = new Bytes.empty
381 # b.append([0x41u8, 0x41u8, 0x18u8])
382 # b.pop
383 # assert b.to_s == "AA"
384 redef fun pop do
385 assert length >= 1
386 length -= 1
387 return items[length]
388 end
389
390 redef fun clear do length = 0
391
392 # Regenerates the buffer, necessary when it was persisted
393 private fun regen do
394 var nns = new NativeString(capacity)
395 items.copy_to(nns, length, 0, 0)
396 persisted = false
397 end
398
399 # Appends the `ln` first bytes of `ns` to self
400 fun append_ns(ns: NativeString, ln: Int) do
401 if persisted then regen
402 var nlen = length + ln
403 if nlen > capacity then enlarge(nlen)
404 ns.copy_to(items, ln, 0, length)
405 length += ln
406 end
407
408 # Appends `ln` bytes from `ns` starting at index `from` to self
409 fun append_ns_from(ns: NativeString, ln, from: Int) do
410 if persisted then regen
411 var nlen = length + ln
412 if nlen > capacity then enlarge(nlen)
413 ns.copy_to(items, ln, from, length)
414 length += ln
415 end
416
417 # Appends the bytes of `s` to `selftextextt`
418 fun append_text(s: Text) do
419 for i in s.substrings do
420 append_ns(i.fast_cstring, i.bytelen)
421 end
422 end
423
424 redef fun append_to(b) do b.append self
425
426 redef fun enlarge(sz) do
427 if capacity >= sz then return
428 persisted = false
429 while capacity < sz do capacity = capacity * 2 + 2
430 var ns = new NativeString(capacity)
431 items.copy_to(ns, length, 0, 0)
432 items = ns
433 end
434
435 redef fun to_s do
436 persisted = true
437 var b = self
438 var r = b.items.to_s_with_length(length)
439 if r != items then persisted = false
440 return r
441 end
442
443 redef fun iterator do return new BytesIterator.with_buffer(self)
444
445 redef fun first_index_in_from(b, from) do
446 if is_empty then return -1
447 var fst = self[0]
448 var bpos = fst.first_index_in_from(self, from)
449 for i in [0 .. length[ do
450 if self[i] != b[bpos] then return first_index_in_from(b, bpos + 1)
451 bpos += 1
452 end
453 return bpos
454 end
455
456 redef fun last_index_in_from(b, from) do
457 if is_empty then return -1
458 var lst = self[length - 1]
459 var bpos = lst.last_index_in_from(b, from)
460 for i in [0 .. length[.step(-1) do
461 if self[i] != b[bpos] then return last_index_in_from(b, bpos - 1)
462 bpos -= 1
463 end
464 return bpos
465 end
466
467 redef fun search_all_in(b) do
468 var ret = new Array[Int]
469 var pos = first_index_in_from(b, 0)
470 if pos == -1 then return ret
471 pos = pos + 1
472 ret.add pos
473 loop
474 pos = first_index_in_from(b, pos)
475 if pos == -1 then return ret
476 ret.add pos
477 pos += length
478 end
479 end
480
481 # Splits the content on self when encountering `b`
482 #
483 # var a = "String is string".to_bytes.split_with('s'.ascii)
484 # assert a.length == 3
485 # assert a[0].hexdigest == "537472696E672069"
486 # assert a[1].hexdigest == "20"
487 # assert a[2].hexdigest == "7472696E67"
488 fun split_with(b: BytePattern): Array[Bytes] do
489 var fst = b.search_all_in(self)
490 if fst.is_empty then return [clone]
491 var retarr = new Array[Bytes]
492 var prev = 0
493 for i in fst do
494 retarr.add(slice(prev, i - prev))
495 prev = i + b.pattern_length
496 end
497 retarr.add slice_from(prev)
498 return retarr
499 end
500
501 # Splits `self` in two parts at the first occurence of `b`
502 #
503 # var a = "String is string".to_bytes.split_once_on('s'.ascii)
504 # assert a[0].hexdigest == "537472696E672069"
505 # assert a[1].hexdigest == "20737472696E67"
506 fun split_once_on(b: BytePattern): Array[Bytes] do
507 var spl = b.first_index_in(self)
508 if spl == -1 then return [clone]
509 var ret = new Array[Bytes].with_capacity(2)
510 ret.add(slice(0, spl))
511 ret.add(slice_from(spl + b.pattern_length))
512 return ret
513 end
514
515 # Replaces all the occurences of `this` in `self` by `by`
516 #
517 # var b = "String is string".to_bytes.replace(0x20u8, 0x41u8)
518 # assert b.hexdigest == "537472696E6741697341737472696E67"
519 fun replace(pattern: BytePattern, bytes: BytePattern): Bytes do
520 if is_empty then return new Bytes.empty
521 var pos = pattern.search_all_in(self)
522 if pos.is_empty then return clone
523 var ret = new Bytes.with_capacity(length)
524 var prev = 0
525 for i in pos do
526 ret.append_ns(items.fast_cstring(prev), i - prev)
527 bytes.append_to ret
528 prev = i + pattern.pattern_length
529 end
530 ret.append(slice_from(pos.last + pattern.pattern_length))
531 return ret
532 end
533
534 # Decode `self` from percent (or URL) encoding to a clear string
535 #
536 # Replace invalid use of '%' with '?'.
537 #
538 # assert "aBc09-._~".to_bytes.from_percent_encoding == "aBc09-._~".to_bytes
539 # assert "%25%28%29%3c%20%3e".to_bytes.from_percent_encoding == "%()< >".to_bytes
540 # assert ".com%2fpost%3fe%3dasdf%26f%3d123".to_bytes.from_percent_encoding == ".com/post?e=asdf&f=123".to_bytes
541 # assert "%25%28%29%3C%20%3E".to_bytes.from_percent_encoding == "%()< >".to_bytes
542 # assert "incomplete %".to_bytes.from_percent_encoding == "incomplete ?".to_bytes
543 # assert "invalid % usage".to_bytes.from_percent_encoding == "invalid ? usage".to_bytes
544 # assert "%c3%a9%e3%81%82%e3%81%84%e3%81%86".to_bytes.from_percent_encoding == "éあいう".to_bytes
545 fun from_percent_encoding: Bytes do
546 var tmp = new Bytes.with_capacity(length)
547 var pos = 0
548 while pos < length do
549 var b = self[pos]
550 if b != '%'.ascii then
551 tmp.add b
552 pos += 1
553 continue
554 end
555 if length - pos < 2 then
556 tmp.add '?'.ascii
557 pos += 1
558 continue
559 end
560 var bn = self[pos + 1]
561 var bnn = self[pos + 2]
562 if not bn.is_valid_hexdigit or not bnn.is_valid_hexdigit then
563 tmp.add '?'.ascii
564 pos += 1
565 continue
566 end
567 tmp.add((bn.hexdigit_to_byteval << 4) + bnn.hexdigit_to_byteval)
568 pos += 3
569 end
570 return tmp
571 end
572
573 # Is `b` a prefix of `self` ?
574 fun has_prefix(b: BytePattern): Bool do return b.is_prefix(self)
575
576 # Is `b` a suffix of `self` ?
577 fun has_suffix(b: BytePattern): Bool do return b.is_suffix(self)
578
579 redef fun is_suffix(b) do
580 if length > b.length then return false
581 var j = b.length - 1
582 var i = length - 1
583 while i > 0 do
584 if self[i] != b[j] then return false
585 i -= 1
586 j -= 1
587 end
588 return true
589 end
590
591 redef fun is_prefix(b) do
592 if length > b.length then return false
593 for i in [0 .. length[ do if self[i] != b[i] then return false
594 return true
595 end
596 end
597
598 private class BytesIterator
599 super IndexedIterator[Byte]
600
601 var tgt: NativeString
602
603 redef var index
604
605 var max: Int
606
607 init with_buffer(b: Bytes) do init(b.items, 0, b.length)
608
609 redef fun is_ok do return index < max
610
611 redef fun next do index += 1
612
613 redef fun item do return tgt[index]
614 end
615
616 redef class Text
617 # Returns a mutable copy of `self`'s bytes
618 #
619 # ~~~nit
620 # assert "String".to_bytes isa Bytes
621 # assert "String".to_bytes == [83u8, 116u8, 114u8, 105u8, 110u8, 103u8]
622 # ~~~
623 fun to_bytes: Bytes do
624 var b = new Bytes.with_capacity(bytelen)
625 append_to_bytes b
626 return b
627 end
628
629 # Is `self` a valid hexdigest ?
630 #
631 # assert "0B1d3F".is_valid_hexdigest
632 # assert not "5G".is_valid_hexdigest
633 fun is_valid_hexdigest: Bool do
634 for i in bytes do if not i.is_valid_hexdigit then return false
635 return true
636 end
637
638 # Appends `self.bytes` to `b`
639 fun append_to_bytes(b: Bytes) do
640 for s in substrings do
641 var from = if s isa FlatString then s.first_byte else 0
642 b.append_ns_from(s.items, s.bytelen, from)
643 end
644 end
645
646 # Returns a new `Bytes` instance with the digest as content
647 #
648 # assert "0B1F4D".hexdigest_to_bytes == [0x0Bu8, 0x1Fu8, 0x4Du8]
649 # assert "0B1F4D".hexdigest_to_bytes.hexdigest == "0B1F4D"
650 #
651 # Characters that are not hexadecimal digits are ignored.
652 #
653 # assert "z0B1 F4\nD".hexdigest_to_bytes.hexdigest == "0B1F4D"
654 # assert "\\x0b1 \\xf4d".hexdigest_to_bytes.hexdigest == "0B1F4D"
655 #
656 # When the number of hexadecimal digit is not even, then a leading 0 is
657 # implicitly considered to fill the left byte (the most significant one).
658 #
659 # assert "1".hexdigest_to_bytes.hexdigest == "01"
660 # assert "FFF".hexdigest_to_bytes.hexdigest == "0FFF"
661 #
662 # `Bytes::hexdigest` is a loosely reverse method since its
663 # results contain only pairs of uppercase hexadecimal digits.
664 #
665 # assert "ABCD".hexdigest_to_bytes.hexdigest == "ABCD"
666 # assert "a b c".hexdigest_to_bytes.hexdigest == "0ABC"
667 fun hexdigest_to_bytes: Bytes do
668 var b = bytes
669 var max = bytelen
670
671 var dlength = 0 # Number of hex digits
672 var pos = 0
673 while pos < max do
674 var c = b[pos]
675 if c.is_valid_hexdigit then dlength += 1
676 pos += 1
677 end
678
679 # Allocate the result buffer
680 var ret = new Bytes.with_capacity((dlength+1) / 2)
681
682 var i = (dlength+1) % 2 # current hex digit (1=high, 0=low)
683 var byte = 0u8 # current accumulated byte value
684
685 pos = 0
686 while pos < max do
687 var c = b[pos]
688 if c.is_valid_hexdigit then
689 byte = byte << 4 | c.hexdigit_to_byteval
690 i -= 1
691 if i < 0 then
692 # Last digit known: store and restart
693 ret.add byte
694 i = 1
695 byte = 0u8
696 end
697 end
698 pos += 1
699 end
700 return ret
701 end
702
703 # Gets the hexdigest of the bytes of `self`
704 #
705 # assert "&lt;STRING&#47;&rt;".hexdigest == "266C743B535452494E47262334373B2672743B"
706 fun hexdigest: String do
707 var ln = bytelen
708 var outns = new NativeString(ln * 2)
709 var oi = 0
710 for i in [0 .. ln[ do
711 bytes[i].add_digest_at(outns, oi)
712 oi += 2
713 end
714 return new FlatString.with_infos(outns, ln * 2, 0)
715 end
716
717 # Return a `Bytes` instance where Nit escape sequences are transformed.
718 #
719 # assert "B\\n\\x41\\u0103D3".unescape_to_bytes.hexdigest == "420A41F0908F93"
720 #
721 # `Bytes::chexdigest` is a loosely reverse methods since its result is only made
722 # of `"\x??"` escape sequences.
723 #
724 # assert "\\x41\\x42\\x43".unescape_to_bytes.chexdigest == "\\x41\\x42\\x43"
725 # assert "B\\n\\x41\\u0103D3".unescape_to_bytes.chexdigest == "\\x42\\x0A\\x41\\xF0\\x90\\x8F\\x93"
726 fun unescape_to_bytes: Bytes do
727 var res = new Bytes.with_capacity(self.bytelen)
728 var was_slash = false
729 var i = 0
730 while i < length do
731 var c = chars[i]
732 if not was_slash then
733 if c == '\\' then
734 was_slash = true
735 else
736 res.add_char(c)
737 end
738 i += 1
739 continue
740 end
741 was_slash = false
742 if c == 'n' then
743 res.add_char('\n')
744 else if c == 'r' then
745 res.add_char('\r')
746 else if c == 't' then
747 res.add_char('\t')
748 else if c == '0' then
749 res.add_char('\0')
750 else if c == 'x' or c == 'X' then
751 var hx = substring(i + 1, 2)
752 if hx.is_hex then
753 res.add(hx.to_hex.to_b)
754 else
755 res.add_char(c)
756 end
757 i += 2
758 else if c == 'u' or c == 'U' then
759 var hx = substring(i + 1, 6)
760 if hx.is_hex then
761 res.add_char(hx.to_hex.code_point)
762 else
763 res.add_char(c)
764 end
765 i += 6
766 else
767 res.add_char(c)
768 end
769 i += 1
770 end
771 return res
772 end
773
774 # Return a `Bytes` by reading 0 and 1.
775 #
776 # assert "1010101100001101".binarydigest_to_bytes.hexdigest == "AB0D"
777 #
778 # Note that characters that are neither 0 or 1 are just ignored.
779 #
780 # assert "a1B01 010\n1100あ001101".binarydigest_to_bytes.hexdigest == "AB0D"
781 # assert "hello".binarydigest_to_bytes.is_empty
782 #
783 # When the number of bits is not divisible by 8, then leading 0 are
784 # implicitly considered to fill the left byte (the most significant one).
785 #
786 # assert "1".binarydigest_to_bytes.hexdigest == "01"
787 # assert "1111111".binarydigest_to_bytes.hexdigest == "7F"
788 # assert "1000110100".binarydigest_to_bytes.hexdigest == "0234"
789 #
790 # `Bytes::binarydigest` is a loosely reverse method since its
791 # results contain only 1 and 0 by blocks of 8.
792 #
793 # assert "1010101100001101".binarydigest_to_bytes.binarydigest == "1010101100001101"
794 # assert "1".binarydigest_to_bytes.binarydigest == "00000001"
795 fun binarydigest_to_bytes: Bytes
796 do
797 var b = bytes
798 var max = bytelen
799
800 # Count bits
801 var bitlen = 0
802 var pos = 0
803 while pos < max do
804 var c = b[pos]
805 pos += 1
806 if c == 0x30u8 or c == 0x31u8 then bitlen += 1 # b'0' or b'1'
807 end
808
809 # Allocate (and take care of the padding)
810 var ret = new Bytes.with_capacity((bitlen+7) / 8)
811
812 var i = (bitlen+7) % 8 # current bit (7th=128, 0th=1)
813 var byte = 0u8 # current accumulated byte value
814
815 pos = 0
816 while pos < max do
817 var c = b[pos]
818 pos += 1
819 if c == 0x30u8 then # b'0'
820 byte = byte << 1
821 else if c == 0x31u8 then # b'1'
822 byte = byte << 1 | 1u8
823 else
824 continue
825 end
826
827 i -= 1
828 if i < 0 then
829 # Last bit known: store and restart
830 ret.add byte
831 i = 7
832 byte = 0u8
833 end
834 end
835 return ret
836 end
837 end
838
839 redef class FlatText
840 redef fun append_to_bytes(b) do
841 var from = if self isa FlatString then first_byte else 0
842 b.append_ns_from(items, bytelen, from)
843 end
844 end
845
846 redef class NativeString
847 # Creates a new `Bytes` object from `self` with `len` as length
848 #
849 # If `len` is null, strlen will determine the length of the Bytes
850 fun to_bytes(len: nullable Int): Bytes do
851 if len == null then len = cstring_length
852 return new Bytes(self, len, len)
853 end
854
855 # Creates a new `Bytes` object from a copy of `self` with `len` as length
856 #
857 # If `len` is null, strlen will determine the length of the Bytes
858 fun to_bytes_with_copy(len: nullable Int): Bytes do
859 if len == null then len = cstring_length
860 var nns = new NativeString(len)
861 copy_to(nns, len, 0, 0)
862 return new Bytes(nns, len, len)
863 end
864 end
865
866 # Joins an array of bytes `arr` separated by `sep`
867 #
868 # assert join_bytes(["String".to_bytes, "is".to_bytes, "string".to_bytes], ' '.ascii).hexdigest == "537472696E6720697320737472696E67"
869 fun join_bytes(arr: Array[Bytes], sep: nullable BytePattern): Bytes do
870 if arr.is_empty then return new Bytes.empty
871 sep = sep or else new Bytes.empty
872 var endln = sep.pattern_length * (arr.length - 1)
873 for i in arr do endln += i.length
874 var ret = new Bytes.with_capacity(endln)
875 ret.append(arr.first)
876 for i in [1 .. arr.length[ do
877 sep.append_to(ret)
878 ret.append arr[i]
879 end
880 return ret
881 end