poa-ballot-stats/src/stats.rs

127 lines
3.7 KiB
Rust

use crate::validator::Validator;
use colored::{Color, Colorize};
use ethabi::Address;
use std::collections::HashMap;
use std::fmt::{self, Display, Formatter};
/// The count of ballots and cast votes, as well as metadata for a particular voter.
#[derive(Clone, Default)]
struct VoterStats {
/// The number of ballots where this voter had a right to vote.
ballots: usize,
/// The number of votes cast by this voter.
voted: usize,
/// The validator metadata.
validator: Option<Validator>,
/// The mining key.
mining_key: Option<Address>,
}
/// A map of vote counts, by voting key.
#[derive(Clone, Default)]
pub struct Stats {
voter_stats: HashMap<Address, VoterStats>,
}
impl Stats {
/// Adds a ballot: `voters` are the voting keys of everyone who was allowed to cast a vote, and
/// `votes` are the ones that were actually cast.
pub fn add_ballot<'a, I>(&mut self, voters: I, voted: &[Address])
where
I: IntoIterator<Item = &'a Address>,
{
for voter in voters {
let mut vs = self
.voter_stats
.entry(voter.clone())
.or_insert_with(VoterStats::default);
vs.ballots += 1;
if voted.contains(voter) {
vs.voted += 1;
}
}
}
/// Inserts metadata about a voter: the mining key and the `Validator` information.
pub fn set_metadata(&mut self, voter: &Address, mining_key: Address, validator: Validator) {
let vs = self.voter_stats.entry(*voter).or_default();
vs.validator = Some(validator);
vs.mining_key = Some(mining_key);
}
}
fn to_display_line((addr, s): (&Address, &VoterStats)) -> Option<DisplayLine> {
let votes_per_thousand = if s.ballots == 0 {
1000
} else {
s.voted * 1000 / s.ballots
};
let mining_key = match s.mining_key {
None => return None,
Some(ref key) => format!("{}", key),
};
let name = match s.validator {
None => return None,
Some(ref v) => format!("{} {}", v.first_name, v.last_name),
};
Some(DisplayLine {
votes_per_thousand,
voted: s.voted,
ballots: s.ballots,
voting_address: *addr,
mining_key,
name,
})
}
impl Display for Stats {
fn fmt(&self, f: &mut Formatter) -> fmt::Result {
let mut lines: Vec<_> = self
.voter_stats
.iter()
.filter_map(to_display_line)
.collect();
lines.sort();
let header = " Missed Voting key Mining key Name".bold();
writeln!(f, "{}", header)?;
for line in lines {
line.fmt(f)?;
}
Ok(())
}
}
/// A line in the output, corresponding to a particular voter.
#[derive(Ord, PartialOrd, Eq, PartialEq)]
struct DisplayLine {
votes_per_thousand: usize,
voted: usize,
ballots: usize,
voting_address: Address,
mining_key: String,
name: String,
}
impl Display for DisplayLine {
fn fmt(&self, f: &mut Formatter) -> fmt::Result {
let text = format!(
"{:>7},{:5.1}% {} {} {}",
format!("{}/{}", self.ballots - self.voted, self.ballots),
100.0 - (self.votes_per_thousand as f32) / 10.0,
self.voting_address,
self.mining_key,
self.name
);
let c = if self.votes_per_thousand <= 500 {
Color::BrightRed
} else if self.votes_per_thousand <= 750 {
Color::BrightYellow
} else if self.votes_per_thousand < 1000 {
Color::White
} else {
Color::BrightGreen
};
writeln!(f, "{}", text.color(c))
}
}