2021-01-18 13:20:06 +01:00
|
|
|
// Copyright (c) 2019-2021 Alexander Medvednikov. All rights reserved.
|
2020-08-27 06:46:18 +02:00
|
|
|
// Use of this source code is governed by an MIT license that can be found in the LICENSE file.
|
|
|
|
module builtin
|
|
|
|
|
2021-08-19 05:58:53 +02:00
|
|
|
import strings
|
|
|
|
|
2020-12-16 08:03:49 +01:00
|
|
|
// This was never working correctly, the issue is now
|
|
|
|
// fixed however the type checks in checker need to be
|
|
|
|
// updated. if you uncomment it you will see the issue
|
|
|
|
// type rune = int
|
2020-08-27 06:46:18 +02:00
|
|
|
|
|
|
|
pub fn (c rune) str() string {
|
|
|
|
return utf32_to_str(u32(c))
|
|
|
|
/*
|
|
|
|
unsafe {
|
|
|
|
fst_byte := int(c)>>8 * 3 & 0xff
|
|
|
|
len := utf8_char_len(byte(fst_byte))
|
|
|
|
println('len=$len')
|
|
|
|
mut str := string{
|
|
|
|
len: len
|
|
|
|
str: malloc(len + 1)
|
|
|
|
}
|
|
|
|
for i in 0..len {
|
|
|
|
str.str[i] = byte(int(c)>>8 * (3 - i) & 0xff)
|
|
|
|
}
|
|
|
|
str.str[len] = `\0`
|
|
|
|
println(str)
|
|
|
|
return str
|
|
|
|
}
|
|
|
|
*/
|
|
|
|
}
|
|
|
|
|
2021-06-30 21:30:28 +02:00
|
|
|
// string converts a rune array to a string
|
2021-08-19 05:58:53 +02:00
|
|
|
[manualfree]
|
2021-06-30 21:30:28 +02:00
|
|
|
pub fn (ra []rune) string() string {
|
2021-08-19 05:58:53 +02:00
|
|
|
mut sb := strings.new_builder(ra.len)
|
2021-08-19 06:14:20 +02:00
|
|
|
sb.write_runes(ra)
|
2021-08-19 05:58:53 +02:00
|
|
|
res := sb.str()
|
|
|
|
unsafe { sb.free() }
|
2021-06-30 21:30:28 +02:00
|
|
|
return res
|
|
|
|
}
|
2021-09-30 08:32:20 +02:00
|
|
|
|
|
|
|
// repeat returns a new string with `count` number of copies of the rune it was called on.
|
|
|
|
pub fn (c rune) repeat(count int) string {
|
|
|
|
if count < 0 {
|
|
|
|
panic('rune.repeat: count is negative: $count')
|
|
|
|
} else if count == 0 {
|
|
|
|
return ''
|
|
|
|
} else if count == 1 {
|
|
|
|
return c.str()
|
|
|
|
}
|
|
|
|
mut buffer := [5]byte{}
|
|
|
|
res := unsafe { utf32_to_str_no_malloc(u32(c), &buffer[0]) }
|
|
|
|
return res.repeat(count)
|
|
|
|
}
|
2021-12-01 15:35:13 +01:00
|
|
|
|
|
|
|
pub fn (c rune) length_in_bytes() int {
|
|
|
|
code := u32(c)
|
|
|
|
if code <= 0x7F {
|
|
|
|
return 1
|
|
|
|
} else if code <= 0x7FF {
|
|
|
|
return 2
|
|
|
|
} else if 0xD800 <= code && code <= 0xDFFF {
|
|
|
|
// between min and max for surrogates
|
|
|
|
return -1
|
|
|
|
} else if code <= 0xFFFF {
|
|
|
|
return 3
|
|
|
|
} else if code <= 0x10FFFF {
|
|
|
|
// 0x10FFFF is the maximum valid unicode code point
|
|
|
|
return 4
|
|
|
|
}
|
|
|
|
return -1
|
|
|
|
}
|