82857dcb94
- `lib_node_p2p_base`: Base datatypes for the P2P layers - `lib_node_services`: RPC service definitions (depends on `node_p2p_base`) - `lib_node_http`: RPC http server - `lib_node_p2p`: the P2P workers
87 lines
2.3 KiB
OCaml
87 lines
2.3 KiB
OCaml
(**************************************************************************)
|
|
(* *)
|
|
(* Copyright (c) 2014 - 2017. *)
|
|
(* Dynamic Ledger Solutions, Inc. <contact@tezos.com> *)
|
|
(* *)
|
|
(* All rights reserved. No warranty, explicit or implicit, provided. *)
|
|
(* *)
|
|
(**************************************************************************)
|
|
|
|
open Lwt.Infix
|
|
|
|
module Inttbl = Hashtbl.Make(struct
|
|
type t = int
|
|
let equal (x: int) (y: int) = x = y
|
|
let hash = Hashtbl.hash
|
|
end)
|
|
|
|
type t = {
|
|
id: int;
|
|
alpha: int ;
|
|
mutable total: int64 ;
|
|
mutable current: int ;
|
|
mutable average: int ;
|
|
}
|
|
|
|
let counters = Inttbl.create 51
|
|
|
|
let updated = Lwt_condition.create ()
|
|
|
|
let update_hook = ref []
|
|
let on_update f = update_hook := f :: !update_hook
|
|
|
|
let worker_loop () =
|
|
let prev = ref @@ Mtime_clock.elapsed () in
|
|
let rec inner sleep =
|
|
sleep >>= fun () ->
|
|
let sleep = Lwt_unix.sleep 1. in
|
|
let now = Mtime_clock.elapsed () in
|
|
let elapsed = int_of_float (Mtime.Span.(to_ms now -. to_ms !prev)) in
|
|
prev := now;
|
|
Inttbl.iter
|
|
(fun _ c ->
|
|
c.average <-
|
|
(c.alpha * c.current) / elapsed + (1000 - c.alpha) * c.average / 1000;
|
|
c.current <- 0)
|
|
counters ;
|
|
List.iter (fun f -> f ()) !update_hook ;
|
|
Lwt_condition.broadcast updated () ;
|
|
inner sleep
|
|
in
|
|
inner (Lwt_unix.sleep 1.)
|
|
|
|
let worker =
|
|
lazy begin
|
|
Lwt.async begin fun () ->
|
|
let (_cancelation, cancel, _on_cancel) = Lwt_utils.canceler () in
|
|
Lwt_utils.worker "counter" ~run:worker_loop ~cancel
|
|
end
|
|
end
|
|
|
|
let create =
|
|
let cpt = ref 0 in
|
|
fun ~init ~alpha ->
|
|
Lazy.force worker ;
|
|
let id = !cpt in
|
|
incr cpt ;
|
|
assert (0. < alpha && alpha <= 1.) ;
|
|
let alpha = int_of_float (1000. *. alpha) in
|
|
let c = { id ; alpha ; total = 0L ; current = 0 ; average = init } in
|
|
Inttbl.add counters id c ;
|
|
c
|
|
|
|
let add c x =
|
|
c.total <- Int64.(add c.total (of_int x)) ;
|
|
c.current <- c.current + x
|
|
|
|
let destroy c =
|
|
Inttbl.remove counters c.id
|
|
|
|
type stat = {
|
|
total: int64 ;
|
|
average: int ;
|
|
}
|
|
|
|
let stat ({ total ; average } : t) : stat =
|
|
{ total ; average }
|