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
|
|
|
|
|
|
|
|
struct Option {
|
2019-09-17 21:41:58 +02:00
|
|
|
data [255]byte
|
|
|
|
error string
|
|
|
|
ok bool
|
|
|
|
is_none bool
|
2019-06-22 20:20:28 +02:00
|
|
|
}
|
|
|
|
|
2019-07-03 21:07:42 +02:00
|
|
|
// `fn foo() ?Foo { return foo }` => `fn foo() ?Foo { return opt_ok(foo); }`
|
|
|
|
fn opt_ok(data voidptr, size int) Option {
|
2019-08-12 17:54:28 +02:00
|
|
|
if size >= 255 {
|
2019-09-17 21:41:58 +02:00
|
|
|
panic('option size too big: $size (max is 255), this is a temporary limit')
|
|
|
|
}
|
|
|
|
res := Option {
|
2019-07-03 21:07:42 +02:00
|
|
|
ok: true
|
|
|
|
}
|
2019-09-17 21:41:58 +02:00
|
|
|
C.memcpy(res.data, data, size)
|
|
|
|
return res
|
|
|
|
}
|
|
|
|
|
|
|
|
fn opt_none() Option {
|
|
|
|
return Option{ is_none: true }
|
2019-07-03 21:07:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn error(s string) Option {
|
|
|
|
return Option {
|
|
|
|
error: s
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|