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 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597
// 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/.
use std::borrow::Cow;
use std::default::Default;
use crate::common::{NB_CHAR, NB_CHAR_NARROW, NB_CHAR_EM};
use crate::common::is_whitespace;
use crate::clean;
use crate::escape;
/// French typographic formatter.
///
/// The purpose of this struct is to try to make a text more typographically correct,
/// according to french typographic rules. This means:
///
/// * making spaces before `?`, `!`, `;` narrow non-breaking space;
/// * making spaces before `:` non-breaking space;
/// * making space after `—` for dialog a demi em space;
/// * making spaces after `«` and before `»` non-breking space or narrow non-breking space,
/// according to the circumstances (dialog or a few quoted words).
/// * making spaces in numbers, e.g. `80 000` or `50 €` narrow and non-breaking.
///
/// Additionally, this feature use functions that are "generic" (not specific to french language)
/// in order to:
///
/// * replace straight quotes (`'` and `"`) with curly, typographic ones;
/// * replace ellipsis (`...`) with the unicode character (`…`).
///
/// As some of these features require a bit of guessing sometimes, there are some paremeters that
/// can be set if you want better results.
///
/// # Example
///
/// ```
/// use crowbook_text_processing::FrenchFormatter;
/// let input = "Un texte à 'formater', n'est-ce pas ?";
/// let output = FrenchFormatter::new()
/// .typographic_ellipsis(false) // don't replace ellipsis
/// .format_tex(input); // format to tex (so non-breaking
/// // spaces are visible in assert_eq!)
/// assert_eq!(&output, "Un texte à ‘formater’, n’est-ce pas\\,?");
/// ```
#[derive(Debug)]
pub struct FrenchFormatter {
/// After that number of characters, assume it's not a currency
threshold_currency: usize,
/// After that number of characters assume it's not an unit
threshold_unit: usize,
/// After that number of characters, assume it is a dialog
threshold_quote: usize,
/// After that number of characters, assume it isn't an abbreviation
threshold_real_word: usize,
/// Enable typographic apostrophe
typographic_quotes: bool,
/// Enaple typographic ellipsis
typographic_ellipsis: bool,
/// Enable dashes replacement
ligature_dashes: bool,
/// Enable guillemets replacement
ligature_guillemets: bool,
}
impl Default for FrenchFormatter {
fn default() -> Self {
FrenchFormatter {
threshold_currency: 3,
threshold_unit: 2,
threshold_quote: 20,
threshold_real_word: 3,
typographic_quotes: true,
typographic_ellipsis: true,
ligature_dashes: false,
ligature_guillemets: false,
}
}
}
impl FrenchFormatter {
/// Create a new FrenchFormatter with default settings
pub fn new() -> Self {
Self::default()
}
/// Sets the threshold currency.
///
/// After that number of characters, assume it's not a currency
///
/// Default is `3`.
pub fn threshold_currency(&mut self, t: usize) -> &mut Self {
self.threshold_currency = t;
self
}
/// Sets the threshold for unit.
///
/// After that number of characters, assume it's not an unit.
///
/// Default is `2`.
pub fn threshold_unit(&mut self, t: usize) -> &mut Self {
self.threshold_unit = t;
self
}
/// Sets the threshold for quote.
///
/// After that number of characters, assume it's not a quote of a single
/// word or a few words, but a dialog.
///
/// Default is `20`.
pub fn threshold_quote(&mut self, t: usize) -> &mut Self {
self.threshold_quote = t;
self
}
/// Sets the threshold for real word.
///
/// After that number of characters, assume it's not an abbreviation
/// but a real word (used to determine if `.` marks the end of a sentence
/// or just a title such as `M. Dupuis`.
///
/// Default is `3`
pub fn threshold_real_word(&mut self, t: usize) -> &mut Self {
self.threshold_real_word = t;
self
}
/// Enables the typographic quotes replacement.
///
/// If true, "L'" will be replaced by "L’"
///
/// Default is true
pub fn typographic_quotes(&mut self, b: bool) -> &mut Self {
self.typographic_quotes = b;
self
}
/// Enables typographic ellipsis replacement.
///
/// If true, "..." will be replaced by "…"
///
/// Default is true
pub fn typographic_ellipsis(&mut self, b: bool) -> &mut Self {
self.typographic_ellipsis = b;
self
}
/// If set to true, replaces `--`to `–` and `---` to `—`.
///
/// Default is false.
pub fn ligature_dashes(&mut self, b: bool) -> &mut Self {
self.ligature_dashes = b;
self
}
/// If set to true, replaces `<<` to `«` and `>>` to `»`.
///
/// Default is false.
pub fn ligature_guillemets(&mut self, b: bool) -> &mut Self {
self.ligature_guillemets = b;
self
}
/// (Try to) Format a string according to french typographic rules.
///
/// This method should be called for each paragraph, as it makes some suppositions that
/// the beginning of the string also means the beginning of a line.
///
/// This method calls `remove_whitespaces` internally, as it relies on it.
///
/// # Example
///
/// ```
/// use crowbook_text_processing::FrenchFormatter;
/// let f = FrenchFormatter::new();
/// let s = f.format("« Est-ce bien formaté ? » se demandait-elle — les espaces \
/// insécables étaient tellement compliquées à gérer,
/// dans cette langue !");
/// println!("{}", s);
/// ```
pub fn format<'a, S: Into<Cow<'a, str>>>(&self, input: S) -> Cow<'a, str> {
let mut input = clean::whitespaces(input); // first pass to remove whitespaces
if self.ligature_dashes {
input = clean::dashes(input);
}
if self.ligature_guillemets {
input = clean::guillemets(input);
}
if self.typographic_quotes {
input = clean::quotes(input);
}
if self.typographic_ellipsis {
input = clean::ellipsis(input);
}
// Find first characters that are trouble
let first = input.chars().position(is_trouble);
let first_number = input.chars().position(|c| c.is_digit(10));
// No need to do anything, return early
if first.is_none() && first_number.is_none() {
return input;
}
let (nb_char, nb_char_em, nb_char_narrow) = (NB_CHAR, NB_CHAR_EM, NB_CHAR_NARROW);
let mut chars = input.chars().collect::<Vec<_>>();
let mut is_number_series = false;
// Handle numbers
if let Some(first) = first_number {
// Go back one step
let first = if first > 1 { first - 1 } else { 0 };
for i in first..(chars.len() - 1) {
// Handle numbers (that's easy)
let current = chars[i];
let next = chars[i + 1];
match current {
'0'..='9' => {
if i == 0 || !chars[i - 1].is_alphabetic() {
is_number_series = true;
}
}
c if c.is_whitespace() => {
if is_number_series &&
(next.is_digit(10) || self.char_is_symbol(&chars, i + 1)) {
// Next char is a number or symbol such as $, and previous was number
chars[i] = nb_char_narrow;
}
}
_ => {
is_number_series = false;
}
}
}
}
// Handle the rest
if let Some(first) = first {
// Go back one step
let first = if first > 1 { first - 1 } else { 0 };
for i in first..(chars.len() - 1) {
let current = chars[i];
let next = chars[i + 1];
if is_whitespace(current) {
match next {
// handle narrow nb space before char
'?' | '!' | ';' => chars[i] = nb_char_narrow,
':' => chars[i] = nb_char,
'»' => {
if current == ' ' {
// Assumne that if it isn't a normal space it
// was used here for good reason, don't replace it
chars[i] = nb_char;
}
}
_ => (),
}
} else {
match current {
// handle nb space after char
'—' | '«' | '-' | '–' => {
if is_whitespace(next) {
let replacing_char = match current {
'—' | '-' | '–' => {
if i <= 1 {
nb_char_em
} else if chars[i - 1] == nb_char {
// non breaking space before, so probably
// should have a breakable one after
' '
} else {
if let Some(closing) =
self.find_closing_dash(&chars, i + 1) {
chars[closing] = nb_char;
}
nb_char
}
}
'«' => {
let j = find_next(&chars, '»', i);
if let Some(j) = j {
if chars[j - 1].is_whitespace() {
if i <= 1 ||
j - i > self.threshold_quote {
// Either '«' was at the beginning
// => assume it is a dialogue
// or it's a quote
// => 'large' space too
chars[j - 1] = nb_char;
nb_char
} else {
// Not long enough to be a quote,
// use narrow nb char
chars[j - 1] = nb_char_narrow;
nb_char_narrow
}
} else {
// wtf formatting?
nb_char
}
} else {
// No ending quote found, assume is a dialogue
nb_char
}
}, // TODO: better heuristic: use narrow nb_char if not at front?
_ => unreachable!(),
};
chars[i + 1] = replacing_char;
}
}
_ => (),
}
}
}
}
Cow::Owned(chars.into_iter().collect())
}
/// (Try to) Format a string according to french typographic rules, escape the characters
/// that need to be escaped in LaTeX (e.g. backslashes) and use TeX commands ("~", "\enspace" "and "\,")
/// for non-breaking spaces so it works correctly with some LaTeX versions (and it makes
/// the non-breaking spaces shenanigans more visible with most editors)
///
/// # Example
///
/// ```
/// use crowbook_text_processing::FrenchFormatter;
/// let f = FrenchFormatter::new();
/// let s = f.format_tex("« Est-ce bien formaté ? »");
/// assert_eq!(&s, "«~Est-ce bien formaté\\,?~»");
/// ```
pub fn format_tex<'a, S: Into<Cow<'a, str>>>(&self, input: S) -> Cow<'a, str> {
escape::nb_spaces_tex(escape::tex(self.format(input)))
}
/// (Try to) Format a string according to french typographic rules, and escape the characters
/// that need to be escaped in HTML (e.g. &). Also use HTML commands instead
/// of unicode for narrow non-breaking spaces. See `escape::nb_spaces_html`. It's a bit of a hack
/// to make it work in most browsers/ereaders.
pub fn format_html<'a, S: Into<Cow<'a, str>>>(&self, input: S) -> Cow<'a, str> {
escape::nb_spaces_html(escape::html(self.format(input)))
}
/// Return true if the character is a symbol that is used after number
/// and should have a nb_char before
fn char_is_symbol(&self, v: &[char], i: usize) -> bool {
let is_next_letter = if i < v.len() - 1 {
v[i + 1].is_alphabetic()
} else {
false
};
if is_next_letter {
match v[i] {
'°' => true,
c if c.is_uppercase() => {
let word = get_next_word(v, i);
if word.len() > self.threshold_currency {
// not a currency
false
} else {
// if all uppercase and less than THRESHOLD,
// assume it's a currency or a unit
word.iter().all(|c| c.is_uppercase())
}
}
c if c.is_alphabetic() => {
let word = get_next_word(v, i);
// if two letters, assume it is a unit
word.len() <= self.threshold_unit
}
_ => false,
}
} else {
match v[i] {
c if (!c.is_alphabetic() && !c.is_whitespace()) => true, // special symbol
c if c.is_uppercase() => true, //single uppercase letter
_ => false,
}
}
}
// Return Some(pos) if a closing dash was found before what looks
// like the end of a sentence, None else
fn find_closing_dash(&self, v: &[char], n: usize) -> Option<usize> {
let mut word = String::new();
for j in n..v.len() {
match v[j] {
'!' | '?' => {
if is_next_char_uppercase(v, j + 1) {
return None;
}
}
'-' | '–' | '—' => {
if v[j - 1].is_whitespace() {
return Some(j - 1);
}
}
'.' => {
if !is_next_char_uppercase(v, j + 1) {
continue;
} else if let Some(c) = word.chars().next() {
if !c.is_uppercase() || word.len() > self.threshold_real_word {
return None;
}
}
}
c if c.is_whitespace() => word = String::new(),
c => word.push(c),
}
}
None
}
}
fn is_trouble(c: char) -> bool {
match c {
'?' | '!' | ';' | ':' | '»' | '«' | '—' | '–' => true,
_ => false,
}
}
// Find first char `c` in slice `v` after index `n`
fn find_next(v: &[char], c: char, n: usize) -> Option<usize> {
for (i, car) in v.iter()
.enumerate()
.skip(n) {
if *car == c {
return Some(i);
}
}
None
}
// Return true if next non whitespace char in `v` after index `n` is uppercase
fn is_next_char_uppercase(v: &[char], n: usize) -> bool {
for i in n..v.len() {
if v[i].is_whitespace() {
continue;
}
if v[i].is_uppercase() {
return true;
}
if v[i].is_lowercase() {
return false;
}
}
false
}
/// Returns the next word in `v` starting from index `n`
fn get_next_word(v: &[char], n: usize) -> &[char] {
let mut beginning = n;
let mut end = v.len();
for (i, car) in v.iter()
.enumerate()
.skip(n) {
if car.is_alphabetic() {
beginning = i;
break;
}
}
for (i, car) in v.iter()
.enumerate()
.skip(beginning) {
if car.is_whitespace() {
end = i - 1;
break;
}
}
&v[beginning..end]
}
#[cfg(test)]
#[test]
fn french() {
let s = " « Comment allez-vous ? » demanda-t-elle à son \
interlocutrice qui lui répondit \
: « Mais très bien ma chère ! »";
let res = FrenchFormatter::new().format(s);
assert_eq!(&res,
" « Comment allez-vous ? » demanda-t-elle à son \
interlocutrice qui lui répondit : \
« Mais très bien ma chère ! »");
}
#[test]
fn french_quotes_1() {
let s = "« Un test »";
let res = FrenchFormatter::new().format_tex(s);
assert_eq!(&res, "«~Un test~»");
}
#[test]
fn french_quotes_2() {
let s = "« Un test";
let res = FrenchFormatter::new().format_tex(s);
assert_eq!(&res, "«~Un test");
}
#[test]
fn french_quotes_3() {
let s = "Un test »";
let res = FrenchFormatter::new().format_tex(s);
assert_eq!(&res, "Un test~»");
}
#[test]
fn french_quotes_4() {
let s = "test « court »";
let res = FrenchFormatter::new().format(s);
assert_eq!(&res, "test « court »");
}
#[test]
fn french_quotes_5() {
let s = "test « beaucoup, beaucoup plus long »";
let res = FrenchFormatter::new().format(s);
assert_eq!(&res, "test « beaucoup, beaucoup plus long »");
}
#[test]
fn french_dashes_1() {
let s = "Il faudrait gérer ces tirets – sans ça certains textes rendent mal – un jour ou \
l'autre";
let res = FrenchFormatter::new().format_tex(s);
assert_eq!(&res,
"Il faudrait gérer ces tirets –~sans ça certains textes \
rendent mal~– un jour ou l’autre");
}
#[test]
fn french_dashes_2() {
let s = "Il faudrait gérer ces tirets – sans ça certains textes rendent mal. Mais ce n'est \
pas si simple – si ?";
let res = FrenchFormatter::new().format_tex(s);
assert_eq!(&res,
"Il faudrait gérer ces tirets –~sans ça certains textes rendent mal. Mais ce \
n’est pas si simple –~si\\,?");
}
#[test]
fn french_numbers() {
let french = FrenchFormatter::new();
let s = Cow::Borrowed("10 000");
let res = french.format_tex(s);
assert_eq!(&res, "10\\,000");
let s = Cow::Borrowed("10 000 €");
let res = french.format_tex(s);
assert_eq!(&res, "10\\,000\\,€");
let s = Cow::Borrowed("10 000 euros");
let res = french.format_tex(s);
assert_eq!(&res, "10\\,000 euros");
let s = Cow::Borrowed("10 000 EUR");
let res = french.format_tex(s);
assert_eq!(&res, "10\\,000\\,EUR");
let s = Cow::Borrowed("50 km");
let res = french.format_tex(s);
assert_eq!(&res, "50\\,km");
let s = Cow::Borrowed("50 %");
let res = french.format_tex(s);
assert_eq!(&res, "50\\,\\%");
let s = Cow::Borrowed("20 °C");
let res = french.format_tex(s);
assert_eq!(&res, "20\\,°C");
let s = Cow::Borrowed("20 F");
let res = french.format_tex(s);
assert_eq!(&res, "20\\,F");
let s = Cow::Borrowed("20 BALLES");
let res = french.format_tex(s);
assert_eq!(&res, "20 BALLES");
}