124 lines
4.3 KiB
OCaml
124 lines
4.3 KiB
OCaml
|
(**************************************************************************)
|
||
|
(* *)
|
||
|
(* Copyright (c) 2014 - 2018. *)
|
||
|
(* Dynamic Ledger Solutions, Inc. <contact@tezos.com> *)
|
||
|
(* *)
|
||
|
(* All rights reserved. No warranty, explicit or implicit, provided. *)
|
||
|
(* *)
|
||
|
(**************************************************************************)
|
||
|
|
||
|
open Binary_error
|
||
|
|
||
|
let rec length : type x. x Encoding.t -> x -> int =
|
||
|
fun e value ->
|
||
|
let open Encoding in
|
||
|
match e.encoding with
|
||
|
(* Fixed *)
|
||
|
| Null -> 0
|
||
|
| Empty -> 0
|
||
|
| Constant _ -> 0
|
||
|
| Bool -> Binary_size.bool
|
||
|
| Int8 -> Binary_size.int8
|
||
|
| Uint8 -> Binary_size.uint8
|
||
|
| Int16 -> Binary_size.int16
|
||
|
| Uint16 -> Binary_size.uint16
|
||
|
| Int31 -> Binary_size.int31
|
||
|
| Int32 -> Binary_size.int32
|
||
|
| Int64 -> Binary_size.int64
|
||
|
| Z -> (Z.numbits value + 1 + 6) / 7
|
||
|
| RangedInt { minimum ; maximum } ->
|
||
|
Binary_size.integer_to_size @@
|
||
|
Binary_size.range_to_size ~minimum ~maximum
|
||
|
| Float -> Binary_size.float
|
||
|
| RangedFloat _ -> Binary_size.float
|
||
|
| Bytes `Fixed n -> n
|
||
|
| String `Fixed n -> n
|
||
|
| String_enum (_, arr) ->
|
||
|
Binary_size.integer_to_size @@ Binary_size.enum_size arr
|
||
|
| Objs (`Fixed n, _, _) -> n
|
||
|
| Tups (`Fixed n, _, _) -> n
|
||
|
| Union (`Fixed n, _, _) -> n
|
||
|
(* Dynamic *)
|
||
|
| Objs (`Dynamic, e1, e2) ->
|
||
|
let (v1, v2) = value in
|
||
|
length e1 v1 + length e2 v2
|
||
|
| Tups (`Dynamic, e1, e2) ->
|
||
|
let (v1, v2) = value in
|
||
|
length e1 v1 + length e2 v2
|
||
|
| Union (`Dynamic, sz, cases) ->
|
||
|
let rec length_case = function
|
||
|
| [] -> raise (Read_error No_case_matched)
|
||
|
| Case { tag = Json_only } :: tl -> length_case tl
|
||
|
| Case { encoding = e ; proj ; _ } :: tl ->
|
||
|
match proj value with
|
||
|
| None -> length_case tl
|
||
|
| Some value ->
|
||
|
let tag_size = Binary_size.tag_size sz in
|
||
|
tag_size + length e value in
|
||
|
length_case cases
|
||
|
| Mu (`Dynamic, _name, self) ->
|
||
|
length (self e) value
|
||
|
| Obj (Opt (`Dynamic, _, e)) -> begin
|
||
|
match value with
|
||
|
| None -> 1
|
||
|
| Some value -> 1 + length e value
|
||
|
end
|
||
|
(* Variable *)
|
||
|
| Ignore -> 0
|
||
|
| Bytes `Variable -> MBytes.length value
|
||
|
| String `Variable -> String.length value
|
||
|
| Array e ->
|
||
|
Array.fold_left
|
||
|
(fun acc v -> length e v + acc)
|
||
|
0 value
|
||
|
| List e ->
|
||
|
List.fold_left
|
||
|
(fun acc v -> length e v + acc)
|
||
|
0 value
|
||
|
| Objs (`Variable, e1, e2) ->
|
||
|
let (v1, v2) = value in
|
||
|
length e1 v1 + length e2 v2
|
||
|
| Tups (`Variable, e1, e2) ->
|
||
|
let (v1, v2) = value in
|
||
|
length e1 v1 + length e2 v2
|
||
|
| Obj (Opt (`Variable, _, e)) -> begin
|
||
|
match value with
|
||
|
| None -> 0
|
||
|
| Some value -> length e value
|
||
|
end
|
||
|
| Union (`Variable, sz, cases) ->
|
||
|
let rec length_case = function
|
||
|
| [] -> raise (Read_error No_case_matched)
|
||
|
| Case { tag = Json_only } :: tl -> length_case tl
|
||
|
| Case { encoding = e ; proj ; _ } :: tl ->
|
||
|
match proj value with
|
||
|
| None -> length_case tl
|
||
|
| Some value ->
|
||
|
let tag_size = Binary_size.tag_size sz in
|
||
|
tag_size + length e value in
|
||
|
length_case cases
|
||
|
| Mu (`Variable, _name, self) ->
|
||
|
length (self e) value
|
||
|
(* Recursive*)
|
||
|
| Obj (Req (_, e)) -> length e value
|
||
|
| Obj (Dft (_, e, _)) -> length e value
|
||
|
| Tup e -> length e value
|
||
|
| Conv { encoding = e ; proj } ->
|
||
|
length e (proj value)
|
||
|
| Describe { encoding = e } -> length e value
|
||
|
| Def { encoding = e } -> length e value
|
||
|
| Splitted { encoding = e } -> length e value
|
||
|
| Dynamic_size e ->
|
||
|
Binary_size.int32 + length e value
|
||
|
| Delayed f -> length (f ()) value
|
||
|
|
||
|
let fixed_length e =
|
||
|
match Encoding.classify e with
|
||
|
| `Fixed n -> Some n
|
||
|
| `Dynamic | `Variable -> None
|
||
|
let fixed_length_exn e =
|
||
|
match fixed_length e with
|
||
|
| Some n -> n
|
||
|
| None -> invalid_arg "Data_encoding.Binary.fixed_length_exn"
|
||
|
|