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 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869
//! Various helpers and companion code for the parser are put here to keep the grammar definition
//! uncluttered.
use indexmap::map::Entry;
use std::fmt::Debug;
use std::rc::Rc;
use codespan::FileId;
use super::error::ParseError;
use crate::{
destructuring::FieldPattern,
eval::operation::RecPriority,
identifier::Ident,
label::{Label, MergeKind, MergeLabel},
mk_app, mk_fun,
position::{RawSpan, TermPos},
term::{
make as mk_term,
record::{Field, FieldMetadata, RecordAttrs, RecordData},
*,
},
types::{TypeF, Types},
};
use malachite::num::conversion::traits::FromSciString;
pub struct ParseNumberError;
pub fn parse_number(slice: &str) -> Result<Rational, ParseNumberError> {
Rational::from_sci_string(slice).ok_or(ParseNumberError)
}
/// Distinguish between the standard string opening delimiter `"`, the multi-line string
/// opening delimter `m%"`, and the symbolic string opening delimiter `s%"`.
#[derive(Copy, Clone, Eq, PartialEq, Debug)]
pub enum StringStartDelimiter<'input> {
Standard,
Multiline,
Symbolic(&'input str),
}
impl StringStartDelimiter<'_> {
pub fn is_closed_by(&self, close: &StringEndDelimiter) -> bool {
matches!(
(self, close),
(StringStartDelimiter::Standard, StringEndDelimiter::Standard)
| (StringStartDelimiter::Multiline, StringEndDelimiter::Special)
| (
StringStartDelimiter::Symbolic(_),
StringEndDelimiter::Special
)
)
}
pub fn needs_strip_indent(&self) -> bool {
match self {
StringStartDelimiter::Standard => false,
StringStartDelimiter::Multiline | StringStartDelimiter::Symbolic(_) => true,
}
}
}
/// Distinguish between the standard string closing delimiter `"` and the "special" string
/// closing delimiter `"%`.
#[derive(Copy, Clone, Debug, Eq, PartialEq)]
pub enum StringEndDelimiter {
Standard,
Special,
}
/// Distinguish between a normal case `id => exp` and a default case `_ => exp`.
#[derive(Clone, Debug)]
pub enum MatchCase {
Normal(Ident, RichTerm),
Default(RichTerm),
}
/// Left hand side of a record field declaration.
#[derive(Clone, Debug)]
pub enum FieldPathElem {
/// A static field declaration: `{ foo = .. }`
Ident(Ident),
/// A quoted field declaration: `{ "%{protocol}" = .. }`
///
/// In practice, the argument must always be `StrChunks`, but since we also need to keep track
/// of the associated span it's handier to just use a `RichTerm`.
Expr(RichTerm),
}
pub type FieldPath = Vec<FieldPathElem>;
/// A string chunk literal atom, being either a string or a single char.
///
/// Because of the way the lexer handles escaping and interpolation, a contiguous static string
/// `"Some \\ \%{escaped} string"` will be lexed as a sequence of such atoms.
#[derive(Clone, Debug, Eq, PartialEq)]
pub enum ChunkLiteralPart<'input> {
Str(&'input str),
Char(char),
}
/// A field definition atom. A field is defined by a path, a potential value, and associated
/// metadata.
#[derive(Clone, Debug)]
pub struct FieldDef {
pub path: FieldPath,
pub field: Field,
pub pos: TermPos,
}
impl FieldDef {
/// Elaborate a record field definition specified as a path, like `a.b.c = foo`, into a regular
/// flat definition `a = {b = {c = foo}}`.
///
/// # Preconditions
/// - /!\ path must be **non-empty**, otherwise this function panics
pub fn elaborate(self) -> (FieldPathElem, Field) {
let last_ident = self.path.last().and_then(|elem| match elem {
FieldPathElem::Ident(id) => Some(*id),
FieldPathElem::Expr(_) => None,
});
let mut it = self.path.into_iter();
let fst = it.next().unwrap();
let content = it
.rev()
.fold(self.field.with_name(last_ident), |acc, path_elem| {
// We first compute a position for the intermediate generated records (it's useful in
// particular for the LSP). The position starts at the subpath corresponding to the
// intermediate record and ends at the final value.
//
// unwrap is safe here becuase the initial content has a position,
// and we make sure we assign a position for the next field.
let pos = match path_elem {
FieldPathElem::Ident(id) => id.pos,
FieldPathElem::Expr(ref expr) => expr.pos,
};
// unwrap is safe here because every id should have a non-`TermPos::None` position
let id_span = pos.unwrap();
let acc_span = acc
.value
.as_ref()
.map(|value| value.pos.unwrap())
.unwrap_or(id_span);
// `RawSpan::fuse` only returns `None` when the two spans are in different files.
// A record field and its value *must* be in the same file, so this is safe.
let pos = TermPos::Original(RawSpan::fuse(id_span, acc_span).unwrap());
match path_elem {
FieldPathElem::Ident(id) => {
let mut fields = IndexMap::new();
fields.insert(id, acc);
Field::from(RichTerm::new(
Term::Record(RecordData {
fields,
..Default::default()
}),
pos,
))
}
FieldPathElem::Expr(exp) => {
let static_access = exp.term.as_ref().try_str_chunk_as_static_str();
if let Some(static_access) = static_access {
let id = Ident::new_with_pos(static_access, exp.pos);
let mut fields = IndexMap::new();
fields.insert(id, acc);
Field::from(RichTerm::new(
Term::Record(RecordData {
fields,
..Default::default()
}),
pos,
))
} else {
// The record we create isn't recursive, because it is only comprised of one
// dynamic field. It's just simpler to use the infrastructure of `RecRecord` to
// handle dynamic fields at evaluation time rather than right here
Field::from(RichTerm::new(
Term::RecRecord(RecordData::empty(), vec![(exp, acc)], None),
pos,
))
}
}
}
});
(fst, content)
}
/// Returns the identifier corresponding to this definition if the path is composed of exactly one element which is a static identifier. Returns `None` otherwise.
pub fn path_as_ident(&self) -> Option<Ident> {
if self.path.len() > 1 {
return None;
}
self.path.first().and_then(|path_elem| match path_elem {
FieldPathElem::Expr(_) => None,
FieldPathElem::Ident(ident) => Some(*ident),
})
}
}
/// The last field of a record, that can either be a normal field declaration or an ellipsis.
#[derive(Clone, Debug)]
pub enum RecordLastField {
Field(FieldDef),
Ellipsis,
}
/// An infix operator that is not applied. Used for the curried operator syntax (e.g `(==)`)
pub enum InfixOp {
Unary(UnaryOp),
Binary(BinaryOp),
}
impl From<UnaryOp> for InfixOp {
fn from(op: UnaryOp) -> Self {
InfixOp::Unary(op)
}
}
impl From<BinaryOp> for InfixOp {
fn from(op: BinaryOp) -> Self {
InfixOp::Binary(op)
}
}
impl InfixOp {
/// Eta-expand an operator. This wraps an operator, for example `==`, as a function `fun x1 x2
/// => x1 == x2`. Propagate the given position to the function body, for better error
/// reporting.
pub fn eta_expand(self, pos: TermPos) -> RichTerm {
let pos = pos.into_inherited();
match self {
// We treat `UnaryOp::BoolAnd` and `UnaryOp::BoolOr` separately.
// They should morally be binary operators, but we represent them as unary
// operators internally so that their second argument is evaluated lazily.
InfixOp::Unary(op @ UnaryOp::BoolAnd()) | InfixOp::Unary(op @ UnaryOp::BoolOr()) => {
mk_fun!(
"x1",
"x2",
mk_app!(mk_term::op1(op, mk_term::var("x1")), mk_term::var("x2")).with_pos(pos)
)
}
InfixOp::Unary(op) => mk_fun!("x", mk_term::op1(op, mk_term::var("x")).with_pos(pos)),
InfixOp::Binary(op) => mk_fun!(
"x1",
"x2",
mk_term::op2(op, mk_term::var("x1"), mk_term::var("x2")).with_pos(pos)
),
}
}
}
/// Trait for structures representing a series of annotation that can be combined (flattened).
/// Pedantically, `Annot` is just a monoid.
pub trait Annot: Default {
/// Combine two annotations.
fn combine(outer: Self, inner: Self) -> Self;
}
/// Trait for structures representing annotations which can be combined with a term to build
/// another term, or another structure holding a term, such as a field. `T` is the said target
/// structure.
pub trait AttachTerm<T> {
fn attach_term(self, rt: RichTerm) -> T;
}
impl Annot for FieldMetadata {
fn combine(outer: Self, inner: Self) -> Self {
Self::flatten(outer, inner)
}
}
impl AttachTerm<Field> for FieldMetadata {
fn attach_term(self, rt: RichTerm) -> Field {
Field {
value: Some(rt),
metadata: self,
pending_contracts: Default::default(),
}
}
}
impl Annot for LetMetadata {
// Flatten two nested let metadata into one. If `doc` is set by both, the outer's documentation
// is kept.
fn combine(outer: Self, inner: Self) -> Self {
LetMetadata {
doc: outer.doc.or(inner.doc),
annotation: Annot::combine(outer.annotation, inner.annotation),
}
}
}
impl Annot for TypeAnnotation {
/// Combine two type annotations. If both have `types` set, the final type is the one of outer,
/// while inner's type is put inside the final `contracts`.
fn combine(outer: Self, inner: Self) -> Self {
let (types, leftover) = match (inner.types, outer.types) {
(outer_ty @ Some(_), inner_ty @ Some(_)) => (outer_ty, inner_ty),
(outer_ty, inner_ty) => (outer_ty.or(inner_ty), None),
};
let contracts = inner
.contracts
.into_iter()
.chain(leftover.into_iter())
.chain(outer.contracts.into_iter())
.collect();
TypeAnnotation { types, contracts }
}
}
impl AttachTerm<RichTerm> for TypeAnnotation {
fn attach_term(self, rt: RichTerm) -> RichTerm {
let pos = rt.pos;
RichTerm::new(Term::Annotated(self, rt), pos)
}
}
/// Used to combine annotations in a pattern. If at least one annotation is not `None`, then this
/// just calls [`Annot::combine`] and substitute a potential `None` by the default value.
///
/// If both arguments are `None`, we still need a label to report useful error diagnostics. In this
/// case, `combine_match_annots` returns a value with a dummy `Dyn` contract and a label with the
/// position set to `span`.
pub fn combine_match_annots(
anns: Option<FieldMetadata>,
default: Option<Field>,
span: RawSpan,
) -> Field {
match (anns, default) {
(anns @ Some(_), default) | (anns, default @ Some(_)) => {
let Field {
value: default_value,
metadata: default_metadata,
pending_contracts,
} = default.unwrap_or_default();
Field {
value: default_value,
metadata: Annot::combine(anns.unwrap_or_default(), default_metadata),
pending_contracts,
}
}
(None, None) => {
let dummy_annot = TypeAnnotation {
contracts: vec![LabeledType {
types: Types {
types: TypeF::Dyn,
pos: TermPos::Original(span),
},
label: Label {
span,
..Default::default()
},
}],
..Default::default()
};
Field {
metadata: FieldMetadata {
annotation: dummy_annot,
..Default::default()
},
..Default::default()
}
}
}
}
/// Some constructs are introduced with the metadata pipe operator `|`, but aren't metadata per se
/// (ex: `rec force`/`rec default`). Those are collected in this extended annotation and then
/// desugared into standard metadata.
#[derive(Clone, Debug, Default)]
pub struct FieldExtAnnot {
/// Standard metadata.
pub metadata: FieldMetadata,
/// Presence of an annotation `push force`
pub rec_force: bool,
/// Presence of an annotation `push default`
pub rec_default: bool,
}
impl FieldExtAnnot {
pub fn new() -> Self {
Default::default()
}
}
impl AttachTerm<Field> for FieldExtAnnot {
fn attach_term(self, value: RichTerm) -> Field {
let value = if self.rec_force || self.rec_default {
let rec_prio = if self.rec_force {
RecPriority::Top
} else {
RecPriority::Bottom
};
let pos = value.pos;
Some(rec_prio.apply_rec_prio_op(value).with_pos(pos))
} else {
Some(value)
};
Field {
value,
metadata: self.metadata,
pending_contracts: Default::default(),
}
}
}
impl Annot for FieldExtAnnot {
fn combine(outer: Self, inner: Self) -> Self {
let metadata = FieldMetadata::flatten(outer.metadata, inner.metadata);
let rec_force = outer.rec_force || inner.rec_force;
let rec_default = outer.rec_default || inner.rec_default;
FieldExtAnnot {
metadata,
rec_force,
rec_default,
}
}
}
impl From<FieldMetadata> for FieldExtAnnot {
fn from(metadata: FieldMetadata) -> Self {
FieldExtAnnot {
metadata,
..Default::default()
}
}
}
/// Turn dynamic accesses using literal chunks only into static accesses
pub fn mk_access(access: RichTerm, root: RichTerm) -> RichTerm {
let label = match *access.term {
Term::StrChunks(ref chunks) => {
chunks
.iter()
.fold(Some(String::new()), |acc, next| match (acc, next) {
(Some(mut acc), StrChunk::Literal(lit)) => {
acc.push_str(lit);
Some(acc)
}
_ => None,
})
}
_ => None,
};
if let Some(label) = label {
mk_term::op1(
UnaryOp::StaticAccess(Ident::new_with_pos(label, access.pos)),
root,
)
} else {
mk_term::op2(BinaryOp::DynAccess(), access, root)
}
}
/// Build a record from a list of field definitions. If a field is defined several times, the
/// different definitions are merged.
pub fn build_record<I>(fields: I, attrs: RecordAttrs) -> Term
where
I: IntoIterator<Item = (FieldPathElem, Field)> + Debug,
{
let mut static_fields = IndexMap::new();
let mut dynamic_fields = Vec::new();
fn insert_static_field(static_fields: &mut IndexMap<Ident, Field>, id: Ident, field: Field) {
match static_fields.entry(id) {
Entry::Occupied(mut occpd) => {
// temporarily putting an empty field in the entry to take the previous value.
let prev = occpd.insert(Field::default());
// unwrap(): the field's identifier must have a position during parsing.
occpd.insert(merge_fields(id.pos.unwrap(), prev, field));
}
Entry::Vacant(vac) => {
vac.insert(field);
}
}
}
fields.into_iter().for_each(|field| match field {
(FieldPathElem::Ident(id), t) => insert_static_field(&mut static_fields, id, t),
(FieldPathElem::Expr(e), t) => {
// Dynamic fields (whose name is defined by an interpolated string) have a different
// semantics than fields whose name can be determined statically. However, static
// fields with special characters are also parsed as string chunks:
//
// ```
// let x = "dynamic" in {"I%am.static" = false, "%{x}" = true}
// ```
//
// Here, both fields are parsed as `StrChunks`, but the first field is actually a
// static one, just with special characters. The following code determines which fields
// are actually static or not, and inserts them in the right location.
match e.term.as_ref() {
Term::StrChunks(chunks) => {
let mut buffer = String::new();
let is_static = chunks
.iter()
.try_for_each(|chunk| match chunk {
StrChunk::Literal(s) => {
buffer.push_str(s);
Ok(())
}
StrChunk::Expr(..) => Err(()),
})
.is_ok();
if is_static {
insert_static_field(
&mut static_fields,
Ident::new_with_pos(buffer, e.pos),
t,
)
} else {
dynamic_fields.push((e, t));
}
}
// Currently `e` can only be string chunks, and this case should be unreachable,
// but let's be future-proof
_ => dynamic_fields.push((e, t)),
}
}
});
Term::RecRecord(
RecordData::new(
static_fields
.into_iter()
.map(|(id, value)| (id, value))
.collect(),
attrs,
None,
),
dynamic_fields,
None,
)
}
/// Merge two fields by performing the merge of both their value (dynamically, by introducing a
/// merging operator) and their metadata (statically).
fn merge_fields(id_span: RawSpan, field1: Field, field2: Field) -> Field {
let value = match (field1.value, field2.value) {
(Some(t1), Some(t2)) => Some(mk_term::op2(
BinaryOp::Merge(MergeLabel {
span: id_span,
kind: MergeKind::PiecewiseDef,
}),
t1,
t2,
)),
(Some(t), None) | (None, Some(t)) => Some(t),
(None, None) => None,
};
let metadata = FieldMetadata::flatten(field1.metadata, field2.metadata);
// At this stage, pending contracts aren't filled nor meaningful, and should all be empty.
debug_assert!(field1.pending_contracts.is_empty() && field2.pending_contracts.is_empty());
Field {
value,
metadata,
pending_contracts: field1.pending_contracts,
}
}
/// Make a span from parser byte offsets.
pub fn mk_span(src_id: FileId, l: usize, r: usize) -> RawSpan {
RawSpan {
src_id,
start: (l as u32).into(),
end: (r as u32).into(),
}
}
pub fn mk_pos(src_id: FileId, l: usize, r: usize) -> TermPos {
TermPos::Original(mk_span(src_id, l, r))
}
/// Same as `mk_span`, but for labels.
pub fn mk_label(types: Types, src_id: FileId, l: usize, r: usize) -> Label {
Label {
types: Rc::new(types),
span: mk_span(src_id, l, r),
..Default::default()
}
}
/// Same as `mk_span`, but for merge labels. The kind is set to the default one
/// (`MergeKind::Standard`).
pub fn mk_merge_label(src_id: FileId, l: usize, r: usize) -> MergeLabel {
MergeLabel {
span: mk_span(src_id, l, r),
kind: Default::default(),
}
}
/// Generate a `Let` or a `LetPattern` (depending on whether `assgn` has a record pattern) from
/// the parsing of a let definition. This function fails if the definition has both a pattern
/// and is recursive because recursive let-patterns are currently not supported.
pub fn mk_let(
rec: bool,
assgn: FieldPattern,
t1: RichTerm,
t2: RichTerm,
span: RawSpan,
) -> Result<RichTerm, ParseError> {
match assgn {
FieldPattern::Ident(id) if rec => Ok(mk_term::let_rec_in(id, t1, t2)),
FieldPattern::Ident(id) => Ok(mk_term::let_in(id, t1, t2)),
_ if rec => Err(ParseError::RecursiveLetPattern(span)),
FieldPattern::RecordPattern(pat) => {
let id: Option<Ident> = None;
Ok(mk_term::let_pat(id, pat, t1, t2))
}
FieldPattern::AliasedRecordPattern { alias, pattern } => {
Ok(mk_term::let_pat(Some(alias), pattern, t1, t2))
}
}
}
/// Generate a `Fun` or a `FunPattern` (depending on `assgn` having a pattern or not)
/// from the parsing of a function definition. This function panics if the definition
/// somehow has neither an `Ident` nor a non-`Empty` `Destruct` pattern.
pub fn mk_fun(assgn: FieldPattern, body: RichTerm) -> Term {
match assgn {
FieldPattern::Ident(id) => Term::Fun(id, body),
FieldPattern::RecordPattern(pat) => Term::FunPattern(None, pat, body),
FieldPattern::AliasedRecordPattern { alias, pattern } => {
Term::FunPattern(Some(alias), pattern, body)
}
}
}
/// Determine the minimal level of indentation of a multi-line string.
///
/// The result is determined by computing the minimum indentation level among all lines, where the
/// indentation level of a line is the number of consecutive whitespace characters, which are
/// either a space or a tab, counted from the beginning of the line. If a line is empty or consist
/// only of whitespace characters, it is ignored.
pub fn min_indent(chunks: &[StrChunk<RichTerm>]) -> usize {
let mut min: usize = std::usize::MAX;
let mut current = 0;
let mut start_line = true;
for chunk in chunks.iter() {
match chunk {
StrChunk::Expr(_, _) if start_line => {
if current < min {
min = current;
}
start_line = false;
}
StrChunk::Expr(_, _) => (),
StrChunk::Literal(s) => {
for c in s.chars() {
match c {
' ' | '\t' if start_line => current += 1,
'\n' => {
current = 0;
start_line = true;
}
_ if start_line => {
if current < min {
min = current;
}
start_line = false;
}
_ => (),
}
}
}
}
}
min
}
/// Strip the common indentation prefix from a multi-line string.
///
/// Determine the minimum indentation level of a multi-line string via [`min_indent`], and strip an
/// equal number of whitespace characters (` ` or `\t`) from the beginning of each line. If the
/// last line is empty or consist only of whitespace characters, it is filtered out.
///
/// The indentation of interpolated expressions in a multi-line string follow the rules:
/// - if an interpolated expression is alone on a line with whitespaces, its indentation -- minus
/// the common minimal indentation -- is stored and when the expression will be evaluated, each new
/// line will be prepended with this indentation level.
/// - if there are other non whitespace characters or interpolated expressions on the line, then it
/// is just replaced by its content. The common indentation is still stripped before the start of
/// this expression, but newlines inside it won't be affected..
///
/// Examples:
///
/// ```text
/// let x = "I\nam\nindented" in
/// m%"
/// baseline
/// ${x}
/// end
/// "%
/// ```
///
/// gives
///
/// ```text
///"baseline
/// I
/// am
/// indented
/// end"
/// ```
///
/// While
///
/// ```text
/// let x = "I\nam\nnot" in
/// m%"
/// baseline
/// ${x} sth
/// end
/// "%
/// ```
///
/// gives
///
/// ```text
///"baseline
/// I
///am
///not sth
/// end"
/// ```
pub fn strip_indent(mut chunks: Vec<StrChunk<RichTerm>>) -> Vec<StrChunk<RichTerm>> {
if chunks.is_empty() {
return chunks;
}
let min = min_indent(&chunks);
let mut current = 0;
let mut start_line = true;
let chunks_len = chunks.len();
// When processing a line with an indented interpolated expression, as in:
//
// ```
// m%"
// some
// ${x} ${y}
// ${x}
// string
// "%
// ```
//
// We don't know at the time we process the expression `${x}` if it wil have to be re-indented,
// as it depends on the rest of the line being only whitespace or not, according to the
// indentation rule. Here, the first occurrence should not, while the second one should. We can
// only know this once we process the next chunks, here when arriving at `${y}`. To handle
// this, we set all indentation levels as if expressions were alone on their line during the
// main loop, but also store the index of such chunks which indentation level must be revisited
// once the information becomes available. Then, their indentation level is erased in a last
// pass.
let mut unindent: Vec<usize> = Vec::new();
let mut expr_on_line: Option<usize> = None;
for (index, chunk) in chunks.iter_mut().enumerate() {
match chunk {
StrChunk::Literal(ref mut s) => {
let mut buffer = String::new();
for c in s.chars() {
match c {
' ' | '\t' if start_line && current < min => current += 1,
' ' | '\t' if start_line => {
current += 1;
buffer.push(c);
}
'\n' => {
current = 0;
start_line = true;
expr_on_line = None;
buffer.push(c);
}
c if start_line => {
start_line = false;
buffer.push(c);
}
c => buffer.push(c),
}
}
// Strip the first line, if it is only whitespace characters
if index == 0 {
if let Some(first_index) = buffer.find('\n') {
if first_index == 0
|| buffer.as_bytes()[..first_index]
.iter()
.all(|c| *c == b' ' || *c == b'\t')
{
buffer = String::from(&buffer[(first_index + 1)..]);
}
}
}
// Strip the last line, if it is only whitespace characters.
if index == chunks_len - 1 {
if let Some(last_index) = buffer.rfind('\n') {
if last_index == buffer.len() - 1
|| buffer.as_bytes()[(last_index + 1)..]
.iter()
.all(|c| *c == b' ' || *c == b'\t')
{
buffer.truncate(last_index);
}
}
}
*s = buffer;
}
StrChunk::Expr(_, ref mut indent) => {
if start_line {
debug_assert!(current >= min);
debug_assert!(expr_on_line.is_none());
*indent = current - min;
start_line = false;
expr_on_line = Some(index);
} else if let Some(expr_index) = expr_on_line.take() {
unindent.push(expr_index);
}
}
}
}
for index in unindent.into_iter() {
match chunks.get_mut(index) {
Some(StrChunk::Expr(_, ref mut indent)) => *indent = 0,
_ => panic!(),
}
}
chunks
}
/// Strip the indentation of a doc metadata. Wrap it as a literal string chunk and call
/// [`strip_indent`].
pub fn strip_indent_doc(doc: String) -> String {
let chunk = vec![StrChunk::Literal(doc)];
strip_indent(chunk)
.into_iter()
.map(|chunk| match chunk {
StrChunk::Literal(s) => s,
_ => panic!("expected literal string after indentation of documentation"),
})
.next()
.expect("expected non-empty chunks after indentation of documentation")
}