Source file vote_storage.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
158
159
160
161
let recorded_proposal_count_for_delegate ctxt proposer =
Storage.Vote.Proposals_count.find ctxt proposer >|=? Option.value ~default:0
let record_proposal ctxt proposal proposer =
recorded_proposal_count_for_delegate ctxt proposer >>=? fun count ->
Storage.Vote.Proposals_count.add ctxt proposer (count + 1) >>= fun ctxt ->
Storage.Vote.Proposals.add ctxt (proposal, proposer) >|= ok
let get_proposals ctxt =
Storage.Vote.Proposals.fold
ctxt
~init:(ok Protocol_hash.Map.empty)
~f:(fun (proposal, delegate) acc ->
Storage.Vote.Listings.get ctxt delegate >>=? fun weight ->
Lwt.return
( acc >|? fun acc ->
let previous =
match Protocol_hash.Map.find proposal acc with
| None -> 0l
| Some x -> x
in
Protocol_hash.Map.add proposal (Int32.add weight previous) acc ))
let clear_proposals ctxt =
Storage.Vote.Proposals_count.clear ctxt >>= fun ctxt ->
Storage.Vote.Proposals.clear ctxt
type ballots = {yay : int32; nay : int32; pass : int32}
let ballots_encoding =
let open Data_encoding in
conv
(fun {yay; nay; pass} -> (yay, nay, pass))
(fun (yay, nay, pass) -> {yay; nay; pass})
@@ obj3 (req "yay" int32) (req "nay" int32) (req "pass" int32)
let has_recorded_ballot = Storage.Vote.Ballots.mem
let record_ballot = Storage.Vote.Ballots.init
let get_ballots ctxt =
Storage.Vote.Ballots.fold
ctxt
~f:(fun delegate ballot (ballots : ballots tzresult) ->
Storage.Vote.Listings.get ctxt delegate >>=? fun weight ->
let count = Int32.add weight in
Lwt.return
( ballots >|? fun ballots ->
match ballot with
| Yay -> {ballots with yay = count ballots.yay}
| Nay -> {ballots with nay = count ballots.nay}
| Pass -> {ballots with pass = count ballots.pass} ))
~init:(ok {yay = 0l; nay = 0l; pass = 0l})
let get_ballot_list = Storage.Vote.Ballots.bindings
let clear_ballots = Storage.Vote.Ballots.clear
let listings_encoding =
Data_encoding.(
list
(obj2 (req "pkh" Signature.Public_key_hash.encoding) (req "rolls" int32)))
let update_listings ctxt =
Storage.Vote.Listings.clear ctxt >>= fun ctxt ->
Roll_storage.fold ctxt (ctxt, 0l) ~f:(fun _roll delegate (ctxt, total) ->
let delegate = Signature.Public_key.hash delegate in
Storage.Vote.Listings.find ctxt delegate >|=? Option.value ~default:0l
>>=? fun count ->
Storage.Vote.Listings.add ctxt delegate (Int32.succ count) >|= fun ctxt ->
ok (ctxt, Int32.succ total))
>>=? fun (ctxt, total) ->
Storage.Vote.Listings_size.add ctxt total >>= fun ctxt -> return ctxt
let listing_size = Storage.Vote.Listings_size.get
let in_listings = Storage.Vote.Listings.mem
let get_listings = Storage.Vote.Listings.bindings
let get_voting_power_free ctxt owner =
Storage.Vote.Listings.find ctxt owner >|=? Option.value ~default:0l
let get_voting_power ctxt owner =
let open Raw_context in
consume_gas ctxt (Storage_costs.read_access ~path_length:4 ~read_bytes:4)
>>?= fun ctxt ->
Storage.Vote.Listings.find ctxt owner >|=? function
| None -> (ctxt, 0l)
| Some power -> (ctxt, power)
let get_total_voting_power_free = listing_size
let get_total_voting_power ctxt =
let open Raw_context in
consume_gas ctxt (Storage_costs.read_access ~path_length:2 ~read_bytes:4)
>>?= fun ctxt ->
get_total_voting_power_free ctxt >|=? fun total_voting_power ->
(ctxt, total_voting_power)
let get_current_quorum ctxt =
Storage.Vote.Participation_ema.get ctxt >|=? fun participation_ema ->
let quorum_min = Constants_storage.quorum_min ctxt in
let quorum_max = Constants_storage.quorum_max ctxt in
let quorum_diff = Int32.sub quorum_max quorum_min in
Int32.(add quorum_min (div (mul participation_ema quorum_diff) 100_00l))
let get_participation_ema = Storage.Vote.Participation_ema.get
let set_participation_ema = Storage.Vote.Participation_ema.update
let get_current_proposal = Storage.Vote.Current_proposal.get
let find_current_proposal = Storage.Vote.Current_proposal.find
let init_current_proposal = Storage.Vote.Current_proposal.init
let clear_current_proposal = Storage.Vote.Current_proposal.remove_existing
let init ctxt ~start_position =
let participation_ema = Constants_storage.quorum_max ctxt in
Storage.Vote.Participation_ema.init ctxt participation_ema >>=? fun ctxt ->
Voting_period_storage.init_first_period ctxt ~start_position