123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175(*****************************************************************************)(* *)(* 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. *)(* *)(*****************************************************************************)typekind=Proposal|Exploration|Cooldown|Promotion|Adoptionletstring_of_kind=function|Proposal->"proposal"|Exploration->"exploration"|Cooldown->"cooldown"|Promotion->"promotion"|Adoption->"adoption"letpp_kindppfkind=Format.fprintfppf"%s"@@string_of_kindkindletkind_encoding=letopenData_encodinginunion~tag_size:`Uint8[case(Tag0)~title:"Proposal"(constant"proposal")(functionProposal->Some()|_->None)(fun()->Proposal);case(Tag1)~title:"exploration"(constant"exploration")(functionExploration->Some()|_->None)(fun()->Exploration);case(Tag2)~title:"Cooldown"(constant"cooldown")(functionCooldown->Some()|_->None)(fun()->Cooldown);case(Tag3)~title:"Promotion"(constant"promotion")(functionPromotion->Some()|_->None)(fun()->Promotion);case(Tag4)~title:"Adoption"(constant"adoption")(functionAdoption->Some()|_->None)(fun()->Adoption);]letsucc_kind=function|Proposal->Exploration|Exploration->Cooldown|Cooldown->Promotion|Promotion->Adoption|Adoption->Proposaltypevoting_period={index:int32;kind:kind;start_position:int32}typet=voting_periodtypeinfo={voting_period:t;position:int32;remaining:int32}letroot~start_position={index=0l;kind=Proposal;start_position}letppppf{index;kind;start_position}=Format.fprintfppf"@[<hv 2>index: %ld,@ kind:%a,@ start_position: %ld@]"indexpp_kindkindstart_positionletpp_infoppf{voting_period;position;remaining}=Format.fprintfppf"@[<hv 2>voting_period: %a,@ position:%ld,@ remaining: %ld@]"ppvoting_periodpositionremainingletencoding=letopenData_encodinginconv(fun{index;kind;start_position}->(index,kind,start_position))(fun(index,kind,start_position)->{index;kind;start_position})(obj3(req"index"~description:"The voting period's index. Starts at 0 with the first block of \
the Alpha family of protocols."int32)(req~description:"One of the several kinds of periods in the voting procedure.""kind"kind_encoding)(req~description:"The relative position of the first level of the period with \
respect to the first level of the Alpha family of protocols.""start_position"int32))letinfo_encoding=letopenData_encodinginconv(fun{voting_period;position;remaining}->(voting_period,position,remaining))(fun(voting_period,position,remaining)->{voting_period;position;remaining})(obj3(req~description:"The voting period to which the block belongs.""voting_period"encoding)(req~description:"The position of the block within the voting period.""position"int32)(req~description:"The number of blocks remaining till the end of the voting period.""remaining"int32))includeCompare.Make(structtypenonrect=tletcomparepp'=Compare.Int32.comparep.indexp'.indexend)letraw_resetperiod~start_position=letindex=Int32.succperiod.indexinletkind=Proposalin{index;kind;start_position}letraw_succperiod~start_position=letindex=Int32.succperiod.indexinletkind=succ_kindperiod.kindin{index;kind;start_position}letposition_since(level:Level_repr.t)(voting_period:t)=Int32.(sublevel.level_positionvoting_period.start_position)letremaining_blocks(level:Level_repr.t)(voting_period:t)~blocks_per_voting_period=letposition=position_sincelevelvoting_periodinInt32.(subblocks_per_voting_period(succposition))