2019-09-05 17:21:01 +04:00
|
|
|
(*****************************************************************************)
|
|
|
|
(* *)
|
|
|
|
(* Open Source License *)
|
|
|
|
(* Copyright (c) 2018 Dynamic Ledger Solutions, Inc. <contact@tezos.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. *)
|
|
|
|
(* *)
|
|
|
|
(*****************************************************************************)
|
|
|
|
|
|
|
|
let recorded_proposal_count_for_delegate ctxt proposer =
|
2020-02-12 20:40:17 +04:00
|
|
|
Storage.Vote.Proposals_count.get_option ctxt proposer
|
|
|
|
>>=? function None -> return 0 | Some count -> return count
|
2019-09-05 17:21:01 +04:00
|
|
|
|
|
|
|
let record_proposal ctxt proposal proposer =
|
2020-02-12 20:40:17 +04:00
|
|
|
recorded_proposal_count_for_delegate ctxt proposer
|
|
|
|
>>=? fun count ->
|
|
|
|
Storage.Vote.Proposals_count.init_set ctxt proposer (count + 1)
|
|
|
|
>>= fun ctxt ->
|
|
|
|
Storage.Vote.Proposals.add ctxt (proposal, proposer)
|
|
|
|
>>= fun ctxt -> return ctxt
|
2019-09-05 17:21:01 +04:00
|
|
|
|
|
|
|
let get_proposals ctxt =
|
2020-02-12 20:40:17 +04:00
|
|
|
Storage.Vote.Proposals.fold
|
|
|
|
ctxt
|
2019-09-05 17:21:01 +04:00
|
|
|
~init:(ok Protocol_hash.Map.empty)
|
|
|
|
~f:(fun (proposal, delegate) acc ->
|
2020-02-12 20:40:17 +04:00
|
|
|
(* Assuming the same listings is used at votings *)
|
|
|
|
Storage.Vote.Listings.get ctxt delegate
|
|
|
|
>>=? fun weight ->
|
|
|
|
Lwt.return
|
|
|
|
( acc
|
|
|
|
>>? fun acc ->
|
|
|
|
let previous =
|
|
|
|
match Protocol_hash.Map.find_opt proposal acc with
|
|
|
|
| None ->
|
|
|
|
0l
|
|
|
|
| Some x ->
|
|
|
|
x
|
|
|
|
in
|
|
|
|
ok (Protocol_hash.Map.add proposal (Int32.add weight previous) acc) ))
|
2019-09-05 17:21:01 +04:00
|
|
|
|
|
|
|
let clear_proposals ctxt =
|
2020-02-12 20:40:17 +04:00
|
|
|
Storage.Vote.Proposals_count.clear ctxt
|
|
|
|
>>= fun ctxt -> Storage.Vote.Proposals.clear ctxt
|
2019-09-05 17:21:01 +04:00
|
|
|
|
2020-02-12 20:40:17 +04:00
|
|
|
type ballots = {yay : int32; nay : int32; pass : int32}
|
2019-09-05 17:21:01 +04:00
|
|
|
|
|
|
|
let ballots_encoding =
|
|
|
|
let open Data_encoding in
|
|
|
|
conv
|
2020-02-12 20:40:17 +04:00
|
|
|
(fun {yay; nay; pass} -> (yay, nay, pass))
|
|
|
|
(fun (yay, nay, pass) -> {yay; nay; pass})
|
|
|
|
@@ obj3 (req "yay" int32) (req "nay" int32) (req "pass" int32)
|
2019-09-05 17:21:01 +04:00
|
|
|
|
|
|
|
let has_recorded_ballot = Storage.Vote.Ballots.mem
|
2020-02-12 20:40:17 +04:00
|
|
|
|
2019-09-05 17:21:01 +04:00
|
|
|
let record_ballot = Storage.Vote.Ballots.init
|
|
|
|
|
|
|
|
let get_ballots ctxt =
|
2020-02-12 20:40:17 +04:00
|
|
|
Storage.Vote.Ballots.fold
|
|
|
|
ctxt
|
|
|
|
~f:(fun delegate ballot (ballots : ballots tzresult) ->
|
|
|
|
(* Assuming the same listings is used at votings *)
|
|
|
|
Storage.Vote.Listings.get ctxt delegate
|
|
|
|
>>=? fun weight ->
|
|
|
|
let count = Int32.add weight in
|
|
|
|
Lwt.return
|
|
|
|
( ballots
|
|
|
|
>>? fun ballots ->
|
|
|
|
match ballot with
|
|
|
|
| Yay ->
|
|
|
|
ok {ballots with yay = count ballots.yay}
|
|
|
|
| Nay ->
|
|
|
|
ok {ballots with nay = count ballots.nay}
|
|
|
|
| Pass ->
|
|
|
|
ok {ballots with pass = count ballots.pass} ))
|
|
|
|
~init:(ok {yay = 0l; nay = 0l; pass = 0l})
|
2019-09-05 17:21:01 +04:00
|
|
|
|
|
|
|
let get_ballot_list = Storage.Vote.Ballots.bindings
|
|
|
|
|
|
|
|
let clear_ballots = Storage.Vote.Ballots.clear
|
|
|
|
|
|
|
|
let listings_encoding =
|
2020-02-12 20:40:17 +04:00
|
|
|
Data_encoding.(
|
|
|
|
list
|
|
|
|
(obj2 (req "pkh" Signature.Public_key_hash.encoding) (req "rolls" int32)))
|
2019-09-05 17:21:01 +04:00
|
|
|
|
|
|
|
let freeze_listings ctxt =
|
2020-02-12 20:40:17 +04:00
|
|
|
Roll_storage.fold ctxt (ctxt, 0l) ~f:(fun _roll delegate (ctxt, total) ->
|
|
|
|
(* TODO use snapshots *)
|
|
|
|
let delegate = Signature.Public_key.hash delegate in
|
|
|
|
Storage.Vote.Listings.get_option ctxt delegate
|
|
|
|
>>=? (function None -> return 0l | Some count -> return count)
|
|
|
|
>>=? fun count ->
|
|
|
|
Storage.Vote.Listings.init_set ctxt delegate (Int32.succ count)
|
|
|
|
>>= fun ctxt -> return (ctxt, Int32.succ total))
|
|
|
|
>>=? fun (ctxt, total) ->
|
|
|
|
Storage.Vote.Listings_size.init ctxt total >>=? fun ctxt -> return ctxt
|
2019-09-05 17:21:01 +04:00
|
|
|
|
|
|
|
let listing_size = Storage.Vote.Listings_size.get
|
2020-02-12 20:40:17 +04:00
|
|
|
|
2019-09-05 17:21:01 +04:00
|
|
|
let in_listings = Storage.Vote.Listings.mem
|
2020-02-12 20:40:17 +04:00
|
|
|
|
2019-09-05 17:21:01 +04:00
|
|
|
let get_listings = Storage.Vote.Listings.bindings
|
|
|
|
|
|
|
|
let clear_listings ctxt =
|
2020-02-12 20:40:17 +04:00
|
|
|
Storage.Vote.Listings.clear ctxt
|
|
|
|
>>= fun ctxt ->
|
|
|
|
Storage.Vote.Listings_size.remove ctxt >>= fun ctxt -> return ctxt
|
2019-09-05 17:21:01 +04:00
|
|
|
|
|
|
|
let get_current_period_kind = Storage.Vote.Current_period_kind.get
|
2020-02-12 20:40:17 +04:00
|
|
|
|
2019-09-05 17:21:01 +04:00
|
|
|
let set_current_period_kind = Storage.Vote.Current_period_kind.set
|
|
|
|
|
2019-10-17 13:45:27 +04:00
|
|
|
let get_current_quorum ctxt =
|
2020-02-12 20:40:17 +04:00
|
|
|
Storage.Vote.Participation_ema.get ctxt
|
|
|
|
>>=? fun participation_ema ->
|
2019-10-17 13:45:27 +04:00
|
|
|
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
|
2020-02-12 20:40:17 +04:00
|
|
|
return
|
|
|
|
Int32.(add quorum_min (div (mul participation_ema quorum_diff) 100_00l))
|
2019-10-17 13:45:27 +04:00
|
|
|
|
|
|
|
let get_participation_ema = Storage.Vote.Participation_ema.get
|
2020-02-12 20:40:17 +04:00
|
|
|
|
2019-10-17 13:45:27 +04:00
|
|
|
let set_participation_ema = Storage.Vote.Participation_ema.set
|
2019-09-05 17:21:01 +04:00
|
|
|
|
|
|
|
let get_current_proposal = Storage.Vote.Current_proposal.get
|
2020-02-12 20:40:17 +04:00
|
|
|
|
2019-09-05 17:21:01 +04:00
|
|
|
let init_current_proposal = Storage.Vote.Current_proposal.init
|
2020-02-12 20:40:17 +04:00
|
|
|
|
2019-09-05 17:21:01 +04:00
|
|
|
let clear_current_proposal = Storage.Vote.Current_proposal.delete
|
|
|
|
|
|
|
|
let init ctxt =
|
2019-10-17 13:45:27 +04:00
|
|
|
(* participation EMA is in centile of a percentage *)
|
|
|
|
let participation_ema = Constants_storage.quorum_max ctxt in
|
2020-02-12 20:40:17 +04:00
|
|
|
Storage.Vote.Participation_ema.init ctxt participation_ema
|
|
|
|
>>=? fun ctxt ->
|
|
|
|
Storage.Vote.Current_period_kind.init ctxt Proposal
|
|
|
|
>>=? fun ctxt -> return ctxt
|