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 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265
//! This module contains the implementation and traits for the
//! String classes such as it is defined by the PRECIS framework
//! [`rfc8264`](https://datatracker.ietf.org/doc/html/rfc8264#section-4)
use crate::common;
use crate::context;
use crate::DerivedPropertyValue;
use crate::{CodepointInfo, Error, UnexpectedError};
/// Interface for specific classes to deal with specific Unicode
/// code groups defined in RFC 8264.
/// Next callbacks will be invoked to calculate the derived property
/// according to the algorithm defined in [`rfc8264`](https://datatracker.ietf.org/doc/html/rfc8264#section-8)
pub trait SpecificDerivedPropertyValue {
/// Callback invoked when the Unicode code point belongs to
/// [Spaces](https://datatracker.ietf.org/doc/html/rfc8264#section-9.14)
fn on_spaces(&self) -> DerivedPropertyValue;
/// Callback invoked when the Unicode code point belongs to
/// [Symbols](https://datatracker.ietf.org/doc/html/rfc8264#section-9.15)
fn on_symbols(&self) -> DerivedPropertyValue;
/// Callback invoked when the Unicode code point belongs to
/// [Punctuation](https://datatracker.ietf.org/doc/html/rfc8264#section-9.16)
fn on_punctuation(&self) -> DerivedPropertyValue;
/// Callback invoked when the Unicode code point belongs to
/// [`HasCompat`](https://datatracker.ietf.org/doc/html/rfc8264#section-9.17)
fn on_has_compat(&self) -> DerivedPropertyValue;
/// Callback invoked when the Unicode code point belongs to
/// [`OtherLetterDigits`](https://datatracker.ietf.org/doc/html/rfc8264#section-9.18)
fn on_other_letter_digits(&self) -> DerivedPropertyValue;
}
/// Implements the algorithm to calculate the value of the derived property.
/// This algorithm is as follows (implementations MUST NOT modify the order
/// of operations within this algorithm, because doing so would cause
/// inconsistent results across implementations):
///
/// > If .`cp`. .in. `Exceptions` Then `Exceptions`(`cp`);\
/// > Else If .`cp`. .in. `BackwardCompatible` Then `BackwardCompatible`(`cp`);\
/// > Else If .`cp`. .in. `Unassigned` Then `UNASSIGNED`;\
/// > Else If .`cp`. .in. `ASCII7` Then `PVALID`;\
/// > Else If .`cp`. .in. `JoinControl` Then `CONTEXTJ`;\
/// > Else If .`cp`. .in. `OldHangulJamo` Then `DISALLOWED`;\
/// > Else If .`cp`. .in. `PrecisIgnorableProperties` Then `DISALLOWED`;\
/// > Else If .`cp`. .in. `Controls` Then `DISALLOWED`;\
/// > Else If .`cp`. .in. `HasCompat` Then `ID_DIS` or `FREE_PVAL`;\
/// > Else If .`cp`. .in. `LetterDigits` Then `PVALID`;\
/// > Else If .`cp`. .in. `OtherLetterDigits` Then `ID_DIS` or `FREE_PVAL`;\
/// > Else If .`cp`. .in. `Spaces` Then `ID_DIS` or `FREE_PVAL`;\
/// > Else If .`cp`. .in. `Symbols` Then `ID_DIS` or `FREE_PVAL`;\
/// > Else If .`cp`. .in. `Punctuation` Then `ID_DIS` or `FREE_PVAL`;\
/// > Else DISALLOWED;\
///
/// # Arguments
/// * `cp` - Unicode code point
/// * `obj` - Object implementing the [`SpecificDerivedPropertyValue`] trait.
///
/// # Return
/// This function returns the derived property value as defined in
/// [RFC 8264](https://datatracker.ietf.org/doc/html/rfc8264#section-8)
#[allow(clippy::if_same_then_else)]
fn get_derived_property_value(
cp: u32,
obj: &dyn SpecificDerivedPropertyValue,
) -> DerivedPropertyValue {
match common::get_exception_val(cp) {
Some(val) => *val,
None => match common::get_backward_compatible_val(cp) {
Some(val) => *val,
None => {
if common::is_unassigned(cp) {
DerivedPropertyValue::Unassigned
} else if common::is_ascii7(cp) {
DerivedPropertyValue::PValid
} else if common::is_join_control(cp) {
DerivedPropertyValue::ContextJ
} else if common::is_old_hangul_jamo(cp) {
DerivedPropertyValue::Disallowed
} else if common::is_precis_ignorable_property(cp) {
DerivedPropertyValue::Disallowed
} else if common::is_control(cp) {
DerivedPropertyValue::Disallowed
} else if common::has_compat(cp) {
obj.on_has_compat()
} else if common::is_letter_digit(cp) {
DerivedPropertyValue::PValid
} else if common::is_other_letter_digit(cp) {
obj.on_other_letter_digits()
} else if common::is_space(cp) {
obj.on_spaces()
} else if common::is_symbol(cp) {
obj.on_symbols()
} else if common::is_punctuation(cp) {
obj.on_punctuation()
} else {
DerivedPropertyValue::Disallowed
}
}
},
}
}
fn allowed_by_context_rule(
label: &str,
val: DerivedPropertyValue,
cp: u32,
offset: usize,
) -> Result<(), Error> {
match context::get_context_rule(cp) {
None => Err(Error::Unexpected(UnexpectedError::MissingContextRule(
CodepointInfo::new(cp, offset, val),
))),
Some(rule) => match rule(label, offset) {
Ok(allowed) => {
if allowed {
Ok(())
} else {
Err(Error::BadCodepoint(CodepointInfo::new(cp, offset, val)))
}
}
Err(e) => match e {
context::ContextRuleError::NotApplicable => Err(Error::Unexpected(
UnexpectedError::ContextRuleNotApplicable(CodepointInfo::new(cp, offset, val)),
)),
context::ContextRuleError::Undefined => {
Err(Error::Unexpected(UnexpectedError::Undefined))
}
},
},
}
}
/// Base interface for all String classes in PRECIS framework.
pub trait StringClass {
/// Gets the derived property value according to the algorithm defined
/// in [`rfc8264`](https://datatracker.ietf.org/doc/html/rfc8264#section-8)
/// # Arguments
/// * `c`- Unicode character
/// # Return
/// This method returns the derived property value associated to a Unicode character
fn get_value_from_char(&self, c: char) -> DerivedPropertyValue;
/// Gets the derived property value according to the algorithm defined
/// in [`rfc8264`](https://datatracker.ietf.org/doc/html/rfc8264#section-8)
/// # Arguments:
/// * `cp`- Unicode code point
/// # Return
/// This method returns the derived property value associated to a Unicode character
fn get_value_from_codepoint(&self, cp: u32) -> DerivedPropertyValue;
/// Ensures that the string consists only of Unicode code points that
/// are explicitly allowed by the PRECIS
/// [String Class](https://datatracker.ietf.org/doc/html/rfc8264#section-4)
/// # Arguments:
/// * `label` - string to check
/// # Returns
/// true if all character of `label` are allowed by the String Class.
fn allows(&self, label: &str) -> Result<(), Error> {
for (offset, c) in label.chars().enumerate() {
let val = self.get_value_from_char(c);
match val {
DerivedPropertyValue::PValid | DerivedPropertyValue::SpecClassPval => Ok(()),
DerivedPropertyValue::SpecClassDis
| DerivedPropertyValue::Disallowed
| DerivedPropertyValue::Unassigned => Err(Error::BadCodepoint(CodepointInfo::new(
c as u32, offset, val,
))),
DerivedPropertyValue::ContextJ | DerivedPropertyValue::ContextO => {
allowed_by_context_rule(label, val, c as u32, offset)
}
}?
}
Ok(())
}
}
/// Concrete class representing PRECIS `IdentifierClass` from
/// [RFC 8264](https://datatracker.ietf.org/doc/html/rfc8264#section-4.2).
/// # Example
/// ```rust
/// use precis_core::{DerivedPropertyValue,IdentifierClass,StringClass};
///
/// let id = IdentifierClass {};
/// // character 𐍁 is OtherLetterDigits (R)
/// assert_eq!(id.get_value_from_char('𐍁'), DerivedPropertyValue::SpecClassDis);
/// // Character S is ASCII7 (K)
/// assert_eq!(id.get_value_from_char('S'), DerivedPropertyValue::PValid);
/// // Character 0x1170 is OldHangulJamo (I)
/// assert_eq!(id.get_value_from_codepoint(0x1170), DerivedPropertyValue::Disallowed);
/// ```
pub struct IdentifierClass {}
impl SpecificDerivedPropertyValue for IdentifierClass {
// `ID_DIS` mapped to `SPEC_CLASS_DIS`
fn on_has_compat(&self) -> DerivedPropertyValue {
DerivedPropertyValue::SpecClassDis
}
fn on_other_letter_digits(&self) -> DerivedPropertyValue {
DerivedPropertyValue::SpecClassDis
}
fn on_spaces(&self) -> DerivedPropertyValue {
DerivedPropertyValue::SpecClassDis
}
fn on_symbols(&self) -> DerivedPropertyValue {
DerivedPropertyValue::SpecClassDis
}
fn on_punctuation(&self) -> DerivedPropertyValue {
DerivedPropertyValue::SpecClassDis
}
}
impl StringClass for IdentifierClass {
fn get_value_from_char(&self, c: char) -> DerivedPropertyValue {
get_derived_property_value(c as u32, self)
}
fn get_value_from_codepoint(&self, cp: u32) -> DerivedPropertyValue {
get_derived_property_value(cp, self)
}
}
/// Concrete class representing PRECIS `FreeformClass` from
/// [RFC 8264](https://datatracker.ietf.org/doc/html/rfc8264#section-4.3).
/// # Example
/// ```rust
/// use precis_core::{DerivedPropertyValue,FreeformClass,StringClass};
///
/// let ff = FreeformClass {};
/// // character 𐍁 is OtherLetterDigits (R)
/// assert_eq!(ff.get_value_from_char('𐍁'), DerivedPropertyValue::SpecClassPval);
/// // Character S is ASCII7 (K)
/// assert_eq!(ff.get_value_from_char('S'), DerivedPropertyValue::PValid);
/// // Character 0x1170 is OldHangulJamo (I)
/// assert_eq!(ff.get_value_from_codepoint(0x1170), DerivedPropertyValue::Disallowed);
/// ```
pub struct FreeformClass {}
impl SpecificDerivedPropertyValue for FreeformClass {
fn on_has_compat(&self) -> DerivedPropertyValue {
DerivedPropertyValue::SpecClassPval
}
fn on_other_letter_digits(&self) -> DerivedPropertyValue {
DerivedPropertyValue::SpecClassPval
}
fn on_spaces(&self) -> DerivedPropertyValue {
DerivedPropertyValue::SpecClassPval
}
fn on_symbols(&self) -> DerivedPropertyValue {
DerivedPropertyValue::SpecClassPval
}
fn on_punctuation(&self) -> DerivedPropertyValue {
DerivedPropertyValue::SpecClassPval
}
}
impl StringClass for FreeformClass {
fn get_value_from_char(&self, c: char) -> DerivedPropertyValue {
get_derived_property_value(c as u32, self)
}
fn get_value_from_codepoint(&self, cp: u32) -> DerivedPropertyValue {
get_derived_property_value(cp, self)
}
}