ligo/lib_node_shell/block_locator.ml

85 lines
2.8 KiB
OCaml
Raw Normal View History

(**************************************************************************)
(* *)
2017-11-14 03:36:14 +04:00
(* Copyright (c) 2014 - 2017. *)
(* Dynamic Ledger Solutions, Inc. <contact@tezos.com> *)
(* *)
(* All rights reserved. No warranty, explicit or implicit, provided. *)
(* *)
(**************************************************************************)
2017-12-17 22:51:06 +04:00
type t = raw
2017-12-17 22:51:06 +04:00
(** Non private version of Block_store_locator.t for coercions *)
and raw = Block_header.t * Block_hash.t list
2017-12-17 22:51:06 +04:00
let raw x = x
let encoding =
let open Data_encoding in
(* TODO add a [description] *)
(obj2
(req "current_head" (dynamic_size Block_header.encoding))
(req "history" (dynamic_size (list Block_hash.encoding))))
2017-12-17 22:51:06 +04:00
let predecessor (store : Store.Block.store) (b: Block_hash.t) =
Store.Block.Contents.read_exn (store, b) >>= fun contents ->
let predecessor = contents.header.shell.predecessor in
if Block_hash.equal b predecessor then
Lwt.return_none
else
Lwt.return_some predecessor
let compute (store : Store.Block.store) (b: Block_hash.t) sz =
let rec loop acc ~sz step cpt b =
if sz = 0 then
Lwt.return (List.rev acc)
else
2017-12-17 22:51:06 +04:00
predecessor store b >>= function
| None ->
2017-12-17 22:51:06 +04:00
Lwt.return (List.rev (b :: acc))
| Some predecessor ->
if cpt = 0 then
2017-12-17 22:51:06 +04:00
loop (b :: acc) ~sz:(sz - 1)
(step * 2) (step * 20 - 1) predecessor
else if cpt mod step = 0 then
2017-12-17 22:51:06 +04:00
loop (b :: acc) ~sz:(sz - 1)
step (cpt - 1) predecessor
else
2017-12-17 22:51:06 +04:00
loop acc ~sz step (cpt - 1) predecessor in
Store.Block.Contents.read_exn (store, b) >>= fun { header } ->
predecessor store b >>= function
| None -> Lwt.return (header, [])
| Some p ->
2017-12-17 22:51:06 +04:00
loop [] ~sz 1 9 p >>= fun hist ->
Lwt.return (header, hist)
2017-12-17 22:51:06 +04:00
type validity =
| Unknown
| Known_valid
| Known_invalid
2017-12-17 22:51:06 +04:00
let unknown_prefix cond (head, hist) =
let rec loop hist acc =
match hist with
| [] -> Lwt.return_none
| h :: t ->
cond h >>= function
| Known_valid ->
Lwt.return_some (h, (List.rev (h :: acc)))
| Known_invalid ->
Lwt.return_none
| Unknown ->
loop t (h :: acc)
in
2017-12-17 22:51:06 +04:00
cond (Block_header.hash head) >>= function
| Known_valid ->
Lwt.return_some (Block_header.hash head, (head, []))
| Known_invalid ->
Lwt.return_none
| Unknown ->
loop hist [] >>= function
| None ->
2017-12-17 22:51:06 +04:00
Lwt.return_none
| Some (tail, hist) ->
Lwt.return_some (tail, (head, hist))