lib/text: factorize the implementations of capitalize and capitalized
[nit.git] / lib / core / text / abstract_text.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 # Abstract class for manipulation of sequences of characters
12 module abstract_text
13
14 import native
15 import math
16 import collection
17 intrude import collection::array
18
19 in "C" `{
20 #include <stdio.h>
21 #include <stdlib.h>
22 #include <string.h>
23 `}
24
25 # High-level abstraction for all text representations
26 abstract class Text
27 super Comparable
28
29 redef type OTHER: Text
30
31 # Type of self (used for factorization of several methods, ex : substring_from, empty...)
32 type SELFTYPE: Text
33
34 # Gets a view on the chars of the Text object
35 #
36 # assert "hello".chars.to_a == ['h', 'e', 'l', 'l', 'o']
37 fun chars: SequenceRead[Char] is abstract
38
39 # Gets a view on the bytes of the Text object
40 #
41 # assert "hello".bytes.to_a == [104u8, 101u8, 108u8, 108u8, 111u8]
42 fun bytes: SequenceRead[Byte] is abstract
43
44 # Number of characters contained in self.
45 #
46 # assert "12345".length == 5
47 # assert "".length == 0
48 # assert "あいうえお".length == 5
49 fun length: Int is abstract
50
51 # Number of bytes in `self`
52 #
53 # assert "12345".bytelen == 5
54 # assert "あいうえお".bytelen == 15
55 fun bytelen: Int is abstract
56
57 # Create a substring.
58 #
59 # assert "abcd".substring(1, 2) == "bc"
60 # assert "abcd".substring(-1, 2) == "a"
61 # assert "abcd".substring(1, 0) == ""
62 # assert "abcd".substring(2, 5) == "cd"
63 # assert "あいうえお".substring(1,3) == "いうえ"
64 #
65 # A `from` index < 0 will be replaced by 0.
66 # Unless a `count` value is > 0 at the same time.
67 # In this case, `from += count` and `count -= from`.
68 fun substring(from: Int, count: Int): SELFTYPE is abstract
69
70 # Iterates on the substrings of self if any
71 private fun substrings: Iterator[FlatText] is abstract
72
73 # Is the current Text empty (== "")
74 #
75 # assert "".is_empty
76 # assert not "foo".is_empty
77 fun is_empty: Bool do return self.length == 0
78
79 # Returns an empty Text of the right type
80 #
81 # This method is used internally to get the right
82 # implementation of an empty string.
83 protected fun empty: SELFTYPE is abstract
84
85 # Gets the first char of the Text
86 #
87 # DEPRECATED : Use self.chars.first instead
88 fun first: Char do return self.chars[0]
89
90 # Access a character at `index` in the string.
91 #
92 # assert "abcd"[2] == 'c'
93 #
94 # DEPRECATED : Use self.chars.[] instead
95 fun [](index: Int): Char do return self.chars[index]
96
97 # Gets the index of the first occurence of 'c'
98 #
99 # Returns -1 if not found
100 #
101 # DEPRECATED : Use self.chars.index_of instead
102 fun index_of(c: Char): Int
103 do
104 return index_of_from(c, 0)
105 end
106
107 # Gets the last char of self
108 #
109 # DEPRECATED : Use self.chars.last instead
110 fun last: Char do return self.chars[length-1]
111
112 # Gets the index of the first occurence of ´c´ starting from ´pos´
113 #
114 # Returns -1 if not found
115 #
116 # DEPRECATED : Use self.chars.index_of_from instead
117 fun index_of_from(c: Char, pos: Int): Int
118 do
119 var iter = self.chars.iterator_from(pos)
120 while iter.is_ok do
121 if iter.item == c then return iter.index
122 iter.next
123 end
124 return -1
125 end
126
127 # Gets the last index of char ´c´
128 #
129 # Returns -1 if not found
130 #
131 # DEPRECATED : Use self.chars.last_index_of instead
132 fun last_index_of(c: Char): Int
133 do
134 return last_index_of_from(c, length - 1)
135 end
136
137 # Return a null terminated char *
138 fun to_cstring: NativeString is abstract
139
140 # The index of the last occurrence of an element starting from pos (in reverse order).
141 #
142 # var s = "/etc/bin/test/test.nit"
143 # assert s.last_index_of_from('/', s.length-1) == 13
144 # assert s.last_index_of_from('/', 12) == 8
145 #
146 # Returns -1 if not found
147 #
148 # DEPRECATED : Use self.chars.last_index_of_from instead
149 fun last_index_of_from(item: Char, pos: Int): Int do return chars.last_index_of_from(item, pos)
150
151 # Gets an iterator on the chars of self
152 #
153 # DEPRECATED : Use self.chars.iterator instead
154 fun iterator: Iterator[Char]
155 do
156 return self.chars.iterator
157 end
158
159
160 # Gets an Array containing the chars of self
161 #
162 # DEPRECATED : Use self.chars.to_a instead
163 fun to_a: Array[Char] do return chars.to_a
164
165 # Create a substring from `self` beginning at the `from` position
166 #
167 # assert "abcd".substring_from(1) == "bcd"
168 # assert "abcd".substring_from(-1) == "abcd"
169 # assert "abcd".substring_from(2) == "cd"
170 #
171 # As with substring, a `from` index < 0 will be replaced by 0
172 fun substring_from(from: Int): SELFTYPE
173 do
174 if from >= self.length then return empty
175 if from < 0 then from = 0
176 return substring(from, length - from)
177 end
178
179 # Does self have a substring `str` starting from position `pos`?
180 #
181 # assert "abcd".has_substring("bc",1) == true
182 # assert "abcd".has_substring("bc",2) == false
183 #
184 # Returns true iff all characters of `str` are presents
185 # at the expected index in `self.`
186 # The first character of `str` being at `pos`, the second
187 # character being at `pos+1` and so on...
188 #
189 # This means that all characters of `str` need to be inside `self`.
190 #
191 # assert "abcd".has_substring("xab", -1) == false
192 # assert "abcd".has_substring("cdx", 2) == false
193 #
194 # And that the empty string is always a valid substring.
195 #
196 # assert "abcd".has_substring("", 2) == true
197 # assert "abcd".has_substring("", 200) == true
198 fun has_substring(str: String, pos: Int): Bool
199 do
200 if str.is_empty then return true
201 if pos < 0 or pos + str.length > length then return false
202 var myiter = self.chars.iterator_from(pos)
203 var itsiter = str.chars.iterator
204 while myiter.is_ok and itsiter.is_ok do
205 if myiter.item != itsiter.item then return false
206 myiter.next
207 itsiter.next
208 end
209 if itsiter.is_ok then return false
210 return true
211 end
212
213 # Is this string prefixed by `prefix`?
214 #
215 # assert "abcd".has_prefix("ab") == true
216 # assert "abcbc".has_prefix("bc") == false
217 # assert "ab".has_prefix("abcd") == false
218 fun has_prefix(prefix: String): Bool do return has_substring(prefix,0)
219
220 # Is this string suffixed by `suffix`?
221 #
222 # assert "abcd".has_suffix("abc") == false
223 # assert "abcd".has_suffix("bcd") == true
224 fun has_suffix(suffix: String): Bool do return has_substring(suffix, length - suffix.length)
225
226 # Returns `self` as the corresponding integer
227 #
228 # assert "123".to_i == 123
229 # assert "-1".to_i == -1
230 # assert "0x64".to_i == 100
231 # assert "0b1100_0011".to_i== 195
232 # assert "--12".to_i == 12
233 #
234 # REQUIRE: `self`.`is_int`
235 fun to_i: Int is abstract
236
237 # If `self` contains a float, return the corresponding float
238 #
239 # assert "123".to_f == 123.0
240 # assert "-1".to_f == -1.0
241 # assert "-1.2e-3".to_f == -0.0012
242 fun to_f: Float
243 do
244 # Shortcut
245 return to_s.to_cstring.atof
246 end
247
248 # If `self` contains only digits and alpha <= 'f', return the corresponding integer.
249 #
250 # assert "ff".to_hex == 255
251 fun to_hex(pos, ln: nullable Int): Int do
252 var res = 0
253 if pos == null then pos = 0
254 if ln == null then ln = length - pos
255 var max = pos + ln
256 for i in [pos .. max[ do
257 res <<= 4
258 res += self[i].from_hex
259 end
260 return res
261 end
262
263 # If `self` contains only digits <= '7', return the corresponding integer.
264 #
265 # assert "714".to_oct == 460
266 fun to_oct: Int do return a_to(8)
267
268 # If `self` contains only '0' et '1', return the corresponding integer.
269 #
270 # assert "101101".to_bin == 45
271 fun to_bin: Int do return a_to(2)
272
273 # If `self` contains only digits '0' .. '9', return the corresponding integer.
274 #
275 # assert "108".to_dec == 108
276 fun to_dec: Int do return a_to(10)
277
278 # If `self` contains only digits and letters, return the corresponding integer in a given base
279 #
280 # assert "120".a_to(3) == 15
281 fun a_to(base: Int) : Int
282 do
283 var i = 0
284 var neg = false
285
286 for j in [0..length[ do
287 var c = chars[j]
288 var v = c.to_i
289 if v > base then
290 if neg then
291 return -i
292 else
293 return i
294 end
295 else if v < 0 then
296 neg = true
297 else
298 i = i * base + v
299 end
300 end
301 if neg then
302 return -i
303 else
304 return i
305 end
306 end
307
308 # Is this string in a valid numeric format compatible with `to_f`?
309 #
310 # assert "123".is_numeric == true
311 # assert "1.2".is_numeric == true
312 # assert "-1.2".is_numeric == true
313 # assert "-1.23e-2".is_numeric == true
314 # assert "1..2".is_numeric == false
315 # assert "".is_numeric == false
316 fun is_numeric: Bool
317 do
318 var has_point = false
319 var e_index = -1
320 for i in [0..length[ do
321 var c = chars[i]
322 if not c.is_numeric then
323 if c == '.' and not has_point then
324 has_point = true
325 else if c == 'e' and e_index == -1 and i > 0 and i < length - 1 and chars[i-1] != '-' then
326 e_index = i
327 else if c == '-' and i == e_index + 1 and i < length - 1 then
328 else
329 return false
330 end
331 end
332 end
333 return not is_empty
334 end
335
336 # Returns `true` if the string contains only Hex chars
337 #
338 # assert "048bf".is_hex == true
339 # assert "ABCDEF".is_hex == true
340 # assert "0G".is_hex == false
341 fun is_hex: Bool
342 do
343 for i in [0..length[ do
344 var c = chars[i]
345 if not (c >= 'a' and c <= 'f') and
346 not (c >= 'A' and c <= 'F') and
347 not (c >= '0' and c <= '9') then return false
348 end
349 return true
350 end
351
352 # Returns `true` if the string contains only Binary digits
353 #
354 # assert "1101100".is_bin == true
355 # assert "1101020".is_bin == false
356 fun is_bin: Bool do
357 for i in chars do if i != '0' and i != '1' then return false
358 return true
359 end
360
361 # Returns `true` if the string contains only Octal digits
362 #
363 # assert "213453".is_oct == true
364 # assert "781".is_oct == false
365 fun is_oct: Bool do
366 for i in chars do if i < '0' or i > '7' then return false
367 return true
368 end
369
370 # Returns `true` if the string contains only Decimal digits
371 #
372 # assert "10839".is_dec == true
373 # assert "164F".is_dec == false
374 fun is_dec: Bool do
375 for i in chars do if i < '0' or i > '9' then return false
376 return true
377 end
378
379 # Are all letters in `self` upper-case ?
380 #
381 # assert "HELLO WORLD".is_upper == true
382 # assert "%$&%!".is_upper == true
383 # assert "hello world".is_upper == false
384 # assert "Hello World".is_upper == false
385 fun is_upper: Bool
386 do
387 for i in [0..length[ do
388 var char = chars[i]
389 if char.is_lower then return false
390 end
391 return true
392 end
393
394 # Are all letters in `self` lower-case ?
395 #
396 # assert "hello world".is_lower == true
397 # assert "%$&%!".is_lower == true
398 # assert "Hello World".is_lower == false
399 fun is_lower: Bool
400 do
401 for i in [0..length[ do
402 var char = chars[i]
403 if char.is_upper then return false
404 end
405 return true
406 end
407
408 # Removes the whitespaces at the beginning of self
409 #
410 # assert " \n\thello \n\t".l_trim == "hello \n\t"
411 #
412 # `Char::is_whitespace` determines what is a whitespace.
413 fun l_trim: SELFTYPE
414 do
415 var iter = self.chars.iterator
416 while iter.is_ok do
417 if not iter.item.is_whitespace then break
418 iter.next
419 end
420 if iter.index == length then return self.empty
421 return self.substring_from(iter.index)
422 end
423
424 # Removes the whitespaces at the end of self
425 #
426 # assert " \n\thello \n\t".r_trim == " \n\thello"
427 #
428 # `Char::is_whitespace` determines what is a whitespace.
429 fun r_trim: SELFTYPE
430 do
431 var iter = self.chars.reverse_iterator
432 while iter.is_ok do
433 if not iter.item.is_whitespace then break
434 iter.next
435 end
436 if iter.index < 0 then return self.empty
437 return self.substring(0, iter.index + 1)
438 end
439
440 # Trims trailing and preceding white spaces
441 #
442 # assert " Hello World ! ".trim == "Hello World !"
443 # assert "\na\nb\tc\t".trim == "a\nb\tc"
444 #
445 # `Char::is_whitespace` determines what is a whitespace.
446 fun trim: SELFTYPE do return (self.l_trim).r_trim
447
448 # Is the string non-empty but only made of whitespaces?
449 #
450 # assert " \n\t ".is_whitespace == true
451 # assert " hello ".is_whitespace == false
452 # assert "".is_whitespace == false
453 #
454 # `Char::is_whitespace` determines what is a whitespace.
455 fun is_whitespace: Bool
456 do
457 if is_empty then return false
458 for c in self.chars do
459 if not c.is_whitespace then return false
460 end
461 return true
462 end
463
464 # Returns `self` removed from its last line terminator (if any).
465 #
466 # assert "Hello\n".chomp == "Hello"
467 # assert "Hello".chomp == "Hello"
468 #
469 # assert "\n".chomp == ""
470 # assert "".chomp == ""
471 #
472 # Line terminators are `"\n"`, `"\r\n"` and `"\r"`.
473 # A single line terminator, the last one, is removed.
474 #
475 # assert "\r\n".chomp == ""
476 # assert "\r\n\n".chomp == "\r\n"
477 # assert "\r\n\r\n".chomp == "\r\n"
478 # assert "\r\n\r".chomp == "\r\n"
479 #
480 # Note: unlike with most IO methods like `Reader::read_line`,
481 # a single `\r` is considered here to be a line terminator and will be removed.
482 fun chomp: SELFTYPE
483 do
484 var len = length
485 if len == 0 then return self
486 var l = self.chars.last
487 if l == '\r' then
488 return substring(0, len-1)
489 else if l != '\n' then
490 return self
491 else if len > 1 and self.chars[len-2] == '\r' then
492 return substring(0, len-2)
493 else
494 return substring(0, len-1)
495 end
496 end
497
498 # Justify `self` in a space of `length`
499 #
500 # `left` is the space ratio on the left side.
501 # * 0.0 for left-justified (no space at the left)
502 # * 1.0 for right-justified (all spaces at the left)
503 # * 0.5 for centered (half the spaces at the left)
504 #
505 # `char`, or `' '` by default, is repeated to pad the empty space.
506 #
507 # Examples
508 #
509 # assert "hello".justify(10, 0.0) == "hello "
510 # assert "hello".justify(10, 1.0) == " hello"
511 # assert "hello".justify(10, 0.5) == " hello "
512 # assert "hello".justify(10, 0.5, '.') == "..hello..."
513 #
514 # If `length` is not enough, `self` is returned as is.
515 #
516 # assert "hello".justify(2, 0.0) == "hello"
517 #
518 # REQUIRE: `left >= 0.0 and left <= 1.0`
519 # ENSURE: `self.length <= length implies result.length == length`
520 # ENSURE: `self.length >= length implies result == self`
521 fun justify(length: Int, left: Float, char: nullable Char): String
522 do
523 var pad = (char or else ' ').to_s
524 var diff = length - self.length
525 if diff <= 0 then return to_s
526 assert left >= 0.0 and left <= 1.0
527 var before = (diff.to_f * left).to_i
528 return pad * before + self + pad * (diff-before)
529 end
530
531 # Mangle a string to be a unique string only made of alphanumeric characters and underscores.
532 #
533 # This method is injective (two different inputs never produce the same
534 # output) and the returned string always respect the following rules:
535 #
536 # * Contains only US-ASCII letters, digits and underscores.
537 # * Never starts with a digit.
538 # * Never ends with an underscore.
539 # * Never contains two contiguous underscores.
540 #
541 # assert "42_is/The answer!".to_cmangle == "_52d2_is_47dThe_32danswer_33d"
542 # assert "__".to_cmangle == "_95d_95d"
543 # assert "__d".to_cmangle == "_95d_d"
544 # assert "_d_".to_cmangle == "_d_95d"
545 # assert "_42".to_cmangle == "_95d42"
546 # assert "foo".to_cmangle == "foo"
547 # assert "".to_cmangle == ""
548 fun to_cmangle: String
549 do
550 if is_empty then return ""
551 var res = new Buffer
552 var underscore = false
553 var start = 0
554 var c = chars[0]
555
556 if c >= '0' and c <= '9' then
557 res.add('_')
558 res.append(c.code_point.to_s)
559 res.add('d')
560 start = 1
561 end
562 for i in [start..length[ do
563 c = chars[i]
564 if (c >= 'a' and c <= 'z') or (c >='A' and c <= 'Z') then
565 res.add(c)
566 underscore = false
567 continue
568 end
569 if underscore then
570 res.append('_'.code_point.to_s)
571 res.add('d')
572 end
573 if c >= '0' and c <= '9' then
574 res.add(c)
575 underscore = false
576 else if c == '_' then
577 res.add(c)
578 underscore = true
579 else
580 res.add('_')
581 res.append(c.code_point.to_s)
582 res.add('d')
583 underscore = false
584 end
585 end
586 if underscore then
587 res.append('_'.code_point.to_s)
588 res.add('d')
589 end
590 return res.to_s
591 end
592
593 # Escape " \ ' and non printable characters using the rules of literal C strings and characters
594 #
595 # assert "abAB12<>&".escape_to_c == "abAB12<>&"
596 # assert "\n\"'\\".escape_to_c == "\\n\\\"\\'\\\\"
597 #
598 # Most non-printable characters (bellow ASCII 32) are escaped to an octal form `\nnn`.
599 # Three digits are always used to avoid following digits to be interpreted as an element
600 # of the octal sequence.
601 #
602 # assert "{0.code_point}{1.code_point}{8.code_point}{31.code_point}{32.code_point}".escape_to_c == "\\000\\001\\010\\037 "
603 #
604 # The exceptions are the common `\t` and `\n`.
605 fun escape_to_c: String
606 do
607 var b = new Buffer
608 for i in [0..length[ do
609 var c = chars[i]
610 if c == '\n' then
611 b.append("\\n")
612 else if c == '\t' then
613 b.append("\\t")
614 else if c == '"' then
615 b.append("\\\"")
616 else if c == '\'' then
617 b.append("\\\'")
618 else if c == '\\' then
619 b.append("\\\\")
620 else if c.code_point < 32 then
621 b.add('\\')
622 var oct = c.code_point.to_base(8)
623 # Force 3 octal digits since it is the
624 # maximum allowed in the C specification
625 if oct.length == 1 then
626 b.add('0')
627 b.add('0')
628 else if oct.length == 2 then
629 b.add('0')
630 end
631 b.append(oct)
632 else
633 b.add(c)
634 end
635 end
636 return b.to_s
637 end
638
639 # Escape additionnal characters
640 # The result might no be legal in C but be used in other languages
641 #
642 # assert "ab|\{\}".escape_more_to_c("|\{\}") == "ab\\|\\\{\\\}"
643 fun escape_more_to_c(chars: String): String
644 do
645 var b = new Buffer
646 for c in escape_to_c.chars do
647 if chars.chars.has(c) then
648 b.add('\\')
649 end
650 b.add(c)
651 end
652 return b.to_s
653 end
654
655 # Escape to C plus braces
656 #
657 # assert "\n\"'\\\{\}".escape_to_nit == "\\n\\\"\\'\\\\\\\{\\\}"
658 fun escape_to_nit: String do return escape_more_to_c("\{\}")
659
660 # Escape to POSIX Shell (sh).
661 #
662 # Abort if the text contains a null byte.
663 #
664 # assert "\n\"'\\\{\}0".escape_to_sh == "'\n\"'\\''\\\{\}0'"
665 fun escape_to_sh: String do
666 var b = new Buffer
667 b.chars.add '\''
668 for i in [0..length[ do
669 var c = chars[i]
670 if c == '\'' then
671 b.append("'\\''")
672 else
673 assert without_null_byte: c != '\0'
674 b.add(c)
675 end
676 end
677 b.chars.add '\''
678 return b.to_s
679 end
680
681 # Escape to include in a Makefile
682 #
683 # Unfortunately, some characters are not escapable in Makefile.
684 # These characters are `;`, `|`, `\`, and the non-printable ones.
685 # They will be rendered as `"?{hex}"`.
686 fun escape_to_mk: String do
687 var b = new Buffer
688 for i in [0..length[ do
689 var c = chars[i]
690 if c == '$' then
691 b.append("$$")
692 else if c == ':' or c == ' ' or c == '#' then
693 b.add('\\')
694 b.add(c)
695 else if c.code_point < 32 or c == ';' or c == '|' or c == '\\' or c == '=' then
696 b.append("?{c.code_point.to_base(16)}")
697 else
698 b.add(c)
699 end
700 end
701 return b.to_s
702 end
703
704 # Return a string where Nit escape sequences are transformed.
705 #
706 # var s = "\\n"
707 # assert s.length == 2
708 # var u = s.unescape_nit
709 # assert u.length == 1
710 # assert u.chars[0].code_point == 10 # (the ASCII value of the "new line" character)
711 fun unescape_nit: String
712 do
713 var res = new Buffer.with_cap(self.length)
714 var was_slash = false
715 for i in [0..length[ do
716 var c = chars[i]
717 if not was_slash then
718 if c == '\\' then
719 was_slash = true
720 else
721 res.add(c)
722 end
723 continue
724 end
725 was_slash = false
726 if c == 'n' then
727 res.add('\n')
728 else if c == 'r' then
729 res.add('\r')
730 else if c == 't' then
731 res.add('\t')
732 else if c == '0' then
733 res.add('\0')
734 else
735 res.add(c)
736 end
737 end
738 return res.to_s
739 end
740
741 # Returns `self` with all characters escaped with their UTF-16 representation
742 #
743 # assert "Aèあ𐏓".escape_to_utf16 == "\\u0041\\u00e8\\u3042\\ud800\\udfd3"
744 fun escape_to_utf16: String do
745 var buf = new Buffer
746 for i in chars do buf.append i.escape_to_utf16
747 return buf.to_s
748 end
749
750 # Returns the Unicode char escaped by `self`
751 #
752 # assert "\\u0041".from_utf16_escape == 'A'
753 # assert "\\ud800\\udfd3".from_utf16_escape == '𐏓'
754 # assert "\\u00e8".from_utf16_escape == 'è'
755 # assert "\\u3042".from_utf16_escape == 'あ'
756 fun from_utf16_escape(pos, ln: nullable Int): Char do
757 if pos == null then pos = 0
758 if ln == null then ln = length - pos
759 if ln < 6 then return 0xFFFD.code_point
760 var cp = from_utf16_digit(pos + 2)
761 if cp < 0xD800 then return cp.code_point
762 if cp > 0xDFFF then return cp.code_point
763 if cp > 0xDBFF then return 0xFFFD.code_point
764 if ln == 6 then return 0xFFFD.code_point
765 if ln < 12 then return 0xFFFD.code_point
766 cp <<= 16
767 cp += from_utf16_digit(pos + 8)
768 var cplo = cp & 0xFFFF
769 if cplo < 0xDC00 then return 0xFFFD.code_point
770 if cplo > 0xDFFF then return 0xFFFD.code_point
771 return cp.from_utf16_surr.code_point
772 end
773
774 # Returns a UTF-16 escape value
775 #
776 # var s = "\\ud800\\udfd3"
777 # assert s.from_utf16_digit(2) == 0xD800
778 # assert s.from_utf16_digit(8) == 0xDFD3
779 fun from_utf16_digit(pos: nullable Int): Int do
780 if pos == null then pos = 0
781 return to_hex(pos, 4)
782 end
783
784 # Encode `self` to percent (or URL) encoding
785 #
786 # assert "aBc09-._~".to_percent_encoding == "aBc09-._~"
787 # assert "%()< >".to_percent_encoding == "%25%28%29%3c%20%3e"
788 # assert ".com/post?e=asdf&f=123".to_percent_encoding == ".com%2fpost%3fe%3dasdf%26f%3d123"
789 # assert "éあいう".to_percent_encoding == "%c3%a9%e3%81%82%e3%81%84%e3%81%86"
790 fun to_percent_encoding: String
791 do
792 var buf = new Buffer
793
794 for i in [0..length[ do
795 var c = chars[i]
796 if (c >= '0' and c <= '9') or
797 (c >= 'a' and c <= 'z') or
798 (c >= 'A' and c <= 'Z') or
799 c == '-' or c == '.' or
800 c == '_' or c == '~'
801 then
802 buf.add c
803 else
804 var bytes = c.to_s.bytes
805 for b in bytes do buf.append "%{b.to_i.to_hex}"
806 end
807 end
808
809 return buf.to_s
810 end
811
812 # Decode `self` from percent (or URL) encoding to a clear string
813 #
814 # Replace invalid use of '%' with '?'.
815 #
816 # assert "aBc09-._~".from_percent_encoding == "aBc09-._~"
817 # assert "%25%28%29%3c%20%3e".from_percent_encoding == "%()< >"
818 # assert ".com%2fpost%3fe%3dasdf%26f%3d123".from_percent_encoding == ".com/post?e=asdf&f=123"
819 # assert "%25%28%29%3C%20%3E".from_percent_encoding == "%()< >"
820 # assert "incomplete %".from_percent_encoding == "incomplete ?"
821 # assert "invalid % usage".from_percent_encoding == "invalid ? usage"
822 # assert "%c3%a9%e3%81%82%e3%81%84%e3%81%86".from_percent_encoding == "éあいう"
823 fun from_percent_encoding: String
824 do
825 var len = bytelen
826 var has_percent = false
827 for c in chars do
828 if c == '%' then
829 len -= 2
830 has_percent = true
831 end
832 end
833
834 # If no transformation is needed, return self as a string
835 if not has_percent then return to_s
836
837 var buf = new NativeString(len)
838 var i = 0
839 var l = 0
840 while i < length do
841 var c = chars[i]
842 if c == '%' then
843 if i + 2 >= length then
844 # What follows % has been cut off
845 buf[l] = '?'.ascii
846 else
847 i += 1
848 var hex_s = substring(i, 2)
849 if hex_s.is_hex then
850 var hex_i = hex_s.to_hex
851 buf[l] = hex_i.to_b
852 i += 1
853 else
854 # What follows a % is not Hex
855 buf[l] = '?'.ascii
856 i -= 1
857 end
858 end
859 else buf[l] = c.ascii
860
861 i += 1
862 l += 1
863 end
864
865 return buf.to_s_unsafe(l)
866 end
867
868 # Escape the characters `<`, `>`, `&`, `"`, `'` and `/` as HTML/XML entity references.
869 #
870 # assert "a&b-<>\"x\"/'".html_escape == "a&amp;b-&lt;&gt;&#34;x&#34;&#47;&#39;"
871 #
872 # SEE: <https://www.owasp.org/index.php/XSS_%28Cross_Site_Scripting%29_Prevention_Cheat_Sheet#RULE_.231_-_HTML_Escape_Before_Inserting_Untrusted_Data_into_HTML_Element_Content>
873 fun html_escape: String
874 do
875 var buf = new Buffer
876
877 for i in [0..length[ do
878 var c = chars[i]
879 if c == '&' then
880 buf.append "&amp;"
881 else if c == '<' then
882 buf.append "&lt;"
883 else if c == '>' then
884 buf.append "&gt;"
885 else if c == '"' then
886 buf.append "&#34;"
887 else if c == '\'' then
888 buf.append "&#39;"
889 else if c == '/' then
890 buf.append "&#47;"
891 else buf.add c
892 end
893
894 return buf.to_s
895 end
896
897 # Equality of text
898 # Two pieces of text are equals if thez have the same characters in the same order.
899 #
900 # assert "hello" == "hello"
901 # assert "hello" != "HELLO"
902 # assert "hello" == "hel"+"lo"
903 #
904 # Things that are not Text are not equal.
905 #
906 # assert "9" != '9'
907 # assert "9" != ['9']
908 # assert "9" != 9
909 #
910 # assert "9".chars.first == '9' # equality of Char
911 # assert "9".chars == ['9'] # equality of Sequence
912 # assert "9".to_i == 9 # equality of Int
913 redef fun ==(o)
914 do
915 if o == null then return false
916 if not o isa Text then return false
917 if self.is_same_instance(o) then return true
918 if self.length != o.length then return false
919 return self.chars == o.chars
920 end
921
922 # Lexicographical comparaison
923 #
924 # assert "abc" < "xy"
925 # assert "ABC" < "abc"
926 redef fun <(other)
927 do
928 var self_chars = self.chars.iterator
929 var other_chars = other.chars.iterator
930
931 while self_chars.is_ok and other_chars.is_ok do
932 if self_chars.item < other_chars.item then return true
933 if self_chars.item > other_chars.item then return false
934 self_chars.next
935 other_chars.next
936 end
937
938 if self_chars.is_ok then
939 return false
940 else
941 return true
942 end
943 end
944
945 # Escape string used in labels for graphviz
946 #
947 # assert ">><<".escape_to_dot == "\\>\\>\\<\\<"
948 fun escape_to_dot: String
949 do
950 return escape_more_to_c("|\{\}<>")
951 end
952
953 private var hash_cache: nullable Int = null
954
955 redef fun hash
956 do
957 if hash_cache == null then
958 # djb2 hash algorithm
959 var h = 5381
960
961 for i in [0..length[ do
962 var char = chars[i]
963 h = (h << 5) + h + char.code_point
964 end
965
966 hash_cache = h
967 end
968 return hash_cache.as(not null)
969 end
970
971 # Format `self` by replacing each `%n` with the `n`th item of `args`
972 #
973 # The character `%` followed by something other than a number are left as is.
974 # To represent a `%` followed by a number, double the `%`, as in `%%7`.
975 #
976 # assert "This %0 is a %1.".format("String", "formatted String") == "This String is a formatted String."
977 # assert "Do not escape % nor %%1".format("unused") == "Do not escape % nor %1"
978 fun format(args: Object...): String do
979 var s = new Array[Text]
980 var curr_st = 0
981 var i = 0
982 while i < length do
983 if self[i] == '%' then
984 var fmt_st = i
985 i += 1
986 var ciph_st = i
987 while i < length and self[i].is_numeric do
988 i += 1
989 end
990
991 var ciph_len = i - ciph_st
992 if ciph_len == 0 then
993 # What follows '%' is not a number.
994 s.push substring(curr_st, i - curr_st)
995 if i < length and self[i] == '%' then
996 # Skip the next `%`
997 i += 1
998 end
999 curr_st = i
1000 continue
1001 end
1002
1003 var arg_index = substring(ciph_st, ciph_len).to_i
1004 if arg_index >= args.length then continue
1005
1006 s.push substring(curr_st, fmt_st - curr_st)
1007 s.push args[arg_index].to_s
1008
1009 curr_st = i
1010 i -= 1
1011 end
1012 i += 1
1013 end
1014 s.push substring(curr_st, length - curr_st)
1015 return s.plain_to_s
1016 end
1017
1018 # Return the Levenshtein distance between two strings
1019 #
1020 # ~~~
1021 # assert "abcd".levenshtein_distance("abcd") == 0
1022 # assert "".levenshtein_distance("abcd") == 4
1023 # assert "abcd".levenshtein_distance("") == 4
1024 # assert "abcd".levenshtein_distance("xyz") == 4
1025 # assert "abcd".levenshtein_distance("xbdy") == 3
1026 # ~~~
1027 fun levenshtein_distance(other: String): Int
1028 do
1029 var slen = self.length
1030 var olen = other.length
1031
1032 # fast cases
1033 if slen == 0 then return olen
1034 if olen == 0 then return slen
1035 if self == other then return 0
1036
1037 # previous row of distances
1038 var v0 = new Array[Int].with_capacity(olen+1)
1039
1040 # current row of distances
1041 var v1 = new Array[Int].with_capacity(olen+1)
1042
1043 for j in [0..olen] do
1044 # prefix insert cost
1045 v0[j] = j
1046 end
1047
1048 for i in [0..slen[ do
1049
1050 # prefix delete cost
1051 v1[0] = i + 1
1052
1053 for j in [0..olen[ do
1054 # delete cost
1055 var cost1 = v1[j] + 1
1056 # insert cost
1057 var cost2 = v0[j + 1] + 1
1058 # same char cost (+0)
1059 var cost3 = v0[j]
1060 # change cost
1061 if self[i] != other[j] then cost3 += 1
1062 # keep the min
1063 v1[j+1] = cost1.min(cost2).min(cost3)
1064 end
1065
1066 # Switch columns:
1067 # * v1 become v0 in the next iteration
1068 # * old v0 is reused as the new v1
1069 var tmp = v1
1070 v1 = v0
1071 v0 = tmp
1072 end
1073
1074 return v0[olen]
1075 end
1076
1077 # Copies `n` bytes from `self` at `src_offset` into `dest` starting at `dest_offset`
1078 #
1079 # Basically a high-level synonym of NativeString::copy_to
1080 #
1081 # REQUIRE: `n` must be large enough to contain `len` bytes
1082 #
1083 # var ns = new NativeString(8)
1084 # "Text is String".copy_to_native(ns, 8, 2, 0)
1085 # assert ns.to_s_unsafe(8) == "xt is St"
1086 #
1087 fun copy_to_native(dest: NativeString, n, src_offset, dest_offset: Int) do
1088 var mypos = src_offset
1089 var itspos = dest_offset
1090 while n > 0 do
1091 dest[itspos] = self.bytes[mypos]
1092 itspos += 1
1093 mypos += 1
1094 n -= 1
1095 end
1096 end
1097
1098 # Packs the content of a string in packs of `ln` chars.
1099 # This variant ensures that only the last element might be smaller than `ln`
1100 #
1101 # ~~~nit
1102 # var s = "abcdefghijklmnopqrstuvwxyz"
1103 # assert s.pack_l(4) == ["abcd","efgh","ijkl","mnop","qrst","uvwx","yz"]
1104 # ~~~
1105 fun pack_l(ln: Int): Array[Text] do
1106 var st = 0
1107 var retarr = new Array[Text].with_capacity(length / ln + length % ln)
1108 while st < length do
1109 retarr.add(substring(st, ln))
1110 st += ln
1111 end
1112 return retarr
1113 end
1114
1115 # Packs the content of a string in packs of `ln` chars.
1116 # This variant ensures that only the first element might be smaller than `ln`
1117 #
1118 # ~~~nit
1119 # var s = "abcdefghijklmnopqrstuvwxyz"
1120 # assert s.pack_r(4) == ["ab","cdef","ghij","klmn","opqr","stuv","wxyz"]
1121 # ~~~
1122 fun pack_r(ln: Int): Array[Text] do
1123 var st = length
1124 var retarr = new Array[Text].with_capacity(length / ln + length % ln)
1125 while st >= 0 do
1126 retarr.add(substring(st - ln, ln))
1127 st -= ln
1128 end
1129 return retarr.reversed
1130 end
1131 end
1132
1133 # All kinds of array-based text representations.
1134 abstract class FlatText
1135 super Text
1136
1137 # Underlying C-String (`char*`)
1138 #
1139 # Warning : Might be void in some subclasses, be sure to check
1140 # if set before using it.
1141 var items: NativeString is noinit
1142
1143 # Returns a char* starting at position `first_byte`
1144 #
1145 # WARNING: If you choose to use this service, be careful of the following.
1146 #
1147 # Strings and NativeString are *ideally* always allocated through a Garbage Collector.
1148 # Since the GC tracks the use of the pointer for the beginning of the char*, it may be
1149 # deallocated at any moment, rendering the pointer returned by this function invalid.
1150 # Any access to freed memory may very likely cause undefined behaviour or a crash.
1151 # (Failure to do so will most certainly result in long and painful debugging hours)
1152 #
1153 # The only safe use of this pointer is if it is ephemeral (e.g. read in a C function
1154 # then immediately return).
1155 #
1156 # As always, do not modify the content of the String in C code, if this is what you want
1157 # copy locally the char* as Nit Strings are immutable.
1158 fun fast_cstring: NativeString is abstract
1159
1160 redef var length = 0
1161
1162 redef var bytelen = 0
1163
1164 redef fun output
1165 do
1166 var i = 0
1167 while i < length do
1168 items[i].output
1169 i += 1
1170 end
1171 end
1172
1173 redef fun copy_to_native(dest, n, src_offset, dest_offset) do
1174 items.copy_to(dest, n, src_offset, dest_offset)
1175 end
1176 end
1177
1178 # Abstract class for the SequenceRead compatible
1179 # views on the chars of any Text
1180 private abstract class StringCharView
1181 super SequenceRead[Char]
1182
1183 type SELFTYPE: Text
1184
1185 var target: SELFTYPE
1186
1187 redef fun is_empty do return target.is_empty
1188
1189 redef fun length do return target.length
1190
1191 redef fun iterator: IndexedIterator[Char] do return self.iterator_from(0)
1192
1193 redef fun reverse_iterator do return self.reverse_iterator_from(self.length - 1)
1194 end
1195
1196 # Abstract class for the SequenceRead compatible
1197 # views on the bytes of any Text
1198 private abstract class StringByteView
1199 super SequenceRead[Byte]
1200
1201 type SELFTYPE: Text
1202
1203 var target: SELFTYPE
1204
1205 redef fun is_empty do return target.is_empty
1206
1207 redef fun length do return target.bytelen
1208
1209 redef fun iterator do return self.iterator_from(0)
1210
1211 redef fun reverse_iterator do return self.reverse_iterator_from(target.bytelen - 1)
1212 end
1213
1214 # Immutable sequence of characters.
1215 #
1216 # String objects may be created using literals.
1217 #
1218 # assert "Hello World!" isa String
1219 abstract class String
1220 super Text
1221
1222 redef type SELFTYPE: String is fixed
1223
1224 redef fun to_s do return self
1225
1226 # Concatenates `o` to `self`
1227 #
1228 # assert "hello" + "world" == "helloworld"
1229 # assert "" + "hello" + "" == "hello"
1230 fun +(o: Text): SELFTYPE is abstract
1231
1232 # Concatenates self `i` times
1233 #
1234 # assert "abc" * 4 == "abcabcabcabc"
1235 # assert "abc" * 1 == "abc"
1236 # assert "abc" * 0 == ""
1237 fun *(i: Int): SELFTYPE is abstract
1238
1239 # Insert `s` at `pos`.
1240 #
1241 # assert "helloworld".insert_at(" ", 5) == "hello world"
1242 fun insert_at(s: String, pos: Int): SELFTYPE is abstract
1243
1244 redef fun substrings is abstract
1245
1246 # Returns a reversed version of self
1247 #
1248 # assert "hello".reversed == "olleh"
1249 # assert "bob".reversed == "bob"
1250 # assert "".reversed == ""
1251 fun reversed: SELFTYPE is abstract
1252
1253 # A upper case version of `self`
1254 #
1255 # assert "Hello World!".to_upper == "HELLO WORLD!"
1256 fun to_upper: SELFTYPE is abstract
1257
1258 # A lower case version of `self`
1259 #
1260 # assert "Hello World!".to_lower == "hello world!"
1261 fun to_lower : SELFTYPE is abstract
1262
1263 # Takes a camel case `self` and converts it to snake case
1264 #
1265 # assert "randomMethodId".to_snake_case == "random_method_id"
1266 #
1267 # The rules are the following:
1268 #
1269 # An uppercase is always converted to a lowercase
1270 #
1271 # assert "HELLO_WORLD".to_snake_case == "hello_world"
1272 #
1273 # An uppercase that follows a lowercase is prefixed with an underscore
1274 #
1275 # assert "HelloTheWORLD".to_snake_case == "hello_the_world"
1276 #
1277 # An uppercase that follows an uppercase and is followed by a lowercase, is prefixed with an underscore
1278 #
1279 # assert "HelloTHEWorld".to_snake_case == "hello_the_world"
1280 #
1281 # All other characters are kept as is; `self` does not need to be a proper CamelCased string.
1282 #
1283 # assert "=-_H3ll0Th3W0rld_-=".to_snake_case == "=-_h3ll0th3w0rld_-="
1284 fun to_snake_case: SELFTYPE
1285 do
1286 if self.is_lower then return self
1287
1288 var new_str = new Buffer.with_cap(self.length)
1289 var prev_is_lower = false
1290 var prev_is_upper = false
1291
1292 for i in [0..length[ do
1293 var char = chars[i]
1294 if char.is_lower then
1295 new_str.add(char)
1296 prev_is_lower = true
1297 prev_is_upper = false
1298 else if char.is_upper then
1299 if prev_is_lower then
1300 new_str.add('_')
1301 else if prev_is_upper and i+1 < length and chars[i+1].is_lower then
1302 new_str.add('_')
1303 end
1304 new_str.add(char.to_lower)
1305 prev_is_lower = false
1306 prev_is_upper = true
1307 else
1308 new_str.add(char)
1309 prev_is_lower = false
1310 prev_is_upper = false
1311 end
1312 end
1313
1314 return new_str.to_s
1315 end
1316
1317 # Takes a snake case `self` and converts it to camel case
1318 #
1319 # assert "random_method_id".to_camel_case == "randomMethodId"
1320 #
1321 # If the identifier is prefixed by an underscore, the underscore is ignored
1322 #
1323 # assert "_private_field".to_camel_case == "_privateField"
1324 #
1325 # If `self` is upper, it is returned unchanged
1326 #
1327 # assert "RANDOM_ID".to_camel_case == "RANDOM_ID"
1328 #
1329 # If there are several consecutive underscores, they are considered as a single one
1330 #
1331 # assert "random__method_id".to_camel_case == "randomMethodId"
1332 fun to_camel_case: SELFTYPE
1333 do
1334 if self.is_upper then return self
1335
1336 var new_str = new Buffer
1337 var is_first_char = true
1338 var follows_us = false
1339
1340 for i in [0..length[ do
1341 var char = chars[i]
1342 if is_first_char then
1343 new_str.add(char)
1344 is_first_char = false
1345 else if char == '_' then
1346 follows_us = true
1347 else if follows_us then
1348 new_str.add(char.to_upper)
1349 follows_us = false
1350 else
1351 new_str.add(char)
1352 end
1353 end
1354
1355 return new_str.to_s
1356 end
1357
1358 # Returns a capitalized `self`
1359 #
1360 # Letters that follow a letter are lowercased
1361 # Letters that follow a non-letter are upcased.
1362 #
1363 # SEE : `Char::is_letter` for the definition of letter.
1364 #
1365 # assert "jAVASCRIPT".capitalized == "Javascript"
1366 # assert "i am root".capitalized == "I Am Root"
1367 # assert "ab_c -ab0c ab\nc".capitalized == "Ab_C -Ab0C Ab\nC"
1368 fun capitalized: SELFTYPE do
1369 if length == 0 then return self
1370
1371 var buf = new Buffer.with_cap(length)
1372 buf.capitalize(src=self)
1373 return buf.to_s
1374 end
1375 end
1376
1377 # A mutable sequence of characters.
1378 abstract class Buffer
1379 super Text
1380
1381 # Returns an arbitrary subclass of `Buffer` with default parameters
1382 new is abstract
1383
1384 # Returns an instance of a subclass of `Buffer` with `i` base capacity
1385 new with_cap(i: Int) is abstract
1386
1387 redef type SELFTYPE: Buffer is fixed
1388
1389 # Specific implementations MUST set this to `true` in order to invalidate caches
1390 protected var is_dirty = true
1391
1392 # Copy-On-Write flag
1393 #
1394 # If the `Buffer` was to_s'd, the next in-place altering
1395 # operation will cause the current `Buffer` to be re-allocated.
1396 #
1397 # The flag will then be set at `false`.
1398 protected var written = false
1399
1400 # Modifies the char contained at pos `index`
1401 #
1402 # DEPRECATED : Use self.chars.[]= instead
1403 fun []=(index: Int, item: Char) is abstract
1404
1405 # Adds a char `c` at the end of self
1406 #
1407 # DEPRECATED : Use self.chars.add instead
1408 fun add(c: Char) is abstract
1409
1410 # Clears the buffer
1411 #
1412 # var b = new Buffer
1413 # b.append "hello"
1414 # assert not b.is_empty
1415 # b.clear
1416 # assert b.is_empty
1417 fun clear is abstract
1418
1419 # Enlarges the subsequent array containing the chars of self
1420 fun enlarge(cap: Int) is abstract
1421
1422 # Adds the content of text `s` at the end of self
1423 #
1424 # var b = new Buffer
1425 # b.append "hello"
1426 # b.append "world"
1427 # assert b == "helloworld"
1428 fun append(s: Text) is abstract
1429
1430 # `self` is appended in such a way that `self` is repeated `r` times
1431 #
1432 # var b = new Buffer
1433 # b.append "hello"
1434 # b.times 3
1435 # assert b == "hellohellohello"
1436 fun times(r: Int) is abstract
1437
1438 # Reverses itself in-place
1439 #
1440 # var b = new Buffer
1441 # b.append("hello")
1442 # b.reverse
1443 # assert b == "olleh"
1444 fun reverse is abstract
1445
1446 # Changes each lower-case char in `self` by its upper-case variant
1447 #
1448 # var b = new Buffer
1449 # b.append("Hello World!")
1450 # b.upper
1451 # assert b == "HELLO WORLD!"
1452 fun upper is abstract
1453
1454 # Changes each upper-case char in `self` by its lower-case variant
1455 #
1456 # var b = new Buffer
1457 # b.append("Hello World!")
1458 # b.lower
1459 # assert b == "hello world!"
1460 fun lower is abstract
1461
1462 # Capitalizes each word in `self`
1463 #
1464 # Letters that follow a letter are lowercased
1465 # Letters that follow a non-letter are upcased.
1466 #
1467 # When `src` is specified, this method reads from `src`
1468 # instead of `self` but still writes the result to the beginning of `self`.
1469 # This requires `self` to have the capacity to receive all of the
1470 # capitalized content of `src`.
1471 #
1472 # SEE: `Char::is_letter` for the definition of a letter.
1473 #
1474 # var b = new FlatBuffer.from("jAVAsCriPt")
1475 # b.capitalize
1476 # assert b == "Javascript"
1477 # b = new FlatBuffer.from("i am root")
1478 # b.capitalize
1479 # assert b == "I Am Root"
1480 # b = new FlatBuffer.from("ab_c -ab0c ab\nc")
1481 # b.capitalize
1482 # assert b == "Ab_C -Ab0C Ab\nC"
1483 #
1484 # b = new FlatBuffer.from("12345")
1485 # b.capitalize(src="foo")
1486 # assert b == "Foo45"
1487 fun capitalize(src: nullable Text) do
1488 src = src or else self
1489 var length = src.length
1490 if length == 0 then return
1491
1492 var c = src[0].to_upper
1493 self[0] = c
1494 var prev = c
1495 for i in [1 .. length[ do
1496 prev = c
1497 c = src[i]
1498 if prev.is_letter then
1499 self[i] = c.to_lower
1500 else
1501 self[i] = c.to_upper
1502 end
1503 end
1504 end
1505
1506 redef fun hash
1507 do
1508 if is_dirty then hash_cache = null
1509 return super
1510 end
1511
1512 # In Buffers, the internal sequence of character is mutable
1513 # Thus, `chars` can be used to modify the buffer.
1514 redef fun chars: Sequence[Char] is abstract
1515
1516 # Appends `length` chars from `s` starting at index `from`
1517 #
1518 # ~~~nit
1519 # var b = new Buffer
1520 # b.append_substring("abcde", 1, 2)
1521 # assert b == "bc"
1522 # b.append_substring("vwxyz", 2, 3)
1523 # assert b == "bcxyz"
1524 # b.append_substring("ABCDE", 4, 300)
1525 # assert b == "bcxyzE"
1526 # b.append_substring("VWXYZ", 400, 1)
1527 # assert b == "bcxyzE"
1528 # ~~~
1529 fun append_substring(s: Text, from, length: Int) do
1530 if from < 0 then
1531 length += from
1532 from = 0
1533 end
1534 var ln = s.length
1535 if (length + from) > ln then length = ln - from
1536 if length <= 0 then return
1537 append_substring_impl(s, from, length)
1538 end
1539
1540 # Unsafe version of `append_substring` for performance
1541 #
1542 # NOTE: Use only if sure about `from` and `length`, no checks
1543 # or bound recalculation is done
1544 fun append_substring_impl(s: Text, from, length: Int) do
1545 var pos = from
1546 for i in [0 .. length[ do
1547 self.add s[pos]
1548 pos += 1
1549 end
1550 end
1551 end
1552
1553 # View for chars on Buffer objects, extends Sequence
1554 # for mutation operations
1555 private abstract class BufferCharView
1556 super StringCharView
1557 super Sequence[Char]
1558
1559 redef type SELFTYPE: Buffer
1560
1561 end
1562
1563 # View for bytes on Buffer objects, extends Sequence
1564 # for mutation operations
1565 private abstract class BufferByteView
1566 super StringByteView
1567
1568 redef type SELFTYPE: Buffer
1569 end
1570
1571 redef class Object
1572 # User readable representation of `self`.
1573 fun to_s: String do return inspect
1574
1575 # The class name of the object in NativeString format.
1576 private fun native_class_name: NativeString is intern
1577
1578 # The class name of the object.
1579 #
1580 # assert 5.class_name == "Int"
1581 fun class_name: String do return native_class_name.to_s
1582
1583 # Developer readable representation of `self`.
1584 # Usually, it uses the form "<CLASSNAME:#OBJECTID bla bla bla>"
1585 fun inspect: String
1586 do
1587 return "<{inspect_head}>"
1588 end
1589
1590 # Return "CLASSNAME:#OBJECTID".
1591 # This function is mainly used with the redefinition of the inspect method
1592 protected fun inspect_head: String
1593 do
1594 return "{class_name}:#{object_id.to_hex}"
1595 end
1596 end
1597
1598 redef class Bool
1599 # assert true.to_s == "true"
1600 # assert false.to_s == "false"
1601 redef fun to_s
1602 do
1603 if self then
1604 return once "true"
1605 else
1606 return once "false"
1607 end
1608 end
1609 end
1610
1611 redef class Byte
1612 # C function to calculate the length of the `NativeString` to receive `self`
1613 private fun byte_to_s_len: Int `{
1614 return snprintf(NULL, 0, "0x%02x", self);
1615 `}
1616
1617 # C function to convert an nit Int to a NativeString (char*)
1618 private fun native_byte_to_s(nstr: NativeString, strlen: Int) `{
1619 snprintf(nstr, strlen, "0x%02x", self);
1620 `}
1621
1622 # Displayable byte in its hexadecimal form (0x..)
1623 #
1624 # assert 1.to_b.to_s == "0x01"
1625 # assert (-123).to_b.to_s == "0x85"
1626 redef fun to_s do
1627 var nslen = byte_to_s_len
1628 var ns = new NativeString(nslen + 1)
1629 ns[nslen] = 0u8
1630 native_byte_to_s(ns, nslen + 1)
1631 return ns.to_s_unsafe(nslen)
1632 end
1633 end
1634
1635 redef class Int
1636
1637 # Wrapper of strerror C function
1638 private fun strerror_ext: NativeString `{ return strerror((int)self); `}
1639
1640 # Returns a string describing error number
1641 fun strerror: String do return strerror_ext.to_s
1642
1643 # Fill `s` with the digits in base `base` of `self` (and with the '-' sign if negative).
1644 # assume < to_c max const of char
1645 private fun fill_buffer(s: Buffer, base: Int)
1646 do
1647 var n: Int
1648 # Sign
1649 if self < 0 then
1650 n = - self
1651 s.chars[0] = '-'
1652 else if self == 0 then
1653 s.chars[0] = '0'
1654 return
1655 else
1656 n = self
1657 end
1658 # Fill digits
1659 var pos = digit_count(base) - 1
1660 while pos >= 0 and n > 0 do
1661 s.chars[pos] = (n % base).to_c
1662 n = n / base # /
1663 pos -= 1
1664 end
1665 end
1666
1667 # C function to calculate the length of the `NativeString` to receive `self`
1668 private fun int_to_s_len: Int `{
1669 return snprintf(NULL, 0, "%ld", self);
1670 `}
1671
1672 # C function to convert an nit Int to a NativeString (char*)
1673 private fun native_int_to_s(nstr: NativeString, strlen: Int) `{
1674 snprintf(nstr, strlen, "%ld", self);
1675 `}
1676
1677 # String representation of `self` in the given `base`
1678 #
1679 # ~~~
1680 # assert 15.to_base(10) == "15"
1681 # assert 15.to_base(16) == "f"
1682 # assert 15.to_base(2) == "1111"
1683 # assert (-10).to_base(3) == "-101"
1684 # ~~~
1685 fun to_base(base: Int): String
1686 do
1687 var l = digit_count(base)
1688 var s = new Buffer
1689 s.enlarge(l)
1690 for x in [0..l[ do s.add(' ')
1691 fill_buffer(s, base)
1692 return s.to_s
1693 end
1694
1695
1696 # return displayable int in hexadecimal
1697 #
1698 # assert 1.to_hex == "1"
1699 # assert (-255).to_hex == "-ff"
1700 fun to_hex: String do return to_base(16)
1701 end
1702
1703 redef class Float
1704 # Pretty representation of `self`, with decimals as needed from 1 to a maximum of 3
1705 #
1706 # assert 12.34.to_s == "12.34"
1707 # assert (-0120.030).to_s == "-120.03"
1708 #
1709 # see `to_precision` for a custom precision.
1710 redef fun to_s do
1711 var str = to_precision( 3 )
1712 if is_inf != 0 or is_nan then return str
1713 var len = str.length
1714 for i in [0..len-1] do
1715 var j = len-1-i
1716 var c = str.chars[j]
1717 if c == '0' then
1718 continue
1719 else if c == '.' then
1720 return str.substring( 0, j+2 )
1721 else
1722 return str.substring( 0, j+1 )
1723 end
1724 end
1725 return str
1726 end
1727
1728 # `String` representation of `self` with the given number of `decimals`
1729 #
1730 # assert 12.345.to_precision(0) == "12"
1731 # assert 12.345.to_precision(3) == "12.345"
1732 # assert (-12.345).to_precision(3) == "-12.345"
1733 # assert (-0.123).to_precision(3) == "-0.123"
1734 # assert 0.999.to_precision(2) == "1.00"
1735 # assert 0.999.to_precision(4) == "0.9990"
1736 fun to_precision(decimals: Int): String
1737 do
1738 if is_nan then return "nan"
1739
1740 var isinf = self.is_inf
1741 if isinf == 1 then
1742 return "inf"
1743 else if isinf == -1 then
1744 return "-inf"
1745 end
1746
1747 if decimals == 0 then return self.to_i.to_s
1748 var f = self
1749 for i in [0..decimals[ do f = f * 10.0
1750 if self > 0.0 then
1751 f = f + 0.5
1752 else
1753 f = f - 0.5
1754 end
1755 var i = f.to_i
1756 if i == 0 then return "0." + "0"*decimals
1757
1758 # Prepare both parts of the float, before and after the "."
1759 var s = i.abs.to_s
1760 var sl = s.length
1761 var p1
1762 var p2
1763 if sl > decimals then
1764 # Has something before the "."
1765 p1 = s.substring(0, sl-decimals)
1766 p2 = s.substring(sl-decimals, decimals)
1767 else
1768 p1 = "0"
1769 p2 = "0"*(decimals-sl) + s
1770 end
1771
1772 if i < 0 then p1 = "-" + p1
1773
1774 return p1 + "." + p2
1775 end
1776 end
1777
1778 redef class Char
1779
1780 # Returns a sequence with the UTF-8 bytes of `self`
1781 #
1782 # assert 'a'.bytes == [0x61u8]
1783 # assert 'ま'.bytes == [0xE3u8, 0x81u8, 0xBEu8]
1784 fun bytes: SequenceRead[Byte] do return to_s.bytes
1785
1786 # Is `self` an UTF-16 surrogate pair ?
1787 fun is_surrogate: Bool do
1788 var cp = code_point
1789 return cp >= 0xD800 and cp <= 0xDFFF
1790 end
1791
1792 # Is `self` a UTF-16 high surrogate ?
1793 fun is_hi_surrogate: Bool do
1794 var cp = code_point
1795 return cp >= 0xD800 and cp <= 0xDBFF
1796 end
1797
1798 # Is `self` a UTF-16 low surrogate ?
1799 fun is_lo_surrogate: Bool do
1800 var cp = code_point
1801 return cp >= 0xDC00 and cp <= 0xDFFF
1802 end
1803
1804 # Length of `self` in a UTF-8 String
1805 fun u8char_len: Int do
1806 var c = self.code_point
1807 if c < 0x80 then return 1
1808 if c <= 0x7FF then return 2
1809 if c <= 0xFFFF then return 3
1810 if c <= 0x10FFFF then return 4
1811 # Bad character format
1812 return 1
1813 end
1814
1815 # assert 'x'.to_s == "x"
1816 redef fun to_s do
1817 var ln = u8char_len
1818 var ns = new NativeString(ln + 1)
1819 u8char_tos(ns, ln)
1820 return ns.to_s_unsafe(ln)
1821 end
1822
1823 # Returns `self` escaped to UTF-16
1824 #
1825 # i.e. Represents `self`.`code_point` using UTF-16 codets escaped
1826 # with a `\u`
1827 #
1828 # assert 'A'.escape_to_utf16 == "\\u0041"
1829 # assert 'è'.escape_to_utf16 == "\\u00e8"
1830 # assert 'あ'.escape_to_utf16 == "\\u3042"
1831 # assert '𐏓'.escape_to_utf16 == "\\ud800\\udfd3"
1832 fun escape_to_utf16: String do
1833 var cp = code_point
1834 var buf: Buffer
1835 if cp < 0xD800 or (cp >= 0xE000 and cp <= 0xFFFF) then
1836 buf = new Buffer.with_cap(6)
1837 buf.append("\\u0000")
1838 var hx = cp.to_hex
1839 var outid = 5
1840 for i in hx.chars.reverse_iterator do
1841 buf[outid] = i
1842 outid -= 1
1843 end
1844 else
1845 buf = new Buffer.with_cap(12)
1846 buf.append("\\u0000\\u0000")
1847 var lo = (((cp - 0x10000) & 0x3FF) + 0xDC00).to_hex
1848 var hi = ((((cp - 0x10000) & 0xFFC00) >> 10) + 0xD800).to_hex
1849 var out = 2
1850 for i in hi do
1851 buf[out] = i
1852 out += 1
1853 end
1854 out = 8
1855 for i in lo do
1856 buf[out] = i
1857 out += 1
1858 end
1859 end
1860 return buf.to_s
1861 end
1862
1863 private fun u8char_tos(r: NativeString, len: Int) `{
1864 r[len] = '\0';
1865 switch(len){
1866 case 1:
1867 r[0] = self;
1868 break;
1869 case 2:
1870 r[0] = 0xC0 | ((self & 0x7C0) >> 6);
1871 r[1] = 0x80 | (self & 0x3F);
1872 break;
1873 case 3:
1874 r[0] = 0xE0 | ((self & 0xF000) >> 12);
1875 r[1] = 0x80 | ((self & 0xFC0) >> 6);
1876 r[2] = 0x80 | (self & 0x3F);
1877 break;
1878 case 4:
1879 r[0] = 0xF0 | ((self & 0x1C0000) >> 18);
1880 r[1] = 0x80 | ((self & 0x3F000) >> 12);
1881 r[2] = 0x80 | ((self & 0xFC0) >> 6);
1882 r[3] = 0x80 | (self & 0x3F);
1883 break;
1884 }
1885 `}
1886
1887 # Returns true if the char is a numerical digit
1888 #
1889 # assert '0'.is_numeric
1890 # assert '9'.is_numeric
1891 # assert not 'a'.is_numeric
1892 # assert not '?'.is_numeric
1893 #
1894 # FIXME: Works on ASCII-range only
1895 fun is_numeric: Bool
1896 do
1897 return self >= '0' and self <= '9'
1898 end
1899
1900 # Returns true if the char is an alpha digit
1901 #
1902 # assert 'a'.is_alpha
1903 # assert 'Z'.is_alpha
1904 # assert not '0'.is_alpha
1905 # assert not '?'.is_alpha
1906 #
1907 # FIXME: Works on ASCII-range only
1908 fun is_alpha: Bool
1909 do
1910 return (self >= 'a' and self <= 'z') or (self >= 'A' and self <= 'Z')
1911 end
1912
1913 # Is `self` an hexadecimal digit ?
1914 #
1915 # assert 'A'.is_hexdigit
1916 # assert not 'G'.is_hexdigit
1917 # assert 'a'.is_hexdigit
1918 # assert not 'g'.is_hexdigit
1919 # assert '5'.is_hexdigit
1920 fun is_hexdigit: Bool do return (self >= '0' and self <= '9') or (self >= 'A' and self <= 'F') or
1921 (self >= 'a' and self <= 'f')
1922
1923 # Returns true if the char is an alpha or a numeric digit
1924 #
1925 # assert 'a'.is_alphanumeric
1926 # assert 'Z'.is_alphanumeric
1927 # assert '0'.is_alphanumeric
1928 # assert '9'.is_alphanumeric
1929 # assert not '?'.is_alphanumeric
1930 #
1931 # FIXME: Works on ASCII-range only
1932 fun is_alphanumeric: Bool
1933 do
1934 return self.is_numeric or self.is_alpha
1935 end
1936
1937 # Returns `self` to its int value
1938 #
1939 # REQUIRE: `is_hexdigit`
1940 fun from_hex: Int do
1941 if self >= '0' and self <= '9' then return code_point - 0x30
1942 if self >= 'A' and self <= 'F' then return code_point - 0x37
1943 if self >= 'a' and self <= 'f' then return code_point - 0x57
1944 # Happens if self is not a hexdigit
1945 assert self.is_hexdigit
1946 # To make flow analysis happy
1947 abort
1948 end
1949 end
1950
1951 redef class Collection[E]
1952 # String representation of the content of the collection.
1953 #
1954 # The standard representation is the list of elements separated with commas.
1955 #
1956 # ~~~
1957 # assert [1,2,3].to_s == "[1,2,3]"
1958 # assert [1..3].to_s == "[1,2,3]"
1959 # assert (new Array[Int]).to_s == "[]" # empty collection
1960 # ~~~
1961 #
1962 # Subclasses may return a more specific string representation.
1963 redef fun to_s
1964 do
1965 return "[" + join(",") + "]"
1966 end
1967
1968 # Concatenate elements without separators
1969 #
1970 # ~~~
1971 # assert [1,2,3].plain_to_s == "123"
1972 # assert [11..13].plain_to_s == "111213"
1973 # assert (new Array[Int]).plain_to_s == "" # empty collection
1974 # ~~~
1975 fun plain_to_s: String
1976 do
1977 var s = new Buffer
1978 for e in self do if e != null then s.append(e.to_s)
1979 return s.to_s
1980 end
1981
1982 # Concatenate and separate each elements with `separator`.
1983 #
1984 # Only concatenate if `separator == null`.
1985 #
1986 # assert [1, 2, 3].join(":") == "1:2:3"
1987 # assert [1..3].join(":") == "1:2:3"
1988 # assert [1..3].join == "123"
1989 #
1990 # if `last_separator` is given, then it is used to separate the last element.
1991 #
1992 # assert [1, 2, 3, 4].join(", ", " and ") == "1, 2, 3 and 4"
1993 fun join(separator: nullable Text, last_separator: nullable Text): String
1994 do
1995 if is_empty then return ""
1996
1997 var s = new Buffer # Result
1998
1999 # Concat first item
2000 var i = iterator
2001 var e = i.item
2002 if e != null then s.append(e.to_s)
2003
2004 if last_separator == null then last_separator = separator
2005
2006 # Concat other items
2007 i.next
2008 while i.is_ok do
2009 e = i.item
2010 i.next
2011 if i.is_ok then
2012 if separator != null then s.append(separator)
2013 else
2014 if last_separator != null then s.append(last_separator)
2015 end
2016 if e != null then s.append(e.to_s)
2017 end
2018 return s.to_s
2019 end
2020 end
2021
2022 redef class Map[K,V]
2023 # Concatenate couples of key value.
2024 # Key and value are separated by `couple_sep`.
2025 # Couples are separated by `sep`.
2026 #
2027 # var m = new HashMap[Int, String]
2028 # m[1] = "one"
2029 # m[10] = "ten"
2030 # assert m.join("; ", "=") == "1=one; 10=ten"
2031 fun join(sep, couple_sep: String): String is abstract
2032 end
2033
2034 redef class Sys
2035 private var args_cache: nullable Sequence[String] = null
2036
2037 # The arguments of the program as given by the OS
2038 fun program_args: Sequence[String]
2039 do
2040 if _args_cache == null then init_args
2041 return _args_cache.as(not null)
2042 end
2043
2044 # The name of the program as given by the OS
2045 fun program_name: String
2046 do
2047 return native_argv(0).to_s
2048 end
2049
2050 # Initialize `program_args` with the contents of `native_argc` and `native_argv`.
2051 private fun init_args
2052 do
2053 var argc = native_argc
2054 var args = new Array[String].with_capacity(0)
2055 var i = 1
2056 while i < argc do
2057 args[i-1] = native_argv(i).to_s
2058 i += 1
2059 end
2060 _args_cache = args
2061 end
2062
2063 # First argument of the main C function.
2064 private fun native_argc: Int is intern
2065
2066 # Second argument of the main C function.
2067 private fun native_argv(i: Int): NativeString is intern
2068 end
2069
2070 # Comparator that efficienlty use `to_s` to compare things
2071 #
2072 # The comparaison call `to_s` on object and use the result to order things.
2073 #
2074 # var a = [1, 2, 3, 10, 20]
2075 # (new CachedAlphaComparator).sort(a)
2076 # assert a == [1, 10, 2, 20, 3]
2077 #
2078 # Internally the result of `to_s` is cached in a HashMap to counter
2079 # uneficient implementation of `to_s`.
2080 #
2081 # Note: it caching is not usefull, see `alpha_comparator`
2082 class CachedAlphaComparator
2083 super Comparator
2084 redef type COMPARED: Object
2085
2086 private var cache = new HashMap[Object, String]
2087
2088 private fun do_to_s(a: Object): String do
2089 if cache.has_key(a) then return cache[a]
2090 var res = a.to_s
2091 cache[a] = res
2092 return res
2093 end
2094
2095 redef fun compare(a, b) do
2096 return do_to_s(a) <=> do_to_s(b)
2097 end
2098 end
2099
2100 # see `alpha_comparator`
2101 private class AlphaComparator
2102 super Comparator
2103 redef fun compare(a, b) do return a.to_s <=> b.to_s
2104 end
2105
2106 # Stateless comparator that naively use `to_s` to compare things.
2107 #
2108 # Note: the result of `to_s` is not cached, thus can be invoked a lot
2109 # on a single instace. See `CachedAlphaComparator` as an alternative.
2110 #
2111 # var a = [1, 2, 3, 10, 20]
2112 # alpha_comparator.sort(a)
2113 # assert a == [1, 10, 2, 20, 3]
2114 fun alpha_comparator: Comparator do return once new AlphaComparator
2115
2116 # The arguments of the program as given by the OS
2117 fun args: Sequence[String]
2118 do
2119 return sys.program_args
2120 end
2121
2122 redef class NativeString
2123 # Get a `String` from the data at `self` copied into Nit memory
2124 #
2125 # Require: `self` is a null-terminated string.
2126 fun to_s_with_copy: String is abstract
2127
2128 # Get a `String` from `length` bytes at `self`
2129 #
2130 # The result may point to the data at `self` or
2131 # it may make a copy in Nit controlled memory.
2132 # This method should only be used when `self` was allocated by the Nit GC,
2133 # or when manually controlling the deallocation of `self`.
2134 fun to_s_with_length(length: Int): String is abstract
2135
2136 # Get a `String` from the raw `length` bytes at `self`
2137 #
2138 # The default value of `length` is the number of bytes before
2139 # the first null character.
2140 #
2141 # The created `String` points to the data at `self`.
2142 # This method should be used when `self` was allocated by the Nit GC,
2143 # or when manually controlling the deallocation of `self`.
2144 #
2145 # /!\: This service does not clean the items for compliance with UTF-8,
2146 # use only when the data has already been verified as valid UTF-8.
2147 fun to_s_unsafe(length: nullable Int): String is abstract
2148
2149 # Get a `String` from the raw `bytelen` bytes at `self` with `unilen` Unicode characters
2150 #
2151 # The created `String` points to the data at `self`.
2152 # This method should be used when `self` was allocated by the Nit GC,
2153 # or when manually controlling the deallocation of `self`.
2154 #
2155 # /!\: This service does not clean the items for compliance with UTF-8,
2156 # use only when the data has already been verified as valid UTF-8.
2157 #
2158 # SEE: `abstract_text::Text` for more info on the difference
2159 # between `Text::bytelen` and `Text::length`.
2160 fun to_s_full(bytelen, unilen: Int): String is abstract
2161 end
2162
2163 redef class NativeArray[E]
2164 # Join all the elements using `to_s`
2165 #
2166 # REQUIRE: `self isa NativeArray[String]`
2167 # REQUIRE: all elements are initialized
2168 fun native_to_s: String is abstract
2169 end