Client refactor: remove Utils.read_file...

This commit is contained in:
Grégoire Henry 2018-02-08 10:51:02 +01:00
parent 1f0c10bc6f
commit 41d30777a6
6 changed files with 34 additions and 69 deletions

View File

@ -113,7 +113,7 @@ let ensure_data_dir data_dir =
| [| single |] when single = default_identity_file_name -> write_version () | [| single |] when single = default_identity_file_name -> write_version ()
| _ -> check_data_dir_version data_dir | _ -> check_data_dir_version data_dir
else begin else begin
Utils.mkdir ~perm:0o700 data_dir ; Lwt_utils_unix.create_dir ~perm:0o700 data_dir >>= fun () ->
write_version () write_version ()
end end
with Sys_error _ | Unix.Unix_error _ -> with Sys_error _ | Unix.Unix_error _ ->

View File

@ -96,9 +96,8 @@ module Cfg_file = struct
return (from_json json) return (from_json json)
let write out cfg = let write out cfg =
Utils.write_file ~bin:false out Lwt_utils_unix.Json.write_file out
(Data_encoding.Json.construct encoding cfg |> (Data_encoding.Json.construct encoding cfg)
Data_encoding.Json.to_string)
end end
@ -200,19 +199,8 @@ let tls_switch =
~parameter:"-tls" ~parameter:"-tls"
~doc:"use TLS to connect to node." ~doc:"use TLS to connect to node."
let read_config_file config_file = match let read_config_file config_file =
Utils.read_file ~bin:false config_file Lwt_utils_unix.Json.read_file config_file >>=? fun cfg_json ->
|> Data_encoding.Json.from_string
with
| exception (Sys_error msg) ->
failwith
"Can't read the configuration file: %s@,%s"
config_file msg
| Error msg ->
failwith
"Can't parse the configuration file: %s@,%s"
config_file msg
| Ok cfg_json ->
try return @@ Cfg_file.from_json cfg_json try return @@ Cfg_file.from_json cfg_json
with exn -> with exn ->
failwith failwith
@ -244,7 +232,7 @@ let commands config_file cfg =
no_options no_options
(fixed [ "config" ; "reset" ]) (fixed [ "config" ; "reset" ])
(fun () _cctxt -> (fun () _cctxt ->
return Cfg_file.(write config_file default)) ; Cfg_file.(write config_file default)) ;
command ~group command ~group
~desc:"Update the config based on the current cli values.\n\ ~desc:"Update the config based on the current cli values.\n\
@ -255,7 +243,7 @@ let commands config_file cfg =
no_options no_options
(fixed [ "config" ; "update" ]) (fixed [ "config" ; "update" ])
(fun () _cctxt -> (fun () _cctxt ->
return Cfg_file.(write config_file cfg)) ; Cfg_file.(write config_file cfg)) ;
command ~group command ~group
~desc:"Create a config file based on the current CLI values.\n\ ~desc:"Create a config file based on the current CLI values.\n\
@ -278,7 +266,7 @@ let commands config_file cfg =
(fixed [ "config" ; "init" ]) (fixed [ "config" ; "init" ])
(fun config_file _cctxt -> (fun config_file _cctxt ->
if not (Sys.file_exists config_file) if not (Sys.file_exists config_file)
then return Cfg_file.(write config_file cfg) (* Should be default or command would have failed *) then Cfg_file.(write config_file cfg) (* Should be default or command would have failed *)
else failwith "Config file already exists at location") ; else failwith "Config file already exists at location") ;
] ]
@ -310,8 +298,9 @@ let parse_config_args (ctx : Client_commands.full_context) argv =
begin match base_dir with begin match base_dir with
| None -> | None ->
let base_dir = Client_commands.default_base_dir in let base_dir = Client_commands.default_base_dir in
if not (Sys.file_exists base_dir) unless (Sys.file_exists base_dir) begin fun () ->
then Utils.mkdir base_dir ; Lwt_utils_unix.create_dir base_dir >>= return
end >>=? fun () ->
return base_dir return base_dir
| Some dir -> | Some dir ->
if not (Sys.file_exists dir) if not (Sys.file_exists dir)
@ -338,7 +327,7 @@ let parse_config_args (ctx : Client_commands.full_context) argv =
return { Cfg_file.default with base_dir = base_dir } return { Cfg_file.default with base_dir = base_dir }
else else
read_config_file config_file read_config_file config_file
end >>|? fun cfg -> end >>=? fun cfg ->
let tls = cfg.tls || tls in let tls = cfg.tls || tls in
let node_addr = Option.unopt ~default:cfg.node_addr node_addr in let node_addr = Option.unopt ~default:cfg.node_addr node_addr in
let node_port = Option.unopt ~default:cfg.node_port node_port in let node_port = Option.unopt ~default:cfg.node_port node_port in
@ -351,5 +340,8 @@ let parse_config_args (ctx : Client_commands.full_context) argv =
Format.eprintf "%s is not a directory.@." config_dir ; Format.eprintf "%s is not a directory.@." config_dir ;
exit 1 ; exit 1 ;
end ; end ;
Utils.mkdir config_dir ; Lwt_utils_unix.create_dir config_dir >>= fun () ->
(cfg, { block ; print_timings = timings ; log_requests ; protocol }, commands config_file cfg, remaining) return
(cfg,
{ block ; print_timings = timings ; log_requests ; protocol },
commands config_file cfg, remaining)

