2016-09-08 21:13:10 +04:00
|
|
|
(**************************************************************************)
|
|
|
|
(* *)
|
2018-02-06 00:17:03 +04:00
|
|
|
(* Copyright (c) 2014 - 2018. *)
|
2016-09-08 21:13:10 +04:00
|
|
|
(* Dynamic Ledger Solutions, Inc. <contact@tezos.com> *)
|
|
|
|
(* *)
|
|
|
|
(* All rights reserved. No warranty, explicit or implicit, provided. *)
|
|
|
|
(* *)
|
|
|
|
(**************************************************************************)
|
|
|
|
|
|
|
|
(** Tezos Protocol Implementation - Error Monad *)
|
|
|
|
|
|
|
|
(** Categories of error *)
|
|
|
|
type error_category =
|
|
|
|
[ `Branch (** Errors that may not happen in another context *)
|
|
|
|
| `Temporary (** Errors that may not happen in a later context *)
|
|
|
|
| `Permanent (** Errors that will happen no matter the context *)
|
|
|
|
]
|
|
|
|
|
|
|
|
include Error_monad_sig.S
|
|
|
|
|
2018-02-21 23:58:53 +04:00
|
|
|
module type Wrapped_error_monad = sig
|
|
|
|
type unwrapped = ..
|
|
|
|
include Error_monad_sig.S with type error := unwrapped
|
|
|
|
val unwrap : error -> unwrapped option
|
|
|
|
val wrap : unwrapped -> error
|
|
|
|
end
|
|
|
|
|
|
|
|
val register_wrapped_error_kind :
|
|
|
|
(module Wrapped_error_monad) ->
|
|
|
|
id:string -> title:string -> description:string ->
|
|
|
|
unit
|
|
|
|
|
2016-09-08 21:13:10 +04:00
|
|
|
(** Erroneous result (shortcut for generic errors) *)
|
2017-04-05 01:35:41 +04:00
|
|
|
val generic_error :
|
|
|
|
('a, Format.formatter, unit, 'b tzresult) format4 ->
|
|
|
|
'a
|
2016-09-08 21:13:10 +04:00
|
|
|
|
|
|
|
(** Erroneous return (shortcut for generic errors) *)
|
|
|
|
val failwith :
|
|
|
|
('a, Format.formatter, unit, 'b tzresult Lwt.t) format4 ->
|
|
|
|
'a
|
|
|
|
|
|
|
|
val error_exn : exn -> 'a tzresult
|
|
|
|
val record_trace_exn : exn -> 'a tzresult -> 'a tzresult
|
|
|
|
val trace_exn : exn -> 'b tzresult Lwt.t -> 'b tzresult Lwt.t
|
2017-04-05 03:02:10 +04:00
|
|
|
val generic_trace :
|
|
|
|
('a, Format.formatter, unit,
|
|
|
|
('b, error list) result Lwt.t -> ('b, error list) result Lwt.t) format4 -> 'a
|
2017-01-14 16:13:22 +04:00
|
|
|
val pp_exn : Format.formatter -> exn -> unit
|
2016-09-08 21:13:10 +04:00
|
|
|
|
2017-04-05 03:02:10 +04:00
|
|
|
val failure : ('a, Format.formatter, unit, error) format4 -> 'a
|
|
|
|
|
2018-02-21 23:58:53 +04:00
|
|
|
(** Wrapped OCaml/Lwt exception *)
|
2016-09-08 21:13:10 +04:00
|
|
|
type error += Exn of exn
|
|
|
|
|
2018-02-08 13:51:01 +04:00
|
|
|
type error += Canceled
|
|
|
|
|
|
|
|
val protect :
|
|
|
|
?on_error:(error list -> 'a tzresult Lwt.t) ->
|
|
|
|
?canceler:Lwt_canceler.t ->
|
|
|
|
(unit -> 'a tzresult Lwt.t) -> 'a tzresult Lwt.t
|
|
|
|
|
|
|
|
type error += Timeout
|
|
|
|
val with_timeout:
|
|
|
|
?canceler:Lwt_canceler.t ->
|
|
|
|
unit Lwt.t -> (Lwt_canceler.t -> 'a tzresult Lwt.t) -> 'a tzresult Lwt.t
|
|
|
|
|
2018-02-21 23:58:53 +04:00
|
|
|
module Make(Prefix : sig val id : string end) : Error_monad_sig.S
|
2017-01-23 14:09:45 +04:00
|
|
|
|
|
|
|
(**/**)
|
|
|
|
val json_to_string : (Data_encoding.json -> string) ref
|
2018-06-12 23:07:50 +04:00
|
|
|
|
|
|
|
val errs_tag : error list Tag.def
|