2021-01-18 13:20:06 +01:00
|
|
|
// Copyright (c) 2019-2021 Alexander Medvednikov. All rights reserved.
|
2019-06-23 04:21:30 +02:00
|
|
|
// 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
|
2020-12-18 23:27:35 +01:00
|
|
|
|
2019-12-16 20:22:04 +01:00
|
|
|
/*
|
|
|
|
struct Option2<T> {
|
2020-05-18 17:05:48 +02:00
|
|
|
ok bool
|
|
|
|
is_none bool
|
2020-05-18 21:38:06 +02:00
|
|
|
error string
|
|
|
|
ecode int
|
|
|
|
data T
|
2019-12-16 20:22:04 +01:00
|
|
|
}
|
|
|
|
*/
|
2020-12-18 23:27:35 +01:00
|
|
|
// OptionBase is the the base of V's internal optional return system.
|
2020-05-31 12:57:26 +02:00
|
|
|
struct OptionBase {
|
|
|
|
ok bool
|
|
|
|
is_none bool
|
|
|
|
error string
|
|
|
|
ecode int
|
|
|
|
// Data is trailing after ecode
|
2020-11-06 15:26:59 +01:00
|
|
|
// and is not included in here but in the
|
2020-05-31 12:57:26 +02:00
|
|
|
// derived Option_xxx types
|
|
|
|
}
|
2019-12-19 21:52:45 +01:00
|
|
|
|
2020-05-31 12:57:26 +02:00
|
|
|
// `fn foo() ?Foo { return foo }` => `fn foo() ?Foo { return opt_ok(foo); }`
|
2020-12-18 23:27:35 +01:00
|
|
|
fn opt_ok2(data voidptr, mut option OptionBase, size int) {
|
2020-05-31 12:57:26 +02:00
|
|
|
unsafe {
|
2020-12-18 23:27:35 +01:00
|
|
|
*option = OptionBase{
|
2020-05-31 12:57:26 +02:00
|
|
|
ok: true
|
|
|
|
}
|
2020-07-03 18:10:10 +02:00
|
|
|
// use ecode to get the end of OptionBase and then memcpy into it
|
|
|
|
C.memcpy(byteptr(&option.ecode) + sizeof(int), data, size)
|
|
|
|
}
|
2020-05-31 12:57:26 +02:00
|
|
|
}
|
|
|
|
|
2020-12-18 23:27:35 +01:00
|
|
|
// Option is the old option type used for bootstrapping
|
2019-06-22 20:20:28 +02:00
|
|
|
struct Option {
|
2020-05-18 17:05:48 +02:00
|
|
|
ok bool
|
|
|
|
is_none bool
|
2020-05-18 21:38:06 +02:00
|
|
|
error string
|
|
|
|
ecode int
|
2019-06-22 20:20:28 +02:00
|
|
|
}
|
|
|
|
|
2020-12-18 23:27:35 +01:00
|
|
|
// str returns the string representation of the Option.
|
2020-04-24 17:35:33 +02:00
|
|
|
pub fn (o Option) str() string {
|
2020-12-18 23:27:35 +01:00
|
|
|
if o.ok && !o.is_none {
|
|
|
|
return 'Option{ ok }'
|
|
|
|
}
|
|
|
|
if o.is_none {
|
|
|
|
return 'Option{ none }'
|
|
|
|
}
|
|
|
|
return 'Option{ error: "$o.error" }'
|
2020-04-24 17:35:33 +02:00
|
|
|
}
|
|
|
|
|
2020-12-18 23:27:35 +01:00
|
|
|
// opt_none is used internally when returning `none`.
|
2019-09-17 21:41:58 +02:00
|
|
|
fn opt_none() Option {
|
2019-12-19 21:52:45 +01:00
|
|
|
return Option{
|
2020-05-18 21:38:06 +02:00
|
|
|
ok: false
|
2019-12-19 21:52:45 +01:00
|
|
|
is_none: true
|
|
|
|
}
|
2019-07-03 21:07:42 +02:00
|
|
|
}
|
|
|
|
|
2020-12-18 23:27:35 +01:00
|
|
|
// error returns an optional containing the error given in `message`.
|
|
|
|
// `if ouch { return error('an error occurred') }`
|
|
|
|
pub fn error(message string) Option {
|
2019-12-19 21:52:45 +01:00
|
|
|
return Option{
|
2020-05-18 21:38:06 +02:00
|
|
|
ok: false
|
|
|
|
is_none: false
|
2020-12-18 23:27:35 +01:00
|
|
|
error: message
|
2019-07-03 21:07:42 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-12-18 23:27:35 +01:00
|
|
|
// error_with_code returns an optional containing both error `message` and error `code`.
|
|
|
|
// `if ouch { return error_with_code('an error occurred',1) }`
|
|
|
|
pub fn error_with_code(message string, code int) Option {
|
2019-12-19 21:52:45 +01:00
|
|
|
return Option{
|
2020-05-18 21:38:06 +02:00
|
|
|
ok: false
|
|
|
|
is_none: false
|
2020-12-18 23:27:35 +01:00
|
|
|
error: message
|
2019-10-25 21:03:42 +02:00
|
|
|
ecode: code
|
|
|
|
}
|
2020-05-31 12:57:26 +02:00
|
|
|
}
|