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
#[cfg(feature = "wasm")]
pub mod wasm;
use anyhow::{ensure, Result};
use thiserror::Error;
pub static BASE2: &str = "01";
pub static BASE8: &str = "01234567";
pub static BASE10: &str = "0123456789";
pub static BASE16: &str = "0123456789ABCDEF";
#[derive(Error, Debug)]
pub enum CheckBaseError {
#[error("length of base '{0}' must be at least 2")]
BaseLenTooShort(String),
#[error("base '{base}' has at least 2 occurrences of char '{c}'")]
DuplicateCharInBase { base: String, c: char },
}
pub fn check_base(base: &str) -> Result<()> {
ensure!(
base.chars().count() >= 2,
CheckBaseError::BaseLenTooShort(base.into())
);
for c in base.chars() {
ensure!(
base.chars().filter(|c2| &c == c2).count() == 1,
CheckBaseError::DuplicateCharInBase {
base: base.into(),
c,
}
)
}
Ok(())
}
#[derive(Error, Debug)]
pub enum ConversionError {
#[error("char '{c}' not found in base '{base}'")]
CharNotFoundInBase { base: String, c: char },
#[error("base '{base}' of length {base_length} ** {power} overflowed")]
ConversionOverflow {
base: String,
base_length: usize,
power: u32,
},
}
pub fn base_to_decimal(nbr: &str, from_base: &str) -> Result<usize> {
check_base(from_base)?;
let base_length = from_base.chars().count();
let mut result: usize = 0;
for (c, i) in nbr.chars().zip((0..nbr.chars().count() as u32).rev()) {
let x = from_base.chars().position(|x| x == c).ok_or_else(|| {
ConversionError::CharNotFoundInBase {
base: from_base.into(),
c,
}
})?;
result += x
* base_length
.checked_pow(i)
.ok_or_else(|| ConversionError::ConversionOverflow {
base: from_base.into(),
base_length,
power: i,
})?;
}
Ok(result)
}
pub fn decimal_to_base(mut nbr: usize, to_base: &str) -> Result<String> {
check_base(to_base)?;
if nbr == 0 {
return Ok(to_base.chars().next().unwrap().into());
}
let base_length = to_base.chars().count();
let mut result = String::new();
while nbr > 0 {
result.push(to_base.chars().nth(nbr % base_length).unwrap());
nbr /= base_length;
}
Ok(result.chars().rev().collect())
}
pub fn base_to_base(nbr: &str, from_base: &str, to_base: &str) -> Result<String> {
let nbr = base_to_decimal(nbr, from_base)?;
let nbr = decimal_to_base(nbr, to_base)?;
Ok(nbr)
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn test_check_base() {
struct TestCase {
base: &'static str,
err: CheckBaseError,
}
let test_cases = vec![
TestCase {
base: "",
err: CheckBaseError::BaseLenTooShort("".into()),
},
TestCase {
base: "x",
err: CheckBaseError::BaseLenTooShort("x".into()),
},
TestCase {
base: "xx",
err: CheckBaseError::DuplicateCharInBase {
base: "xx".into(),
c: 'x',
},
},
];
for test_case in &test_cases {
assert_eq!(
format!("{}", check_base(test_case.base).unwrap_err()),
format!("{}", test_case.err)
);
}
}
#[test]
fn test_base_to_decimal() {
assert_eq!(51966, base_to_decimal("CAFE", BASE16).unwrap());
assert_eq!(42, base_to_decimal("101010", BASE2).unwrap());
assert_eq!(0, base_to_decimal("0", BASE8).unwrap());
assert_eq!(0, base_to_decimal("", BASE8).unwrap());
}
#[test]
fn test_decimal_to_base() {
assert_eq!("CAFE", decimal_to_base(51966, BASE16).unwrap());
assert_eq!("0", decimal_to_base(0, BASE8).unwrap());
assert_eq!("x", decimal_to_base(0, "xyz").unwrap());
}
#[test]
fn test_base_to_base() {
let err = base_to_base("25", "01234", "1123").unwrap_err();
assert_eq!(
format!("{}", err),
format!(
"{}",
ConversionError::CharNotFoundInBase {
base: "01234".into(),
c: '5'
}
)
);
}
}