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
use std::path::Path;
use std::str::FromStr;
use lazy_static::lazy_static;
use regex::Regex;
use crate::common::{Codepoint, CodepointIter, UcdFile, UcdFileByCodepoint};
use crate::error::Error;
#[derive(Clone, Debug, Default, Eq, PartialEq)]
pub struct ArabicShaping {
pub codepoint: Codepoint,
pub schematic_name: String,
pub joining_type: JoiningType,
pub joining_group: String,
}
#[derive(Clone, Copy, Debug, Eq, PartialEq)]
pub enum JoiningType {
RightJoining,
LeftJoining,
DualJoining,
JoinCausing,
NonJoining,
Transparent,
}
impl JoiningType {
pub fn as_str(&self) -> &str {
match self {
JoiningType::RightJoining => "R",
JoiningType::LeftJoining => "L",
JoiningType::DualJoining => "D",
JoiningType::JoinCausing => "C",
JoiningType::NonJoining => "U",
JoiningType::Transparent => "T",
}
}
}
impl Default for JoiningType {
fn default() -> JoiningType {
JoiningType::NonJoining
}
}
impl FromStr for JoiningType {
type Err = Error;
fn from_str(s: &str) -> Result<JoiningType, Error> {
match s {
"R" => Ok(JoiningType::RightJoining),
"L" => Ok(JoiningType::LeftJoining),
"D" => Ok(JoiningType::DualJoining),
"C" => Ok(JoiningType::JoinCausing),
"U" => Ok(JoiningType::NonJoining),
"T" => Ok(JoiningType::Transparent),
_ => err!(
"unrecognized joining type: '{}' \
(must be one of R, L, D, C, U or T)",
s
),
}
}
}
impl UcdFile for ArabicShaping {
fn relative_file_path() -> &'static Path {
Path::new("ArabicShaping.txt")
}
}
impl UcdFileByCodepoint for ArabicShaping {
fn codepoints(&self) -> CodepointIter {
self.codepoint.into_iter()
}
}
impl FromStr for ArabicShaping {
type Err = Error;
fn from_str(line: &str) -> Result<ArabicShaping, Error> {
lazy_static! {
static ref PARTS: Regex = Regex::new(
r"(?x)
^
\s*(?P<codepoint>[A-F0-9]+)\s*;
\s*(?P<name>[^;]+)\s*;
\s*(?P<joining_type>[^;]+)\s*;
\s*(?P<joining_group>[^;]+)
$
"
)
.unwrap();
};
let caps = match PARTS.captures(line.trim()) {
Some(caps) => caps,
None => return err!("invalid ArabicShaping line"),
};
Ok(ArabicShaping {
codepoint: caps["codepoint"].parse()?,
schematic_name: caps["name"].to_string(),
joining_type: caps["joining_type"].parse()?,
joining_group: caps["joining_group"].to_string(),
})
}
}
#[cfg(test)]
mod tests {
use crate::common::Codepoint;
use super::{ArabicShaping, JoiningType};
fn codepoint(n: u32) -> Codepoint {
Codepoint::from_u32(n).unwrap()
}
fn s(string: &str) -> String {
string.to_string()
}
#[test]
fn parse1() {
let line = "0600; ARABIC NUMBER SIGN; U; No_Joining_Group\n";
let data: ArabicShaping = line.parse().unwrap();
assert_eq!(
data,
ArabicShaping {
codepoint: codepoint(0x0600),
schematic_name: s("ARABIC NUMBER SIGN"),
joining_type: JoiningType::NonJoining,
joining_group: s("No_Joining_Group")
}
);
}
#[test]
fn parse2() {
let line = "063D; FARSI YEH WITH INVERTED V ABOVE; D; FARSI YEH\n";
let data: ArabicShaping = line.parse().unwrap();
assert_eq!(
data,
ArabicShaping {
codepoint: codepoint(0x063D),
schematic_name: s("FARSI YEH WITH INVERTED V ABOVE"),
joining_type: JoiningType::DualJoining,
joining_group: s("FARSI YEH")
}
);
}
#[test]
fn parse3() {
let line =
"10D23; HANIFI ROHINGYA DOTLESS KINNA YA WITH DOT ABOVE; D; HANIFI ROHINGYA KINNA YA\n";
let data: ArabicShaping = line.parse().unwrap();
assert_eq!(
data,
ArabicShaping {
codepoint: codepoint(0x10D23),
schematic_name: s(
"HANIFI ROHINGYA DOTLESS KINNA YA WITH DOT ABOVE"
),
joining_type: JoiningType::DualJoining,
joining_group: s("HANIFI ROHINGYA KINNA YA")
}
);
}
}