1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/vlib/builtin/option.v

136 lines
2.8 KiB
V
Raw Normal View History

// Copyright (c) 2019-2021 Alexander Medvednikov. All rights reserved.
2019-06-23 05:21:30 +03:00
// Use of this source code is governed by an MIT license
// that can be found in the LICENSE file.
2019-06-22 21:20:28 +03:00
module builtin
2020-05-31 13:57:26 +03:00
struct OptionBase {
ok bool
is_none bool
error string
ecode int
// Data is trailing after ecode
2020-11-06 17:26:59 +03:00
// and is not included in here but in the
2020-05-31 13:57:26 +03:00
// derived Option_xxx types
}
2019-12-19 23:52:45 +03:00
2020-05-31 13:57:26 +03:00
// `fn foo() ?Foo { return foo }` => `fn foo() ?Foo { return opt_ok(foo); }`
fn opt_ok2(data voidptr, mut option OptionBase, size int) {
2020-05-31 13:57:26 +03:00
unsafe {
*option = OptionBase{
2020-05-31 13:57:26 +03:00
ok: true
}
// 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 13:57:26 +03:00
}
// Option is the old option type used for bootstrapping
2019-06-22 21:20:28 +03:00
struct Option {
ok bool
is_none bool
2020-05-18 22:38:06 +03:00
error string
ecode int
2019-06-22 21:20:28 +03:00
}
// str returns the string representation of the Option.
pub fn (o Option) str() string {
if o.ok && !o.is_none {
return 'Option{ ok }'
}
if o.is_none {
return 'Option{ none }'
}
return 'Option{ error: "$o.error" }'
}
// opt_none is used internally when returning `none`.
fn opt_none() Option {
2019-12-19 23:52:45 +03:00
return Option{
2020-05-18 22:38:06 +03:00
ok: false
2019-12-19 23:52:45 +03:00
is_none: true
}
}
// 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 23:52:45 +03:00
return Option{
2020-05-18 22:38:06 +03:00
ok: false
is_none: false
error: message
}
}
// 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 23:52:45 +03:00
return Option{
2020-05-18 22:38:06 +03:00
ok: false
is_none: false
error: message
ecode: code
}
2020-05-31 13:57:26 +03:00
}
2021-02-22 19:44:15 +03:00
struct Option2 {
state byte
err Error
}
// OptionBase is the the base of V's internal optional return system.
struct OptionBase2 {
state byte
err Error
// Data is trailing after err
// and is not included in here but in the
// derived Option2_xxx types
}
// Error holds information about an error instance
struct Error {
msg string
code int
}
// /*
pub fn (o Option2) str() string {
if o.state == 0 {
return 'Option2{ ok }'
}
if o.state == 1 {
return 'Option2{ none }'
}
return 'Option2{ err: "$o.err.msg" }'
}
// opt_none is used internally when returning `none`.
fn opt_none2() Option2 {
return Option2{
state: 1
}
}
// error returns an optional containing the error given in `message`.
// `if ouch { return error('an error occurred') }`
pub fn error2(message string) Option2 {
return Option2{
state: 2
err: {
msg: message
}
}
}
// 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_code2(message string, code int) Option2 {
return Option2{
state: 2
err: {
msg: message
code: code
}
}
}
// */