ligo/src/client/client_aliases.ml

239 lines
7.6 KiB
OCaml
Raw Normal View History

2016-09-08 21:13:10 +04:00
(**************************************************************************)
(* *)
(* Copyright (c) 2014 - 2016. *)
(* Dynamic Ledger Solutions, Inc. <contact@tezos.com> *)
(* *)
(* All rights reserved. No warranty, explicit or implicit, provided. *)
(* *)
(**************************************************************************)
(* Tezos Command line interface - Local Storage for Configuration *)
open Lwt
open Cli_entries
module type Entity = sig
type t
val encoding : t Data_encoding.t
val of_source :
Client_commands.context ->
string -> t Lwt.t
val to_source :
Client_commands.context ->
t -> string Lwt.t
2016-09-08 21:13:10 +04:00
val name : string
end
module type Alias = sig
type t
val load :
Client_commands.context ->
(string * t) list Lwt.t
val find :
Client_commands.context ->
string -> t Lwt.t
val find_opt :
Client_commands.context ->
string -> t option Lwt.t
val rev_find :
Client_commands.context ->
t -> string option Lwt.t
val name :
Client_commands.context ->
t -> string Lwt.t
val mem :
Client_commands.context ->
string -> bool Lwt.t
val add :
Client_commands.context ->
string -> t -> unit Lwt.t
val del :
Client_commands.context ->
string -> unit Lwt.t
val save :
Client_commands.context ->
(string * t) list -> unit Lwt.t
val to_source :
Client_commands.context ->
t -> string Lwt.t
2016-09-08 21:13:10 +04:00
val alias_param :
?name:string ->
2016-09-08 21:13:10 +04:00
?desc:string ->
('a, Client_commands.context, 'ret) Cli_entries.params ->
(string * t -> 'a, Client_commands.context, 'ret) Cli_entries.params
2016-09-08 21:13:10 +04:00
val fresh_alias_param :
?name:string ->
2016-09-08 21:13:10 +04:00
?desc:string ->
('a, Client_commands.context, 'ret) Cli_entries.params ->
(string -> 'a, Client_commands.context, 'ret) Cli_entries.params
2016-09-08 21:13:10 +04:00
val source_param :
?name:string ->
2016-09-08 21:13:10 +04:00
?desc:string ->
('a, Client_commands.context, 'ret) Cli_entries.params ->
(t -> 'a, Client_commands.context, 'ret) Cli_entries.params
2016-09-08 21:13:10 +04:00
end
module Alias = functor (Entity : Entity) -> struct
open Client_commands
2016-09-08 21:13:10 +04:00
let encoding =
let open Data_encoding in
list (obj2
(req "name" string)
(req "value" Entity.encoding))
let dirname cctxt =
cctxt.config.base_dir
let filename cctxt =
Filename.concat (dirname cctxt) (Entity.name ^ "s")
2016-09-08 21:13:10 +04:00
let load cctxt =
let filename = filename cctxt in
2016-09-08 21:13:10 +04:00
if not (Sys.file_exists filename) then return [] else
Data_encoding_ezjsonm.read_file filename >>= function
| Error _ ->
cctxt.Client_commands.error
"couldn't to read the %s alias file" Entity.name
| Ok json ->
2016-09-08 21:13:10 +04:00
match Data_encoding.Json.destruct encoding json with
| exception _ -> (* TODO print_error *)
cctxt.Client_commands.error
"didn't understand the %s alias file" Entity.name
2016-09-08 21:13:10 +04:00
| list ->
return list
let find_opt cctxt name =
load cctxt >>= fun list ->
2016-09-08 21:13:10 +04:00
try return (Some (List.assoc name list))
with Not_found -> return None
let find cctxt name =
load cctxt >>= fun list ->
2016-09-08 21:13:10 +04:00
try return (List.assoc name list)
with Not_found ->
cctxt.Client_commands.error "no %s alias named %s" Entity.name name
2016-09-08 21:13:10 +04:00
let rev_find cctxt v =
load cctxt >>= fun list ->
2016-09-08 21:13:10 +04:00
try return (Some (List.find (fun (_, v') -> v = v') list |> fst))
with Not_found -> return None
let mem cctxt name =
load cctxt >>= fun list ->
2016-09-08 21:13:10 +04:00
try
ignore (List.assoc name list) ;
Lwt.return true
with
| Not_found -> Lwt.return false
let save cctxt list =
2016-09-08 21:13:10 +04:00
catch
(fun () ->
let dirname = dirname cctxt in
(if not (Sys.file_exists dirname) then Lwt_utils.create_dir dirname
2016-09-08 21:13:10 +04:00
else return ()) >>= fun () ->
let filename = filename cctxt in
2016-09-08 21:13:10 +04:00
let json = Data_encoding.Json.construct encoding list in
Data_encoding_ezjsonm.write_file filename json >>= function
| Error _ -> fail (Failure "Json.write_file")
| Ok () -> return ())
2016-09-08 21:13:10 +04:00
(fun exn ->
cctxt.Client_commands.error
"could not write the %s alias file: %s."
2016-09-08 21:13:10 +04:00
Entity.name (Printexc.to_string exn))
let add cctxt name value =
2016-09-08 21:13:10 +04:00
let keep = ref false in
load cctxt >>= fun list ->
(if not cctxt.config.force then
2016-09-08 21:13:10 +04:00
Lwt_list.iter_s (fun (n, v) ->
if n = name && v = value then
(keep := true ;
cctxt.Client_commands.message
"The %s alias %s already exists with the same value." Entity.name n)
2016-09-08 21:13:10 +04:00
else if n = name && v <> value then
cctxt.Client_commands.error
"another %s is already aliased as %s, use -force true to update" Entity.name n
2016-09-08 21:13:10 +04:00
else if n <> name && v = value then
cctxt.Client_commands.error
"this %s is already aliased as %s, use -force true to insert duplicate" Entity.name n
2016-09-08 21:13:10 +04:00
else return ())
list else return ()) >>= fun () ->
let list = List.filter (fun (n, _) -> n <> name) list in
let list = (name, value) :: list in
if !keep then
return ()
else
save cctxt list >>= fun () ->
cctxt.Client_commands.message
"New %s alias '%s' saved." Entity.name name
2016-09-08 21:13:10 +04:00
let del cctxt name =
load cctxt >>= fun list ->
2016-09-08 21:13:10 +04:00
let list = List.filter (fun (n, _) -> n <> name) list in
save cctxt list
2016-09-08 21:13:10 +04:00
let save cctxt list =
save cctxt list >>= fun () ->
cctxt.Client_commands.message
"Successful update of the %s alias file." Entity.name
2016-09-08 21:13:10 +04:00
include Entity
2016-12-05 16:18:12 +04:00
let alias_param ?(name = "name") ?(desc = "existing " ^ Entity.name ^ " alias") next =
param ~name ~desc
(fun cctxt s -> find cctxt s >>= fun v -> return (s, v))
next
2016-12-05 16:18:12 +04:00
let fresh_alias_param ?(name = "new") ?(desc = "new " ^ Entity.name ^ " alias") next =
param ~name ~desc
(fun cctxt s ->
load cctxt >>= fun list ->
if not cctxt.config.force then
Lwt_list.iter_s (fun (n, _v) ->
2016-12-05 16:18:12 +04:00
if n = s then
cctxt.Client_commands.error
"the %s alias %s already exists, use -force true to update" Entity.name n
else return ())
list >>= fun () ->
return s
else return s)
next
2016-12-05 16:18:12 +04:00
let source_param ?(name = "src") ?(desc = "source " ^ Entity.name) next =
let desc =
desc ^ "\n"
^ "can be an alias, file or literal (autodetected in this order)\n\
use 'file:path', 'text:literal' or 'alias:name' to force" in
param ~name ~desc
(fun cctxt s ->
let read path =
catch
(fun () -> Lwt_io.(with_file ~mode:Input path read))
(fun exn -> Lwt.fail_with @@ Format.asprintf "cannot read file (%s)" (Printexc.to_string exn))
>>= of_source cctxt in
match Utils.split ~limit:1 ':' s with
| [ "alias" ; alias ]->
find cctxt alias
| [ "text" ; text ] ->
of_source cctxt text
| [ "file" ; path ] ->
read path
| _ ->
catch
(fun () -> find cctxt s)
(fun _ ->
2016-09-08 21:13:10 +04:00
catch
(fun () -> read s)
(fun _ -> of_source cctxt s)))
next
2016-09-08 21:13:10 +04:00
let name cctxt d =
rev_find cctxt d >>= function
| None -> Entity.to_source cctxt d
2016-09-08 21:13:10 +04:00
| Some name -> Lwt.return name
end