2017-11-30 21:34:22 +04:00
|
|
|
(**************************************************************************)
|
|
|
|
(* *)
|
2018-02-06 00:17:03 +04:00
|
|
|
(* Copyright (c) 2014 - 2018. *)
|
2017-11-30 21:34:22 +04:00
|
|
|
(* Dynamic Ledger Solutions, Inc. <contact@tezos.com> *)
|
|
|
|
(* *)
|
|
|
|
(* All rights reserved. No warranty, explicit or implicit, provided. *)
|
|
|
|
(* *)
|
|
|
|
(**************************************************************************)
|
|
|
|
|
|
|
|
module Request = struct
|
|
|
|
type 'a t =
|
|
|
|
| Flush : Block_hash.t -> unit t
|
2018-01-24 15:48:25 +04:00
|
|
|
| Notify : P2p_peer.Id.t * Mempool.t -> unit t
|
2018-03-01 12:15:17 +04:00
|
|
|
| Inject : Operation.t -> unit t
|
2017-11-30 21:34:22 +04:00
|
|
|
| Arrived : Operation_hash.t * Operation.t -> unit t
|
|
|
|
| Advertise : unit t
|
|
|
|
type view = View : _ t -> view
|
|
|
|
|
|
|
|
let view req = View req
|
|
|
|
|
|
|
|
let encoding =
|
|
|
|
let open Data_encoding in
|
|
|
|
union
|
|
|
|
[ case (Tag 0)
|
|
|
|
(obj2
|
|
|
|
(req "request" (constant "flush"))
|
|
|
|
(req "block" Block_hash.encoding))
|
|
|
|
(function View (Flush hash) -> Some ((), hash) | _ -> None)
|
|
|
|
(fun ((), hash) -> View (Flush hash)) ;
|
|
|
|
case (Tag 1)
|
|
|
|
(obj3
|
|
|
|
(req "request" (constant "notify"))
|
2018-01-24 15:48:25 +04:00
|
|
|
(req "peer" P2p_peer.Id.encoding)
|
2017-11-30 21:34:22 +04:00
|
|
|
(req "mempool" Mempool.encoding))
|
|
|
|
(function View (Notify (peer, mempool)) -> Some ((), peer, mempool) | _ -> None)
|
|
|
|
(fun ((), peer, mempool) -> View (Notify (peer, mempool))) ;
|
|
|
|
case (Tag 2)
|
|
|
|
(obj2
|
|
|
|
(req "request" (constant "inject"))
|
|
|
|
(req "operation" Operation.encoding))
|
|
|
|
(function View (Inject op) -> Some ((), op) | _ -> None)
|
|
|
|
(fun ((), op) -> View (Inject op)) ;
|
|
|
|
case (Tag 3)
|
|
|
|
(obj3
|
|
|
|
(req "request" (constant "arrived"))
|
|
|
|
(req "operation_hash" Operation_hash.encoding)
|
|
|
|
(req "operation" Operation.encoding))
|
|
|
|
(function View (Arrived (oph, op)) -> Some ((), oph, op) | _ -> None)
|
|
|
|
(fun ((), oph, op) -> View (Arrived (oph, op))) ;
|
|
|
|
case (Tag 4)
|
|
|
|
(obj1 (req "request" (constant "advertise")))
|
|
|
|
(function View Advertise -> Some () | _ -> None)
|
|
|
|
(fun () -> View Advertise) ]
|
|
|
|
|
|
|
|
let pp ppf (View r) = match r with
|
|
|
|
| Flush hash ->
|
|
|
|
Format.fprintf ppf "switching to new head %a"
|
|
|
|
Block_hash.pp hash
|
|
|
|
| Notify (id, { Mempool.known_valid ; pending }) ->
|
|
|
|
Format.fprintf ppf "@[<v 2>notified by %a of operations"
|
2018-01-24 15:48:25 +04:00
|
|
|
P2p_peer.Id.pp id ;
|
2017-11-30 21:34:22 +04:00
|
|
|
List.iter
|
|
|
|
(fun oph ->
|
|
|
|
Format.fprintf ppf "@,%a (applied)"
|
|
|
|
Operation_hash.pp oph)
|
|
|
|
known_valid ;
|
|
|
|
List.iter
|
|
|
|
(fun oph ->
|
|
|
|
Format.fprintf ppf "@,%a (pending)"
|
|
|
|
Operation_hash.pp oph)
|
|
|
|
(Operation_hash.Set.elements pending) ;
|
|
|
|
Format.fprintf ppf "@]"
|
|
|
|
| Inject op ->
|
|
|
|
Format.fprintf ppf "injecting operation %a"
|
|
|
|
Operation_hash.pp (Operation.hash op)
|
|
|
|
| Arrived (oph, _) ->
|
|
|
|
Format.fprintf ppf "operation %a arrived"
|
|
|
|
Operation_hash.pp oph
|
|
|
|
| Advertise ->
|
|
|
|
Format.fprintf ppf "advertising pending operations"
|
|
|
|
end
|
|
|
|
|
|
|
|
module Event = struct
|
|
|
|
type t =
|
|
|
|
| Request of (Request.view * Worker_types.request_status * error list option)
|
|
|
|
| Debug of string
|
|
|
|
|
|
|
|
let level req =
|
|
|
|
let open Request in
|
|
|
|
match req with
|
|
|
|
| Debug _ -> Logging.Debug
|
|
|
|
| Request (View (Flush _), _, _) -> Logging.Notice
|
|
|
|
| Request (View (Notify _), _, _) -> Logging.Debug
|
|
|
|
| Request (View (Inject _), _, _) -> Logging.Notice
|
|
|
|
| Request (View (Arrived _), _, _) -> Logging.Debug
|
|
|
|
| Request (View Advertise, _, _) -> Logging.Debug
|
|
|
|
|
2018-01-25 14:32:51 +04:00
|
|
|
let encoding =
|
2017-11-30 21:34:22 +04:00
|
|
|
let open Data_encoding in
|
|
|
|
union
|
|
|
|
[ case (Tag 0)
|
|
|
|
(obj1 (req "message" string))
|
|
|
|
(function Debug msg -> Some msg | _ -> None)
|
|
|
|
(fun msg -> Debug msg) ;
|
|
|
|
case (Tag 1)
|
|
|
|
(obj2
|
|
|
|
(req "request" Request.encoding)
|
|
|
|
(req "status" Worker_types.request_status_encoding))
|
|
|
|
(function Request (req, t, None) -> Some (req, t) | _ -> None)
|
|
|
|
(fun (req, t) -> Request (req, t, None)) ;
|
|
|
|
case (Tag 2)
|
|
|
|
(obj3
|
2018-01-25 14:32:51 +04:00
|
|
|
(req "error" RPC_error.encoding)
|
2017-11-30 21:34:22 +04:00
|
|
|
(req "failed_request" Request.encoding)
|
|
|
|
(req "status" Worker_types.request_status_encoding))
|
|
|
|
(function Request (req, t, Some errs) -> Some (errs, req, t) | _ -> None)
|
|
|
|
(fun (errs, req, t) -> Request (req, t, Some errs)) ]
|
|
|
|
|
|
|
|
let pp ppf = function
|
|
|
|
| Debug msg -> Format.fprintf ppf "%s" msg
|
|
|
|
| Request (view, { pushed ; treated ; completed }, None) ->
|
|
|
|
Format.fprintf ppf
|
2018-02-26 17:11:10 +04:00
|
|
|
"@[<v 0>%a@,\
|
2017-11-30 21:34:22 +04:00
|
|
|
Pushed: %a, Treated: %a, Completed: %a@]"
|
|
|
|
Request.pp view
|
|
|
|
Time.pp_hum pushed Time.pp_hum treated Time.pp_hum completed
|
|
|
|
| Request (view, { pushed ; treated ; completed }, Some errors) ->
|
|
|
|
Format.fprintf ppf
|
2018-02-26 17:11:10 +04:00
|
|
|
"@[<v 0>%a@,\
|
2017-11-30 21:34:22 +04:00
|
|
|
Pushed: %a, Treated: %a, Failed: %a@,\
|
2018-02-26 17:11:10 +04:00
|
|
|
%a@]"
|
2017-11-30 21:34:22 +04:00
|
|
|
Request.pp view
|
|
|
|
Time.pp_hum pushed Time.pp_hum treated Time.pp_hum completed
|
2018-02-26 17:11:10 +04:00
|
|
|
(Format.pp_print_list Error_monad.pp) errors
|
2017-11-30 21:34:22 +04:00
|
|
|
end
|
|
|
|
|
|
|
|
module Worker_state = struct
|
|
|
|
type view =
|
|
|
|
{ head : Block_hash.t ;
|
|
|
|
timestamp : Time.t ;
|
|
|
|
fetching : Operation_hash.Set.t ;
|
|
|
|
pending : Operation_hash.Set.t ;
|
|
|
|
applied : Operation_hash.t list ;
|
|
|
|
delayed : Operation_hash.Set.t }
|
|
|
|
|
|
|
|
let encoding =
|
|
|
|
let open Data_encoding in
|
|
|
|
conv
|
|
|
|
(fun { head ; timestamp ; fetching ; pending ; applied ; delayed } ->
|
|
|
|
(head, timestamp, fetching, pending, applied, delayed))
|
|
|
|
(fun (head, timestamp, fetching, pending, applied, delayed) ->
|
|
|
|
{ head ; timestamp ; fetching ; pending ; applied ; delayed })
|
|
|
|
(obj6
|
|
|
|
(req "head" Block_hash.encoding)
|
|
|
|
(req "timestamp" Time.encoding)
|
|
|
|
(req "fetching" Operation_hash.Set.encoding)
|
|
|
|
(req "pending" Operation_hash.Set.encoding)
|
|
|
|
(req "applied" (list Operation_hash.encoding))
|
|
|
|
(req "delayed" Operation_hash.Set.encoding))
|
|
|
|
|
|
|
|
let pp ppf view =
|
|
|
|
Format.fprintf ppf
|
|
|
|
"@[<v 0>\
|
|
|
|
Head: %a@,\
|
|
|
|
Timestamp: %a@,
|
|
|
|
@[<v 2>Fetching: %a@]@,
|
|
|
|
@[<v 2>Pending: %a@]@,
|
|
|
|
@[<v 2>Applied: %a@]@,
|
|
|
|
@[<v 2>Delayed: %a@]@]"
|
|
|
|
Block_hash.pp
|
|
|
|
view.head
|
|
|
|
Time.pp_hum
|
|
|
|
view.timestamp
|
|
|
|
(Format.pp_print_list Operation_hash.pp)
|
|
|
|
(Operation_hash.Set.elements view.fetching)
|
|
|
|
(Format.pp_print_list Operation_hash.pp)
|
|
|
|
(Operation_hash.Set.elements view.pending)
|
|
|
|
(Format.pp_print_list Operation_hash.pp)
|
|
|
|
view.applied
|
|
|
|
(Format.pp_print_list Operation_hash.pp)
|
|
|
|
(Operation_hash.Set.elements view.delayed)
|
|
|
|
end
|