2018-02-08 13:51:01 +04:00
|
|
|
(**************************************************************************)
|
|
|
|
(* *)
|
|
|
|
(* Copyright (c) 2014 - 2018. *)
|
|
|
|
(* Dynamic Ledger Solutions, Inc. <contact@tezos.com> *)
|
|
|
|
(* *)
|
|
|
|
(* All rights reserved. No warranty, explicit or implicit, provided. *)
|
|
|
|
(* *)
|
|
|
|
(**************************************************************************)
|
|
|
|
|
2018-02-08 13:51:01 +04:00
|
|
|
open Error_monad
|
|
|
|
|
2018-02-08 13:51:01 +04:00
|
|
|
val read_bytes:
|
|
|
|
?pos:int -> ?len:int -> Lwt_unix.file_descr -> bytes -> unit Lwt.t
|
|
|
|
|
|
|
|
val read_mbytes:
|
|
|
|
?pos:int -> ?len:int -> Lwt_unix.file_descr -> MBytes.t -> unit Lwt.t
|
|
|
|
|
|
|
|
val write_bytes:
|
|
|
|
?pos:int -> ?len:int -> Lwt_unix.file_descr -> bytes -> unit Lwt.t
|
|
|
|
val write_mbytes:
|
|
|
|
?pos:int -> ?len:int -> Lwt_unix.file_descr -> MBytes.t -> unit Lwt.t
|
|
|
|
|
|
|
|
val remove_dir: string -> unit Lwt.t
|
|
|
|
val create_dir: ?perm:int -> string -> unit Lwt.t
|
2018-02-08 13:51:02 +04:00
|
|
|
val read_file: string -> string Lwt.t
|
2018-02-08 13:51:01 +04:00
|
|
|
val create_file: ?perm:int -> string -> string -> unit Lwt.t
|
|
|
|
|
2018-02-12 01:36:49 +04:00
|
|
|
val with_tempdir: string -> (string -> 'a Lwt.t) -> 'a Lwt.t
|
|
|
|
|
2018-02-08 13:51:01 +04:00
|
|
|
val safe_close: Lwt_unix.file_descr -> unit Lwt.t
|
|
|
|
|
|
|
|
val getaddrinfo:
|
|
|
|
passive:bool ->
|
|
|
|
node:string -> service:string ->
|
|
|
|
(Ipaddr.V6.t * int) list Lwt.t
|
2018-02-08 13:51:01 +04:00
|
|
|
|
2018-02-06 22:16:01 +04:00
|
|
|
(** [getpass ()] reads a password from stdio while setting-up the
|
|
|
|
terminal to not display the password being typed. *)
|
|
|
|
val getpass : unit -> string
|
|
|
|
|
2018-02-08 13:51:01 +04:00
|
|
|
module Json : sig
|
|
|
|
|
|
|
|
(** Loads a JSON file in memory *)
|
|
|
|
val read_file : string -> Data_encoding.json tzresult Lwt.t
|
|
|
|
|
|
|
|
(** (Over)write a JSON file from in memory data *)
|
|
|
|
val write_file : string -> Data_encoding.json -> unit tzresult Lwt.t
|
|
|
|
|
|
|
|
end
|
2018-02-08 13:51:01 +04:00
|
|
|
|
|
|
|
module Protocol : sig
|
|
|
|
|
|
|
|
val read_dir: string -> (Protocol_hash.t * Protocol.t) tzresult Lwt.t
|
|
|
|
|
|
|
|
val write_dir: string -> ?hash:Protocol_hash.t -> Protocol.t -> unit tzresult Lwt.t
|
|
|
|
|
|
|
|
end
|