*: update all clients of the `CString::to_s` services
[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: CString, 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 CString being a char*, it can be used as underlying representation here.
150 var items: CString
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 CString(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 CString(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 CString(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 CString(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 CString(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 # Interprets `self` as a big-endian positive integer.
332 #
333 # ~~~
334 # var b = "0102".hexdigest_to_bytes
335 # assert b.to_i == 258
336 # ~~~
337 #
338 # Nul bytes on the left are trimmed.
339 # 0 is returned for an empty Bytes object.
340 #
341 # ~~~
342 # assert "01".hexdigest_to_bytes.to_i == 1
343 # assert "0001".hexdigest_to_bytes.to_i == 1
344 #
345 # assert "0000".hexdigest_to_bytes.to_i == 0
346 # assert "00".hexdigest_to_bytes.to_i == 0
347 # assert "".hexdigest_to_bytes.to_i == 0
348 # ~~~
349 #
350 # `Int::to_bytes` is a loosely reverse method.
351 #
352 # ~~~
353 # assert b.to_i.to_bytes == b
354 # assert (b.to_i + 1).to_bytes.hexdigest == "0103"
355 # assert "0001".hexdigest_to_bytes.to_i.to_bytes.hexdigest == "01"
356 # ~~~
357 #
358 # Warning: `Int` might overflow for bytes with more than 60 bits.
359 fun to_i: Int do
360 var res = 0
361 var i = 0
362 while i < length do
363 res *= 256
364 res += self[i].to_i
365 i += 1
366 end
367 return res
368 end
369
370 # var b = new Bytes.with_capacity(1)
371 # b[0] = 101u8
372 # assert b.to_s == "e"
373 redef fun []=(i, v) do
374 if persisted then regen
375 assert i >= 0
376 assert i <= length
377 if i == length then add(v)
378 items[i] = v
379 end
380
381 # var b = new Bytes.empty
382 # b.add 101u8
383 # assert b.to_s == "e"
384 redef fun add(c) do
385 if persisted then regen
386 if length >= capacity then
387 enlarge(length)
388 end
389 items[length] = c
390 length += 1
391 end
392
393 # Adds the UTF-8 representation of `c` to `self`
394 #
395 # var b = new Bytes.empty
396 # b.add_char('A')
397 # b.add_char('キ')
398 # assert b.hexdigest == "41E382AD"
399 fun add_char(c: Char) do
400 if persisted then regen
401 var cln = c.u8char_len
402 var ln = length
403 enlarge(ln + cln)
404 items.set_char_at(length, c)
405 length += cln
406 end
407
408 # var b = new Bytes.empty
409 # b.append([104u8, 101u8, 108u8, 108u8, 111u8])
410 # assert b.to_s == "hello"
411 redef fun append(arr) do
412 if arr isa Bytes then
413 append_ns(arr.items, arr.length)
414 else
415 for i in arr do add i
416 end
417 end
418
419 # var b = new Bytes.empty
420 # b.append([0x41u8, 0x41u8, 0x18u8])
421 # b.pop
422 # assert b.to_s == "AA"
423 redef fun pop do
424 assert length >= 1
425 length -= 1
426 return items[length]
427 end
428
429 redef fun clear do length = 0
430
431 # Regenerates the buffer, necessary when it was persisted
432 private fun regen do
433 var nns = new CString(capacity)
434 items.copy_to(nns, length, 0, 0)
435 persisted = false
436 end
437
438 # Appends the `ln` first bytes of `ns` to self
439 fun append_ns(ns: CString, ln: Int) do
440 if persisted then regen
441 var nlen = length + ln
442 if nlen > capacity then enlarge(nlen)
443 ns.copy_to(items, ln, 0, length)
444 length += ln
445 end
446
447 # Appends `ln` bytes from `ns` starting at index `from` to self
448 fun append_ns_from(ns: CString, ln, from: Int) do
449 if persisted then regen
450 var nlen = length + ln
451 if nlen > capacity then enlarge(nlen)
452 ns.copy_to(items, ln, from, length)
453 length += ln
454 end
455
456 # Appends the bytes of `s` to `selftextextt`
457 fun append_text(s: Text) do
458 for i in s.substrings do
459 append_ns(i.fast_cstring, i.byte_length)
460 end
461 end
462
463 redef fun append_to(b) do b.append self
464
465 redef fun enlarge(sz) do
466 if capacity >= sz then return
467 persisted = false
468 while capacity < sz do capacity = capacity * 2 + 2
469 var ns = new CString(capacity)
470 items.copy_to(ns, length, 0, 0)
471 items = ns
472 end
473
474 redef fun to_s do
475 persisted = true
476 var b = self
477 var r = b.items.to_s_unsafe(length, copy=false)
478 if r != items then persisted = false
479 return r
480 end
481
482 redef fun iterator do return new BytesIterator.with_buffer(self)
483
484 redef fun first_index_in_from(b, from) do
485 if is_empty then return -1
486 var fst = self[0]
487 var bpos = fst.first_index_in_from(self, from)
488 for i in [0 .. length[ do
489 if self[i] != b[bpos] then return first_index_in_from(b, bpos + 1)
490 bpos += 1
491 end
492 return bpos
493 end
494
495 redef fun last_index_in_from(b, from) do
496 if is_empty then return -1
497 var lst = self[length - 1]
498 var bpos = lst.last_index_in_from(b, from)
499 for i in [0 .. length[.step(-1) do
500 if self[i] != b[bpos] then return last_index_in_from(b, bpos - 1)
501 bpos -= 1
502 end
503 return bpos
504 end
505
506 redef fun search_all_in(b) do
507 var ret = new Array[Int]
508 var pos = first_index_in_from(b, 0)
509 if pos == -1 then return ret
510 pos = pos + 1
511 ret.add pos
512 loop
513 pos = first_index_in_from(b, pos)
514 if pos == -1 then return ret
515 ret.add pos
516 pos += length
517 end
518 end
519
520 # Splits the content on self when encountering `b`
521 #
522 # var a = "String is string".to_bytes.split_with('s'.ascii)
523 # assert a.length == 3
524 # assert a[0].hexdigest == "537472696E672069"
525 # assert a[1].hexdigest == "20"
526 # assert a[2].hexdigest == "7472696E67"
527 fun split_with(b: BytePattern): Array[Bytes] do
528 var fst = b.search_all_in(self)
529 if fst.is_empty then return [clone]
530 var retarr = new Array[Bytes]
531 var prev = 0
532 for i in fst do
533 retarr.add(slice(prev, i - prev))
534 prev = i + b.pattern_length
535 end
536 retarr.add slice_from(prev)
537 return retarr
538 end
539
540 # Splits `self` in two parts at the first occurence of `b`
541 #
542 # var a = "String is string".to_bytes.split_once_on('s'.ascii)
543 # assert a[0].hexdigest == "537472696E672069"
544 # assert a[1].hexdigest == "20737472696E67"
545 fun split_once_on(b: BytePattern): Array[Bytes] do
546 var spl = b.first_index_in(self)
547 if spl == -1 then return [clone]
548 var ret = new Array[Bytes].with_capacity(2)
549 ret.add(slice(0, spl))
550 ret.add(slice_from(spl + b.pattern_length))
551 return ret
552 end
553
554 # Replaces all the occurences of `this` in `self` by `by`
555 #
556 # var b = "String is string".to_bytes.replace(0x20u8, 0x41u8)
557 # assert b.hexdigest == "537472696E6741697341737472696E67"
558 fun replace(pattern: BytePattern, bytes: BytePattern): Bytes do
559 if is_empty then return new Bytes.empty
560 var pos = pattern.search_all_in(self)
561 if pos.is_empty then return clone
562 var ret = new Bytes.with_capacity(length)
563 var prev = 0
564 for i in pos do
565 ret.append_ns(items.fast_cstring(prev), i - prev)
566 bytes.append_to ret
567 prev = i + pattern.pattern_length
568 end
569 ret.append(slice_from(pos.last + pattern.pattern_length))
570 return ret
571 end
572
573 # Decode `self` from percent (or URL) encoding to a clear string
574 #
575 # Replace invalid use of '%' with '?'.
576 #
577 # assert "aBc09-._~".to_bytes.from_percent_encoding == "aBc09-._~".to_bytes
578 # assert "%25%28%29%3c%20%3e".to_bytes.from_percent_encoding == "%()< >".to_bytes
579 # assert ".com%2fpost%3fe%3dasdf%26f%3d123".to_bytes.from_percent_encoding == ".com/post?e=asdf&f=123".to_bytes
580 # assert "%25%28%29%3C%20%3E".to_bytes.from_percent_encoding == "%()< >".to_bytes
581 # assert "incomplete %".to_bytes.from_percent_encoding == "incomplete ?".to_bytes
582 # assert "invalid % usage".to_bytes.from_percent_encoding == "invalid ? usage".to_bytes
583 # assert "%c3%a9%e3%81%82%e3%81%84%e3%81%86".to_bytes.from_percent_encoding == "éあいう".to_bytes
584 fun from_percent_encoding: Bytes do
585 var tmp = new Bytes.with_capacity(length)
586 var pos = 0
587 while pos < length do
588 var b = self[pos]
589 if b != '%'.ascii then
590 tmp.add b
591 pos += 1
592 continue
593 end
594 if length - pos < 2 then
595 tmp.add '?'.ascii
596 pos += 1
597 continue
598 end
599 var bn = self[pos + 1]
600 var bnn = self[pos + 2]
601 if not bn.is_valid_hexdigit or not bnn.is_valid_hexdigit then
602 tmp.add '?'.ascii
603 pos += 1
604 continue
605 end
606 tmp.add((bn.hexdigit_to_byteval << 4) + bnn.hexdigit_to_byteval)
607 pos += 3
608 end
609 return tmp
610 end
611
612 # Is `b` a prefix of `self` ?
613 fun has_prefix(b: BytePattern): Bool do return b.is_prefix(self)
614
615 # Is `b` a suffix of `self` ?
616 fun has_suffix(b: BytePattern): Bool do return b.is_suffix(self)
617
618 redef fun is_suffix(b) do
619 if length > b.length then return false
620 var j = b.length - 1
621 var i = length - 1
622 while i > 0 do
623 if self[i] != b[j] then return false
624 i -= 1
625 j -= 1
626 end
627 return true
628 end
629
630 redef fun is_prefix(b) do
631 if length > b.length then return false
632 for i in [0 .. length[ do if self[i] != b[i] then return false
633 return true
634 end
635 end
636
637 private class BytesIterator
638 super IndexedIterator[Byte]
639
640 var tgt: CString
641
642 redef var index
643
644 var max: Int
645
646 init with_buffer(b: Bytes) do init(b.items, 0, b.length)
647
648 redef fun is_ok do return index < max
649
650 redef fun next do index += 1
651
652 redef fun item do return tgt[index]
653 end
654
655 redef class Int
656 # A big-endian representation of self.
657 #
658 # ~~~
659 # assert 1.to_bytes.hexdigest == "01"
660 # assert 255.to_bytes.hexdigest == "FF"
661 # assert 256.to_bytes.hexdigest == "0100"
662 # assert 65535.to_bytes.hexdigest == "FFFF"
663 # assert 65536.to_bytes.hexdigest == "010000"
664 # ~~~
665 #
666 # For 0, a Bytes object with single nul byte is returned (instead of an empty Bytes object).
667 #
668 # ~~~
669 # assert 0.to_bytes.hexdigest == "00"
670 # ~~~
671 #
672 # `Bytes::to_i` can be used to do the reverse operation.
673 #
674 # ~~~
675 # assert 1234.to_bytes.to_i == 1234
676 # ~~~
677 #
678 # Require self >= 0
679 fun to_bytes: Bytes do
680 if self == 0 then return "\0".to_bytes
681 assert self > 0
682
683 # Compute the len (log256)
684 var len = 1
685 var max = 256
686 while self >= max do
687 len += 1
688 max *= 256
689 end
690
691 # Allocate the buffer
692 var res = new Bytes.with_capacity(len)
693 for i in [0..len[ do res[i] = 0u8
694
695 # Fill it starting with the end
696 var i = len
697 var sum = self
698 while i > 0 do
699 i -= 1
700 res[i] = (sum % 256).to_b
701 sum /= 256
702 end
703 return res
704 end
705 end
706
707 redef class Text
708 # Returns a mutable copy of `self`'s bytes
709 #
710 # ~~~nit
711 # assert "String".to_bytes isa Bytes
712 # assert "String".to_bytes == [83u8, 116u8, 114u8, 105u8, 110u8, 103u8]
713 # ~~~
714 fun to_bytes: Bytes do
715 var b = new Bytes.with_capacity(byte_length)
716 append_to_bytes b
717 return b
718 end
719
720 # Is `self` a valid hexdigest ?
721 #
722 # assert "0B1d3F".is_valid_hexdigest
723 # assert not "5G".is_valid_hexdigest
724 fun is_valid_hexdigest: Bool do
725 for i in bytes do if not i.is_valid_hexdigit then return false
726 return true
727 end
728
729 # Appends `self.bytes` to `b`
730 fun append_to_bytes(b: Bytes) do
731 for s in substrings do
732 var from = if s isa FlatString then s.first_byte else 0
733 b.append_ns_from(s.items, s.byte_length, from)
734 end
735 end
736
737 # Returns a new `Bytes` instance with the digest as content
738 #
739 # assert "0B1F4D".hexdigest_to_bytes == [0x0Bu8, 0x1Fu8, 0x4Du8]
740 # assert "0B1F4D".hexdigest_to_bytes.hexdigest == "0B1F4D"
741 #
742 # Characters that are not hexadecimal digits are ignored.
743 #
744 # assert "z0B1 F4\nD".hexdigest_to_bytes.hexdigest == "0B1F4D"
745 # assert "\\x0b1 \\xf4d".hexdigest_to_bytes.hexdigest == "0B1F4D"
746 #
747 # When the number of hexadecimal digit is not even, then a leading 0 is
748 # implicitly considered to fill the left byte (the most significant one).
749 #
750 # assert "1".hexdigest_to_bytes.hexdigest == "01"
751 # assert "FFF".hexdigest_to_bytes.hexdigest == "0FFF"
752 #
753 # `Bytes::hexdigest` is a loosely reverse method since its
754 # results contain only pairs of uppercase hexadecimal digits.
755 #
756 # assert "ABCD".hexdigest_to_bytes.hexdigest == "ABCD"
757 # assert "a b c".hexdigest_to_bytes.hexdigest == "0ABC"
758 fun hexdigest_to_bytes: Bytes do
759 var b = bytes
760 var max = byte_length
761
762 var dlength = 0 # Number of hex digits
763 var pos = 0
764 while pos < max do
765 var c = b[pos]
766 if c.is_valid_hexdigit then dlength += 1
767 pos += 1
768 end
769
770 # Allocate the result buffer
771 var ret = new Bytes.with_capacity((dlength+1) / 2)
772
773 var i = (dlength+1) % 2 # current hex digit (1=high, 0=low)
774 var byte = 0u8 # current accumulated byte value
775
776 pos = 0
777 while pos < max do
778 var c = b[pos]
779 if c.is_valid_hexdigit then
780 byte = byte << 4 | c.hexdigit_to_byteval
781 i -= 1
782 if i < 0 then
783 # Last digit known: store and restart
784 ret.add byte
785 i = 1
786 byte = 0u8
787 end
788 end
789 pos += 1
790 end
791 return ret
792 end
793
794 # Gets the hexdigest of the bytes of `self`
795 #
796 # assert "&lt;STRING&#47;&rt;".hexdigest == "266C743B535452494E47262334373B2672743B"
797 fun hexdigest: String do
798 var ln = byte_length
799 var outns = new CString(ln * 2)
800 var oi = 0
801 for i in [0 .. ln[ do
802 bytes[i].add_digest_at(outns, oi)
803 oi += 2
804 end
805 return new FlatString.with_infos(outns, ln * 2, 0)
806 end
807
808 # Return a `Bytes` instance where Nit escape sequences are transformed.
809 #
810 # assert "B\\n\\x41\\u0103D3".unescape_to_bytes.hexdigest == "420A41F0908F93"
811 #
812 # `Bytes::chexdigest` is a loosely reverse methods since its result is only made
813 # of `"\x??"` escape sequences.
814 #
815 # assert "\\x41\\x42\\x43".unescape_to_bytes.chexdigest == "\\x41\\x42\\x43"
816 # assert "B\\n\\x41\\u0103D3".unescape_to_bytes.chexdigest == "\\x42\\x0A\\x41\\xF0\\x90\\x8F\\x93"
817 fun unescape_to_bytes: Bytes do
818 var res = new Bytes.with_capacity(self.byte_length)
819 var was_slash = false
820 var i = 0
821 while i < length do
822 var c = self[i]
823 if not was_slash then
824 if c == '\\' then
825 was_slash = true
826 else
827 res.add_char(c)
828 end
829 i += 1
830 continue
831 end
832 was_slash = false
833 if c == 'n' then
834 res.add_char('\n')
835 else if c == 'r' then
836 res.add_char('\r')
837 else if c == 't' then
838 res.add_char('\t')
839 else if c == '0' then
840 res.add_char('\0')
841 else if c == 'x' or c == 'X' then
842 var hx = substring(i + 1, 2)
843 if hx.is_hex then
844 res.add(hx.to_hex.to_b)
845 else
846 res.add_char(c)
847 end
848 i += 2
849 else if c == 'u' or c == 'U' then
850 var hx = substring(i + 1, 6)
851 if hx.is_hex then
852 res.add_char(hx.to_hex.code_point)
853 else
854 res.add_char(c)
855 end
856 i += 6
857 else
858 res.add_char(c)
859 end
860 i += 1
861 end
862 return res
863 end
864
865 # Return a `Bytes` by reading 0 and 1.
866 #
867 # assert "1010101100001101".binarydigest_to_bytes.hexdigest == "AB0D"
868 #
869 # Note that characters that are neither 0 or 1 are just ignored.
870 #
871 # assert "a1B01 010\n1100あ001101".binarydigest_to_bytes.hexdigest == "AB0D"
872 # assert "hello".binarydigest_to_bytes.is_empty
873 #
874 # When the number of bits is not divisible by 8, then leading 0 are
875 # implicitly considered to fill the left byte (the most significant one).
876 #
877 # assert "1".binarydigest_to_bytes.hexdigest == "01"
878 # assert "1111111".binarydigest_to_bytes.hexdigest == "7F"
879 # assert "1000110100".binarydigest_to_bytes.hexdigest == "0234"
880 #
881 # `Bytes::binarydigest` is a loosely reverse method since its
882 # results contain only 1 and 0 by blocks of 8.
883 #
884 # assert "1010101100001101".binarydigest_to_bytes.binarydigest == "1010101100001101"
885 # assert "1".binarydigest_to_bytes.binarydigest == "00000001"
886 fun binarydigest_to_bytes: Bytes
887 do
888 var b = bytes
889 var max = byte_length
890
891 # Count bits
892 var bitlen = 0
893 var pos = 0
894 while pos < max do
895 var c = b[pos]
896 pos += 1
897 if c == 0x30u8 or c == 0x31u8 then bitlen += 1 # b'0' or b'1'
898 end
899
900 # Allocate (and take care of the padding)
901 var ret = new Bytes.with_capacity((bitlen+7) / 8)
902
903 var i = (bitlen+7) % 8 # current bit (7th=128, 0th=1)
904 var byte = 0u8 # current accumulated byte value
905
906 pos = 0
907 while pos < max do
908 var c = b[pos]
909 pos += 1
910 if c == 0x30u8 then # b'0'
911 byte = byte << 1
912 else if c == 0x31u8 then # b'1'
913 byte = byte << 1 | 1u8
914 else
915 continue
916 end
917
918 i -= 1
919 if i < 0 then
920 # Last bit known: store and restart
921 ret.add byte
922 i = 7
923 byte = 0u8
924 end
925 end
926 return ret
927 end
928 end
929
930 redef class FlatText
931 redef fun append_to_bytes(b) do
932 var from = if self isa FlatString then first_byte else 0
933 b.append_ns_from(items, byte_length, from)
934 end
935 end
936
937 redef class CString
938 # Creates a new `Bytes` object from `self` with `len` as length
939 #
940 # If `len` is null, strlen will determine the length of the Bytes
941 fun to_bytes(len: nullable Int): Bytes do
942 if len == null then len = cstring_length
943 return new Bytes(self, len, len)
944 end
945
946 # Creates a new `Bytes` object from a copy of `self` with `len` as length
947 #
948 # If `len` is null, strlen will determine the length of the Bytes
949 fun to_bytes_with_copy(len: nullable Int): Bytes do
950 if len == null then len = cstring_length
951 var nns = new CString(len)
952 copy_to(nns, len, 0, 0)
953 return new Bytes(nns, len, len)
954 end
955 end
956
957 # Joins an array of bytes `arr` separated by `sep`
958 #
959 # assert join_bytes(["String".to_bytes, "is".to_bytes, "string".to_bytes], ' '.ascii).hexdigest == "537472696E6720697320737472696E67"
960 fun join_bytes(arr: Array[Bytes], sep: nullable BytePattern): Bytes do
961 if arr.is_empty then return new Bytes.empty
962 sep = sep or else new Bytes.empty
963 var endln = sep.pattern_length * (arr.length - 1)
964 for i in arr do endln += i.length
965 var ret = new Bytes.with_capacity(endln)
966 ret.append(arr.first)
967 for i in [1 .. arr.length[ do
968 sep.append_to(ret)
969 ret.append arr[i]
970 end
971 return ret
972 end