use std::cmp::Ord;
use std::collections::{BTreeMap, BTreeSet};
use std::marker::PhantomData;
use itertools::Itertools;
use serde::{Deserialize, Serialize};
#[derive(PartialEq, Clone)]
pub struct MultiMap<K, V>
where
K: Ord + PartialEq + Clone,
V: Ord + PartialEq + Clone,
{
map: BTreeMap<K, BTreeSet<V>>,
empty: BTreeSet<V>,
}
impl<K, V> MultiMap<K, V>
where
K: Ord + PartialEq + Clone,
V: Ord + PartialEq + Clone,
{
pub fn new() -> MultiMap<K, V> {
MultiMap {
map: BTreeMap::new(),
empty: BTreeSet::new(),
}
}
pub fn insert(&mut self, key: K, value: V) {
self.map
.entry(key)
.or_insert_with(BTreeSet::new)
.insert(value);
}
pub fn remove(&mut self, key: K, value: V) {
if !self.map.contains_key(&key) {
return;
}
self.map.get_mut(&key).unwrap().remove(&value);
if self.map[&key].is_empty() {
self.map.remove(&key);
}
}
pub fn get(&self, key: K) -> &BTreeSet<V> {
self.map.get(&key).unwrap_or(&self.empty)
}
pub fn len(&self) -> usize {
self.map.len()
}
pub(crate) fn raw_map(&self) -> &BTreeMap<K, BTreeSet<V>> {
&self.map
}
pub fn consume(self) -> BTreeMap<K, BTreeSet<V>> {
self.map
}
}
#[derive(Clone)]
pub struct Counter<T: Ord + PartialEq + Clone> {
map: BTreeMap<T, usize>,
sum: usize,
}
impl<T: Ord + PartialEq + Clone> Default for Counter<T> {
fn default() -> Counter<T> {
Counter::new()
}
}
impl<T: Ord + PartialEq + Clone> Counter<T> {
pub fn new() -> Counter<T> {
Counter {
map: BTreeMap::new(),
sum: 0,
}
}
pub fn add(&mut self, val: T, amount: usize) -> usize {
let entry = self.map.entry(val).or_insert(0);
*entry += amount;
self.sum += amount;
*entry
}
pub fn inc(&mut self, val: T) -> usize {
self.add(val, 1)
}
pub fn get(&self, val: T) -> usize {
self.map.get(&val).cloned().unwrap_or(0)
}
pub fn sorted_asc(&self) -> Vec<Vec<T>> {
let mut list = self.map.iter().collect::<Vec<_>>();
list.sort_by_key(|(_, cnt)| *cnt);
list.into_iter()
.group_by(|(_, cnt)| *cnt)
.into_iter()
.map(|(_, group)| group.into_iter().map(|(val, _)| val.clone()).collect())
.collect()
}
pub fn max(&self) -> usize {
self.map.values().max().cloned().unwrap_or(0)
}
pub fn sum(&self) -> usize {
self.sum
}
pub fn compare(mut self, mut other: Counter<T>) -> Vec<(T, usize, usize)> {
for key in self.map.keys() {
other.map.entry(key.clone()).or_insert(0);
}
for key in other.map.keys() {
self.map.entry(key.clone()).or_insert(0);
}
self.map
.into_iter()
.map(|(k, cnt)| (k.clone(), cnt, other.map[&k]))
.collect()
}
pub fn borrow(&self) -> &BTreeMap<T, usize> {
&self.map
}
pub fn consume(self) -> BTreeMap<T, usize> {
self.map
}
}
pub fn wraparound_get<T>(vec: &Vec<T>, idx: isize) -> &T {
let len = vec.len() as isize;
let idx = idx % len;
let idx = if idx >= 0 { idx } else { idx + len };
&vec[idx as usize]
}
pub fn retain_btreemap<K: Ord + Clone, V, F: Fn(&K, &V) -> bool>(
map: &mut BTreeMap<K, V>,
keep: F,
) {
let mut remove_keys: Vec<K> = Vec::new();
for (k, v) in map.iter() {
if !keep(k, v) {
remove_keys.push(k.clone());
}
}
for k in remove_keys {
map.remove(&k);
}
}
pub fn retain_btreeset<K: Ord + Clone, F: FnMut(&K) -> bool>(set: &mut BTreeSet<K>, mut keep: F) {
let mut remove: Vec<K> = Vec::new();
for k in set.iter() {
if !keep(k) {
remove.push(k.clone());
}
}
for k in remove {
set.remove(&k);
}
}
pub fn contains_duplicates<T: Ord>(vec: &Vec<T>) -> bool {
let mut set = BTreeSet::new();
for item in vec {
if set.contains(item) {
return true;
}
set.insert(item);
}
false
}
pub struct VecMap<K, V> {
inner: Vec<(K, V)>,
}
impl<K: Clone + PartialEq, V> VecMap<K, V> {
pub fn new() -> VecMap<K, V> {
VecMap { inner: Vec::new() }
}
pub fn consume(self) -> Vec<(K, V)> {
self.inner
}
pub fn mut_or_insert<F: Fn() -> V>(&mut self, key: K, ctor: F) -> &mut V {
if let Some(idx) = self.inner.iter().position(|(k, _)| key == *k) {
return &mut self.inner[idx].1;
}
self.inner.push((key, ctor()));
&mut self.inner.last_mut().unwrap().1
}
}
#[derive(Clone, Debug, PartialEq, Serialize, Deserialize)]
pub struct Tags(BTreeMap<String, String>);
impl Tags {
pub fn new(map: BTreeMap<String, String>) -> Tags {
Tags(map)
}
pub fn get(&self, k: &str) -> Option<&String> {
self.0.get(k)
}
pub fn contains_key(&self, k: &str) -> bool {
self.0.contains_key(k)
}
pub fn is(&self, k: &str, v: &str) -> bool {
self.0.get(k) == Some(&v.to_string())
}
pub fn is_any(&self, k: &str, values: Vec<&str>) -> bool {
if let Some(v) = self.0.get(k) {
values.contains(&v.as_ref())
} else {
false
}
}
pub fn insert<K: Into<String>, V: Into<String>>(&mut self, k: K, v: V) {
self.0.insert(k.into(), v.into());
}
pub fn remove(&mut self, k: &str) -> Option<String> {
self.0.remove(k)
}
pub fn inner(&self) -> &BTreeMap<String, String> {
&self.0
}
}
pub trait IndexableKey {
fn index(&self) -> usize;
}
#[derive(Serialize, Deserialize, Clone)]
pub struct FixedMap<K: IndexableKey, V> {
inner: Vec<Option<V>>,
key_type: PhantomData<K>,
}
impl<K: IndexableKey, V> FixedMap<K, V> {
pub fn new() -> FixedMap<K, V> {
FixedMap {
inner: Vec::new(),
key_type: PhantomData,
}
}
pub fn insert(&mut self, key: K, value: V) {
let idx = key.index();
if idx >= self.inner.len() {
self.inner.resize_with(idx + 1, || None);
}
self.inner[idx] = Some(value);
}
pub fn get(&self, key: &K) -> Option<&V> {
self.inner[key.index()].as_ref()
}
pub fn get_mut(&mut self, key: &K) -> Option<&mut V> {
self.inner[key.index()].as_mut()
}
pub fn contains_key(&self, key: &K) -> bool {
self.inner[key.index()].is_some()
}
pub fn remove(&mut self, key: &K) -> Option<V> {
self.inner[key.index()].take()
}
pub fn values(&self) -> std::iter::Flatten<std::slice::Iter<'_, std::option::Option<V>>> {
self.inner.iter().flatten()
}
}
impl<K: IndexableKey, V> std::ops::Index<&K> for FixedMap<K, V> {
type Output = V;
fn index(&self, key: &K) -> &Self::Output {
self.inner[key.index()].as_ref().unwrap()
}
}