feat(cron): proper parse error handling

Jef Roosens 2023-01-14 19:08:35 +01:00
parent 8c0315dea6
commit da5a77e489
2 changed files with 20 additions and 2 deletions

View File

@ -28,6 +28,24 @@ struct C.cron_simple_time {
type SimpleTime = C.cron_simple_time
enum ParseError as u8 {
ok = 0
invalid_expression = 1
invalid_number = 2
out_of_range = 3
too_many_parts = 4
}
fn (e ParseError) str() string {
return match e {
.ok { '' }
.invalid_expression { 'Invalid expression' }
.invalid_number { 'Invalid number' }
.out_of_range { 'Out of range' }
.too_many_parts { 'Too many parts' }
}
}
fn C.ce_init() &C.cron_expression
fn C.ce_free(ce &C.cron_expression)
@ -36,4 +54,4 @@ fn C.ce_next(out &C.cron_simple_time, ce &C.cron_expression, ref &C.cron_simple_
fn C.ce_next_from_now(out &C.cron_simple_time, ce &C.cron_expression)
fn C.ce_parse_expression(out &C.cron_expression, s &char) int
fn C.ce_parse_expression(out &C.cron_expression, s &char) ParseError

View File

@ -11,7 +11,7 @@ pub fn parse_expression(exp string) !&Expression {
out := C.ce_init()
res := C.ce_parse_expression(out, exp.str)
if res != 0 {
if res != .ok {
return error(res.str())
}