lib/core: add optional char parameter to `Text::justify`
[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 end
1099
1100 # All kinds of array-based text representations.
1101 abstract class FlatText
1102 super Text
1103
1104 # Underlying C-String (`char*`)
1105 #
1106 # Warning : Might be void in some subclasses, be sure to check
1107 # if set before using it.
1108 var items: NativeString is noinit
1109
1110 # Returns a char* starting at position `first_byte`
1111 #
1112 # WARNING: If you choose to use this service, be careful of the following.
1113 #
1114 # Strings and NativeString are *ideally* always allocated through a Garbage Collector.
1115 # Since the GC tracks the use of the pointer for the beginning of the char*, it may be
1116 # deallocated at any moment, rendering the pointer returned by this function invalid.
1117 # Any access to freed memory may very likely cause undefined behaviour or a crash.
1118 # (Failure to do so will most certainly result in long and painful debugging hours)
1119 #
1120 # The only safe use of this pointer is if it is ephemeral (e.g. read in a C function
1121 # then immediately return).
1122 #
1123 # As always, do not modify the content of the String in C code, if this is what you want
1124 # copy locally the char* as Nit Strings are immutable.
1125 fun fast_cstring: NativeString is abstract
1126
1127 redef var length = 0
1128
1129 redef var bytelen = 0
1130
1131 redef fun output
1132 do
1133 var i = 0
1134 while i < length do
1135 items[i].output
1136 i += 1
1137 end
1138 end
1139
1140 redef fun copy_to_native(dest, n, src_offset, dest_offset) do
1141 items.copy_to(dest, n, src_offset, dest_offset)
1142 end
1143 end
1144
1145 # Abstract class for the SequenceRead compatible
1146 # views on the chars of any Text
1147 private abstract class StringCharView
1148 super SequenceRead[Char]
1149
1150 type SELFTYPE: Text
1151
1152 var target: SELFTYPE
1153
1154 redef fun is_empty do return target.is_empty
1155
1156 redef fun length do return target.length
1157
1158 redef fun iterator: IndexedIterator[Char] do return self.iterator_from(0)
1159
1160 redef fun reverse_iterator do return self.reverse_iterator_from(self.length - 1)
1161 end
1162
1163 # Abstract class for the SequenceRead compatible
1164 # views on the bytes of any Text
1165 private abstract class StringByteView
1166 super SequenceRead[Byte]
1167
1168 type SELFTYPE: Text
1169
1170 var target: SELFTYPE
1171
1172 redef fun is_empty do return target.is_empty
1173
1174 redef fun length do return target.bytelen
1175
1176 redef fun iterator do return self.iterator_from(0)
1177
1178 redef fun reverse_iterator do return self.reverse_iterator_from(target.bytelen - 1)
1179 end
1180
1181 # Immutable sequence of characters.
1182 #
1183 # String objects may be created using literals.
1184 #
1185 # assert "Hello World!" isa String
1186 abstract class String
1187 super Text
1188
1189 redef type SELFTYPE: String is fixed
1190
1191 redef fun to_s do return self
1192
1193 # Concatenates `o` to `self`
1194 #
1195 # assert "hello" + "world" == "helloworld"
1196 # assert "" + "hello" + "" == "hello"
1197 fun +(o: Text): SELFTYPE is abstract
1198
1199 # Concatenates self `i` times
1200 #
1201 # assert "abc" * 4 == "abcabcabcabc"
1202 # assert "abc" * 1 == "abc"
1203 # assert "abc" * 0 == ""
1204 fun *(i: Int): SELFTYPE is abstract
1205
1206 # Insert `s` at `pos`.
1207 #
1208 # assert "helloworld".insert_at(" ", 5) == "hello world"
1209 fun insert_at(s: String, pos: Int): SELFTYPE is abstract
1210
1211 redef fun substrings is abstract
1212
1213 # Returns a reversed version of self
1214 #
1215 # assert "hello".reversed == "olleh"
1216 # assert "bob".reversed == "bob"
1217 # assert "".reversed == ""
1218 fun reversed: SELFTYPE is abstract
1219
1220 # A upper case version of `self`
1221 #
1222 # assert "Hello World!".to_upper == "HELLO WORLD!"
1223 fun to_upper: SELFTYPE is abstract
1224
1225 # A lower case version of `self`
1226 #
1227 # assert "Hello World!".to_lower == "hello world!"
1228 fun to_lower : SELFTYPE is abstract
1229
1230 # Takes a camel case `self` and converts it to snake case
1231 #
1232 # assert "randomMethodId".to_snake_case == "random_method_id"
1233 #
1234 # The rules are the following:
1235 #
1236 # An uppercase is always converted to a lowercase
1237 #
1238 # assert "HELLO_WORLD".to_snake_case == "hello_world"
1239 #
1240 # An uppercase that follows a lowercase is prefixed with an underscore
1241 #
1242 # assert "HelloTheWORLD".to_snake_case == "hello_the_world"
1243 #
1244 # An uppercase that follows an uppercase and is followed by a lowercase, is prefixed with an underscore
1245 #
1246 # assert "HelloTHEWorld".to_snake_case == "hello_the_world"
1247 #
1248 # All other characters are kept as is; `self` does not need to be a proper CamelCased string.
1249 #
1250 # assert "=-_H3ll0Th3W0rld_-=".to_snake_case == "=-_h3ll0th3w0rld_-="
1251 fun to_snake_case: SELFTYPE
1252 do
1253 if self.is_lower then return self
1254
1255 var new_str = new Buffer.with_cap(self.length)
1256 var prev_is_lower = false
1257 var prev_is_upper = false
1258
1259 for i in [0..length[ do
1260 var char = chars[i]
1261 if char.is_lower then
1262 new_str.add(char)
1263 prev_is_lower = true
1264 prev_is_upper = false
1265 else if char.is_upper then
1266 if prev_is_lower then
1267 new_str.add('_')
1268 else if prev_is_upper and i+1 < length and chars[i+1].is_lower then
1269 new_str.add('_')
1270 end
1271 new_str.add(char.to_lower)
1272 prev_is_lower = false
1273 prev_is_upper = true
1274 else
1275 new_str.add(char)
1276 prev_is_lower = false
1277 prev_is_upper = false
1278 end
1279 end
1280
1281 return new_str.to_s
1282 end
1283
1284 # Takes a snake case `self` and converts it to camel case
1285 #
1286 # assert "random_method_id".to_camel_case == "randomMethodId"
1287 #
1288 # If the identifier is prefixed by an underscore, the underscore is ignored
1289 #
1290 # assert "_private_field".to_camel_case == "_privateField"
1291 #
1292 # If `self` is upper, it is returned unchanged
1293 #
1294 # assert "RANDOM_ID".to_camel_case == "RANDOM_ID"
1295 #
1296 # If there are several consecutive underscores, they are considered as a single one
1297 #
1298 # assert "random__method_id".to_camel_case == "randomMethodId"
1299 fun to_camel_case: SELFTYPE
1300 do
1301 if self.is_upper then return self
1302
1303 var new_str = new Buffer
1304 var is_first_char = true
1305 var follows_us = false
1306
1307 for i in [0..length[ do
1308 var char = chars[i]
1309 if is_first_char then
1310 new_str.add(char)
1311 is_first_char = false
1312 else if char == '_' then
1313 follows_us = true
1314 else if follows_us then
1315 new_str.add(char.to_upper)
1316 follows_us = false
1317 else
1318 new_str.add(char)
1319 end
1320 end
1321
1322 return new_str.to_s
1323 end
1324
1325 # Returns a capitalized `self`
1326 #
1327 # Letters that follow a letter are lowercased
1328 # Letters that follow a non-letter are upcased.
1329 #
1330 # SEE : `Char::is_letter` for the definition of letter.
1331 #
1332 # assert "jAVASCRIPT".capitalized == "Javascript"
1333 # assert "i am root".capitalized == "I Am Root"
1334 # assert "ab_c -ab0c ab\nc".capitalized == "Ab_C -Ab0C Ab\nC"
1335 fun capitalized: SELFTYPE do
1336 if length == 0 then return self
1337
1338 var buf = new Buffer.with_cap(length)
1339
1340 var curr = chars[0].to_upper
1341 var prev = curr
1342 buf[0] = curr
1343
1344 for i in [1 .. length[ do
1345 prev = curr
1346 curr = self[i]
1347 if prev.is_letter then
1348 buf[i] = curr.to_lower
1349 else
1350 buf[i] = curr.to_upper
1351 end
1352 end
1353
1354 return buf.to_s
1355 end
1356 end
1357
1358 # A mutable sequence of characters.
1359 abstract class Buffer
1360 super Text
1361
1362 # Returns an arbitrary subclass of `Buffer` with default parameters
1363 new is abstract
1364
1365 # Returns an instance of a subclass of `Buffer` with `i` base capacity
1366 new with_cap(i: Int) is abstract
1367
1368 redef type SELFTYPE: Buffer is fixed
1369
1370 # Specific implementations MUST set this to `true` in order to invalidate caches
1371 protected var is_dirty = true
1372
1373 # Copy-On-Write flag
1374 #
1375 # If the `Buffer` was to_s'd, the next in-place altering
1376 # operation will cause the current `Buffer` to be re-allocated.
1377 #
1378 # The flag will then be set at `false`.
1379 protected var written = false
1380
1381 # Modifies the char contained at pos `index`
1382 #
1383 # DEPRECATED : Use self.chars.[]= instead
1384 fun []=(index: Int, item: Char) is abstract
1385
1386 # Adds a char `c` at the end of self
1387 #
1388 # DEPRECATED : Use self.chars.add instead
1389 fun add(c: Char) is abstract
1390
1391 # Clears the buffer
1392 #
1393 # var b = new Buffer
1394 # b.append "hello"
1395 # assert not b.is_empty
1396 # b.clear
1397 # assert b.is_empty
1398 fun clear is abstract
1399
1400 # Enlarges the subsequent array containing the chars of self
1401 fun enlarge(cap: Int) is abstract
1402
1403 # Adds the content of text `s` at the end of self
1404 #
1405 # var b = new Buffer
1406 # b.append "hello"
1407 # b.append "world"
1408 # assert b == "helloworld"
1409 fun append(s: Text) is abstract
1410
1411 # `self` is appended in such a way that `self` is repeated `r` times
1412 #
1413 # var b = new Buffer
1414 # b.append "hello"
1415 # b.times 3
1416 # assert b == "hellohellohello"
1417 fun times(r: Int) is abstract
1418
1419 # Reverses itself in-place
1420 #
1421 # var b = new Buffer
1422 # b.append("hello")
1423 # b.reverse
1424 # assert b == "olleh"
1425 fun reverse is abstract
1426
1427 # Changes each lower-case char in `self` by its upper-case variant
1428 #
1429 # var b = new Buffer
1430 # b.append("Hello World!")
1431 # b.upper
1432 # assert b == "HELLO WORLD!"
1433 fun upper is abstract
1434
1435 # Changes each upper-case char in `self` by its lower-case variant
1436 #
1437 # var b = new Buffer
1438 # b.append("Hello World!")
1439 # b.lower
1440 # assert b == "hello world!"
1441 fun lower is abstract
1442
1443 # Capitalizes each word in `self`
1444 #
1445 # Letters that follow a letter are lowercased
1446 # Letters that follow a non-letter are upcased.
1447 #
1448 # SEE: `Char::is_letter` for the definition of a letter.
1449 #
1450 # var b = new FlatBuffer.from("jAVAsCriPt")
1451 # b.capitalize
1452 # assert b == "Javascript"
1453 # b = new FlatBuffer.from("i am root")
1454 # b.capitalize
1455 # assert b == "I Am Root"
1456 # b = new FlatBuffer.from("ab_c -ab0c ab\nc")
1457 # b.capitalize
1458 # assert b == "Ab_C -Ab0C Ab\nC"
1459 fun capitalize do
1460 if length == 0 then return
1461 var c = self[0].to_upper
1462 self[0] = c
1463 var prev = c
1464 for i in [1 .. length[ do
1465 prev = c
1466 c = self[i]
1467 if prev.is_letter then
1468 self[i] = c.to_lower
1469 else
1470 self[i] = c.to_upper
1471 end
1472 end
1473 end
1474
1475 redef fun hash
1476 do
1477 if is_dirty then hash_cache = null
1478 return super
1479 end
1480
1481 # In Buffers, the internal sequence of character is mutable
1482 # Thus, `chars` can be used to modify the buffer.
1483 redef fun chars: Sequence[Char] is abstract
1484 end
1485
1486 # View for chars on Buffer objects, extends Sequence
1487 # for mutation operations
1488 private abstract class BufferCharView
1489 super StringCharView
1490 super Sequence[Char]
1491
1492 redef type SELFTYPE: Buffer
1493
1494 end
1495
1496 # View for bytes on Buffer objects, extends Sequence
1497 # for mutation operations
1498 private abstract class BufferByteView
1499 super StringByteView
1500
1501 redef type SELFTYPE: Buffer
1502 end
1503
1504 redef class Object
1505 # User readable representation of `self`.
1506 fun to_s: String do return inspect
1507
1508 # The class name of the object in NativeString format.
1509 private fun native_class_name: NativeString is intern
1510
1511 # The class name of the object.
1512 #
1513 # assert 5.class_name == "Int"
1514 fun class_name: String do return native_class_name.to_s
1515
1516 # Developer readable representation of `self`.
1517 # Usually, it uses the form "<CLASSNAME:#OBJECTID bla bla bla>"
1518 fun inspect: String
1519 do
1520 return "<{inspect_head}>"
1521 end
1522
1523 # Return "CLASSNAME:#OBJECTID".
1524 # This function is mainly used with the redefinition of the inspect method
1525 protected fun inspect_head: String
1526 do
1527 return "{class_name}:#{object_id.to_hex}"
1528 end
1529 end
1530
1531 redef class Bool
1532 # assert true.to_s == "true"
1533 # assert false.to_s == "false"
1534 redef fun to_s
1535 do
1536 if self then
1537 return once "true"
1538 else
1539 return once "false"
1540 end
1541 end
1542 end
1543
1544 redef class Byte
1545 # C function to calculate the length of the `NativeString` to receive `self`
1546 private fun byte_to_s_len: Int `{
1547 return snprintf(NULL, 0, "0x%02x", self);
1548 `}
1549
1550 # C function to convert an nit Int to a NativeString (char*)
1551 private fun native_byte_to_s(nstr: NativeString, strlen: Int) `{
1552 snprintf(nstr, strlen, "0x%02x", self);
1553 `}
1554
1555 # Displayable byte in its hexadecimal form (0x..)
1556 #
1557 # assert 1.to_b.to_s == "0x01"
1558 # assert (-123).to_b.to_s == "0x85"
1559 redef fun to_s do
1560 var nslen = byte_to_s_len
1561 var ns = new NativeString(nslen + 1)
1562 ns[nslen] = 0u8
1563 native_byte_to_s(ns, nslen + 1)
1564 return ns.to_s_unsafe(nslen)
1565 end
1566 end
1567
1568 redef class Int
1569
1570 # Wrapper of strerror C function
1571 private fun strerror_ext: NativeString `{ return strerror((int)self); `}
1572
1573 # Returns a string describing error number
1574 fun strerror: String do return strerror_ext.to_s
1575
1576 # Fill `s` with the digits in base `base` of `self` (and with the '-' sign if negative).
1577 # assume < to_c max const of char
1578 private fun fill_buffer(s: Buffer, base: Int)
1579 do
1580 var n: Int
1581 # Sign
1582 if self < 0 then
1583 n = - self
1584 s.chars[0] = '-'
1585 else if self == 0 then
1586 s.chars[0] = '0'
1587 return
1588 else
1589 n = self
1590 end
1591 # Fill digits
1592 var pos = digit_count(base) - 1
1593 while pos >= 0 and n > 0 do
1594 s.chars[pos] = (n % base).to_c
1595 n = n / base # /
1596 pos -= 1
1597 end
1598 end
1599
1600 # C function to calculate the length of the `NativeString` to receive `self`
1601 private fun int_to_s_len: Int `{
1602 return snprintf(NULL, 0, "%ld", self);
1603 `}
1604
1605 # C function to convert an nit Int to a NativeString (char*)
1606 private fun native_int_to_s(nstr: NativeString, strlen: Int) `{
1607 snprintf(nstr, strlen, "%ld", self);
1608 `}
1609
1610 # String representation of `self` in the given `base`
1611 #
1612 # ~~~
1613 # assert 15.to_base(10) == "15"
1614 # assert 15.to_base(16) == "f"
1615 # assert 15.to_base(2) == "1111"
1616 # assert (-10).to_base(3) == "-101"
1617 # ~~~
1618 fun to_base(base: Int): String
1619 do
1620 var l = digit_count(base)
1621 var s = new Buffer
1622 s.enlarge(l)
1623 for x in [0..l[ do s.add(' ')
1624 fill_buffer(s, base)
1625 return s.to_s
1626 end
1627
1628
1629 # return displayable int in hexadecimal
1630 #
1631 # assert 1.to_hex == "1"
1632 # assert (-255).to_hex == "-ff"
1633 fun to_hex: String do return to_base(16)
1634 end
1635
1636 redef class Float
1637 # Pretty representation of `self`, with decimals as needed from 1 to a maximum of 3
1638 #
1639 # assert 12.34.to_s == "12.34"
1640 # assert (-0120.030).to_s == "-120.03"
1641 #
1642 # see `to_precision` for a custom precision.
1643 redef fun to_s do
1644 var str = to_precision( 3 )
1645 if is_inf != 0 or is_nan then return str
1646 var len = str.length
1647 for i in [0..len-1] do
1648 var j = len-1-i
1649 var c = str.chars[j]
1650 if c == '0' then
1651 continue
1652 else if c == '.' then
1653 return str.substring( 0, j+2 )
1654 else
1655 return str.substring( 0, j+1 )
1656 end
1657 end
1658 return str
1659 end
1660
1661 # `String` representation of `self` with the given number of `decimals`
1662 #
1663 # assert 12.345.to_precision(0) == "12"
1664 # assert 12.345.to_precision(3) == "12.345"
1665 # assert (-12.345).to_precision(3) == "-12.345"
1666 # assert (-0.123).to_precision(3) == "-0.123"
1667 # assert 0.999.to_precision(2) == "1.00"
1668 # assert 0.999.to_precision(4) == "0.9990"
1669 fun to_precision(decimals: Int): String
1670 do
1671 if is_nan then return "nan"
1672
1673 var isinf = self.is_inf
1674 if isinf == 1 then
1675 return "inf"
1676 else if isinf == -1 then
1677 return "-inf"
1678 end
1679
1680 if decimals == 0 then return self.to_i.to_s
1681 var f = self
1682 for i in [0..decimals[ do f = f * 10.0
1683 if self > 0.0 then
1684 f = f + 0.5
1685 else
1686 f = f - 0.5
1687 end
1688 var i = f.to_i
1689 if i == 0 then return "0." + "0"*decimals
1690
1691 # Prepare both parts of the float, before and after the "."
1692 var s = i.abs.to_s
1693 var sl = s.length
1694 var p1
1695 var p2
1696 if sl > decimals then
1697 # Has something before the "."
1698 p1 = s.substring(0, sl-decimals)
1699 p2 = s.substring(sl-decimals, decimals)
1700 else
1701 p1 = "0"
1702 p2 = "0"*(decimals-sl) + s
1703 end
1704
1705 if i < 0 then p1 = "-" + p1
1706
1707 return p1 + "." + p2
1708 end
1709 end
1710
1711 redef class Char
1712
1713 # Returns a sequence with the UTF-8 bytes of `self`
1714 #
1715 # assert 'a'.bytes == [0x61u8]
1716 # assert 'ま'.bytes == [0xE3u8, 0x81u8, 0xBEu8]
1717 fun bytes: SequenceRead[Byte] do return to_s.bytes
1718
1719 # Is `self` an UTF-16 surrogate pair ?
1720 fun is_surrogate: Bool do
1721 var cp = code_point
1722 return cp >= 0xD800 and cp <= 0xDFFF
1723 end
1724
1725 # Length of `self` in a UTF-8 String
1726 private fun u8char_len: Int do
1727 var c = self.code_point
1728 if c < 0x80 then return 1
1729 if c <= 0x7FF then return 2
1730 if c <= 0xFFFF then return 3
1731 if c <= 0x10FFFF then return 4
1732 # Bad character format
1733 return 1
1734 end
1735
1736 # assert 'x'.to_s == "x"
1737 redef fun to_s do
1738 var ln = u8char_len
1739 var ns = new NativeString(ln + 1)
1740 u8char_tos(ns, ln)
1741 return ns.to_s_unsafe(ln)
1742 end
1743
1744 # Returns `self` escaped to UTF-16
1745 #
1746 # i.e. Represents `self`.`code_point` using UTF-16 codets escaped
1747 # with a `\u`
1748 #
1749 # assert 'A'.escape_to_utf16 == "\\u0041"
1750 # assert 'è'.escape_to_utf16 == "\\u00e8"
1751 # assert 'あ'.escape_to_utf16 == "\\u3042"
1752 # assert '𐏓'.escape_to_utf16 == "\\ud800\\udfd3"
1753 fun escape_to_utf16: String do
1754 var cp = code_point
1755 var buf: Buffer
1756 if cp < 0xD800 or (cp >= 0xE000 and cp <= 0xFFFF) then
1757 buf = new Buffer.with_cap(6)
1758 buf.append("\\u0000")
1759 var hx = cp.to_hex
1760 var outid = 5
1761 for i in hx.chars.reverse_iterator do
1762 buf[outid] = i
1763 outid -= 1
1764 end
1765 else
1766 buf = new Buffer.with_cap(12)
1767 buf.append("\\u0000\\u0000")
1768 var lo = (((cp - 0x10000) & 0x3FF) + 0xDC00).to_hex
1769 var hi = ((((cp - 0x10000) & 0xFFC00) >> 10) + 0xD800).to_hex
1770 var out = 2
1771 for i in hi do
1772 buf[out] = i
1773 out += 1
1774 end
1775 out = 8
1776 for i in lo do
1777 buf[out] = i
1778 out += 1
1779 end
1780 end
1781 return buf.to_s
1782 end
1783
1784 private fun u8char_tos(r: NativeString, len: Int) `{
1785 r[len] = '\0';
1786 switch(len){
1787 case 1:
1788 r[0] = self;
1789 break;
1790 case 2:
1791 r[0] = 0xC0 | ((self & 0x7C0) >> 6);
1792 r[1] = 0x80 | (self & 0x3F);
1793 break;
1794 case 3:
1795 r[0] = 0xE0 | ((self & 0xF000) >> 12);
1796 r[1] = 0x80 | ((self & 0xFC0) >> 6);
1797 r[2] = 0x80 | (self & 0x3F);
1798 break;
1799 case 4:
1800 r[0] = 0xF0 | ((self & 0x1C0000) >> 18);
1801 r[1] = 0x80 | ((self & 0x3F000) >> 12);
1802 r[2] = 0x80 | ((self & 0xFC0) >> 6);
1803 r[3] = 0x80 | (self & 0x3F);
1804 break;
1805 }
1806 `}
1807
1808 # Returns true if the char is a numerical digit
1809 #
1810 # assert '0'.is_numeric
1811 # assert '9'.is_numeric
1812 # assert not 'a'.is_numeric
1813 # assert not '?'.is_numeric
1814 #
1815 # FIXME: Works on ASCII-range only
1816 fun is_numeric: Bool
1817 do
1818 return self >= '0' and self <= '9'
1819 end
1820
1821 # Returns true if the char is an alpha digit
1822 #
1823 # assert 'a'.is_alpha
1824 # assert 'Z'.is_alpha
1825 # assert not '0'.is_alpha
1826 # assert not '?'.is_alpha
1827 #
1828 # FIXME: Works on ASCII-range only
1829 fun is_alpha: Bool
1830 do
1831 return (self >= 'a' and self <= 'z') or (self >= 'A' and self <= 'Z')
1832 end
1833
1834 # Is `self` an hexadecimal digit ?
1835 #
1836 # assert 'A'.is_hexdigit
1837 # assert not 'G'.is_hexdigit
1838 # assert 'a'.is_hexdigit
1839 # assert not 'g'.is_hexdigit
1840 # assert '5'.is_hexdigit
1841 fun is_hexdigit: Bool do return (self >= '0' and self <= '9') or (self >= 'A' and self <= 'F') or
1842 (self >= 'a' and self <= 'f')
1843
1844 # Returns true if the char is an alpha or a numeric digit
1845 #
1846 # assert 'a'.is_alphanumeric
1847 # assert 'Z'.is_alphanumeric
1848 # assert '0'.is_alphanumeric
1849 # assert '9'.is_alphanumeric
1850 # assert not '?'.is_alphanumeric
1851 #
1852 # FIXME: Works on ASCII-range only
1853 fun is_alphanumeric: Bool
1854 do
1855 return self.is_numeric or self.is_alpha
1856 end
1857
1858 # Returns `self` to its int value
1859 #
1860 # REQUIRE: `is_hexdigit`
1861 fun from_hex: Int do
1862 if self >= '0' and self <= '9' then return code_point - 0x30
1863 if self >= 'A' and self <= 'F' then return code_point - 0x37
1864 if self >= 'a' and self <= 'f' then return code_point - 0x57
1865 # Happens if self is not a hexdigit
1866 assert self.is_hexdigit
1867 # To make flow analysis happy
1868 abort
1869 end
1870 end
1871
1872 redef class Collection[E]
1873 # String representation of the content of the collection.
1874 #
1875 # The standard representation is the list of elements separated with commas.
1876 #
1877 # ~~~
1878 # assert [1,2,3].to_s == "[1,2,3]"
1879 # assert [1..3].to_s == "[1,2,3]"
1880 # assert (new Array[Int]).to_s == "[]" # empty collection
1881 # ~~~
1882 #
1883 # Subclasses may return a more specific string representation.
1884 redef fun to_s
1885 do
1886 return "[" + join(",") + "]"
1887 end
1888
1889 # Concatenate elements without separators
1890 #
1891 # ~~~
1892 # assert [1,2,3].plain_to_s == "123"
1893 # assert [11..13].plain_to_s == "111213"
1894 # assert (new Array[Int]).plain_to_s == "" # empty collection
1895 # ~~~
1896 fun plain_to_s: String
1897 do
1898 var s = new Buffer
1899 for e in self do if e != null then s.append(e.to_s)
1900 return s.to_s
1901 end
1902
1903 # Concatenate and separate each elements with `separator`.
1904 #
1905 # Only concatenate if `separator == null`.
1906 #
1907 # assert [1, 2, 3].join(":") == "1:2:3"
1908 # assert [1..3].join(":") == "1:2:3"
1909 # assert [1..3].join == "123"
1910 #
1911 # if `last_separator` is given, then it is used to separate the last element.
1912 #
1913 # assert [1, 2, 3, 4].join(", ", " and ") == "1, 2, 3 and 4"
1914 fun join(separator: nullable Text, last_separator: nullable Text): String
1915 do
1916 if is_empty then return ""
1917
1918 var s = new Buffer # Result
1919
1920 # Concat first item
1921 var i = iterator
1922 var e = i.item
1923 if e != null then s.append(e.to_s)
1924
1925 if last_separator == null then last_separator = separator
1926
1927 # Concat other items
1928 i.next
1929 while i.is_ok do
1930 e = i.item
1931 i.next
1932 if i.is_ok then
1933 if separator != null then s.append(separator)
1934 else
1935 if last_separator != null then s.append(last_separator)
1936 end
1937 if e != null then s.append(e.to_s)
1938 end
1939 return s.to_s
1940 end
1941 end
1942
1943 redef class Map[K,V]
1944 # Concatenate couples of key value.
1945 # Key and value are separated by `couple_sep`.
1946 # Couples are separated by `sep`.
1947 #
1948 # var m = new HashMap[Int, String]
1949 # m[1] = "one"
1950 # m[10] = "ten"
1951 # assert m.join("; ", "=") == "1=one; 10=ten"
1952 fun join(sep, couple_sep: String): String is abstract
1953 end
1954
1955 redef class Sys
1956 private var args_cache: nullable Sequence[String] = null
1957
1958 # The arguments of the program as given by the OS
1959 fun program_args: Sequence[String]
1960 do
1961 if _args_cache == null then init_args
1962 return _args_cache.as(not null)
1963 end
1964
1965 # The name of the program as given by the OS
1966 fun program_name: String
1967 do
1968 return native_argv(0).to_s
1969 end
1970
1971 # Initialize `program_args` with the contents of `native_argc` and `native_argv`.
1972 private fun init_args
1973 do
1974 var argc = native_argc
1975 var args = new Array[String].with_capacity(0)
1976 var i = 1
1977 while i < argc do
1978 args[i-1] = native_argv(i).to_s
1979 i += 1
1980 end
1981 _args_cache = args
1982 end
1983
1984 # First argument of the main C function.
1985 private fun native_argc: Int is intern
1986
1987 # Second argument of the main C function.
1988 private fun native_argv(i: Int): NativeString is intern
1989 end
1990
1991 # Comparator that efficienlty use `to_s` to compare things
1992 #
1993 # The comparaison call `to_s` on object and use the result to order things.
1994 #
1995 # var a = [1, 2, 3, 10, 20]
1996 # (new CachedAlphaComparator).sort(a)
1997 # assert a == [1, 10, 2, 20, 3]
1998 #
1999 # Internally the result of `to_s` is cached in a HashMap to counter
2000 # uneficient implementation of `to_s`.
2001 #
2002 # Note: it caching is not usefull, see `alpha_comparator`
2003 class CachedAlphaComparator
2004 super Comparator
2005 redef type COMPARED: Object
2006
2007 private var cache = new HashMap[Object, String]
2008
2009 private fun do_to_s(a: Object): String do
2010 if cache.has_key(a) then return cache[a]
2011 var res = a.to_s
2012 cache[a] = res
2013 return res
2014 end
2015
2016 redef fun compare(a, b) do
2017 return do_to_s(a) <=> do_to_s(b)
2018 end
2019 end
2020
2021 # see `alpha_comparator`
2022 private class AlphaComparator
2023 super Comparator
2024 redef fun compare(a, b) do return a.to_s <=> b.to_s
2025 end
2026
2027 # Stateless comparator that naively use `to_s` to compare things.
2028 #
2029 # Note: the result of `to_s` is not cached, thus can be invoked a lot
2030 # on a single instace. See `CachedAlphaComparator` as an alternative.
2031 #
2032 # var a = [1, 2, 3, 10, 20]
2033 # alpha_comparator.sort(a)
2034 # assert a == [1, 10, 2, 20, 3]
2035 fun alpha_comparator: Comparator do return once new AlphaComparator
2036
2037 # The arguments of the program as given by the OS
2038 fun args: Sequence[String]
2039 do
2040 return sys.program_args
2041 end
2042
2043 redef class NativeString
2044 # Returns `self` as a new String.
2045 fun to_s_with_copy: String is abstract
2046
2047 # Returns `self` as a String of `length`.
2048 fun to_s_with_length(length: Int): String is abstract
2049
2050 # Returns a new instance of `String` with self as `_items`
2051 #
2052 # /!\: Does not clean the items for compliance with UTF-8,
2053 # Use only if you know what you are doing
2054 fun to_s_unsafe(len: nullable Int): String is abstract
2055
2056 # Returns `self` as a String with `bytelen` and `length` set
2057 #
2058 # SEE: `abstract_text::Text` for more infos on the difference
2059 # between `Text::bytelen` and `Text::length`
2060 fun to_s_full(bytelen, unilen: Int): String is abstract
2061 end
2062
2063 redef class NativeArray[E]
2064 # Join all the elements using `to_s`
2065 #
2066 # REQUIRE: `self isa NativeArray[String]`
2067 # REQUIRE: all elements are initialized
2068 fun native_to_s: String is abstract
2069 end