2022-01-04 10:21:08 +01:00
|
|
|
// Copyright (c) 2019-2022 Alexander Medvednikov. All rights reserved.
|
2019-09-14 22:48:30 +02:00
|
|
|
// Use of this source code is governed by an MIT license
|
|
|
|
// that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
module builtin
|
|
|
|
|
2020-12-08 17:49:20 +01:00
|
|
|
fn (a any) toString()
|
|
|
|
|
2021-10-20 15:02:21 +02:00
|
|
|
[noreturn]
|
2020-06-20 13:22:49 +02:00
|
|
|
pub fn panic(s string) {
|
2021-09-11 13:24:47 +02:00
|
|
|
eprintln('V panic: $s\n$js_stacktrace()')
|
2020-06-20 13:22:49 +02:00
|
|
|
exit(1)
|
2020-06-04 20:26:18 +02:00
|
|
|
}
|
2020-11-24 12:54:26 +01:00
|
|
|
|
2021-08-25 13:40:53 +02:00
|
|
|
// IError holds information about an error instance
|
|
|
|
pub interface IError {
|
2022-02-11 14:52:33 +01:00
|
|
|
// >> Hack to allow old style custom error implementations
|
|
|
|
// TODO: remove once deprecation period for `IError` methods has ended
|
2021-08-25 13:40:53 +02:00
|
|
|
msg string
|
2022-02-11 14:52:33 +01:00
|
|
|
code int // <<
|
|
|
|
msg() string
|
|
|
|
code() int
|
2021-08-25 13:40:53 +02:00
|
|
|
}
|
|
|
|
|
2022-02-11 14:52:33 +01:00
|
|
|
pub fn (err IError) str() string {
|
|
|
|
return match err {
|
|
|
|
None__ {
|
|
|
|
'none'
|
|
|
|
}
|
|
|
|
Error {
|
|
|
|
err.msg()
|
|
|
|
}
|
|
|
|
MessageError {
|
|
|
|
err.msg()
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
// >> Hack to allow old style custom error implementations
|
2022-02-12 10:54:10 +01:00
|
|
|
// TODO: remove once deprecation period for `IError` methods has ended
|
|
|
|
old_error_style := unsafe { voidptr(&err.msg) != voidptr(&err.code) } // if fields are not defined (new style) they don't have an offset between them
|
|
|
|
if old_error_style {
|
2022-02-11 14:52:33 +01:00
|
|
|
'$err.type_name(): $err.msg'
|
|
|
|
} else {
|
|
|
|
// <<
|
|
|
|
'$err.type_name(): $err.msg()'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Error is the empty default implementation of `IError`.
|
2022-02-12 10:54:10 +01:00
|
|
|
pub struct Error {}
|
2020-11-24 12:54:26 +01:00
|
|
|
|
2022-02-11 14:52:33 +01:00
|
|
|
pub fn (err Error) msg() string {
|
|
|
|
return ''
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn (err Error) code() int {
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
// MessageError is the default implementation of the `IError` interface that is returned by the `error()` function
|
|
|
|
struct MessageError {
|
|
|
|
pub:
|
2021-08-25 13:40:53 +02:00
|
|
|
msg string
|
|
|
|
code int
|
|
|
|
}
|
|
|
|
|
2022-02-11 14:52:33 +01:00
|
|
|
pub fn (err MessageError) msg() string {
|
|
|
|
return err.msg
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn (err MessageError) code() int {
|
|
|
|
return err.code
|
|
|
|
}
|
|
|
|
|
|
|
|
pub const none__ = IError(&None__{})
|
|
|
|
|
|
|
|
struct None__ {
|
|
|
|
Error
|
|
|
|
}
|
|
|
|
|
2021-08-25 13:40:53 +02:00
|
|
|
fn (_ None__) str() string {
|
|
|
|
return 'none'
|
|
|
|
}
|
|
|
|
|
2021-08-30 19:47:18 +02:00
|
|
|
pub struct Option {
|
|
|
|
state byte
|
|
|
|
err IError = none__
|
|
|
|
}
|
|
|
|
|
2020-11-24 12:54:26 +01:00
|
|
|
pub fn (o Option) str() string {
|
2021-03-24 19:39:59 +01:00
|
|
|
if o.state == 0 {
|
|
|
|
return 'Option{ ok }'
|
|
|
|
}
|
|
|
|
if o.state == 1 {
|
|
|
|
return 'Option{ none }'
|
|
|
|
}
|
|
|
|
return 'Option{ error: "$o.err" }'
|
2020-11-24 12:54:26 +01:00
|
|
|
}
|
|
|
|
|
2022-01-09 15:12:33 +01:00
|
|
|
// trace_error prints to stderr a string and a backtrace of the error
|
2021-08-25 13:40:53 +02:00
|
|
|
fn trace_error(x string) {
|
|
|
|
eprintln('> ${@FN} | $x')
|
|
|
|
}
|
|
|
|
|
|
|
|
// error returns a default error instance containing the error given in `message`.
|
2022-01-09 15:12:33 +01:00
|
|
|
// Example: if ouch { return error('an error occurred') }
|
2021-08-25 13:40:53 +02:00
|
|
|
[inline]
|
|
|
|
pub fn error(message string) IError {
|
2021-08-29 13:27:17 +02:00
|
|
|
// trace_error(message)
|
2022-02-11 14:52:33 +01:00
|
|
|
return &MessageError{
|
2021-08-25 13:40:53 +02:00
|
|
|
msg: message
|
2020-11-24 12:54:26 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-08-25 13:40:53 +02:00
|
|
|
// error_with_code returns a default error instance containing the given `message` and error `code`.
|
2022-01-09 15:12:33 +01:00
|
|
|
// Example: if ouch { return error_with_code('an error occurred', 1) }
|
2021-08-25 13:40:53 +02:00
|
|
|
[inline]
|
|
|
|
pub fn error_with_code(message string, code int) IError {
|
|
|
|
// trace_error('$message | code: $code')
|
2022-02-11 14:52:33 +01:00
|
|
|
return &MessageError{
|
2021-08-25 13:40:53 +02:00
|
|
|
msg: message
|
|
|
|
code: code
|
2020-11-24 12:54:26 +01:00
|
|
|
}
|
|
|
|
}
|
2021-12-03 11:25:36 +01:00
|
|
|
|
2022-01-09 15:12:33 +01:00
|
|
|
// free allows for manually freeing memory allocated at the address `ptr`.
|
|
|
|
// However, this is a no-op on JS backend
|
2021-12-03 11:25:36 +01:00
|
|
|
[unsafe]
|
|
|
|
pub fn free(ptr voidptr) {
|
|
|
|
_ := ptr
|
|
|
|
}
|