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
use crate::DerivedPropertyValue;
use std::fmt;
#[derive(Debug, PartialEq, Eq)]
pub enum Error {
Invalid,
BadCodepoint(CodepointInfo),
Unexpected(UnexpectedError),
}
impl fmt::Display for Error {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
match self {
Error::Invalid => write!(f, "invalid label"),
Error::BadCodepoint(info) => write!(f, "bad codepoint: {}", info),
Error::Unexpected(unexpected) => write!(f, "unexpected: {}", unexpected),
}
}
}
impl std::error::Error for Error {}
#[derive(Debug, PartialEq, Eq)]
pub struct CodepointInfo {
pub cp: u32,
pub position: usize,
pub property: DerivedPropertyValue,
}
impl CodepointInfo {
pub fn new(cp: u32, position: usize, property: DerivedPropertyValue) -> Self {
Self {
cp,
position,
property,
}
}
}
impl fmt::Display for CodepointInfo {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
write!(
f,
"code point {:#06x}, position: {}, property: {}",
self.cp, self.position, self.property
)
}
}
#[derive(Debug, PartialEq, Eq)]
pub enum UnexpectedError {
ContextRuleNotApplicable(CodepointInfo),
MissingContextRule(CodepointInfo),
ProfileRuleNotApplicable,
Undefined,
}
impl fmt::Display for UnexpectedError {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
match self {
UnexpectedError::ContextRuleNotApplicable(info) => {
write!(f, "context rule not applicable [{}]", info)
}
UnexpectedError::MissingContextRule(info) => {
write!(f, "missing context rule [{}]", info)
}
UnexpectedError::ProfileRuleNotApplicable => write!(f, "profile rule not appplicable"),
UnexpectedError::Undefined => write!(f, "undefined"),
}
}
}