ligo/src/lib_client_commands/client_commands.ml

33 lines
1.1 KiB
OCaml
Raw Normal View History

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. *)
(* *)
(**************************************************************************)
open Client_context
type command = full Cli_entries.command
2016-09-08 21:13:10 +04:00
exception Version_not_found
let versions = Protocol_hash.Table.create 7
2016-09-08 21:13:10 +04:00
let get_versions () =
Protocol_hash.Table.fold
2016-09-08 21:13:10 +04:00
(fun k c acc -> (k, c) :: acc)
versions
[]
let register name commands =
let previous =
try Protocol_hash.Table.find versions name
2016-09-08 21:13:10 +04:00
with Not_found -> [] in
Protocol_hash.Table.replace versions name (commands @ previous)
2016-09-08 21:13:10 +04:00
let commands_for_version version =
try Protocol_hash.Table.find versions version
2016-09-08 21:13:10 +04:00
with Not_found -> raise Version_not_found