2018-06-29 16:08:08 +04:00
|
|
|
(*****************************************************************************)
|
|
|
|
(* *)
|
|
|
|
(* Open Source License *)
|
|
|
|
(* Copyright (c) 2018 Dynamic Ledger Solutions, Inc. <contact@tezos.com> *)
|
|
|
|
(* *)
|
|
|
|
(* Permission is hereby granted, free of charge, to any person obtaining a *)
|
|
|
|
(* copy of this software and associated documentation files (the "Software"),*)
|
|
|
|
(* to deal in the Software without restriction, including without limitation *)
|
|
|
|
(* the rights to use, copy, modify, merge, publish, distribute, sublicense, *)
|
|
|
|
(* and/or sell copies of the Software, and to permit persons to whom the *)
|
|
|
|
(* Software is furnished to do so, subject to the following conditions: *)
|
|
|
|
(* *)
|
|
|
|
(* The above copyright notice and this permission notice shall be included *)
|
|
|
|
(* in all copies or substantial portions of the Software. *)
|
|
|
|
(* *)
|
|
|
|
(* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR*)
|
|
|
|
(* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, *)
|
|
|
|
(* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL *)
|
|
|
|
(* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER*)
|
|
|
|
(* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING *)
|
|
|
|
(* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER *)
|
|
|
|
(* DEALINGS IN THE SOFTWARE. *)
|
|
|
|
(* *)
|
|
|
|
(*****************************************************************************)
|
2017-11-27 09:13:12 +04:00
|
|
|
|
|
|
|
type t = {
|
|
|
|
expected_env: env_version ;
|
|
|
|
components: component list ;
|
|
|
|
}
|
|
|
|
|
|
|
|
and component = {
|
|
|
|
name: string ;
|
|
|
|
interface: string option ;
|
|
|
|
implementation: string ;
|
|
|
|
}
|
|
|
|
|
|
|
|
and env_version = V1
|
|
|
|
|
2018-02-13 20:30:25 +04:00
|
|
|
include Compare.Make(struct
|
|
|
|
type nonrec t = t
|
|
|
|
let compare = Pervasives.compare
|
|
|
|
end)
|
|
|
|
|
2017-11-27 09:13:12 +04:00
|
|
|
let component_encoding =
|
|
|
|
let open Data_encoding in
|
|
|
|
conv
|
|
|
|
(fun { name ; interface; implementation } ->
|
|
|
|
(name, interface, implementation))
|
|
|
|
(fun (name, interface, implementation) ->
|
|
|
|
{ name ; interface ; implementation })
|
|
|
|
(obj3
|
|
|
|
(req "name" string)
|
2018-04-16 02:44:23 +04:00
|
|
|
(opt "interface" (conv MBytes.of_string MBytes.to_string bytes))
|
|
|
|
(req "implementation" (conv MBytes.of_string MBytes.to_string bytes)))
|
2017-11-27 09:13:12 +04:00
|
|
|
|
|
|
|
let env_version_encoding =
|
|
|
|
let open Data_encoding in
|
|
|
|
conv
|
|
|
|
(function V1 -> 0)
|
|
|
|
(function 0 -> V1 | _ -> failwith "unexpected environment version")
|
|
|
|
int16
|
|
|
|
|
|
|
|
let encoding =
|
|
|
|
let open Data_encoding in
|
|
|
|
conv
|
|
|
|
(fun { expected_env ; components } -> (expected_env, components))
|
|
|
|
(fun (expected_env, components) -> { expected_env ; components })
|
|
|
|
(obj2
|
|
|
|
(req "expected_env_version" env_version_encoding)
|
|
|
|
(req "components" (list component_encoding)))
|
|
|
|
|
2018-06-02 20:23:08 +04:00
|
|
|
let bounded_encoding ?max_size () =
|
|
|
|
match max_size with
|
|
|
|
| None -> encoding
|
|
|
|
| Some max_size -> Data_encoding.check_size max_size encoding
|
|
|
|
|
2017-12-05 18:16:34 +04:00
|
|
|
let pp ppf op =
|
2018-02-08 13:51:01 +04:00
|
|
|
Data_encoding.Json.pp ppf
|
|
|
|
(Data_encoding.Json.construct encoding op)
|
2017-11-27 09:13:12 +04:00
|
|
|
|
2017-12-05 18:16:34 +04:00
|
|
|
let env_version_to_string = function
|
|
|
|
| V1 -> "V1"
|
|
|
|
|
|
|
|
let pp_ocaml_component ppf { name ; interface ; implementation } =
|
|
|
|
Format.fprintf ppf
|
|
|
|
"@[{@[<v 1> name = %S ;@ interface = %a ;@ implementation = %S ;@]@ }@]"
|
|
|
|
name
|
|
|
|
(fun ppf -> function
|
|
|
|
| None -> Format.fprintf ppf "None"
|
|
|
|
| Some s -> Format.fprintf ppf "Some %S" s)
|
|
|
|
interface
|
|
|
|
implementation
|
|
|
|
|
|
|
|
let pp_ocaml ppf { expected_env ; components } =
|
|
|
|
Format.fprintf ppf
|
|
|
|
"@[{@[<v 1> expected_env = %s ;@ components = [@[<v>%a@]] ;@]@ }@]"
|
|
|
|
(env_version_to_string expected_env)
|
|
|
|
(Format.pp_print_list
|
|
|
|
~pp_sep:(fun ppf () -> Format.fprintf ppf " ;@ ")
|
|
|
|
pp_ocaml_component)
|
|
|
|
components
|
|
|
|
|
2018-05-12 21:54:57 +04:00
|
|
|
let to_bytes v = Data_encoding.Binary.to_bytes_exn encoding v
|
2017-11-27 09:13:12 +04:00
|
|
|
let of_bytes b = Data_encoding.Binary.of_bytes encoding b
|
|
|
|
let of_bytes_exn b = Data_encoding.Binary.of_bytes_exn encoding b
|
|
|
|
let hash proto = Protocol_hash.hash_bytes [to_bytes proto]
|
|
|
|
let hash_raw proto = Protocol_hash.hash_bytes [proto]
|
2017-12-05 18:15:38 +04:00
|
|
|
|
|
|
|
module Meta = struct
|
|
|
|
|
|
|
|
type t = {
|
|
|
|
hash: Protocol_hash.t option ;
|
|
|
|
expected_env_version: env_version option ;
|
|
|
|
modules: string list ;
|
|
|
|
}
|
|
|
|
|
|
|
|
let encoding =
|
|
|
|
let open Data_encoding in
|
|
|
|
conv
|
|
|
|
(fun { hash ; expected_env_version ; modules } ->
|
|
|
|
(hash, expected_env_version, modules))
|
|
|
|
(fun (hash, expected_env_version, modules) ->
|
|
|
|
{ hash ; expected_env_version ; modules }) @@
|
|
|
|
obj3
|
|
|
|
(opt "hash"
|
|
|
|
~description:"Used to force the hash of the protocol"
|
|
|
|
Protocol_hash.encoding)
|
|
|
|
(opt "expected_env_version"
|
|
|
|
env_version_encoding)
|
|
|
|
(req "modules"
|
|
|
|
~description:"Modules comprising the protocol"
|
|
|
|
(list string))
|
|
|
|
|
|
|
|
end
|