ligo/src/client/embedded/alpha/baker/client_mining_blocks.ml

80 lines
3.1 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. *)
(* *)
(**************************************************************************)
type block_info = {
hash: Block_hash.t ;
predecessor: Block_hash.t ;
fitness: MBytes.t list ;
timestamp: Time.t ;
protocol: Protocol_hash.t option ;
level: Level.t ;
}
let convert_block_info cctxt
2016-09-08 21:13:10 +04:00
( { hash ; predecessor ; fitness ; timestamp ; protocol }
: Client_node_rpcs.Blocks.block_info ) =
Client_proto_rpcs.Context.level cctxt (`Hash hash) >>= function
2016-09-08 21:13:10 +04:00
| Ok level ->
Lwt.return (Some { hash ; predecessor ; fitness ; timestamp ; protocol ; level })
| Error _ ->
(* TODO log error *)
Lwt.return_none
let convert_block_info_err cctxt
2016-09-08 21:13:10 +04:00
( { hash ; predecessor ; fitness ; timestamp ; protocol }
: Client_node_rpcs.Blocks.block_info ) =
Client_proto_rpcs.Context.level cctxt (`Hash hash) >>=? fun level ->
2016-09-08 21:13:10 +04:00
return { hash ; predecessor ; fitness ; timestamp ; protocol ; level }
let info cctxt ?operations block =
Client_node_rpcs.Blocks.info cctxt ?operations block >>= fun block ->
convert_block_info_err cctxt block
2016-09-08 21:13:10 +04:00
let compare (bi1 : block_info) (bi2 : block_info) =
match Fitness.compare bi1.fitness bi2.fitness with
| 0 -> begin
match compare bi1.level bi2.level with
| 0 -> begin
match Time.compare bi1.timestamp bi2.timestamp with
| 0 -> Block_hash.compare bi1.predecessor bi2.predecessor
| x -> - x
end
| x -> - x
end
| x -> x
let sort_blocks cctxt ?(compare = compare) blocks =
Lwt_list.map_p (convert_block_info cctxt) blocks >|= fun blocks ->
2016-09-08 21:13:10 +04:00
let blocks = Utils.unopt_list blocks in
List.sort compare blocks
let monitor cctxt
2016-09-21 18:22:43 +04:00
?operations ?length ?heads ?delay
?min_date ?min_heads ?compare () =
Client_node_rpcs.Blocks.monitor cctxt
2016-09-21 18:22:43 +04:00
?operations ?length ?heads ?delay ?min_date ?min_heads
2016-09-08 21:13:10 +04:00
() >>= fun block_stream ->
let convert blocks = sort_blocks cctxt ?compare (List.flatten blocks) in
2016-09-08 21:13:10 +04:00
Lwt.return (Lwt_stream.map_s convert block_stream)
let blocks_from_cycle cctxt block cycle =
2016-09-08 21:13:10 +04:00
let block =
match block with
| `Prevalidation -> `Head 0
| `Test_prevalidation -> `Test_head 0
| _ -> block in
Client_proto_rpcs.Context.level cctxt block >>=? fun level ->
Client_proto_rpcs.Helpers.levels cctxt block cycle >>=? fun (first, last) ->
let length = Int32.to_int (Raw_level.diff level.level first) in
Client_node_rpcs.Blocks.predecessors cctxt block length >>= fun blocks ->
let blocks =
Utils.remove_elem_from_list
(length - (1 + Int32.to_int (Raw_level.diff last first))) blocks in
return blocks