package octez-shell-libs

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

Source file prevalidator_pending_operations.ml

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
(*****************************************************************************)
(*                                                                           *)
(* Open Source License                                                       *)
(* Copyright (c) 2018 Dynamic Ledger Solutions, Inc. <contact@tezos.com>     *)
(* Copyright (c) 2018-2022 Nomadic Labs, <contact@nomadic-labs.com>          *)
(*                                                                           *)
(* Permission is hereby granted, free of charge, to any person obtaining a   *)
(* copy of this software and associated documentation files (the "Software"),*)
(* to deal in the Software without restriction, including without limitation *)
(* the rights to use, copy, modify, merge, publish, distribute, sublicense,  *)
(* and/or sell copies of the Software, and to permit persons to whom the     *)
(* Software is furnished to do so, subject to the following conditions:      *)
(*                                                                           *)
(* The above copyright notice and this permission notice shall be included   *)
(* in all copies or substantial portions of the Software.                    *)
(*                                                                           *)
(* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR*)
(* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,  *)
(* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL   *)
(* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER*)
(* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING   *)
(* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER       *)
(* DEALINGS IN THE SOFTWARE.                                                 *)
(*                                                                           *)
(*****************************************************************************)

open Shell_operation

(* Ordering is important, as it is used below in map keys comparison *)
type priority = High | Medium | Low of Q.t list

(* This type is used to know if the operation has already been classified in the
   past *)
type status = Fresh | Reclassified

type status_and_priority = {priority : priority; status : status}

module Priority_map : Map.S with type key = status_and_priority =
Map.Make (struct
  type t = status_and_priority

  module CompareListQ = Compare.List (Q)

  let compare_low_priority p1 p2 =
    (* A higher priority operation should appear before in the map. So we use
       the pointwise comparison of p2 and p1 *)
    CompareListQ.compare p2 p1

  let compare_priority p1 p2 =
    (* - Explicit comparison, High is smaller,
       - Avoid fragile patterns in case the type is extended in the future *)
    match (p1, p2) with
    | High, High | Medium, Medium -> 0
    | Low p1, Low p2 -> compare_low_priority p1 p2
    | High, (Low _ | Medium) -> -1
    | (Low _ | Medium), High -> 1
    | Low _, Medium -> 1
    | Medium, Low _ -> -1

  let compare p1 p2 =
    (* - Explicit comparison, Fresh is smaller *)
    match (p1.status, p2.status) with
    | Fresh, Fresh -> compare_priority p1.priority p2.priority
    | Fresh, Reclassified -> -1
    | Reclassified, Fresh -> 1
    | Reclassified, Reclassified -> compare_priority p1.priority p2.priority
end)

module Map = Operation_hash.Map
module Sized_set = Tezos_base.Sized.MakeSizedSet (Operation_hash.Set)

(*
   The type below is used for representing pending operations data of the
   prevalidator. The functions of this module (should) maintain the
   following invariants:
   1 - Union (preimage(pending(prio))) = hashes, for each prio in dom(pending)
   2 - preimage (priority_of) = hashes
   3 - image(priority_of) = preimage (pending)
   4 - map in pending(priority) => map <> empty
*)
type 'a t = {
  (* The main map *)
  pending : 'a operation Map.t Priority_map.t;
  (* Used for advertising *)
  hashes : Sized_set.t;
  (* We need to remember the status and priority of each hash, to be used when
     removing without providing the status and priority *)
  status_and_priority_of : status_and_priority Map.t;
}

let empty =
  {
    pending = Priority_map.empty;
    hashes = Sized_set.empty;
    status_and_priority_of = Map.empty;
  }

let is_empty {pending = _; status_and_priority_of = _; hashes} =
  Sized_set.is_empty hashes

let hashes {pending = _; status_and_priority_of = _; hashes} =
  Sized_set.to_set hashes

let operations {pending; status_and_priority_of = _; hashes = _} =
  (* Build a flag map [oph -> op] from pending. Needed when re-cycling
     operations *)
  Priority_map.fold
    (fun _prio -> Map.union (fun _ _ b -> Some b))
    pending
    Map.empty

let mem oph {hashes; status_and_priority_of = _; pending = _} =
  Sized_set.mem oph hashes

let get_priority_map status_and_priority pending =
  match Priority_map.find status_and_priority pending with
  | None -> Map.empty
  | Some mp -> mp

let add op status_and_priority {pending; hashes; status_and_priority_of} =
  let oph = op.hash in
  let mp = get_priority_map status_and_priority pending |> Map.add oph op in
  {
    pending = Priority_map.add status_and_priority mp pending;
    hashes = Sized_set.add oph hashes;
    status_and_priority_of =
      Map.add oph status_and_priority status_and_priority_of;
  }

let remove oph ({pending; hashes; status_and_priority_of} as t) =
  match Map.find oph status_and_priority_of with
  | None -> t
  | Some status_and_priority ->
      let mp = get_priority_map status_and_priority pending |> Map.remove oph in
      {
        pending =
          (if Map.is_empty mp then
           Priority_map.remove status_and_priority pending
          else Priority_map.add status_and_priority mp pending);
        hashes = Sized_set.remove oph hashes;
        status_and_priority_of = Map.remove oph status_and_priority_of;
      }

let cardinal {pending = _; hashes; status_and_priority_of = _} =
  Sized_set.cardinal hashes

let fold_es f {pending; hashes = _; status_and_priority_of = _} acc =
  Priority_map.fold_es
    (fun prio mp acc -> Map.fold_es (f prio) mp acc)
    pending
    acc

let fold f {pending; hashes = _; status_and_priority_of = _} acc =
  Priority_map.fold (fun prio mp acc -> Map.fold (f prio) mp acc) pending acc

let iter f {pending; hashes = _; status_and_priority_of = _} =
  Priority_map.iter (fun prio mp -> Map.iter (f prio) mp) pending
OCaml

Innovation. Community. Security.