Error handling
Parseff exposes four main APIs for error handling:
Parseff.fail: fail with a string messageParseff.error: fail with a typed custom valueParseff.catch: intercept a failure and recoverParseff.expect: relabel failures from another parser
fail
Abort parsing with a message. The message is returned as Error { error = `Failure msg; ... }.
val fail : string -> 'alet byte () =
let n =
int_of_string
(Parseff.take_while ~at_least:1
(fun c -> c >= '0' && c <= '9')
~label:"digit")
in
if n >= 0 && n <= 255 then n
else Parseff.fail "number must be between 0 and 255"
let () =
match Parseff.parse "300" byte with
| Error { pos; error = `Failure msg } ->
(* pos = 3, msg = "number must be between 0 and 255" *)
Printf.printf "Error at %d: %s\n" pos msg
| Ok n -> Printf.printf "Got: %d\n" n
| Error _ -> ()Use this when a human-readable string is enough.
error
Abort parsing with a typed custom error value.
val error : 'e -> 'alet number () =
let s =
Parseff.take_while ~at_least:1 (fun c -> c >= '0' && c <= '9') ~label:"digit"
in
let n = int_of_string s in
if n > 255 then Parseff.error (`Too_large n)
else if n < 0 then Parseff.error (`Negative n)
else n
let () =
match Parseff.parse "300" number with
| Error { error = `Too_large n; pos } ->
Printf.printf "Number %d too large at position %d\n" n pos
| Error { error = `Negative n; pos } ->
Printf.printf "Negative number %d at position %d\n" n pos
| Error _ -> Printf.printf "Other error\n"
| Ok n -> Printf.printf "Got %d\n" nUse this when callers need to pattern match on specific failure cases.
Polymorphic variants work great with error for quick error types:
let number_quick () =
let s =
Parseff.take_while ~at_least:1 (fun c -> c >= '0' && c <= '9') ~label:"digit"
in
let n = int_of_string s in
if n > 255 then Parseff.error `Too_large
else if n < 0 then Parseff.error `Negative
else ncatch
Intercept a Parseff.fail failure and recover from it.
val catch : (unit -> 'a) -> (string -> 'a) -> 'aSince fail produces `Failure errors that punch through backtracking, they cannot be recovered with Parseff.or_ or Parseff.optional. Use catch when you want a failure to be recoverable:
(* Without catch: the fail punches through or_, second branch never runs *)
(* With catch: the failure is intercepted and converted to a fallback value *)
let lenient_number () =
Parseff.catch
(fun () ->
let s =
Parseff.take_while ~at_least:1 (fun c -> c >= '0' && c <= '9') ~label:"digit"
in
let n = int_of_string s in
if n > 255 then Parseff.fail "out of range"
else n)
(fun _msg -> 0)The handler receives the failure message and can return a value, raise a different error with Parseff.error, or call Parseff.fail again.
expect
Run a parser and replace its failure message with a clearer description.
val expect : string -> (unit -> 'a) -> 'alet dot () =
Parseff.expect "a dot separator" (fun () -> Parseff.char '.')
let number () =
let s =
Parseff.take_while ~at_least:1 (fun c -> c >= '0' && c <= '9') ~label:"digit"
in
int_of_string s
let ip_address () =
let a = number () in
let _ = dot () in
let b = number () in
let _ = dot () in
let c = number () in
let _ = dot () in
let d = number () in
Parseff.end_of_input ();
(a, b, c, d)Without expect, a failed char '.' reports expected '.'. With expect, it reports expected a dot separator.
Built-in error variants
Parseff adds four built-in error variants to every parse result:
`Expected of string: The parser encountered the wrong input at a given position. Produced by primitive mismatches (e.g.Parseff.charseeing the wrong character), andParseff.expectrelabeling.`Failure of string: A user-initiated validation failure raised viaParseff.fail. Unlike`Expected, failures are not caught by backtracking combinators (Parseff.or_,Parseff.many, etc.) or relabeling combinators (Parseff.expect,Parseff.one_of_labeled).`Unexpected_end_of_input: The input ended before the parser could finish. Produced when primitives likeParseff.char,Parseff.consume, orParseff.satisfyneed more input but have reached the end.`Depth_limit_exceeded of string: AParseff.rec_call exceeded the~max_depthlimit. The message contains the depth that was exceeded.
Your own error types from Parseff.error are merged with these via polymorphic variant row extension.