use std::path::Path;
use crate::{
common::{Codepoint, CodepointIter, UcdFile, UcdFileByCodepoint},
error::Error,
};
#[derive(Clone, Debug, Default, Eq, PartialEq)]
pub struct JamoShortName {
pub codepoint: Codepoint,
pub name: String,
}
impl UcdFile for JamoShortName {
fn relative_file_path() -> &'static Path {
Path::new("Jamo.txt")
}
}
impl UcdFileByCodepoint for JamoShortName {
fn codepoints(&self) -> CodepointIter {
self.codepoint.into_iter()
}
}
impl std::str::FromStr for JamoShortName {
type Err = Error;
fn from_str(line: &str) -> Result<JamoShortName, Error> {
let re_parts = regex!(
r"(?x)
^
(?P<codepoint>[A-Z0-9]+);
\s*
(?P<name>[A-Z]*)
",
);
let caps = match re_parts.captures(line.trim()) {
Some(caps) => caps,
None => return err!("invalid Jamo_Short_name line"),
};
Ok(JamoShortName {
codepoint: caps["codepoint"].parse()?,
name: caps.name("name").unwrap().as_str().to_string(),
})
}
}
#[cfg(test)]
mod tests {
use super::JamoShortName;
#[test]
fn parse1() {
let line = "1164; YAE # HANGUL JUNGSEONG YAE\n";
let row: JamoShortName = line.parse().unwrap();
assert_eq!(row.codepoint, 0x1164);
assert_eq!(row.name, "YAE");
}
#[test]
fn parse2() {
let line = "110B; # HANGUL CHOSEONG IEUNG\n";
let row: JamoShortName = line.parse().unwrap();
assert_eq!(row.codepoint, 0x110B);
assert_eq!(row.name, "");
}
}