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
//            DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
//                    Version 2, December 2004
//
// Copyleft (ↄ) meh. <meh@schizofreni.co> | http://meh.schizofreni.co
//
// Everyone is permitted to copy and distribute verbatim or modified
// copies of this license document, and changing it is allowed as long
// as the name is changed.
//
//            DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
//   TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
//
//  0. You just DO WHAT THE FUCK YOU WANT TO.

use std::collections::HashMap;

use typemap::{Key, DebugMap, DebugAny};
use ansi_term::Style;

#[derive(Debug)]
pub struct Config(DebugMap);

impl Default for Config {
	fn default() -> Self {
		Config(DebugMap::custom())
	}
}

impl Config {
	pub fn set<T: Key<Value = T> + DebugAny>(mut self, value: T) -> Self {
		self.0.insert::<T>(value);
		self
	}

	pub fn get<T: Key<Value = T> + DebugAny>(&self) -> Option<&T> {
		self.0.get::<T>()
	}
}

#[derive(Eq, PartialEq, Copy, Clone, Debug)]
pub enum Base {
	Binary,
	Octal,
	Decimal,
	Hexadecimal,
}

impl Default for Base {
	fn default() -> Self {
		Base::Decimal
	}
}

impl Key for Base {
	type Value = Self;
}

#[derive(Eq, PartialEq, Copy, Clone, Debug)]
pub struct Precision(pub usize);

impl Key for Precision {
	type Value = Self;
}

#[derive(Eq, PartialEq, Copy, Clone, Debug)]
pub struct Limit(pub usize);

impl Key for Limit {
	type Value = Self;
}

#[derive(Eq, PartialEq, Copy, Clone, Debug)]
pub struct Pretty(pub bool);

impl Key for Pretty {
	type Value = Self;
}

#[derive(Eq, PartialEq, Copy, Clone, Debug)]
pub struct Width(pub usize);

impl Key for Width {
	type Value = Self;
}

#[derive(PartialEq, Clone, Default, Debug)]
pub struct Syntax(HashMap<String, Style>);

impl Syntax {
	pub fn set<N: AsRef<str>>(mut self, name: N, style: Style) -> Self {
		self.0.insert(name.as_ref().into(), style);
		self
	}

	pub fn get<N: AsRef<str>>(&self, name: N) -> Option<&Style> {
		self.0.get(name.as_ref())
	}
}

impl Key for Syntax {
	type Value = Self;
}