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 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with
// this file, You can obtain one at https://mozilla.org/MPL/2.0/.
//! This module provides function to "clean" a text typographically.
//!
//! # Example
//!
//! ```
//! use crowbook_text_processing::clean;
//! let input = "Some 'text' whose formatting could be enhanced...";
//! let output = clean::quotes(clean::ellipsis(clean::whitespaces(input)));
//! assert_eq!(&output, "Some ‘text’ whose formatting could be enhanced…");
//! ```
use regex::Regex;
use std::borrow::Cow;
use crate::common::is_whitespace;
/// Removes unnecessary whitespaces from a String.
///
/// # Example
///
/// ```
/// use crowbook_text_processing::clean;
/// let s = clean::whitespaces(" A string with more whitespaces than needed ");
/// assert_eq!(&s, " A string with more whitespaces than needed ");
/// ```
pub fn whitespaces<'a, S: Into<Cow<'a, str>>>(input: S) -> Cow<'a, str> {
lazy_static! {
static ref REGEX: Regex = Regex::new(r"[ \x{202F}\x{2002}]{2,}?").unwrap();
}
let input = input.into();
let first = REGEX.find(&input)
.map(|mat| mat.start());
if let Some(first) = first {
let mut new_s = String::with_capacity(input.len());
new_s.push_str(&input[0..first]);
let mut previous_space = false;
for c in input[first..].chars() {
if is_whitespace(c) {
if previous_space {
// previous char already a space, don't copy it
} else {
new_s.push(c);
previous_space = true;
}
} else {
previous_space = false;
new_s.push(c);
}
}
Cow::Owned(new_s)
} else {
input
}
}
/// Class of a character
#[derive(Debug, PartialEq, Eq, PartialOrd, Clone, Copy)]
enum CharClass {
Whitespace = 0,
Punctuation,
Alphanumeric,
}
/// Get class of a character
fn char_class(c: char) -> CharClass {
if c.is_alphanumeric() {
CharClass::Alphanumeric
} else if c.is_whitespace() {
CharClass::Whitespace
} else {
CharClass::Punctuation
}
}
/// Replace ellipsis (...) with the appropriate unicode character
///
/// # Example
///
/// ```
/// use crowbook_text_processing::clean;
/// let s = clean::ellipsis("foo...");
/// assert_eq!(&s, "foo…");
/// let s = clean::ellipsis("foo. . . ");
/// assert_eq!(&s, "foo.\u{a0}.\u{a0}. "); // non breaking spaces
/// ```
pub fn ellipsis<'a, S: Into<Cow<'a, str>>>(input: S) -> Cow<'a, str> {
lazy_static! {
static ref REGEX: Regex = Regex::new(r"\.\.\.|\. \. \. ").unwrap();
static ref UNICODE_ELLIPSIS: &'static [u8] = "…".as_bytes();
static ref NB_ELLIPSIS: &'static [u8] = ". . . ".as_bytes();
static ref FULL_NB_ELLIPSIS: &'static [u8] = ". . . ".as_bytes();
}
let input = input.into();
let first = REGEX.find(&input)
.map(|mat| mat.start());
if let Some(first) = first {
let mut output: Vec<u8> = Vec::with_capacity(input.len());
output.extend_from_slice(input[0..first].as_bytes());
let rest = input[first..].bytes().collect::<Vec<_>>();
let len = rest.len();
let mut i = 0;
while i < len {
if i + 3 <= len && &rest[i..(i + 3)] == &[b'.', b'.', b'.'] {
output.extend_from_slice(*UNICODE_ELLIPSIS);
i += 3;
} else if i + 6 <= len && &rest[i..(i + 6)] == &[b'.', b' ', b'.', b' ', b'.', b' '] {
if i + 6 == len || rest[i + 6] != b'.' {
output.extend_from_slice(*NB_ELLIPSIS);
} else {
output.extend_from_slice(*FULL_NB_ELLIPSIS);
}
i += 6;
} else {
output.push(rest[i]);
i += 1;
}
}
Cow::Owned(String::from_utf8(output).unwrap())
} else {
input
}
}
/// Replace straight quotes with more typographic variants
///
/// While it should work pretty well for double quotes (`"`), the rules for single
/// quote (`'`) are more ambiguous, as it can be a quote or an apostrophe and it's not
/// that easy (and, in some circumstances, impossible without understanding the meaning
/// of the text) to get right.
///
/// # Example
///
/// ```
/// use crowbook_text_processing::clean;
/// let s = clean::quotes("\"foo\"");
/// assert_eq!(&s, "“foo”");
/// let s = clean::quotes("'foo'");
/// assert_eq!(&s, "‘foo’");
/// ```
pub fn quotes<'a, S: Into<Cow<'a, str>>>(input: S) -> Cow<'a, str> {
lazy_static! {
static ref REGEX: Regex = Regex::new("[\"\']").unwrap();
}
let input = input.into();
let first = REGEX.find(&input)
.map(|mat| mat.start());
if let Some(mut first) = first {
let mut new_s = String::with_capacity(input.len());
if first > 0 {
// Move one step backward since we might need to know if previous char was
// a letter or not
first -= 1;
// Check that it is a character boundary, else go backward
while !input.is_char_boundary(first) {
first -= 1;
}
}
new_s.push_str(&input[0..first]);
let mut chars = input[first..].chars().collect::<Vec<_>>();
let mut closing_quote = None;
let mut opened_doubles = 0;
for i in 0..chars.len() {
let c = chars[i];
let has_opened_quote = if let Some(n) = closing_quote {
i <= n
} else {
false
};
match c {
'"' => {
let prev = if i > 0 {
char_class(chars[i - 1])
} else {
CharClass::Whitespace
};
let next = if i < chars.len() - 1 {
char_class(chars[i + 1])
} else {
CharClass::Whitespace
};
if prev < next {
opened_doubles += 1;
new_s.push('“');
} else if opened_doubles > 0 {
opened_doubles -= 1;
new_s.push('”');
} else {
new_s.push('"');
}
}
'\'' => {
let prev = if i > 0 {
char_class(chars[i - 1])
} else {
CharClass::Whitespace
};
let next = if i < chars.len() - 1 {
char_class(chars[i + 1])
} else {
CharClass::Whitespace
};
let replacement = match (prev, next) {
// Elision or possessive
(CharClass::Alphanumeric, CharClass::Alphanumeric)
// | (CharClass::Punctuation, CharClass::Alphanumeric)
=> '’',
// Beginning of word, it's opening (not always though)
(x, y) if x < y
=> {
let mut is_next_closing = false;
for j in (i + 1)..chars.len() {
if chars[j] == '\'' {
if chars[j-1].is_whitespace() {
continue;
} else if j >= chars.len() - 1
|| char_class(chars[j+1]) != CharClass::Alphanumeric {
is_next_closing = true;
closing_quote = Some(j);
chars[j] = '’';
break;
}
}
}
if is_next_closing && !has_opened_quote {
'‘'
} else {
'’'
}
}
// Apostrophe at end of word, it's closing
(x, y) if x > y
=> {
'’'
},
_ => '\'',
};
new_s.push(replacement);
}
_ => new_s.push(c),
}
}
Cow::Owned(new_s)
} else {
input
}
}
/// Replace double dashes (`--`) and triple dashes (`---`) to en dash and em dash, respectively.
///
/// This function can be useful when writing literary texts, but should be used with caution
/// as double and triple dashes can have special meanings.
///
/// # Example
///
/// ```
/// use crowbook_text_processing::clean;
/// let s = clean::dashes("--- Hi, he said -- unexpectedly");
/// assert_eq!(&s, "— Hi, he said – unexpectedly");
/// ```
pub fn dashes<'a, S: Into<Cow<'a, str>>>(input: S) -> Cow<'a, str> {
lazy_static! {
static ref REGEX: Regex = Regex::new(r"\x2D\x2D").unwrap();
static ref EN_SPACE: &'static [u8] = "–".as_bytes();
static ref EM_SPACE: &'static [u8] = "—".as_bytes();
}
let input = input.into();
let first = REGEX.find(&input)
.map(|mat| mat.start());
if let Some(first) = first {
let mut output: Vec<u8> = Vec::with_capacity(input.len());
output.extend_from_slice(input[0..first].as_bytes());
let rest = input[first..].bytes().collect::<Vec<_>>();
let len = rest.len();
let mut i = 0;
while i < len {
if i + 2 <= len && &rest[i..(i + 2)] == &[b'-', b'-'] {
if i + 2 < len && rest[i + 2] == b'-' {
output.extend_from_slice(*EM_SPACE);
i += 3;
} else {
output.extend_from_slice(*EN_SPACE);
i += 2;
}
} else {
output.push(rest[i]);
i += 1;
}
}
Cow::Owned(String::from_utf8(output).unwrap())
} else {
input
}
}
/// Replaces `<<` with `«` and `>>` with `»`.
///
/// This can be useful if you need those characters (e.g. for french texts) but
/// don't have an easy access to them on your computer but, as the `dashes` function,
/// it should be used with caution, as `<<` and `>>` can also be used for other things
/// (typically to mean "very inferior to" or "very superior to").
///
/// # Example
///
/// ```
/// use crowbook_text_processing::clean;
/// let s = clean::guillemets("<< Foo >>");
/// assert_eq!(&s, "« Foo »");
/// ```
pub fn guillemets<'a, S: Into<Cow<'a, str>>>(input: S) -> Cow<'a, str> {
lazy_static! {
static ref REGEX: Regex = Regex::new(r"<<|>>").unwrap();
static ref OPENING_GUILLEMET: &'static [u8] = "«".as_bytes();
static ref CLOSING_GUILLEMET: &'static [u8] = "»".as_bytes();
}
let input = input.into();
let first = REGEX.find(&input)
.map(|mat| mat.start());
if let Some(first) = first {
let mut output: Vec<u8> = Vec::with_capacity(input.len());
output.extend_from_slice(input[0..first].as_bytes());
let rest = input[first..].bytes().collect::<Vec<_>>();
let len = rest.len();
let mut i = 0;
while i < len {
if i + 2 <= len && &rest[i..(i + 2)] == &[b'<', b'<'] {
output.extend_from_slice(*OPENING_GUILLEMET);
i += 2;
} else if i+2 <= len && &rest[i..(i + 2)] == &[b'>', b'>'] {
output.extend_from_slice(*CLOSING_GUILLEMET);
i += 2;
} else {
output.push(rest[i]);
i += 1;
}
}
Cow::Owned(String::from_utf8(output).unwrap())
} else {
input
}
}
#[test]
fn whitespaces_1() {
let s = " Remove supplementary spaces but don't trim either ";
let res = whitespaces(s);
assert_eq!(&res, " Remove supplementary spaces but don't trim either ");
}
#[test]
fn quotes_1() {
let s = "Some string without ' typographic ' quotes";
let res = quotes(s);
assert_eq!(&res, s);
}
#[test]
fn quotes_2() {
let s = quotes("\"foo\"");
assert_eq!(&s, "“foo”");
let s = quotes("'foo'");
assert_eq!(&s, "‘foo’");
}
#[test]
fn quotes_3() {
let s = quotes("\'mam, how are you?");
assert_eq!(&s, "’mam, how are you?");
}
#[test]
fn quotes_4() {
let s = quotes("some char: 'c', '4', '&'");
assert_eq!(&s, "some char: ‘c’, ‘4’, ‘&’");
}
#[test]
fn quotes_5() {
let s = quotes("It's a good day to say 'hi'");
assert_eq!(&s, "It’s a good day to say ‘hi’");
}
#[test]
fn quotes_6() {
let s = quotes("The '60s were nice, weren't they?");
assert_eq!(&s, "The ’60s were nice, weren’t they?");
}
#[test]
fn quotes_7() {
let s = quotes("Plurals' possessive");
assert_eq!(&s, "Plurals’ possessive");
}
#[test]
fn quotes_8() {
let s = quotes("\"I like 'That '70s show'\", she said");
assert_eq!(&s, "“I like ‘That ’70s show’”, she said");
}
#[test]
fn quotes_9() {
let s = quotes("some char: '!', '?', ','");
assert_eq!(&s, "some char: ‘!’, ‘?’, ‘,’");
}
#[test]
fn quotes_10() {
let s = quotes("\"'Let's try \"nested\" quotes,' he said.\"");
assert_eq!(&s, "“‘Let’s try “nested” quotes,’ he said.”");
}
#[test]
fn quotes_11() {
let s = quotes("Enhanced \"quotes\"'s heuristics");
assert_eq!(&s, "Enhanced “quotes”’s heuristics");
}
#[test]
fn quotes_12() {
let s = quotes("A double quote--\"within\" dashes--would be nice.");
assert_eq!(&s, "A double quote--“within” dashes--would be nice.");
}
#[test]
fn quotes_13() {
let s = quotes("A double quote–\"within\" dashes–would be nice.");
assert_eq!(&s, "A double quote–“within” dashes–would be nice.");
}
#[test]
fn ellipsis_0() {
let s = ellipsis("Foo...");
assert_eq!(&s, "Foo…");
}
#[test]
fn ellipsis_1() {
let s = ellipsis("Foo... Bar");
assert_eq!(&s, "Foo… Bar");
}
#[test]
fn ellipsis_2() {
let s = ellipsis("foo....");
assert_eq!(&s, "foo….");
}
#[test]
fn ellipsis_3() {
let s = ellipsis("foo. . . ");
assert_eq!(&s, "foo. . . ");
}
#[test]
fn ellipsis_4() {
let s = ellipsis("foo. . . .");
assert_eq!(&s, "foo. . . .");
}
#[test]
fn ellipsis_5() {
let s = ellipsis("foo..");
assert_eq!(&s, "foo..");
}
#[test]
fn dashes_0() {
let s = dashes("foo - bar");
assert_eq!(&s, "foo - bar");
}
#[test]
fn dashes_1() {
let s = dashes("foo -- bar");
assert_eq!(&s, "foo – bar");
}
#[test]
fn dashes_2() {
let s = dashes("foo --- bar");
assert_eq!(&s, "foo — bar");
}
#[test]
fn dashes_3() {
let s = dashes("foo --- bar--");
assert_eq!(&s, "foo — bar–");
}
#[test]
fn guillemets_1() {
let s = guillemets("<< Foo >>");
assert_eq!(&s, "« Foo »");
}
#[test]
fn guillemets_2() {
let s = guillemets("<< Foo");
assert_eq!(&s, "« Foo");
}
#[test]
fn guillemets_3() {
let s = guillemets("Foo >>");
assert_eq!(&s, "Foo »");
}
#[test]
fn guillemets_4() {
let s = guillemets("<< Foo < Bar >>");
assert_eq!(&s, "« Foo < Bar »");
}