2019-06-23 04:21:30 +02:00
|
|
|
// Copyright (c) 2019 Alexander Medvednikov. All rights reserved.
|
|
|
|
// Use of this source code is governed by an MIT license
|
|
|
|
// that can be found in the LICENSE file.
|
|
|
|
|
2019-06-22 20:20:28 +02:00
|
|
|
module builtin
|
|
|
|
|
2019-07-31 09:20:40 +02:00
|
|
|
#include <float.h>
|
2019-08-24 01:48:40 +02:00
|
|
|
#include <math.h>
|
2019-07-31 09:20:40 +02:00
|
|
|
|
2019-06-27 13:14:59 +02:00
|
|
|
pub fn (d f64) str() string {
|
2019-06-22 20:20:28 +02:00
|
|
|
buf := malloc(sizeof(double) * 5 + 1)// TODO
|
|
|
|
C.sprintf(buf, '%f', d)
|
2019-07-21 12:22:41 +02:00
|
|
|
return tos(buf, strlen(buf))
|
2019-06-22 20:20:28 +02:00
|
|
|
}
|
|
|
|
|
2019-06-27 13:14:59 +02:00
|
|
|
pub fn (d f32) str() string {
|
2019-06-22 20:20:28 +02:00
|
|
|
buf := malloc(sizeof(double) * 5 + 1)// TODO
|
|
|
|
C.sprintf(buf, '%f', d)
|
2019-07-21 12:22:41 +02:00
|
|
|
return tos(buf, strlen(buf))
|
2019-06-22 20:20:28 +02:00
|
|
|
}
|
|
|
|
|
2019-06-27 13:14:59 +02:00
|
|
|
pub fn ptr_str(ptr voidptr) string {
|
2019-06-22 20:20:28 +02:00
|
|
|
buf := malloc(sizeof(double) * 5 + 1)// TODO
|
|
|
|
C.sprintf(buf, '%p', ptr)
|
2019-07-21 12:22:41 +02:00
|
|
|
return tos(buf, strlen(buf))
|
2019-06-22 20:20:28 +02:00
|
|
|
}
|
|
|
|
|
2019-07-31 09:20:40 +02:00
|
|
|
// compare floats using C epsilon
|
|
|
|
pub fn (a f64) eq(b f64) bool {
|
2019-07-08 03:42:36 +02:00
|
|
|
//return C.fabs(a - b) <= C.DBL_EPSILON
|
|
|
|
return (a - b) <= C.DBL_EPSILON
|
2019-07-31 09:20:40 +02:00
|
|
|
}
|
|
|
|
|
2019-06-22 20:20:28 +02:00
|
|
|
// fn (nn i32) str() string {
|
|
|
|
// return i
|
|
|
|
// }
|
2019-06-27 13:14:59 +02:00
|
|
|
pub fn (nn int) str() string {
|
2019-06-28 14:19:46 +02:00
|
|
|
mut n := nn
|
2019-06-22 20:20:28 +02:00
|
|
|
if n == 0 {
|
|
|
|
return '0'
|
|
|
|
}
|
|
|
|
max := 16
|
2019-08-20 14:34:34 +02:00
|
|
|
mut buf := calloc(max)
|
2019-06-22 20:20:28 +02:00
|
|
|
mut len := 0
|
2019-06-28 14:19:46 +02:00
|
|
|
mut is_neg := false
|
2019-06-22 20:20:28 +02:00
|
|
|
if n < 0 {
|
|
|
|
n = -n
|
|
|
|
is_neg = true
|
|
|
|
}
|
|
|
|
// Fill the string from the end
|
|
|
|
for n > 0 {
|
|
|
|
d := n % 10
|
|
|
|
buf[max - len - 1] = d + int(`0`)
|
|
|
|
len++
|
|
|
|
n = n / 10
|
|
|
|
}
|
|
|
|
// Prepend - if it's negative
|
|
|
|
if is_neg {
|
|
|
|
buf[max - len - 1] = `-`
|
|
|
|
len++
|
|
|
|
}
|
|
|
|
return tos(buf + max - len, len)
|
|
|
|
}
|
|
|
|
|
2019-08-12 01:58:08 +02:00
|
|
|
pub fn (nn u32) str() string {
|
|
|
|
mut n := nn
|
|
|
|
if n == u32(0) {
|
|
|
|
return '0'
|
|
|
|
}
|
|
|
|
max := 16
|
|
|
|
mut buf := malloc(max)
|
|
|
|
mut len := 0
|
|
|
|
// Fill the string from the end
|
|
|
|
for n > u32(0) {
|
|
|
|
d := n % u32(10)
|
|
|
|
buf[max - len - 1] = d + u32(`0`)
|
|
|
|
len++
|
|
|
|
n = n / u32(10)
|
|
|
|
}
|
|
|
|
return tos(buf + max - len, len)
|
|
|
|
}
|
|
|
|
|
2019-06-27 13:14:59 +02:00
|
|
|
pub fn (nn u8) str() string {
|
2019-06-28 14:19:46 +02:00
|
|
|
mut n := nn
|
2019-06-22 20:20:28 +02:00
|
|
|
if n == u8(0) {
|
|
|
|
return '0'
|
|
|
|
}
|
|
|
|
max := 5
|
|
|
|
mut buf := malloc(max)
|
|
|
|
mut len := 0
|
|
|
|
// Fill the string from the end
|
|
|
|
for n > u8(0) {
|
|
|
|
d := n % u8(10)
|
|
|
|
buf[max - len - 1] = d + u8(`0`)
|
|
|
|
len++
|
|
|
|
n = n / u8(10)
|
|
|
|
}
|
|
|
|
return tos(buf + max - len, len)
|
|
|
|
}
|
|
|
|
|
2019-06-27 13:14:59 +02:00
|
|
|
pub fn (nn i64) str() string {
|
2019-06-28 14:19:46 +02:00
|
|
|
mut n := nn
|
2019-06-22 20:20:28 +02:00
|
|
|
if n == i64(0) {
|
|
|
|
return '0'
|
|
|
|
}
|
|
|
|
max := 32
|
|
|
|
mut buf := malloc(max)
|
|
|
|
mut len := 0
|
2019-06-28 14:19:46 +02:00
|
|
|
mut is_neg := false
|
2019-06-22 20:20:28 +02:00
|
|
|
if n < i64(0) {
|
|
|
|
n = -n
|
|
|
|
is_neg = true
|
|
|
|
}
|
|
|
|
// Fill the string from the end
|
|
|
|
for n > i64(0) {
|
|
|
|
d := int(n % i64(10))
|
|
|
|
buf[max - len - 1] = d + int(`0`)
|
|
|
|
len++
|
|
|
|
n = n / i64(10)
|
|
|
|
}
|
|
|
|
// Prepend - if it's negative
|
|
|
|
if is_neg {
|
|
|
|
buf[max - len - 1] = `-`
|
|
|
|
len++
|
|
|
|
}
|
|
|
|
return tos(buf + max - len, len)
|
|
|
|
}
|
|
|
|
|
2019-08-12 01:58:08 +02:00
|
|
|
pub fn (nn u64) str() string {
|
|
|
|
mut n := nn
|
|
|
|
if n == u64(0) {
|
|
|
|
return '0'
|
|
|
|
}
|
|
|
|
max := 32
|
|
|
|
mut buf := malloc(max)
|
|
|
|
mut len := 0
|
|
|
|
// Fill the string from the end
|
|
|
|
for n > u64(0) {
|
|
|
|
d := n % u64(10)
|
|
|
|
buf[max - len - 1] = d + u64(`0`)
|
|
|
|
len++
|
|
|
|
n = n / u64(10)
|
|
|
|
}
|
|
|
|
return tos(buf + max - len, len)
|
|
|
|
}
|
|
|
|
|
2019-06-27 13:14:59 +02:00
|
|
|
pub fn (b bool) str() string {
|
2019-06-22 20:20:28 +02:00
|
|
|
if b {
|
|
|
|
return 'true'
|
|
|
|
}
|
|
|
|
return 'false'
|
|
|
|
}
|
|
|
|
|
2019-06-27 13:14:59 +02:00
|
|
|
pub fn (n int) hex() string {
|
2019-07-02 10:13:18 +02:00
|
|
|
len := if n >= 0 {
|
|
|
|
n.str().len + 3
|
|
|
|
} else {
|
|
|
|
11
|
|
|
|
}
|
2019-08-20 13:34:29 +02:00
|
|
|
hex := malloc(len) // 0x + \n
|
2019-07-01 17:00:09 +02:00
|
|
|
count := int(C.sprintf(hex, '0x%x', n))
|
|
|
|
return tos(hex, count)
|
2019-06-22 20:20:28 +02:00
|
|
|
}
|
|
|
|
|
2019-06-27 13:14:59 +02:00
|
|
|
pub fn (n i64) hex() string {
|
2019-07-02 10:13:18 +02:00
|
|
|
len := if n >= i64(0) {
|
|
|
|
n.str().len + 3
|
|
|
|
} else {
|
|
|
|
19
|
|
|
|
}
|
|
|
|
hex := malloc(len)
|
|
|
|
count := int(C.sprintf(hex, '0x%x', n))
|
|
|
|
return tos(hex, count)
|
2019-06-22 20:20:28 +02:00
|
|
|
}
|
|
|
|
|
2019-06-30 13:06:46 +02:00
|
|
|
pub fn (a []byte) contains(val byte) bool {
|
2019-06-22 20:20:28 +02:00
|
|
|
for aa in a {
|
|
|
|
if aa == val {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2019-07-01 17:36:23 +02:00
|
|
|
pub fn (c rune) str() string {
|
|
|
|
fst_byte := int(c) >> 8 * 3 & 0xff
|
|
|
|
len := utf8_char_len(fst_byte)
|
|
|
|
mut str := string {
|
|
|
|
len: len
|
|
|
|
str: malloc(len + 1)
|
|
|
|
}
|
|
|
|
for i := 0; i < len; i++ {
|
|
|
|
str.str[i] = int(c) >> 8 * (3 - i) & 0xff
|
|
|
|
}
|
|
|
|
str[len] = `\0`
|
|
|
|
return str
|
2019-06-22 20:20:28 +02:00
|
|
|
}
|
2019-07-01 17:36:23 +02:00
|
|
|
|
2019-06-27 13:14:59 +02:00
|
|
|
pub fn (c byte) str() string {
|
2019-06-22 20:20:28 +02:00
|
|
|
mut str := string {
|
|
|
|
len: 1
|
|
|
|
str: malloc(2)
|
|
|
|
}
|
|
|
|
str.str[0] = c
|
|
|
|
str.str[1] = `\0`
|
|
|
|
return str
|
|
|
|
}
|
|
|
|
|
2019-08-04 09:36:21 +02:00
|
|
|
pub fn (c byte) is_capital() bool {
|
2019-08-20 13:34:29 +02:00
|
|
|
return c >= `A` && c <= `Z`
|
|
|
|
}
|
2019-08-04 09:36:21 +02:00
|
|
|
|
2019-07-25 18:07:16 +02:00
|
|
|
pub fn (b []byte) clone() []byte {
|
2019-08-20 13:34:29 +02:00
|
|
|
mut res := [byte(0); b.len]
|
2019-07-25 18:07:16 +02:00
|
|
|
for i := 0; i < b.len; i++ {
|
2019-08-20 13:34:29 +02:00
|
|
|
res[i] = b[i]
|
|
|
|
}
|
|
|
|
return res
|
|
|
|
}
|
2019-07-25 18:07:16 +02:00
|
|
|
|