2023-09-23 02:39:29 -04:00
|
|
|
use crate::queries::*;
|
2023-09-23 02:38:49 -04:00
|
|
|
use sqlite::*;
|
2023-09-26 21:35:14 -04:00
|
|
|
use std::fs::{self, OpenOptions};
|
|
|
|
use std::io;
|
2023-08-27 05:26:11 -04:00
|
|
|
use std::path::{Path, PathBuf};
|
|
|
|
|
2023-09-27 15:19:28 -04:00
|
|
|
/// Return the default path to the datasets file.
|
|
|
|
fn default_datasets_path(config_dir: &Path) -> io::Result<PathBuf> {
|
2023-08-27 05:26:11 -04:00
|
|
|
let mut path = config_dir.to_owned();
|
2023-09-27 15:19:28 -04:00
|
|
|
path.push("ggelo");
|
2023-09-23 02:38:49 -04:00
|
|
|
|
|
|
|
// Create datasets path if it doesn't exist
|
2023-09-26 21:35:14 -04:00
|
|
|
fs::create_dir_all(&path)?;
|
2023-09-23 02:38:49 -04:00
|
|
|
|
2023-09-27 15:19:28 -04:00
|
|
|
path.push("ggelo.db");
|
2023-09-26 21:35:14 -04:00
|
|
|
|
2023-09-27 15:19:28 -04:00
|
|
|
// Create datasets file if it doesn't exist
|
2023-09-26 21:35:14 -04:00
|
|
|
OpenOptions::new().write(true).create(true).open(&path)?;
|
|
|
|
|
|
|
|
Ok(path)
|
2023-08-27 05:26:11 -04:00
|
|
|
}
|
|
|
|
|
2023-09-30 00:22:48 -04:00
|
|
|
pub fn open_datasets(config_dir: &Path) -> sqlite::Result<Connection> {
|
|
|
|
let path = default_datasets_path(config_dir).unwrap();
|
2023-09-27 15:19:28 -04:00
|
|
|
|
2023-08-27 05:26:11 -04:00
|
|
|
let query = "
|
2023-09-27 15:19:28 -04:00
|
|
|
CREATE TABLE IF NOT EXISTS datasets (
|
|
|
|
name TEXT UNIQUE NOT NULL
|
2023-09-30 00:22:48 -04:00
|
|
|
) STRICT;";
|
2023-09-27 15:19:28 -04:00
|
|
|
|
|
|
|
let connection = sqlite::open(path)?;
|
|
|
|
connection.execute(query)?;
|
|
|
|
Ok(connection)
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO: Sanitize dataset names
|
|
|
|
|
|
|
|
pub fn list_datasets(connection: &Connection) -> sqlite::Result<Vec<String>> {
|
|
|
|
let query = "SELECT * FROM datasets";
|
|
|
|
|
|
|
|
connection
|
|
|
|
.prepare(query)?
|
|
|
|
.into_iter()
|
|
|
|
.map(|x| x.map(|r| r.read::<&str, _>("name").to_owned()))
|
|
|
|
.try_collect()
|
|
|
|
}
|
|
|
|
|
2023-09-30 00:22:48 -04:00
|
|
|
pub fn delete_dataset(connection: &Connection, dataset: &str) -> sqlite::Result<()> {
|
|
|
|
let query = format!(
|
|
|
|
r#"DELETE FROM datasets WHERE name = '{0}';
|
|
|
|
DROP TABLE "dataset_{0}";"#,
|
|
|
|
dataset
|
|
|
|
);
|
|
|
|
|
|
|
|
connection.execute(query)
|
|
|
|
}
|
|
|
|
|
2023-09-27 15:19:28 -04:00
|
|
|
pub fn new_dataset(connection: &Connection, dataset: &str) -> sqlite::Result<()> {
|
|
|
|
let query = format!(
|
2023-09-30 00:22:48 -04:00
|
|
|
r#"INSERT INTO datasets VALUES ('{0}');
|
2023-09-27 15:19:28 -04:00
|
|
|
|
2023-09-30 00:22:48 -04:00
|
|
|
CREATE TABLE IF NOT EXISTS "dataset_{0}" (
|
2023-09-23 02:38:49 -04:00
|
|
|
id INTEGER PRIMARY KEY,
|
2023-08-27 05:26:11 -04:00
|
|
|
name TEXT,
|
2023-09-23 02:38:49 -04:00
|
|
|
prefix TEXT,
|
|
|
|
elo REAL NOT NULL
|
2023-09-30 00:22:48 -04:00
|
|
|
) STRICT;"#,
|
2023-09-27 15:19:28 -04:00
|
|
|
dataset
|
|
|
|
);
|
2023-08-27 05:26:11 -04:00
|
|
|
|
2023-09-27 15:19:28 -04:00
|
|
|
connection.execute(query)
|
2023-08-27 05:26:11 -04:00
|
|
|
}
|
2023-09-23 02:36:28 -04:00
|
|
|
|
|
|
|
// Score calculation
|
|
|
|
|
|
|
|
/// Calculate the collective expected score for each team.
|
|
|
|
fn expected_scores(ratings: &Teams<&mut f64>) -> Vec<f64> {
|
|
|
|
let qs: Vec<f64> = ratings
|
|
|
|
.into_iter()
|
|
|
|
.map(|es| 10_f64.powf(es.iter().map(|x| **x).sum::<f64>() / es.len() as f64 / 400.0))
|
|
|
|
.collect();
|
|
|
|
let sumq: f64 = qs.iter().sum();
|
|
|
|
qs.into_iter().map(|q| q / sumq).collect()
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Adjust the ratings of each player based on who won.
|
|
|
|
fn adjust_ratings(ratings: Teams<&mut f64>, winner: usize) {
|
|
|
|
let exp_scores = expected_scores(&ratings);
|
|
|
|
|
|
|
|
ratings
|
|
|
|
.into_iter()
|
|
|
|
.zip(exp_scores.into_iter())
|
|
|
|
.enumerate()
|
|
|
|
.for_each(|(i, (es, exp_sc))| {
|
|
|
|
let len = es.len() as f64;
|
|
|
|
let score = f64::from(winner == i);
|
|
|
|
es.into_iter()
|
|
|
|
.for_each(|e| *e += 40.0 * (score - exp_sc) / len);
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2023-09-23 02:39:29 -04:00
|
|
|
// Database Updating
|
|
|
|
|
2023-09-27 15:19:28 -04:00
|
|
|
pub fn add_players(
|
|
|
|
connection: &Connection,
|
|
|
|
dataset: &str,
|
|
|
|
teams: &Teams<PlayerData>,
|
|
|
|
) -> sqlite::Result<()> {
|
|
|
|
let query = format!(
|
2023-09-30 00:22:48 -04:00
|
|
|
r#"INSERT OR IGNORE INTO "dataset_{}" VALUES (?, ?, ?, 1500)"#,
|
2023-09-27 15:19:28 -04:00
|
|
|
dataset
|
|
|
|
);
|
2023-09-23 02:39:29 -04:00
|
|
|
|
|
|
|
teams.iter().try_for_each(|team| {
|
|
|
|
team.iter().try_for_each(|PlayerData { id, name, prefix }| {
|
2023-09-27 15:19:28 -04:00
|
|
|
let mut statement = connection.prepare(&query)?;
|
2023-09-23 02:39:29 -04:00
|
|
|
statement.bind((1, id.0 as i64))?;
|
|
|
|
statement.bind((2, name.as_ref().map(|x| &x[..])))?;
|
|
|
|
statement.bind((3, prefix.as_ref().map(|x| &x[..])))?;
|
2023-09-27 15:19:28 -04:00
|
|
|
statement.into_iter().try_for_each(|x| x.map(|_| ()))
|
2023-09-23 02:39:29 -04:00
|
|
|
})
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn get_ratings(
|
|
|
|
connection: &Connection,
|
2023-09-27 15:19:28 -04:00
|
|
|
dataset: &str,
|
2023-09-23 02:39:29 -04:00
|
|
|
teams: &Teams<PlayerData>,
|
|
|
|
) -> sqlite::Result<Teams<(PlayerId, f64)>> {
|
2023-09-30 00:22:48 -04:00
|
|
|
let query = format!(r#"SELECT id, elo FROM "dataset_{}" WHERE id = ?"#, dataset);
|
2023-09-23 02:39:29 -04:00
|
|
|
|
|
|
|
teams
|
|
|
|
.iter()
|
|
|
|
.map(|team| {
|
|
|
|
team.iter()
|
|
|
|
.map(|data| {
|
2023-09-27 15:19:28 -04:00
|
|
|
let mut statement = connection.prepare(&query)?;
|
2023-09-23 02:39:29 -04:00
|
|
|
statement.bind((1, data.id.0 as i64))?;
|
|
|
|
statement.next()?;
|
|
|
|
Ok((data.id, statement.read::<f64, _>("elo")?))
|
|
|
|
})
|
|
|
|
.try_collect()
|
|
|
|
})
|
|
|
|
.try_collect()
|
|
|
|
}
|
|
|
|
|
2023-09-27 15:19:28 -04:00
|
|
|
pub fn update_ratings(
|
|
|
|
connection: &Connection,
|
|
|
|
dataset: &str,
|
|
|
|
elos: Teams<(PlayerId, f64)>,
|
|
|
|
) -> sqlite::Result<()> {
|
|
|
|
let query = format!(
|
2023-09-30 00:22:48 -04:00
|
|
|
r#"UPDATE "dataset_{}" SET elo = :elo WHERE id = :id"#,
|
2023-09-27 15:19:28 -04:00
|
|
|
dataset
|
|
|
|
);
|
2023-09-23 02:39:29 -04:00
|
|
|
elos.into_iter().try_for_each(|team| {
|
|
|
|
team.into_iter().try_for_each(|(id, elo)| {
|
2023-09-27 15:19:28 -04:00
|
|
|
let mut statement = connection.prepare(&query)?;
|
2023-09-23 02:39:29 -04:00
|
|
|
statement.bind((":elo", elo))?;
|
|
|
|
statement.bind((":id", id.0 as i64))?;
|
2023-09-27 15:19:28 -04:00
|
|
|
statement.into_iter().try_for_each(|x| x.map(|_| ()))
|
2023-09-23 02:39:29 -04:00
|
|
|
})
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2023-09-27 15:19:28 -04:00
|
|
|
pub fn update_from_set(
|
|
|
|
connection: &Connection,
|
|
|
|
dataset: &str,
|
|
|
|
results: SetData,
|
|
|
|
) -> sqlite::Result<()> {
|
2023-09-23 02:39:29 -04:00
|
|
|
let players_data = results.teams;
|
2023-09-27 15:19:28 -04:00
|
|
|
add_players(connection, dataset, &players_data)?;
|
2023-09-23 02:39:29 -04:00
|
|
|
|
2023-09-27 15:19:28 -04:00
|
|
|
let mut elos = get_ratings(connection, dataset, &players_data)?;
|
2023-09-23 02:39:29 -04:00
|
|
|
adjust_ratings(
|
|
|
|
elos.iter_mut()
|
|
|
|
.map(|v| v.iter_mut().map(|x| &mut x.1).collect())
|
|
|
|
.collect(),
|
|
|
|
results.winner,
|
|
|
|
);
|
2023-09-27 15:19:28 -04:00
|
|
|
update_ratings(connection, dataset, elos)
|
2023-09-23 02:39:29 -04:00
|
|
|
}
|