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. *)
|
|
|
|
(* *)
|
|
|
|
(**************************************************************************)
|
|
|
|
|
2018-02-08 13:51:02 +04:00
|
|
|
(** Return type for service handler *)
|
|
|
|
type 'o t =
|
|
|
|
[ `Ok of 'o (* 200 *)
|
|
|
|
| `OkStream of 'o stream (* 200 *)
|
|
|
|
| `Created of string option (* 201 *)
|
|
|
|
| `No_content (* 204 *)
|
2018-02-11 22:17:39 +04:00
|
|
|
| `Unauthorized of RPC_service.error option (* 401 *)
|
|
|
|
| `Forbidden of RPC_service.error option (* 403 *)
|
|
|
|
| `Not_found of RPC_service.error option (* 404 *)
|
|
|
|
| `Conflict of RPC_service.error option (* 409 *)
|
|
|
|
| `Error of RPC_service.error option (* 500 *)
|
2018-02-08 13:51:02 +04:00
|
|
|
]
|
|
|
|
|
|
|
|
and 'a stream = 'a Resto_directory.Answer.stream = {
|
|
|
|
next: unit -> 'a option Lwt.t ;
|
|
|
|
shutdown: unit -> unit ;
|
|
|
|
}
|
|
|
|
|
|
|
|
let return x = Lwt.return (`Ok x)
|
|
|
|
let return_stream x = Lwt.return (`OkStream x)
|
2018-02-11 22:17:39 +04:00
|
|
|
|
|
|
|
let not_found = Lwt.return (`Not_found None)
|
|
|
|
let fail err = Lwt.return (`Error (Some err))
|