lib: Added `from_hex` service to transform an hexadecimal digit to an `Int`
[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: Int do return a_to(16)
252
253 # If `self` contains only digits <= '7', return the corresponding integer.
254 #
255 # assert "714".to_oct == 460
256 fun to_oct: Int do return a_to(8)
257
258 # If `self` contains only '0' et '1', return the corresponding integer.
259 #
260 # assert "101101".to_bin == 45
261 fun to_bin: Int do return a_to(2)
262
263 # If `self` contains only digits '0' .. '9', return the corresponding integer.
264 #
265 # assert "108".to_dec == 108
266 fun to_dec: Int do return a_to(10)
267
268 # If `self` contains only digits and letters, return the corresponding integer in a given base
269 #
270 # assert "120".a_to(3) == 15
271 fun a_to(base: Int) : Int
272 do
273 var i = 0
274 var neg = false
275
276 for j in [0..length[ do
277 var c = chars[j]
278 var v = c.to_i
279 if v > base then
280 if neg then
281 return -i
282 else
283 return i
284 end
285 else if v < 0 then
286 neg = true
287 else
288 i = i * base + v
289 end
290 end
291 if neg then
292 return -i
293 else
294 return i
295 end
296 end
297
298 # Returns `true` if the string contains only Numeric values (and one "," or one "." character)
299 #
300 # assert "123".is_numeric == true
301 # assert "1.2".is_numeric == true
302 # assert "1,2".is_numeric == true
303 # assert "1..2".is_numeric == false
304 fun is_numeric: Bool
305 do
306 var has_point_or_comma = false
307 for i in [0..length[ do
308 var c = chars[i]
309 if not c.is_numeric then
310 if (c == '.' or c == ',') and not has_point_or_comma then
311 has_point_or_comma = true
312 else
313 return false
314 end
315 end
316 end
317 return true
318 end
319
320 # Returns `true` if the string contains only Hex chars
321 #
322 # assert "048bf".is_hex == true
323 # assert "ABCDEF".is_hex == true
324 # assert "0G".is_hex == false
325 fun is_hex: Bool
326 do
327 for i in [0..length[ do
328 var c = chars[i]
329 if not (c >= 'a' and c <= 'f') and
330 not (c >= 'A' and c <= 'F') and
331 not (c >= '0' and c <= '9') then return false
332 end
333 return true
334 end
335
336 # Returns `true` if the string contains only Binary digits
337 #
338 # assert "1101100".is_bin == true
339 # assert "1101020".is_bin == false
340 fun is_bin: Bool do
341 for i in chars do if i != '0' and i != '1' then return false
342 return true
343 end
344
345 # Returns `true` if the string contains only Octal digits
346 #
347 # assert "213453".is_oct == true
348 # assert "781".is_oct == false
349 fun is_oct: Bool do
350 for i in chars do if i < '0' or i > '7' then return false
351 return true
352 end
353
354 # Returns `true` if the string contains only Decimal digits
355 #
356 # assert "10839".is_dec == true
357 # assert "164F".is_dec == false
358 fun is_dec: Bool do
359 for i in chars do if i < '0' or i > '9' then return false
360 return true
361 end
362
363 # Are all letters in `self` upper-case ?
364 #
365 # assert "HELLO WORLD".is_upper == true
366 # assert "%$&%!".is_upper == true
367 # assert "hello world".is_upper == false
368 # assert "Hello World".is_upper == false
369 fun is_upper: Bool
370 do
371 for i in [0..length[ do
372 var char = chars[i]
373 if char.is_lower then return false
374 end
375 return true
376 end
377
378 # Are all letters in `self` lower-case ?
379 #
380 # assert "hello world".is_lower == true
381 # assert "%$&%!".is_lower == true
382 # assert "Hello World".is_lower == false
383 fun is_lower: Bool
384 do
385 for i in [0..length[ do
386 var char = chars[i]
387 if char.is_upper then return false
388 end
389 return true
390 end
391
392 # Removes the whitespaces at the beginning of self
393 #
394 # assert " \n\thello \n\t".l_trim == "hello \n\t"
395 #
396 # `Char::is_whitespace` determines what is a whitespace.
397 fun l_trim: SELFTYPE
398 do
399 var iter = self.chars.iterator
400 while iter.is_ok do
401 if not iter.item.is_whitespace then break
402 iter.next
403 end
404 if iter.index == length then return self.empty
405 return self.substring_from(iter.index)
406 end
407
408 # Removes the whitespaces at the end of self
409 #
410 # assert " \n\thello \n\t".r_trim == " \n\thello"
411 #
412 # `Char::is_whitespace` determines what is a whitespace.
413 fun r_trim: SELFTYPE
414 do
415 var iter = self.chars.reverse_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 < 0 then return self.empty
421 return self.substring(0, iter.index + 1)
422 end
423
424 # Trims trailing and preceding white spaces
425 #
426 # assert " Hello World ! ".trim == "Hello World !"
427 # assert "\na\nb\tc\t".trim == "a\nb\tc"
428 #
429 # `Char::is_whitespace` determines what is a whitespace.
430 fun trim: SELFTYPE do return (self.l_trim).r_trim
431
432 # Is the string non-empty but only made of whitespaces?
433 #
434 # assert " \n\t ".is_whitespace == true
435 # assert " hello ".is_whitespace == false
436 # assert "".is_whitespace == false
437 #
438 # `Char::is_whitespace` determines what is a whitespace.
439 fun is_whitespace: Bool
440 do
441 if is_empty then return false
442 for c in self.chars do
443 if not c.is_whitespace then return false
444 end
445 return true
446 end
447
448 # Returns `self` removed from its last line terminator (if any).
449 #
450 # assert "Hello\n".chomp == "Hello"
451 # assert "Hello".chomp == "Hello"
452 #
453 # assert "\n".chomp == ""
454 # assert "".chomp == ""
455 #
456 # Line terminators are `"\n"`, `"\r\n"` and `"\r"`.
457 # A single line terminator, the last one, is removed.
458 #
459 # assert "\r\n".chomp == ""
460 # assert "\r\n\n".chomp == "\r\n"
461 # assert "\r\n\r\n".chomp == "\r\n"
462 # assert "\r\n\r".chomp == "\r\n"
463 #
464 # Note: unlike with most IO methods like `Reader::read_line`,
465 # a single `\r` is considered here to be a line terminator and will be removed.
466 fun chomp: SELFTYPE
467 do
468 var len = length
469 if len == 0 then return self
470 var l = self.chars.last
471 if l == '\r' then
472 return substring(0, len-1)
473 else if l != '\n' then
474 return self
475 else if len > 1 and self.chars[len-2] == '\r' then
476 return substring(0, len-2)
477 else
478 return substring(0, len-1)
479 end
480 end
481
482 # Justify a self in a space of `length`
483 #
484 # `left` is the space ratio on the left side.
485 # * 0.0 for left-justified (no space at the left)
486 # * 1.0 for right-justified (all spaces at the left)
487 # * 0.5 for centered (half the spaces at the left)
488 #
489 # Examples
490 #
491 # assert "hello".justify(10, 0.0) == "hello "
492 # assert "hello".justify(10, 1.0) == " hello"
493 # assert "hello".justify(10, 0.5) == " hello "
494 #
495 # If `length` is not enough, `self` is returned as is.
496 #
497 # assert "hello".justify(2, 0.0) == "hello"
498 #
499 # REQUIRE: `left >= 0.0 and left <= 1.0`
500 # ENSURE: `self.length <= length implies result.length == length`
501 # ENSURE: `self.length >= length implies result == self`
502 fun justify(length: Int, left: Float): String
503 do
504 var diff = length - self.length
505 if diff <= 0 then return to_s
506 assert left >= 0.0 and left <= 1.0
507 var before = (diff.to_f * left).to_i
508 return " " * before + self + " " * (diff-before)
509 end
510
511 # Mangle a string to be a unique string only made of alphanumeric characters and underscores.
512 #
513 # This method is injective (two different inputs never produce the same
514 # output) and the returned string always respect the following rules:
515 #
516 # * Contains only US-ASCII letters, digits and underscores.
517 # * Never starts with a digit.
518 # * Never ends with an underscore.
519 # * Never contains two contiguous underscores.
520 #
521 # assert "42_is/The answer!".to_cmangle == "_52d2_is_47dThe_32danswer_33d"
522 # assert "__".to_cmangle == "_95d_95d"
523 # assert "__d".to_cmangle == "_95d_d"
524 # assert "_d_".to_cmangle == "_d_95d"
525 # assert "_42".to_cmangle == "_95d42"
526 # assert "foo".to_cmangle == "foo"
527 # assert "".to_cmangle == ""
528 fun to_cmangle: String
529 do
530 if is_empty then return ""
531 var res = new Buffer
532 var underscore = false
533 var start = 0
534 var c = chars[0]
535
536 if c >= '0' and c <= '9' then
537 res.add('_')
538 res.append(c.code_point.to_s)
539 res.add('d')
540 start = 1
541 end
542 for i in [start..length[ do
543 c = chars[i]
544 if (c >= 'a' and c <= 'z') or (c >='A' and c <= 'Z') then
545 res.add(c)
546 underscore = false
547 continue
548 end
549 if underscore then
550 res.append('_'.code_point.to_s)
551 res.add('d')
552 end
553 if c >= '0' and c <= '9' then
554 res.add(c)
555 underscore = false
556 else if c == '_' then
557 res.add(c)
558 underscore = true
559 else
560 res.add('_')
561 res.append(c.code_point.to_s)
562 res.add('d')
563 underscore = false
564 end
565 end
566 if underscore then
567 res.append('_'.code_point.to_s)
568 res.add('d')
569 end
570 return res.to_s
571 end
572
573 # Escape " \ ' and non printable characters using the rules of literal C strings and characters
574 #
575 # assert "abAB12<>&".escape_to_c == "abAB12<>&"
576 # assert "\n\"'\\".escape_to_c == "\\n\\\"\\'\\\\"
577 #
578 # Most non-printable characters (bellow ASCII 32) are escaped to an octal form `\nnn`.
579 # Three digits are always used to avoid following digits to be interpreted as an element
580 # of the octal sequence.
581 #
582 # assert "{0.code_point}{1.code_point}{8.code_point}{31.code_point}{32.code_point}".escape_to_c == "\\000\\001\\010\\037 "
583 #
584 # The exceptions are the common `\t` and `\n`.
585 fun escape_to_c: String
586 do
587 var b = new Buffer
588 for i in [0..length[ do
589 var c = chars[i]
590 if c == '\n' then
591 b.append("\\n")
592 else if c == '\t' then
593 b.append("\\t")
594 else if c == '"' then
595 b.append("\\\"")
596 else if c == '\'' then
597 b.append("\\\'")
598 else if c == '\\' then
599 b.append("\\\\")
600 else if c.code_point < 32 then
601 b.add('\\')
602 var oct = c.code_point.to_base(8, false)
603 # Force 3 octal digits since it is the
604 # maximum allowed in the C specification
605 if oct.length == 1 then
606 b.add('0')
607 b.add('0')
608 else if oct.length == 2 then
609 b.add('0')
610 end
611 b.append(oct)
612 else
613 b.add(c)
614 end
615 end
616 return b.to_s
617 end
618
619 # Escape additionnal characters
620 # The result might no be legal in C but be used in other languages
621 #
622 # assert "ab|\{\}".escape_more_to_c("|\{\}") == "ab\\|\\\{\\\}"
623 fun escape_more_to_c(chars: String): String
624 do
625 var b = new Buffer
626 for c in escape_to_c.chars do
627 if chars.chars.has(c) then
628 b.add('\\')
629 end
630 b.add(c)
631 end
632 return b.to_s
633 end
634
635 # Escape to C plus braces
636 #
637 # assert "\n\"'\\\{\}".escape_to_nit == "\\n\\\"\\'\\\\\\\{\\\}"
638 fun escape_to_nit: String do return escape_more_to_c("\{\}")
639
640 # Escape to POSIX Shell (sh).
641 #
642 # Abort if the text contains a null byte.
643 #
644 # assert "\n\"'\\\{\}0".escape_to_sh == "'\n\"'\\''\\\{\}0'"
645 fun escape_to_sh: String do
646 var b = new Buffer
647 b.chars.add '\''
648 for i in [0..length[ do
649 var c = chars[i]
650 if c == '\'' then
651 b.append("'\\''")
652 else
653 assert without_null_byte: c != '\0'
654 b.add(c)
655 end
656 end
657 b.chars.add '\''
658 return b.to_s
659 end
660
661 # Escape to include in a Makefile
662 #
663 # Unfortunately, some characters are not escapable in Makefile.
664 # These characters are `;`, `|`, `\`, and the non-printable ones.
665 # They will be rendered as `"?{hex}"`.
666 fun escape_to_mk: String do
667 var b = new Buffer
668 for i in [0..length[ do
669 var c = chars[i]
670 if c == '$' then
671 b.append("$$")
672 else if c == ':' or c == ' ' or c == '#' then
673 b.add('\\')
674 b.add(c)
675 else if c.code_point < 32 or c == ';' or c == '|' or c == '\\' or c == '=' then
676 b.append("?{c.code_point.to_base(16, false)}")
677 else
678 b.add(c)
679 end
680 end
681 return b.to_s
682 end
683
684 # Return a string where Nit escape sequences are transformed.
685 #
686 # var s = "\\n"
687 # assert s.length == 2
688 # var u = s.unescape_nit
689 # assert u.length == 1
690 # assert u.chars[0].code_point == 10 # (the ASCII value of the "new line" character)
691 fun unescape_nit: String
692 do
693 var res = new Buffer.with_cap(self.length)
694 var was_slash = false
695 for i in [0..length[ do
696 var c = chars[i]
697 if not was_slash then
698 if c == '\\' then
699 was_slash = true
700 else
701 res.add(c)
702 end
703 continue
704 end
705 was_slash = false
706 if c == 'n' then
707 res.add('\n')
708 else if c == 'r' then
709 res.add('\r')
710 else if c == 't' then
711 res.add('\t')
712 else if c == '0' then
713 res.add('\0')
714 else
715 res.add(c)
716 end
717 end
718 return res.to_s
719 end
720
721 # Returns `self` with all characters escaped with their UTF-16 representation
722 #
723 # assert "Aèあ𐏓".escape_to_utf16 == "\\u0041\\u00e8\\u3042\\ud800\\udfd3"
724 fun escape_to_utf16: String do
725 var buf = new Buffer
726 for i in chars do buf.append i.escape_to_utf16
727 return buf.to_s
728 end
729
730 # Returns the Unicode char escaped by `self`
731 #
732 # assert "\\u0041".from_utf16_escape == 'A'
733 # assert "\\ud800\\udfd3".from_utf16_escape == '𐏓'
734 # assert "\\u00e8".from_utf16_escape == 'è'
735 # assert "\\u3042".from_utf16_escape == 'あ'
736 fun from_utf16_escape: Char do
737 var ln = length
738 if ln != 6 and ln != 12 then return 0xFFFD.code_point
739 var cphi = substring(2, 4).to_hex
740 if cphi < 0xD800 then return cphi.code_point
741 if cphi > 0xDFFF then return cphi.code_point
742 if cphi > 0xDBFF then return 0xFFFD.code_point
743 var cp = 0
744 cp += (cphi - 0xD800) << 10
745 var cplo = substring(8, 4).to_hex
746 if cplo < 0xDC00 then return 0xFFFD.code_point
747 if cplo > 0xDFFF then return 0xFFFD.code_point
748 cp += cplo - 0xDC00
749 cp += 0x10000
750 return cp.code_point
751 end
752
753 # Encode `self` to percent (or URL) encoding
754 #
755 # assert "aBc09-._~".to_percent_encoding == "aBc09-._~"
756 # assert "%()< >".to_percent_encoding == "%25%28%29%3c%20%3e"
757 # assert ".com/post?e=asdf&f=123".to_percent_encoding == ".com%2fpost%3fe%3dasdf%26f%3d123"
758 # assert "éあいう".to_percent_encoding == "%c3%a9%e3%81%82%e3%81%84%e3%81%86"
759 fun to_percent_encoding: String
760 do
761 var buf = new Buffer
762
763 for i in [0..length[ do
764 var c = chars[i]
765 if (c >= '0' and c <= '9') or
766 (c >= 'a' and c <= 'z') or
767 (c >= 'A' and c <= 'Z') or
768 c == '-' or c == '.' or
769 c == '_' or c == '~'
770 then
771 buf.add c
772 else
773 var bytes = c.to_s.bytes
774 for b in bytes do buf.append "%{b.to_i.to_hex}"
775 end
776 end
777
778 return buf.to_s
779 end
780
781 # Decode `self` from percent (or URL) encoding to a clear string
782 #
783 # Replace invalid use of '%' with '?'.
784 #
785 # assert "aBc09-._~".from_percent_encoding == "aBc09-._~"
786 # assert "%25%28%29%3c%20%3e".from_percent_encoding == "%()< >"
787 # assert ".com%2fpost%3fe%3dasdf%26f%3d123".from_percent_encoding == ".com/post?e=asdf&f=123"
788 # assert "%25%28%29%3C%20%3E".from_percent_encoding == "%()< >"
789 # assert "incomplete %".from_percent_encoding == "incomplete ?"
790 # assert "invalid % usage".from_percent_encoding == "invalid ? usage"
791 # assert "%c3%a9%e3%81%82%e3%81%84%e3%81%86".from_percent_encoding == "éあいう"
792 fun from_percent_encoding: String
793 do
794 var len = bytelen
795 var has_percent = false
796 for c in chars do
797 if c == '%' then
798 len -= 2
799 has_percent = true
800 end
801 end
802
803 # If no transformation is needed, return self as a string
804 if not has_percent then return to_s
805
806 var buf = new NativeString(len)
807 var i = 0
808 var l = 0
809 while i < length do
810 var c = chars[i]
811 if c == '%' then
812 if i + 2 >= length then
813 # What follows % has been cut off
814 buf[l] = '?'.ascii
815 else
816 i += 1
817 var hex_s = substring(i, 2)
818 if hex_s.is_hex then
819 var hex_i = hex_s.to_hex
820 buf[l] = hex_i.to_b
821 i += 1
822 else
823 # What follows a % is not Hex
824 buf[l] = '?'.ascii
825 i -= 1
826 end
827 end
828 else buf[l] = c.ascii
829
830 i += 1
831 l += 1
832 end
833
834 return buf.to_s_with_length(l)
835 end
836
837 # Escape the characters `<`, `>`, `&`, `"`, `'` and `/` as HTML/XML entity references.
838 #
839 # assert "a&b-<>\"x\"/'".html_escape == "a&amp;b-&lt;&gt;&#34;x&#34;&#47;&#39;"
840 #
841 # 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>
842 fun html_escape: String
843 do
844 var buf = new Buffer
845
846 for i in [0..length[ do
847 var c = chars[i]
848 if c == '&' then
849 buf.append "&amp;"
850 else if c == '<' then
851 buf.append "&lt;"
852 else if c == '>' then
853 buf.append "&gt;"
854 else if c == '"' then
855 buf.append "&#34;"
856 else if c == '\'' then
857 buf.append "&#39;"
858 else if c == '/' then
859 buf.append "&#47;"
860 else buf.add c
861 end
862
863 return buf.to_s
864 end
865
866 # Equality of text
867 # Two pieces of text are equals if thez have the same characters in the same order.
868 #
869 # assert "hello" == "hello"
870 # assert "hello" != "HELLO"
871 # assert "hello" == "hel"+"lo"
872 #
873 # Things that are not Text are not equal.
874 #
875 # assert "9" != '9'
876 # assert "9" != ['9']
877 # assert "9" != 9
878 #
879 # assert "9".chars.first == '9' # equality of Char
880 # assert "9".chars == ['9'] # equality of Sequence
881 # assert "9".to_i == 9 # equality of Int
882 redef fun ==(o)
883 do
884 if o == null then return false
885 if not o isa Text then return false
886 if self.is_same_instance(o) then return true
887 if self.length != o.length then return false
888 return self.chars == o.chars
889 end
890
891 # Lexicographical comparaison
892 #
893 # assert "abc" < "xy"
894 # assert "ABC" < "abc"
895 redef fun <(other)
896 do
897 var self_chars = self.chars.iterator
898 var other_chars = other.chars.iterator
899
900 while self_chars.is_ok and other_chars.is_ok do
901 if self_chars.item < other_chars.item then return true
902 if self_chars.item > other_chars.item then return false
903 self_chars.next
904 other_chars.next
905 end
906
907 if self_chars.is_ok then
908 return false
909 else
910 return true
911 end
912 end
913
914 # Escape string used in labels for graphviz
915 #
916 # assert ">><<".escape_to_dot == "\\>\\>\\<\\<"
917 fun escape_to_dot: String
918 do
919 return escape_more_to_c("|\{\}<>")
920 end
921
922 private var hash_cache: nullable Int = null
923
924 redef fun hash
925 do
926 if hash_cache == null then
927 # djb2 hash algorithm
928 var h = 5381
929
930 for i in [0..length[ do
931 var char = chars[i]
932 h = (h << 5) + h + char.code_point
933 end
934
935 hash_cache = h
936 end
937 return hash_cache.as(not null)
938 end
939
940 # Gives the formatted string back as a Nit string with `args` in place
941 #
942 # assert "This %1 is a %2.".format("String", "formatted String") == "This String is a formatted String."
943 # assert "\\%1 This string".format("String") == "\\%1 This string"
944 fun format(args: Object...): String do
945 var s = new Array[Text]
946 var curr_st = 0
947 var i = 0
948 while i < length do
949 # Skip escaped characters
950 if self[i] == '\\' then
951 i += 1
952 # In case of format
953 else if self[i] == '%' then
954 var fmt_st = i
955 i += 1
956 var ciph_st = i
957 while i < length and self[i].is_numeric do
958 i += 1
959 end
960 i -= 1
961 var fmt_end = i
962 var ciph_len = fmt_end - ciph_st + 1
963
964 var arg_index = substring(ciph_st, ciph_len).to_i - 1
965 if arg_index >= args.length then continue
966
967 s.push substring(curr_st, fmt_st - curr_st)
968 s.push args[arg_index].to_s
969 curr_st = i + 1
970 end
971 i += 1
972 end
973 s.push substring(curr_st, length - curr_st)
974 return s.plain_to_s
975 end
976
977 # Copies `n` bytes from `self` at `src_offset` into `dest` starting at `dest_offset`
978 #
979 # Basically a high-level synonym of NativeString::copy_to
980 #
981 # REQUIRE: `n` must be large enough to contain `len` bytes
982 #
983 # var ns = new NativeString(8)
984 # "Text is String".copy_to_native(ns, 8, 2, 0)
985 # assert ns.to_s_with_length(8) == "xt is St"
986 #
987 fun copy_to_native(dest: NativeString, n, src_offset, dest_offset: Int) do
988 var mypos = src_offset
989 var itspos = dest_offset
990 while n > 0 do
991 dest[itspos] = self.bytes[mypos]
992 itspos += 1
993 mypos += 1
994 n -= 1
995 end
996 end
997
998 end
999
1000 # All kinds of array-based text representations.
1001 abstract class FlatText
1002 super Text
1003
1004 # Underlying C-String (`char*`)
1005 #
1006 # Warning : Might be void in some subclasses, be sure to check
1007 # if set before using it.
1008 var items: NativeString is noinit
1009
1010 # Returns a char* starting at position `first_byte`
1011 #
1012 # WARNING: If you choose to use this service, be careful of the following.
1013 #
1014 # Strings and NativeString are *ideally* always allocated through a Garbage Collector.
1015 # Since the GC tracks the use of the pointer for the beginning of the char*, it may be
1016 # deallocated at any moment, rendering the pointer returned by this function invalid.
1017 # Any access to freed memory may very likely cause undefined behaviour or a crash.
1018 # (Failure to do so will most certainly result in long and painful debugging hours)
1019 #
1020 # The only safe use of this pointer is if it is ephemeral (e.g. read in a C function
1021 # then immediately return).
1022 #
1023 # As always, do not modify the content of the String in C code, if this is what you want
1024 # copy locally the char* as Nit Strings are immutable.
1025 fun fast_cstring: NativeString is abstract
1026
1027 redef var length = 0
1028
1029 redef var bytelen = 0
1030
1031 redef fun output
1032 do
1033 var i = 0
1034 while i < length do
1035 items[i].output
1036 i += 1
1037 end
1038 end
1039
1040 redef fun copy_to_native(dest, n, src_offset, dest_offset) do
1041 items.copy_to(dest, n, src_offset, dest_offset)
1042 end
1043 end
1044
1045 # Abstract class for the SequenceRead compatible
1046 # views on the chars of any Text
1047 private abstract class StringCharView
1048 super SequenceRead[Char]
1049
1050 type SELFTYPE: Text
1051
1052 var target: SELFTYPE
1053
1054 redef fun is_empty do return target.is_empty
1055
1056 redef fun length do return target.length
1057
1058 redef fun iterator: IndexedIterator[Char] do return self.iterator_from(0)
1059
1060 redef fun reverse_iterator do return self.reverse_iterator_from(self.length - 1)
1061 end
1062
1063 # Abstract class for the SequenceRead compatible
1064 # views on the bytes of any Text
1065 private abstract class StringByteView
1066 super SequenceRead[Byte]
1067
1068 type SELFTYPE: Text
1069
1070 var target: SELFTYPE
1071
1072 redef fun is_empty do return target.is_empty
1073
1074 redef fun length do return target.bytelen
1075
1076 redef fun iterator do return self.iterator_from(0)
1077
1078 redef fun reverse_iterator do return self.reverse_iterator_from(target.bytelen - 1)
1079 end
1080
1081 # Immutable sequence of characters.
1082 #
1083 # String objects may be created using literals.
1084 #
1085 # assert "Hello World!" isa String
1086 abstract class String
1087 super Text
1088
1089 redef type SELFTYPE: String is fixed
1090
1091 redef fun to_s do return self
1092
1093 # Concatenates `o` to `self`
1094 #
1095 # assert "hello" + "world" == "helloworld"
1096 # assert "" + "hello" + "" == "hello"
1097 fun +(o: Text): SELFTYPE is abstract
1098
1099 # Concatenates self `i` times
1100 #
1101 # assert "abc" * 4 == "abcabcabcabc"
1102 # assert "abc" * 1 == "abc"
1103 # assert "abc" * 0 == ""
1104 fun *(i: Int): SELFTYPE is abstract
1105
1106 # Insert `s` at `pos`.
1107 #
1108 # assert "helloworld".insert_at(" ", 5) == "hello world"
1109 fun insert_at(s: String, pos: Int): SELFTYPE is abstract
1110
1111 redef fun substrings is abstract
1112
1113 # Returns a reversed version of self
1114 #
1115 # assert "hello".reversed == "olleh"
1116 # assert "bob".reversed == "bob"
1117 # assert "".reversed == ""
1118 fun reversed: SELFTYPE is abstract
1119
1120 # A upper case version of `self`
1121 #
1122 # assert "Hello World!".to_upper == "HELLO WORLD!"
1123 fun to_upper: SELFTYPE is abstract
1124
1125 # A lower case version of `self`
1126 #
1127 # assert "Hello World!".to_lower == "hello world!"
1128 fun to_lower : SELFTYPE is abstract
1129
1130 # Takes a camel case `self` and converts it to snake case
1131 #
1132 # assert "randomMethodId".to_snake_case == "random_method_id"
1133 #
1134 # The rules are the following:
1135 #
1136 # An uppercase is always converted to a lowercase
1137 #
1138 # assert "HELLO_WORLD".to_snake_case == "hello_world"
1139 #
1140 # An uppercase that follows a lowercase is prefixed with an underscore
1141 #
1142 # assert "HelloTheWORLD".to_snake_case == "hello_the_world"
1143 #
1144 # An uppercase that follows an uppercase and is followed by a lowercase, is prefixed with an underscore
1145 #
1146 # assert "HelloTHEWorld".to_snake_case == "hello_the_world"
1147 #
1148 # All other characters are kept as is; `self` does not need to be a proper CamelCased string.
1149 #
1150 # assert "=-_H3ll0Th3W0rld_-=".to_snake_case == "=-_h3ll0th3w0rld_-="
1151 fun to_snake_case: SELFTYPE
1152 do
1153 if self.is_lower then return self
1154
1155 var new_str = new Buffer.with_cap(self.length)
1156 var prev_is_lower = false
1157 var prev_is_upper = false
1158
1159 for i in [0..length[ do
1160 var char = chars[i]
1161 if char.is_lower then
1162 new_str.add(char)
1163 prev_is_lower = true
1164 prev_is_upper = false
1165 else if char.is_upper then
1166 if prev_is_lower then
1167 new_str.add('_')
1168 else if prev_is_upper and i+1 < length and chars[i+1].is_lower then
1169 new_str.add('_')
1170 end
1171 new_str.add(char.to_lower)
1172 prev_is_lower = false
1173 prev_is_upper = true
1174 else
1175 new_str.add(char)
1176 prev_is_lower = false
1177 prev_is_upper = false
1178 end
1179 end
1180
1181 return new_str.to_s
1182 end
1183
1184 # Takes a snake case `self` and converts it to camel case
1185 #
1186 # assert "random_method_id".to_camel_case == "randomMethodId"
1187 #
1188 # If the identifier is prefixed by an underscore, the underscore is ignored
1189 #
1190 # assert "_private_field".to_camel_case == "_privateField"
1191 #
1192 # If `self` is upper, it is returned unchanged
1193 #
1194 # assert "RANDOM_ID".to_camel_case == "RANDOM_ID"
1195 #
1196 # If there are several consecutive underscores, they are considered as a single one
1197 #
1198 # assert "random__method_id".to_camel_case == "randomMethodId"
1199 fun to_camel_case: SELFTYPE
1200 do
1201 if self.is_upper then return self
1202
1203 var new_str = new Buffer
1204 var is_first_char = true
1205 var follows_us = false
1206
1207 for i in [0..length[ do
1208 var char = chars[i]
1209 if is_first_char then
1210 new_str.add(char)
1211 is_first_char = false
1212 else if char == '_' then
1213 follows_us = true
1214 else if follows_us then
1215 new_str.add(char.to_upper)
1216 follows_us = false
1217 else
1218 new_str.add(char)
1219 end
1220 end
1221
1222 return new_str.to_s
1223 end
1224
1225 # Returns a capitalized `self`
1226 #
1227 # Letters that follow a letter are lowercased
1228 # Letters that follow a non-letter are upcased.
1229 #
1230 # SEE : `Char::is_letter` for the definition of letter.
1231 #
1232 # assert "jAVASCRIPT".capitalized == "Javascript"
1233 # assert "i am root".capitalized == "I Am Root"
1234 # assert "ab_c -ab0c ab\nc".capitalized == "Ab_C -Ab0C Ab\nC"
1235 fun capitalized: SELFTYPE do
1236 if length == 0 then return self
1237
1238 var buf = new Buffer.with_cap(length)
1239
1240 var curr = chars[0].to_upper
1241 var prev = curr
1242 buf[0] = curr
1243
1244 for i in [1 .. length[ do
1245 prev = curr
1246 curr = self[i]
1247 if prev.is_letter then
1248 buf[i] = curr.to_lower
1249 else
1250 buf[i] = curr.to_upper
1251 end
1252 end
1253
1254 return buf.to_s
1255 end
1256 end
1257
1258 # A mutable sequence of characters.
1259 abstract class Buffer
1260 super Text
1261
1262 # Returns an arbitrary subclass of `Buffer` with default parameters
1263 new is abstract
1264
1265 # Returns an instance of a subclass of `Buffer` with `i` base capacity
1266 new with_cap(i: Int) is abstract
1267
1268 redef type SELFTYPE: Buffer is fixed
1269
1270 # Specific implementations MUST set this to `true` in order to invalidate caches
1271 protected var is_dirty = true
1272
1273 # Copy-On-Write flag
1274 #
1275 # If the `Buffer` was to_s'd, the next in-place altering
1276 # operation will cause the current `Buffer` to be re-allocated.
1277 #
1278 # The flag will then be set at `false`.
1279 protected var written = false
1280
1281 # Modifies the char contained at pos `index`
1282 #
1283 # DEPRECATED : Use self.chars.[]= instead
1284 fun []=(index: Int, item: Char) is abstract
1285
1286 # Adds a char `c` at the end of self
1287 #
1288 # DEPRECATED : Use self.chars.add instead
1289 fun add(c: Char) is abstract
1290
1291 # Clears the buffer
1292 #
1293 # var b = new Buffer
1294 # b.append "hello"
1295 # assert not b.is_empty
1296 # b.clear
1297 # assert b.is_empty
1298 fun clear is abstract
1299
1300 # Enlarges the subsequent array containing the chars of self
1301 fun enlarge(cap: Int) is abstract
1302
1303 # Adds the content of text `s` at the end of self
1304 #
1305 # var b = new Buffer
1306 # b.append "hello"
1307 # b.append "world"
1308 # assert b == "helloworld"
1309 fun append(s: Text) is abstract
1310
1311 # `self` is appended in such a way that `self` is repeated `r` times
1312 #
1313 # var b = new Buffer
1314 # b.append "hello"
1315 # b.times 3
1316 # assert b == "hellohellohello"
1317 fun times(r: Int) is abstract
1318
1319 # Reverses itself in-place
1320 #
1321 # var b = new Buffer
1322 # b.append("hello")
1323 # b.reverse
1324 # assert b == "olleh"
1325 fun reverse is abstract
1326
1327 # Changes each lower-case char in `self` by its upper-case variant
1328 #
1329 # var b = new Buffer
1330 # b.append("Hello World!")
1331 # b.upper
1332 # assert b == "HELLO WORLD!"
1333 fun upper is abstract
1334
1335 # Changes each upper-case char in `self` by its lower-case variant
1336 #
1337 # var b = new Buffer
1338 # b.append("Hello World!")
1339 # b.lower
1340 # assert b == "hello world!"
1341 fun lower is abstract
1342
1343 # Capitalizes each word in `self`
1344 #
1345 # Letters that follow a letter are lowercased
1346 # Letters that follow a non-letter are upcased.
1347 #
1348 # SEE: `Char::is_letter` for the definition of a letter.
1349 #
1350 # var b = new FlatBuffer.from("jAVAsCriPt")
1351 # b.capitalize
1352 # assert b == "Javascript"
1353 # b = new FlatBuffer.from("i am root")
1354 # b.capitalize
1355 # assert b == "I Am Root"
1356 # b = new FlatBuffer.from("ab_c -ab0c ab\nc")
1357 # b.capitalize
1358 # assert b == "Ab_C -Ab0C Ab\nC"
1359 fun capitalize do
1360 if length == 0 then return
1361 var c = self[0].to_upper
1362 self[0] = c
1363 var prev = c
1364 for i in [1 .. length[ do
1365 prev = c
1366 c = self[i]
1367 if prev.is_letter then
1368 self[i] = c.to_lower
1369 else
1370 self[i] = c.to_upper
1371 end
1372 end
1373 end
1374
1375 redef fun hash
1376 do
1377 if is_dirty then hash_cache = null
1378 return super
1379 end
1380
1381 # In Buffers, the internal sequence of character is mutable
1382 # Thus, `chars` can be used to modify the buffer.
1383 redef fun chars: Sequence[Char] is abstract
1384 end
1385
1386 # View for chars on Buffer objects, extends Sequence
1387 # for mutation operations
1388 private abstract class BufferCharView
1389 super StringCharView
1390 super Sequence[Char]
1391
1392 redef type SELFTYPE: Buffer
1393
1394 end
1395
1396 # View for bytes on Buffer objects, extends Sequence
1397 # for mutation operations
1398 private abstract class BufferByteView
1399 super StringByteView
1400
1401 redef type SELFTYPE: Buffer
1402 end
1403
1404 redef class Object
1405 # User readable representation of `self`.
1406 fun to_s: String do return inspect
1407
1408 # The class name of the object in NativeString format.
1409 private fun native_class_name: NativeString is intern
1410
1411 # The class name of the object.
1412 #
1413 # assert 5.class_name == "Int"
1414 fun class_name: String do return native_class_name.to_s
1415
1416 # Developer readable representation of `self`.
1417 # Usually, it uses the form "<CLASSNAME:#OBJECTID bla bla bla>"
1418 fun inspect: String
1419 do
1420 return "<{inspect_head}>"
1421 end
1422
1423 # Return "CLASSNAME:#OBJECTID".
1424 # This function is mainly used with the redefinition of the inspect method
1425 protected fun inspect_head: String
1426 do
1427 return "{class_name}:#{object_id.to_hex}"
1428 end
1429 end
1430
1431 redef class Bool
1432 # assert true.to_s == "true"
1433 # assert false.to_s == "false"
1434 redef fun to_s
1435 do
1436 if self then
1437 return once "true"
1438 else
1439 return once "false"
1440 end
1441 end
1442 end
1443
1444 redef class Byte
1445 # C function to calculate the length of the `NativeString` to receive `self`
1446 private fun byte_to_s_len: Int `{
1447 return snprintf(NULL, 0, "0x%02x", self);
1448 `}
1449
1450 # C function to convert an nit Int to a NativeString (char*)
1451 private fun native_byte_to_s(nstr: NativeString, strlen: Int) `{
1452 snprintf(nstr, strlen, "0x%02x", self);
1453 `}
1454
1455 # Displayable byte in its hexadecimal form (0x..)
1456 #
1457 # assert 1.to_b.to_s == "0x01"
1458 # assert (-123).to_b.to_s == "0x85"
1459 redef fun to_s do
1460 var nslen = byte_to_s_len
1461 var ns = new NativeString(nslen + 1)
1462 ns[nslen] = 0u8
1463 native_byte_to_s(ns, nslen + 1)
1464 return ns.to_s_with_length(nslen)
1465 end
1466 end
1467
1468 redef class Int
1469
1470 # Wrapper of strerror C function
1471 private fun strerror_ext: NativeString `{ return strerror(self); `}
1472
1473 # Returns a string describing error number
1474 fun strerror: String do return strerror_ext.to_s
1475
1476 # Fill `s` with the digits in base `base` of `self` (and with the '-' sign if 'signed' and negative).
1477 # assume < to_c max const of char
1478 private fun fill_buffer(s: Buffer, base: Int, signed: Bool)
1479 do
1480 var n: Int
1481 # Sign
1482 if self < 0 then
1483 n = - self
1484 s.chars[0] = '-'
1485 else if self == 0 then
1486 s.chars[0] = '0'
1487 return
1488 else
1489 n = self
1490 end
1491 # Fill digits
1492 var pos = digit_count(base) - 1
1493 while pos >= 0 and n > 0 do
1494 s.chars[pos] = (n % base).to_c
1495 n = n / base # /
1496 pos -= 1
1497 end
1498 end
1499
1500 # C function to calculate the length of the `NativeString` to receive `self`
1501 private fun int_to_s_len: Int `{
1502 return snprintf(NULL, 0, "%ld", self);
1503 `}
1504
1505 # C function to convert an nit Int to a NativeString (char*)
1506 private fun native_int_to_s(nstr: NativeString, strlen: Int) `{
1507 snprintf(nstr, strlen, "%ld", self);
1508 `}
1509
1510 # return displayable int in base base and signed
1511 fun to_base(base: Int, signed: Bool): String is abstract
1512
1513 # return displayable int in hexadecimal
1514 #
1515 # assert 1.to_hex == "1"
1516 # assert (-255).to_hex == "-ff"
1517 fun to_hex: String do return to_base(16,false)
1518 end
1519
1520 redef class Float
1521 # Pretty representation of `self`, with decimals as needed from 1 to a maximum of 3
1522 #
1523 # assert 12.34.to_s == "12.34"
1524 # assert (-0120.030).to_s == "-120.03"
1525 #
1526 # see `to_precision` for a custom precision.
1527 redef fun to_s do
1528 var str = to_precision( 3 )
1529 if is_inf != 0 or is_nan then return str
1530 var len = str.length
1531 for i in [0..len-1] do
1532 var j = len-1-i
1533 var c = str.chars[j]
1534 if c == '0' then
1535 continue
1536 else if c == '.' then
1537 return str.substring( 0, j+2 )
1538 else
1539 return str.substring( 0, j+1 )
1540 end
1541 end
1542 return str
1543 end
1544
1545 # `String` representation of `self` with the given number of `decimals`
1546 #
1547 # assert 12.345.to_precision(0) == "12"
1548 # assert 12.345.to_precision(3) == "12.345"
1549 # assert (-12.345).to_precision(3) == "-12.345"
1550 # assert (-0.123).to_precision(3) == "-0.123"
1551 # assert 0.999.to_precision(2) == "1.00"
1552 # assert 0.999.to_precision(4) == "0.9990"
1553 fun to_precision(decimals: Int): String
1554 do
1555 if is_nan then return "nan"
1556
1557 var isinf = self.is_inf
1558 if isinf == 1 then
1559 return "inf"
1560 else if isinf == -1 then
1561 return "-inf"
1562 end
1563
1564 if decimals == 0 then return self.to_i.to_s
1565 var f = self
1566 for i in [0..decimals[ do f = f * 10.0
1567 if self > 0.0 then
1568 f = f + 0.5
1569 else
1570 f = f - 0.5
1571 end
1572 var i = f.to_i
1573 if i == 0 then return "0." + "0"*decimals
1574
1575 # Prepare both parts of the float, before and after the "."
1576 var s = i.abs.to_s
1577 var sl = s.length
1578 var p1
1579 var p2
1580 if sl > decimals then
1581 # Has something before the "."
1582 p1 = s.substring(0, sl-decimals)
1583 p2 = s.substring(sl-decimals, decimals)
1584 else
1585 p1 = "0"
1586 p2 = "0"*(decimals-sl) + s
1587 end
1588
1589 if i < 0 then p1 = "-" + p1
1590
1591 return p1 + "." + p2
1592 end
1593 end
1594
1595 redef class Char
1596
1597 # Returns a sequence with the UTF-8 bytes of `self`
1598 #
1599 # assert 'a'.bytes == [0x61u8]
1600 # assert 'ま'.bytes == [0xE3u8, 0x81u8, 0xBEu8]
1601 fun bytes: SequenceRead[Byte] do return to_s.bytes
1602
1603 # Length of `self` in a UTF-8 String
1604 private fun u8char_len: Int do
1605 var c = self.code_point
1606 if c < 0x80 then return 1
1607 if c <= 0x7FF then return 2
1608 if c <= 0xFFFF then return 3
1609 if c <= 0x10FFFF then return 4
1610 # Bad character format
1611 return 1
1612 end
1613
1614 # assert 'x'.to_s == "x"
1615 redef fun to_s do
1616 var ln = u8char_len
1617 var ns = new NativeString(ln + 1)
1618 u8char_tos(ns, ln)
1619 return ns.to_s_with_length(ln)
1620 end
1621
1622 # Returns `self` escaped to UTF-16
1623 #
1624 # i.e. Represents `self`.`code_point` using UTF-16 codets escaped
1625 # with a `\u`
1626 #
1627 # assert 'A'.escape_to_utf16 == "\\u0041"
1628 # assert 'è'.escape_to_utf16 == "\\u00e8"
1629 # assert 'あ'.escape_to_utf16 == "\\u3042"
1630 # assert '𐏓'.escape_to_utf16 == "\\ud800\\udfd3"
1631 fun escape_to_utf16: String do
1632 var cp = code_point
1633 var buf: Buffer
1634 if cp < 0xD800 or (cp >= 0xE000 and cp <= 0xFFFF) then
1635 buf = new Buffer.with_cap(6)
1636 buf.append("\\u0000")
1637 var hx = cp.to_hex
1638 var outid = 5
1639 for i in hx.chars.reverse_iterator do
1640 buf[outid] = i
1641 outid -= 1
1642 end
1643 else
1644 buf = new Buffer.with_cap(12)
1645 buf.append("\\u0000\\u0000")
1646 var lo = (((cp - 0x10000) & 0x3FF) + 0xDC00).to_hex
1647 var hi = ((((cp - 0x10000) & 0xFFC00) >> 10) + 0xD800).to_hex
1648 var out = 2
1649 for i in hi do
1650 buf[out] = i
1651 out += 1
1652 end
1653 out = 8
1654 for i in lo do
1655 buf[out] = i
1656 out += 1
1657 end
1658 end
1659 return buf.to_s
1660 end
1661
1662 private fun u8char_tos(r: NativeString, len: Int) `{
1663 r[len] = '\0';
1664 switch(len){
1665 case 1:
1666 r[0] = self;
1667 break;
1668 case 2:
1669 r[0] = 0xC0 | ((self & 0x7C0) >> 6);
1670 r[1] = 0x80 | (self & 0x3F);
1671 break;
1672 case 3:
1673 r[0] = 0xE0 | ((self & 0xF000) >> 12);
1674 r[1] = 0x80 | ((self & 0xFC0) >> 6);
1675 r[2] = 0x80 | (self & 0x3F);
1676 break;
1677 case 4:
1678 r[0] = 0xF0 | ((self & 0x1C0000) >> 18);
1679 r[1] = 0x80 | ((self & 0x3F000) >> 12);
1680 r[2] = 0x80 | ((self & 0xFC0) >> 6);
1681 r[3] = 0x80 | (self & 0x3F);
1682 break;
1683 }
1684 `}
1685
1686 # Returns true if the char is a numerical digit
1687 #
1688 # assert '0'.is_numeric
1689 # assert '9'.is_numeric
1690 # assert not 'a'.is_numeric
1691 # assert not '?'.is_numeric
1692 #
1693 # FIXME: Works on ASCII-range only
1694 fun is_numeric: Bool
1695 do
1696 return self >= '0' and self <= '9'
1697 end
1698
1699 # Returns true if the char is an alpha digit
1700 #
1701 # assert 'a'.is_alpha
1702 # assert 'Z'.is_alpha
1703 # assert not '0'.is_alpha
1704 # assert not '?'.is_alpha
1705 #
1706 # FIXME: Works on ASCII-range only
1707 fun is_alpha: Bool
1708 do
1709 return (self >= 'a' and self <= 'z') or (self >= 'A' and self <= 'Z')
1710 end
1711
1712 # Is `self` an hexadecimal digit ?
1713 #
1714 # assert 'A'.is_hexdigit
1715 # assert not 'G'.is_hexdigit
1716 # assert 'a'.is_hexdigit
1717 # assert not 'g'.is_hexdigit
1718 # assert '5'.is_hexdigit
1719 fun is_hexdigit: Bool do return (self >= '0' and self <= '9') or (self >= 'A' and self <= 'F') or
1720 (self >= 'a' and self <= 'f')
1721
1722 # Returns true if the char is an alpha or a numeric digit
1723 #
1724 # assert 'a'.is_alphanumeric
1725 # assert 'Z'.is_alphanumeric
1726 # assert '0'.is_alphanumeric
1727 # assert '9'.is_alphanumeric
1728 # assert not '?'.is_alphanumeric
1729 #
1730 # FIXME: Works on ASCII-range only
1731 fun is_alphanumeric: Bool
1732 do
1733 return self.is_numeric or self.is_alpha
1734 end
1735
1736 # Returns `self` to its int value
1737 #
1738 # REQUIRE: `is_hexdigit`
1739 fun from_hex: Int do
1740 if self >= '0' and self <= '9' then return code_point - 0x30
1741 if self >= 'A' and self <= 'F' then return code_point - 0x37
1742 if self >= 'a' and self <= 'f' then return code_point - 0x57
1743 # Happens if self is not a hexdigit
1744 assert self.is_hexdigit
1745 # To make flow analysis happy
1746 abort
1747 end
1748 end
1749
1750 redef class Collection[E]
1751 # String representation of the content of the collection.
1752 #
1753 # The standard representation is the list of elements separated with commas.
1754 #
1755 # ~~~
1756 # assert [1,2,3].to_s == "[1,2,3]"
1757 # assert [1..3].to_s == "[1,2,3]"
1758 # assert (new Array[Int]).to_s == "[]" # empty collection
1759 # ~~~
1760 #
1761 # Subclasses may return a more specific string representation.
1762 redef fun to_s
1763 do
1764 return "[" + join(",") + "]"
1765 end
1766
1767 # Concatenate elements without separators
1768 #
1769 # ~~~
1770 # assert [1,2,3].plain_to_s == "123"
1771 # assert [11..13].plain_to_s == "111213"
1772 # assert (new Array[Int]).plain_to_s == "" # empty collection
1773 # ~~~
1774 fun plain_to_s: String
1775 do
1776 var s = new Buffer
1777 for e in self do if e != null then s.append(e.to_s)
1778 return s.to_s
1779 end
1780
1781 # Concatenate and separate each elements with `separator`.
1782 #
1783 # Only concatenate if `separator == null`.
1784 #
1785 # assert [1, 2, 3].join(":") == "1:2:3"
1786 # assert [1..3].join(":") == "1:2:3"
1787 # assert [1..3].join == "123"
1788 fun join(separator: nullable Text): String
1789 do
1790 if is_empty then return ""
1791
1792 var s = new Buffer # Result
1793
1794 # Concat first item
1795 var i = iterator
1796 var e = i.item
1797 if e != null then s.append(e.to_s)
1798
1799 # Concat other items
1800 i.next
1801 while i.is_ok do
1802 if separator != null then s.append(separator)
1803 e = i.item
1804 if e != null then s.append(e.to_s)
1805 i.next
1806 end
1807 return s.to_s
1808 end
1809 end
1810
1811 redef class Map[K,V]
1812 # Concatenate couples of key value.
1813 # Key and value are separated by `couple_sep`.
1814 # Couples are separated by `sep`.
1815 #
1816 # var m = new HashMap[Int, String]
1817 # m[1] = "one"
1818 # m[10] = "ten"
1819 # assert m.join("; ", "=") == "1=one; 10=ten"
1820 fun join(sep, couple_sep: String): String is abstract
1821 end
1822
1823 redef class Sys
1824 private var args_cache: nullable Sequence[String] = null
1825
1826 # The arguments of the program as given by the OS
1827 fun program_args: Sequence[String]
1828 do
1829 if _args_cache == null then init_args
1830 return _args_cache.as(not null)
1831 end
1832
1833 # The name of the program as given by the OS
1834 fun program_name: String
1835 do
1836 return native_argv(0).to_s
1837 end
1838
1839 # Initialize `program_args` with the contents of `native_argc` and `native_argv`.
1840 private fun init_args
1841 do
1842 var argc = native_argc
1843 var args = new Array[String].with_capacity(0)
1844 var i = 1
1845 while i < argc do
1846 args[i-1] = native_argv(i).to_s
1847 i += 1
1848 end
1849 _args_cache = args
1850 end
1851
1852 # First argument of the main C function.
1853 private fun native_argc: Int is intern
1854
1855 # Second argument of the main C function.
1856 private fun native_argv(i: Int): NativeString is intern
1857 end
1858
1859 # Comparator that efficienlty use `to_s` to compare things
1860 #
1861 # The comparaison call `to_s` on object and use the result to order things.
1862 #
1863 # var a = [1, 2, 3, 10, 20]
1864 # (new CachedAlphaComparator).sort(a)
1865 # assert a == [1, 10, 2, 20, 3]
1866 #
1867 # Internally the result of `to_s` is cached in a HashMap to counter
1868 # uneficient implementation of `to_s`.
1869 #
1870 # Note: it caching is not usefull, see `alpha_comparator`
1871 class CachedAlphaComparator
1872 super Comparator
1873 redef type COMPARED: Object
1874
1875 private var cache = new HashMap[Object, String]
1876
1877 private fun do_to_s(a: Object): String do
1878 if cache.has_key(a) then return cache[a]
1879 var res = a.to_s
1880 cache[a] = res
1881 return res
1882 end
1883
1884 redef fun compare(a, b) do
1885 return do_to_s(a) <=> do_to_s(b)
1886 end
1887 end
1888
1889 # see `alpha_comparator`
1890 private class AlphaComparator
1891 super Comparator
1892 redef fun compare(a, b) do return a.to_s <=> b.to_s
1893 end
1894
1895 # Stateless comparator that naively use `to_s` to compare things.
1896 #
1897 # Note: the result of `to_s` is not cached, thus can be invoked a lot
1898 # on a single instace. See `CachedAlphaComparator` as an alternative.
1899 #
1900 # var a = [1, 2, 3, 10, 20]
1901 # alpha_comparator.sort(a)
1902 # assert a == [1, 10, 2, 20, 3]
1903 fun alpha_comparator: Comparator do return once new AlphaComparator
1904
1905 # The arguments of the program as given by the OS
1906 fun args: Sequence[String]
1907 do
1908 return sys.program_args
1909 end
1910
1911 redef class NativeString
1912 # Returns `self` as a new String.
1913 fun to_s_with_copy: String is abstract
1914
1915 # Returns `self` as a String of `length`.
1916 fun to_s_with_length(length: Int): String is abstract
1917
1918 # Returns `self` as a String with `bytelen` and `length` set
1919 #
1920 # SEE: `abstract_text::Text` for more infos on the difference
1921 # between `Text::bytelen` and `Text::length`
1922 fun to_s_full(bytelen, unilen: Int): String is abstract
1923 end
1924
1925 redef class NativeArray[E]
1926 # Join all the elements using `to_s`
1927 #
1928 # REQUIRE: `self isa NativeArray[String]`
1929 # REQUIRE: all elements are initialized
1930 fun native_to_s: String is abstract
1931 end