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
// This file is part of the pgn-reader library.
// Copyright (C) 2017-2022 Niklas Fiekas <niklas.fiekas@backscattering.de>
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
use std::{
borrow::Cow,
error::Error,
fmt,
str::{self, FromStr, Utf8Error},
};
/// Tell the reader to skip over a game or variation.
#[derive(Clone, Eq, PartialEq, Debug)]
#[must_use]
pub struct Skip(pub bool);
/// A numeric annotation glyph like `?`, `!!` or `$42`.
#[derive(Clone, Eq, PartialEq, Ord, PartialOrd, Hash, Debug)]
pub struct Nag(pub u8);
impl Nag {
/// Tries to parse a NAG from ASCII.
///
/// # Examples
///
/// ```
/// use pgn_reader::Nag;
///
/// assert_eq!(Nag::from_ascii(b"??"), Ok(Nag(4)));
/// assert_eq!(Nag::from_ascii(b"$24"), Ok(Nag(24)));
/// ```
///
/// # Errors
///
/// Returns an [`InvalidNag`] error if the input is neither a known glyph
/// (`?!`, `!`, ...) nor a valid numeric annotation (`$0`, ..., `$255`).
///
///
/// [`InvalidNag`]: struct.InvalidNag.html
pub fn from_ascii(s: &[u8]) -> Result<Nag, InvalidNag> {
if s == b"?!" {
Ok(Nag::DUBIOUS_MOVE)
} else if s == b"?" {
Ok(Nag::MISTAKE)
} else if s == b"??" {
Ok(Nag::BLUNDER)
} else if s == b"!" {
Ok(Nag::GOOD_MOVE)
} else if s == b"!!" {
Ok(Nag::BRILLIANT_MOVE)
} else if s == b"!?" {
Ok(Nag::SPECULATIVE_MOVE)
} else if s.len() > 1 && s[0] == b'$' {
btoi::btou(&s[1..])
.ok()
.map(Nag)
.ok_or(InvalidNag { _priv: () })
} else {
Err(InvalidNag { _priv: () })
}
}
/// A good move (`!`).
pub const GOOD_MOVE: Nag = Nag(1);
/// A mistake (`?`).
pub const MISTAKE: Nag = Nag(2);
/// A brilliant move (`!!`).
pub const BRILLIANT_MOVE: Nag = Nag(3);
/// A blunder (`??`).
pub const BLUNDER: Nag = Nag(4);
/// A speculative move (`!?`).
pub const SPECULATIVE_MOVE: Nag = Nag(5);
/// A dubious move (`?!`).
pub const DUBIOUS_MOVE: Nag = Nag(6);
}
impl fmt::Display for Nag {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
write!(f, "${}", self.0)
}
}
impl From<u8> for Nag {
fn from(nag: u8) -> Nag {
Nag(nag)
}
}
/// Error when parsing an invalid NAG.
#[derive(Clone, Eq, PartialEq)]
pub struct InvalidNag {
_priv: (),
}
impl fmt::Debug for InvalidNag {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
f.debug_struct("InvalidNag").finish()
}
}
impl fmt::Display for InvalidNag {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
"invalid nag".fmt(f)
}
}
impl Error for InvalidNag {
fn description(&self) -> &str {
"invalid nag"
}
}
impl FromStr for Nag {
type Err = InvalidNag;
fn from_str(s: &str) -> Result<Nag, InvalidNag> {
Nag::from_ascii(s.as_bytes())
}
}
/// A header value.
///
/// Provides helper methods for decoding [backslash
/// escaped](http://www.saremba.de/chessgml/standards/pgn/pgn-complete.htm#c7)
/// values.
///
/// > A quote inside a string is represented by the backslash immediately
/// > followed by a quote. A backslash inside a string is represented by
/// > two adjacent backslashes.
#[derive(Clone, Eq, PartialEq)]
pub struct RawHeader<'a>(pub &'a [u8]);
impl<'a> RawHeader<'a> {
/// Returns the raw byte representation of the header value.
pub fn as_bytes(&self) -> &[u8] {
self.0
}
/// Decodes escaped quotes and backslashes into bytes. Allocates only when
/// the value actually contains escape sequences.
pub fn decode(&self) -> Cow<'a, [u8]> {
let mut head = 0;
let mut decoded: Vec<u8> = Vec::new();
for escape in memchr::memchr_iter(b'\\', self.0) {
match self.0.get(escape + 1).cloned() {
Some(ch) if ch == b'\\' || ch == b'"' => {
decoded.extend_from_slice(&self.0[head..escape]);
head = escape + 1;
}
_ => (),
}
}
if head == 0 {
Cow::Borrowed(self.0)
} else {
decoded.extend_from_slice(&self.0[head..]);
Cow::Owned(decoded)
}
}
/// Tries to decode the header as UTF-8. This is guaranteed to succeed on
/// valid PGNs.
///
/// # Errors
///
/// Errors if the header contains an invalid UTF-8 byte sequence.
pub fn decode_utf8(&self) -> Result<Cow<'a, str>, Utf8Error> {
Ok(match self.decode() {
Cow::Borrowed(borrowed) => Cow::Borrowed(str::from_utf8(borrowed)?),
Cow::Owned(owned) => Cow::Owned(String::from_utf8(owned).map_err(|e| e.utf8_error())?),
})
}
/// Decodes the header as UTF-8, replacing any invalid byte sequences with
/// the placeholder � U+FFFD.
pub fn decode_utf8_lossy(&self) -> Cow<'a, str> {
match self.decode() {
Cow::Borrowed(borrowed) => String::from_utf8_lossy(borrowed),
Cow::Owned(owned) => Cow::Owned(String::from_utf8_lossy(&owned).into_owned()),
}
}
}
impl<'a> fmt::Debug for RawHeader<'a> {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
write!(f, "{:?}", self.decode_utf8_lossy())
}
}
/// A comment, excluding the braces.
#[derive(Clone, Eq, PartialEq)]
pub struct RawComment<'a>(pub &'a [u8]);
impl<'a> RawComment<'a> {
/// Returns the raw byte representation of the comment.
pub fn as_bytes(&self) -> &[u8] {
self.0
}
}
impl<'a> fmt::Debug for RawComment<'a> {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
write!(f, "{:?}", String::from_utf8_lossy(self.as_bytes()).as_ref())
}
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn test_nag() {
assert_eq!(Nag::from_ascii(b"$33"), Ok(Nag(33)));
}
#[test]
fn test_raw_header() {
let header = RawHeader(b"Hello world");
assert_eq!(header.decode().as_ref(), b"Hello world");
let header = RawHeader(b"Hello \\world\\");
assert_eq!(header.decode().as_ref(), b"Hello \\world\\");
let header = RawHeader(b"\\Hello \\\"world\\\\");
assert_eq!(header.decode().as_ref(), b"\\Hello \"world\\");
}
}