-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathstatic_types.rs
More file actions
260 lines (221 loc) · 6.55 KB
/
static_types.rs
File metadata and controls
260 lines (221 loc) · 6.55 KB
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
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
// Copyright 2021-2022 Parity Technologies (UK) Ltd.
// This file is part of Polkadot.
// Polkadot is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
// Polkadot is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
// You should have received a copy of the GNU General Public License
// along with Polkadot. If not, see <http://www.gnu.org/licenses/>.
use crate::{epm, prelude::*};
use frame_election_provider_support::traits::NposSolution;
use frame_support::{traits::ConstU32, weights::Weight};
use pallet_election_provider_multi_phase::{RawSolution, SolutionOrSnapshotSize};
macro_rules! impl_atomic_u32_parameter_types {
($mod:ident, $name:ident) => {
mod $mod {
use std::sync::atomic::{AtomicU32, Ordering};
static VAL: AtomicU32 = AtomicU32::new(0);
pub struct $name;
impl $name {
pub fn get() -> u32 {
VAL.load(Ordering::SeqCst)
}
}
impl<I: From<u32>> frame_support::traits::Get<I> for $name {
fn get() -> I {
I::from(Self::get())
}
}
impl $name {
pub fn set(val: u32) {
VAL.store(val, std::sync::atomic::Ordering::SeqCst);
}
}
}
pub use $mod::$name;
};
}
mod max_weight {
use frame_support::weights::Weight;
use std::sync::atomic::{AtomicU64, Ordering};
static REF_TIME: AtomicU64 = AtomicU64::new(0);
static PROOF_SIZE: AtomicU64 = AtomicU64::new(0);
pub struct MaxWeight;
impl MaxWeight {
pub fn get() -> Weight {
Weight::from_parts(REF_TIME.load(Ordering::SeqCst), PROOF_SIZE.load(Ordering::SeqCst))
}
}
impl frame_support::traits::Get<Weight> for MaxWeight {
fn get() -> Weight {
Self::get()
}
}
impl MaxWeight {
pub fn set(weight: Weight) {
REF_TIME.store(weight.ref_time(), Ordering::SeqCst);
PROOF_SIZE.store(weight.proof_size(), Ordering::SeqCst);
}
}
}
impl_atomic_u32_parameter_types!(max_length, MaxLength);
impl_atomic_u32_parameter_types!(max_votes, MaxVotesPerVoter);
impl_atomic_u32_parameter_types!(max_winners, MaxWinners);
pub use max_weight::MaxWeight;
pub mod westend {
use super::*;
// SYNC
frame_election_provider_support::generate_solution_type!(
#[compact]
pub struct NposSolution16::<
VoterIndex = u32,
TargetIndex = u16,
Accuracy = sp_runtime::PerU16,
MaxVoters = ConstU32::<22500>
>(16)
);
#[derive(Debug)]
pub struct MinerConfig;
impl pallet_election_provider_multi_phase::unsigned::MinerConfig for MinerConfig {
type AccountId = AccountId;
type MaxLength = MaxLength;
type MaxWeight = MaxWeight;
type MaxVotesPerVoter = MaxVotesPerVoter;
type Solution = NposSolution16;
type MaxWinners = MaxWinners;
fn solution_weight(
voters: u32,
targets: u32,
active_voters: u32,
desired_targets: u32,
) -> Weight {
let Some(votes) = epm::mock_votes(
active_voters,
desired_targets.try_into().expect("Desired targets < u16::MAX"),
) else {
return Weight::MAX;
};
// Mock a RawSolution to get the correct weight without having to do the heavy work.
let raw = RawSolution {
solution: NposSolution16 { votes1: votes, ..Default::default() },
..Default::default()
};
if raw.solution.voter_count() != active_voters as usize ||
raw.solution.unique_targets().len() != desired_targets as usize
{
return Weight::MAX;
}
futures::executor::block_on(epm::runtime_api_solution_weight(
raw,
SolutionOrSnapshotSize { voters, targets },
))
.expect("solution_weight should work")
}
}
}
pub mod polkadot {
use super::*;
// SYNC
frame_election_provider_support::generate_solution_type!(
#[compact]
pub struct NposSolution16::<
VoterIndex = u32,
TargetIndex = u16,
Accuracy = sp_runtime::PerU16,
MaxVoters = ConstU32::<22500>
>(16)
);
#[derive(Debug)]
pub struct MinerConfig;
impl pallet_election_provider_multi_phase::unsigned::MinerConfig for MinerConfig {
type AccountId = AccountId;
type MaxLength = MaxLength;
type MaxWeight = MaxWeight;
type MaxVotesPerVoter = MaxVotesPerVoter;
type Solution = NposSolution16;
type MaxWinners = MaxWinners;
fn solution_weight(
voters: u32,
targets: u32,
active_voters: u32,
desired_targets: u32,
) -> Weight {
let Some(votes) = epm::mock_votes(
active_voters,
desired_targets.try_into().expect("Desired targets < u16::MAX"),
) else {
return Weight::MAX;
};
// Mock a RawSolution to get the correct weight without having to do the heavy work.
let raw = RawSolution {
solution: NposSolution16 { votes1: votes, ..Default::default() },
..Default::default()
};
if raw.solution.voter_count() != active_voters as usize ||
raw.solution.unique_targets().len() != desired_targets as usize
{
return Weight::MAX;
}
futures::executor::block_on(epm::runtime_api_solution_weight(
raw,
SolutionOrSnapshotSize { voters, targets },
))
.expect("solution_weight should work")
}
}
}
pub mod kusama {
use super::*;
// SYNC
frame_election_provider_support::generate_solution_type!(
#[compact]
pub struct NposSolution24::<
VoterIndex = u32,
TargetIndex = u16,
Accuracy = sp_runtime::PerU16,
MaxVoters = ConstU32::<12500>
>(24)
);
#[derive(Debug)]
pub struct MinerConfig;
impl pallet_election_provider_multi_phase::unsigned::MinerConfig for MinerConfig {
type AccountId = AccountId;
type MaxLength = MaxLength;
type MaxWeight = MaxWeight;
type MaxVotesPerVoter = MaxVotesPerVoter;
type Solution = NposSolution24;
type MaxWinners = MaxWinners;
fn solution_weight(
voters: u32,
targets: u32,
active_voters: u32,
desired_targets: u32,
) -> Weight {
let Some(votes) = epm::mock_votes(
active_voters,
desired_targets.try_into().expect("Desired targets < u16::MAX"),
) else {
return Weight::MAX;
};
// Mock a RawSolution to get the correct weight without having to do the heavy work.
let raw = RawSolution {
solution: NposSolution24 { votes1: votes, ..Default::default() },
..Default::default()
};
if raw.solution.voter_count() != active_voters as usize ||
raw.solution.unique_targets().len() != desired_targets as usize
{
return Weight::MAX;
}
futures::executor::block_on(epm::runtime_api_solution_weight(
raw,
SolutionOrSnapshotSize { voters, targets },
))
.expect("solution_weight should work")
}
}
}