View File

@ -32,30 +32,3 @@ let display_paragraph ppf description =
(TzString.split ~dup:false '\n' description) (TzString.split ~dup:false '\n' description)
let finalize f g = try let res = f () in g (); res with exn -> g (); raise exn let finalize f g = try let res = f () in g (); res with exn -> g (); raise exn
let read_file ?(bin=false) fn =
let ic = (if bin then open_in_bin else open_in) fn in
finalize (fun () ->
let len = in_channel_length ic in
really_input_string ic len)
(fun () -> close_in ic)
let write_file ?(bin=false) fn contents =
let oc = (if bin then open_out_bin else open_out) fn in
finalize (fun () ->
let contents = Bytes.unsafe_of_string contents in
output oc contents 0 @@ Bytes.length contents
)
(fun () -> close_out oc)
let mkdir ?(perm=0o755) dir =
let safe_mkdir dir =
if not (Sys.file_exists dir) then
try Unix.mkdir dir perm
with Unix.Unix_error(Unix.EEXIST,_,_) -> () in
let rec aux dir =
if not (Sys.file_exists dir) then begin
aux (Filename.dirname dir);
safe_mkdir dir;
end in
aux dir

View File

@ -22,11 +22,3 @@ val display_paragraph: Format.formatter -> string -> unit
(** [finalize f g ] ensures g() called after f(), even if exception raised **) (** [finalize f g ] ensures g() called after f(), even if exception raised **)
val finalize: (unit -> 'a) -> (unit -> unit) -> 'a val finalize: (unit -> 'a) -> (unit -> unit) -> 'a
(** Return contents of file at given filename. **)
val read_file: ?bin:bool -> string -> string
(** [write_file p c] writes c to file at path p **)
val write_file: ?bin:bool -> string -> string -> unit
val mkdir: ?perm:Unix.file_perm -> string -> unit

View File

@ -92,6 +92,13 @@ let create_file ?(perm = 0o644) name content =
Lwt_unix.write_string fd content 0 (String.length content) >>= fun _ -> Lwt_unix.write_string fd content 0 (String.length content) >>= fun _ ->
Lwt_unix.close fd Lwt_unix.close fd
let read_file fn =
Lwt_io.with_file fn ~mode:Input begin fun ch ->
Lwt_io.read ch
end
let safe_close fd = let safe_close fd =
Lwt.catch Lwt.catch
(fun () -> Lwt_unix.close fd) (fun () -> Lwt_unix.close fd)
@ -172,16 +179,16 @@ module Protocol = struct
match Sys.file_exists implementation, Sys.file_exists interface with match Sys.file_exists implementation, Sys.file_exists interface with
| false, _ -> Pervasives.failwith @@ "Not such file: " ^ implementation | false, _ -> Pervasives.failwith @@ "Not such file: " ^ implementation
| true, false -> | true, false ->
let implementation = Utils.read_file ~bin:false implementation in read_file implementation >|= fun implementation ->
{ name = module_name; interface = None; implementation } { name = module_name; interface = None; implementation }
| _ -> | _ ->
let interface = Utils.read_file ~bin:false interface in read_file interface >>= fun interface ->
let implementation = Utils.read_file ~bin:false implementation in read_file implementation >|= fun implementation ->
{ name = module_name; interface = Some interface; implementation } { name = module_name; interface = Some interface; implementation }
let read_dir dir = let read_dir dir =
of_file ~dir >>=? fun meta -> of_file ~dir >>=? fun meta ->
let components = List.map (find_component dir) meta.modules in Lwt_list.map_p (find_component dir) meta.modules >>= fun components ->
let expected_env = let expected_env =
match meta.expected_env_version with match meta.expected_env_version with
| None -> V1 | None -> V1

View File

@ -22,6 +22,7 @@ val write_mbytes:
val remove_dir: string -> unit Lwt.t val remove_dir: string -> unit Lwt.t
val create_dir: ?perm:int -> string -> unit Lwt.t val create_dir: ?perm:int -> string -> unit Lwt.t
val read_file: string -> string Lwt.t
val create_file: ?perm:int -> string -> string -> unit Lwt.t val create_file: ?perm:int -> string -> string -> unit Lwt.t
val safe_close: Lwt_unix.file_descr -> unit Lwt.t val safe_close: Lwt_unix.file_descr -> unit Lwt.t