lindera-analysis 5.2.0

Text analysis chain (character filters, token filters, tokenizer) for Lindera.
Documentation
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
/// This module defines character filters and utilities for handling text transformations
/// in the Lindera library. It includes various character filters such as Japanese iteration
/// mark filter, mapping filter, regex filter, and unicode normalization filter. The module
/// also provides functionality to load character filters from configuration values or CLI flags,
/// and utilities to manage text offsets during transformations.
///
/// # Offset Mapping System
///
/// The offset mapping system tracks how character positions change during text filtering,
/// allowing accurate mapping between filtered text positions and original text positions.
/// This is essential for maintaining correct token byte offsets in tokenization.
///
/// ## How Offset Mapping Works
///
/// When text is transformed by character filters, each transformation is recorded as a
/// `Transformation` that captures:
/// - Original text byte range (before filtering)  
/// - Filtered text byte range (after filtering)
///
/// ### Example: "10㍑" → "10リットル"
///
/// ```text
/// Original:  "10㍑"
/// Positions:  0-3  3-6  6-9     (byte positions)
///              ↓    ↓    ↓
/// Filtered:  "10リットル"  
/// Positions:  0-1  1-2  2-14    (byte positions)
/// ```
///
/// This creates three transformations:
/// 1. "1" (0-3) → "1" (0-1)
/// 2. "0" (3-6) → "0" (1-2)
/// 3. "㍑" (6-9) → "リットル" (2-14)
///
/// ### Position Correction
///
/// To map a filtered text position back to the original:
/// 1. Find which transformation range contains the position
/// 2. Calculate the corresponding position in the original text
/// 3. Return the original text position
///
/// ```rust,no_run
/// # use lindera_analysis::character_filter::{OffsetMapping, Transformation};
/// # let mut mapping = OffsetMapping::new();
/// # mapping.add_transformation(Transformation::new(6, 9, 2, 14));
/// # let text = "10リットル";
/// // For filtered position 2 ("リットル" start):
/// // → finds transformation[2]: filtered_range(2-14) contains position 2
/// // → returns original_start: 6 (start of "㍑")
/// let original_pos = mapping.correct_offset(2, text.len()); // returns 6
/// ```
///
/// This ensures that tokenizer can provide accurate byte offsets relative to the original
/// input text, even after multiple character transformations.
///
/// # Modules
/// - `japanese_iteration_mark`: Contains the Japanese iteration mark character filter.
/// - `mapping`: Contains the mapping character filter.
/// - `regex`: Contains the regex character filter.
/// - `unicode_normalize`: Contains the unicode normalization character filter.
///
/// # Traits
/// - `CharacterFilter`: A trait for character filters that can be applied to text.
/// - `CharacterFilterClone`: A trait for cloning character filters.
///
/// # Structs
/// - `BoxCharacterFilter`: A boxed character filter that implements `Deref` to `CharacterFilter`.
/// - `CharacterFilterLoader`: A loader for character filters from configuration values or CLI flags.
/// - `OffsetMapping`: A modern structure for tracking position changes during text filtering.
/// - `Transformation`: A record of text transformation with original and filtered positions.
///
/// # Functions
/// No public utility functions are exposed, as all offset management is handled through OffsetMapping.
pub mod japanese_iteration_mark;
pub mod mapping;
pub mod regex;
pub mod unicode_normalize;

use std::ops::Deref;

use serde_json::Value;

use crate::character_filter::japanese_iteration_mark::{
    JAPANESE_ITERATION_MARK_CHARACTER_FILTER_NAME, JapaneseIterationMarkCharacterFilter,
};
use crate::character_filter::mapping::{MAPPING_CHARACTER_FILTER_NAME, MappingCharacterFilter};
use crate::character_filter::regex::{REGEX_CHARACTER_FILTER_NAME, RegexCharacterFilter};
use crate::character_filter::unicode_normalize::{
    UNICODE_NORMALIZE_CHARACTER_FILTER_NAME, UnicodeNormalizeCharacterFilter,
};
use crate::parse_cli_flag;
use lindera::LinderaResult;
use lindera::error::LinderaErrorKind;

/// A transformation record for offset mapping between original and filtered text.
///
/// This structure captures a single text transformation, recording how a specific
/// segment of the original text maps to a segment in the filtered text.
///
/// # Example
///
/// For the transformation "㍑" → "リットル":
/// ```rust
/// # use lindera_analysis::character_filter::Transformation;
/// let transformation = Transformation::new(
///     6, 9,    // original: "㍑" at bytes 6-9
///     2, 14    // filtered: "リットル" at bytes 2-14  
/// );
/// ```
///
/// This allows precise mapping between any position in the filtered text
/// back to the corresponding position in the original text.
#[derive(Debug, Clone, PartialEq)]
pub struct Transformation {
    /// Start position in the original text (in bytes)
    pub original_start: usize,
    /// End position in the original text (in bytes)
    pub original_end: usize,
    /// Start position in the filtered text (in bytes)
    pub filtered_start: usize,
    /// End position in the filtered text (in bytes)
    pub filtered_end: usize,
}

impl Transformation {
    pub fn new(
        original_start: usize,
        original_end: usize,
        filtered_start: usize,
        filtered_end: usize,
    ) -> Self {
        Self {
            original_start,
            original_end,
            filtered_start,
            filtered_end,
        }
    }
}

/// Offset mapping structure for tracking position changes during text filtering.
///
/// This structure maintains a list of all text transformations that occurred during
/// character filtering, enabling accurate position mapping between filtered and original text.
///
/// # Usage Pattern
///
/// 1. **Record transformations** during filtering:
/// ```rust
/// # use lindera_analysis::character_filter::{OffsetMapping, Transformation};
/// let mut mapping = OffsetMapping::new();
/// // When "㍑" → "リットル" transformation occurs:
/// mapping.add_transformation(Transformation::new(6, 9, 2, 14));
/// ```
///
/// 2. **Correct positions** from filtered to original:
/// ```rust,no_run
/// # use lindera_analysis::character_filter::OffsetMapping;
/// # let mapping = OffsetMapping::new();
/// # let filtered_pos = 0;
/// # let text = String::new();
/// let original_pos = mapping.correct_offset(filtered_pos, text.len());
/// ```
///
/// # Multi-Filter Support
///
/// When multiple character filters are applied, their mappings are composed:
/// ```rust,no_run
/// # use lindera_analysis::character_filter::OffsetMapping;
/// # let mapping1 = OffsetMapping::new();
/// # let mapping2 = OffsetMapping::new();
/// let combined_mapping = mapping1.compose(mapping2);
/// ```
///
/// This ensures accurate position tracking through complex filter chains.
#[derive(Debug, Clone, Default, PartialEq)]
pub struct OffsetMapping {
    /// List of transformations applied to the text
    pub transformations: Vec<Transformation>,
    /// Cumulative `(original_len - filtered_len)` diff after each
    /// transformation, i.e. `cumulative_diffs[i]` is the sum of diffs for
    /// `transformations[0..=i]`. Kept in sync with `transformations` by
    /// `add_transformation`/`with_transformations`/`compose`, and used by
    /// `correct_offset` to answer in O(log n) instead of rescanning the
    /// full transformation list.
    cumulative_diffs: Vec<i64>,
}

/// Compute the cumulative diff sums for a transformation list, in the same
/// order as `OffsetMapping::cumulative_diffs`.
fn compute_cumulative_diffs(transformations: &[Transformation]) -> Vec<i64> {
    let mut cumulative_diffs = Vec::with_capacity(transformations.len());
    let mut cumulative = 0i64;
    for t in transformations {
        let original_len = (t.original_end - t.original_start) as i64;
        let filtered_len = (t.filtered_end - t.filtered_start) as i64;
        cumulative += original_len - filtered_len;
        cumulative_diffs.push(cumulative);
    }
    cumulative_diffs
}

impl OffsetMapping {
    pub fn new() -> Self {
        Self::default()
    }

    pub fn with_transformations(transformations: Vec<Transformation>) -> Self {
        let cumulative_diffs = compute_cumulative_diffs(&transformations);
        Self {
            transformations,
            cumulative_diffs,
        }
    }

    /// Add a transformation to the mapping
    pub fn add_transformation(&mut self, transformation: Transformation) {
        let original_len = (transformation.original_end - transformation.original_start) as i64;
        let filtered_len = (transformation.filtered_end - transformation.filtered_start) as i64;
        let diff = original_len - filtered_len;
        let cumulative = self.cumulative_diffs.last().copied().unwrap_or(0) + diff;
        self.cumulative_diffs.push(cumulative);
        self.transformations.push(transformation);
    }

    /// Check if this mapping is empty (no transformations)
    pub fn is_empty(&self) -> bool {
        self.transformations.is_empty()
    }

    /// Correct a position in filtered text to the corresponding position in original text.
    ///
    /// This method maps a byte position in the filtered text back to the corresponding
    /// byte position in the original text, accounting for all recorded transformations.
    ///
    /// # Arguments
    ///
    /// * `offset` - Byte position in the filtered text
    /// * `text_len` - Length of the filtered text (used for boundary validation)
    ///
    /// # Returns
    ///
    /// The corresponding byte position in the original text.
    ///
    /// # Algorithm
    ///
    /// 1. If no transformations exist, return the offset unchanged
    /// 2. Find the transformation whose filtered range contains the offset
    /// 3. Map the offset to the corresponding position in the original range
    /// 4. If offset is outside all transformation ranges, adjust by cumulative differences
    ///
    /// # Example
    ///
    /// ```rust,no_run
    /// # use lindera_analysis::character_filter::{OffsetMapping, Transformation};
    /// // For "10㍑" → "10リットル" with transformations recorded
    /// let mut mapping = OffsetMapping::new();
    /// mapping.add_transformation(Transformation::new(6, 9, 2, 14));
    ///
    /// // Position 2 in "10リットル" ("リットル" start)
    /// let original_pos = mapping.correct_offset(2, 14); // returns 6
    /// // This maps to position 6 in "10㍑" ("㍑" start)
    /// ```
    pub fn correct_offset(&self, offset: usize, text_len: usize) -> usize {
        if self.transformations.is_empty() {
            return offset;
        }

        // Boundary check: if offset is beyond text length, clamp to text length
        let clamped_offset = offset.min(text_len);

        // transformations are non-overlapping and appended in strictly
        // increasing filtered_start/filtered_end order (an invariant the
        // original linear scan below also depended on). Binary search for
        // the first transformation whose filtered_end >= clamped_offset --
        // this is exactly the transformation the old scan would have
        // stopped at first, whether the offset falls inside it or before it.
        let idx = self
            .transformations
            .partition_point(|t| t.filtered_end < clamped_offset);

        if let Some(transformation) = self.transformations.get(idx) {
            if clamped_offset >= transformation.filtered_start {
                // Offset is within this transformation range
                let filtered_offset = clamped_offset - transformation.filtered_start;
                let original_len = transformation.original_end - transformation.original_start;
                let filtered_len = transformation.filtered_end - transformation.filtered_start;

                return if filtered_len == 0 {
                    // Deletion case
                    transformation.original_start
                } else if original_len == 0 {
                    // Insertion case
                    transformation.original_start
                } else {
                    // Substitution case - proportionally map within the range
                    let ratio = filtered_offset as f64 / filtered_len as f64;
                    let original_offset = (ratio * original_len as f64).round() as usize;
                    transformation.original_start + original_offset
                };
            }

            // Offset is before this transformation: apply the cumulative
            // diff of every transformation before it (O(1) lookup).
            let prev_cumulative = if idx == 0 {
                0
            } else {
                self.cumulative_diffs[idx - 1]
            };
            return (clamped_offset as i64 + prev_cumulative) as usize;
        }

        // Offset is after all transformations - apply the total cumulative diff.
        let total_diff = *self.cumulative_diffs.last().unwrap();
        let corrected = (clamped_offset as i64 + total_diff) as usize;

        // Handle case where original offset was beyond text length
        if offset > text_len {
            // Preserve the overshoot in the original text space
            let overshoot = offset - text_len;
            corrected + overshoot
        } else {
            corrected
        }
    }

    /// Compose this mapping with another mapping (for chaining filters)
    pub fn compose(self, other: OffsetMapping) -> OffsetMapping {
        if other.transformations.is_empty() {
            return self;
        }
        if self.transformations.is_empty() {
            return other;
        }

        let mut combined_transformations = self.transformations;
        combined_transformations.extend(other.transformations);

        OffsetMapping::with_transformations(combined_transformations)
    }
}

/// The `CharacterFilter` trait defines an interface for filters that preprocess text before tokenization.
///
/// # Required Methods
///
/// - `name(&self) -> &str`:
///   - Returns the name of the character filter. This can be used for identification or logging purposes.
///
/// - `apply_with_offset_mapping(&self, text: &mut String) -> LinderaResult<OffsetMapping>`:
///   - Applies the character filter to the provided mutable string `text`.
///   - It returns a result containing an `OffsetMapping` which tracks all text transformations
///     performed by the filter, allowing precise position mapping between original and filtered text.
///
/// # Trait Bounds
///
/// - `'static`: The filter must have a `'static` lifetime, meaning it does not contain any references with shorter lifetimes.
/// - `Send` and `Sync`: These bounds ensure that the filter can be safely used in multi-threaded contexts, allowing filters to be shared or sent across threads.
///
/// # Cloneability
///
/// - This trait requires the `CharacterFilterClone` trait, which is typically used to allow cloning of trait objects that implement `CharacterFilter`. This enables dynamic dispatch of cloned filters.
pub trait CharacterFilter: 'static + Send + Sync + CharacterFilterClone {
    fn name(&self) -> &str;
    fn apply(&self, text: &mut String) -> LinderaResult<OffsetMapping>;
}

/// A struct that holds a boxed `CharacterFilter` trait object.
///
/// `BoxCharacterFilter` wraps a `Box<dyn CharacterFilter + 'static + Send + Sync>`, allowing for dynamic dispatch of character filters while ensuring they are thread-safe and have a `'static` lifetime.
///
/// # Fields
///
/// - `0: Box<dyn CharacterFilter + 'static + Send + Sync>`:
///   - The boxed character filter trait object, which can be any type that implements the `CharacterFilter` trait. This allows for runtime polymorphism, meaning different character filter implementations can be stored in the same collection or passed around generically.
///
/// # Trait Bounds
///
/// - `CharacterFilter`: The wrapped object must implement the `CharacterFilter` trait, which defines the interface for applying filters to text.
/// - `'static`: The wrapped object must have a `'static` lifetime, meaning it can live for the duration of the program and does not borrow from temporary data.
/// - `Send` and `Sync`: These bounds ensure the filter can be shared between threads and sent across thread boundaries, making it safe for concurrent use.
///
/// # Example Usage
///
/// `BoxCharacterFilter` allows you to store and use different types of character filters dynamically, making it easier to apply multiple filters without needing to know their concrete types at compile time.
pub struct BoxCharacterFilter(Box<dyn CharacterFilter + 'static + Send + Sync>);

impl Deref for BoxCharacterFilter {
    type Target = dyn CharacterFilter;

    fn deref(&self) -> &dyn CharacterFilter {
        &*self.0
    }
}

impl<T: CharacterFilter> From<T> for BoxCharacterFilter {
    fn from(character_filter: T) -> BoxCharacterFilter {
        BoxCharacterFilter(Box::new(character_filter))
    }
}

pub trait CharacterFilterClone {
    fn box_clone(&self) -> BoxCharacterFilter;
}

impl<T: CharacterFilter + Clone + 'static> CharacterFilterClone for T {
    fn box_clone(&self) -> BoxCharacterFilter {
        BoxCharacterFilter::from(self.clone())
    }
}

pub struct CharacterFilterLoader {}

impl CharacterFilterLoader {
    /// Loads a character filter based on the specified kind and configuration value.
    ///
    /// # Arguments
    ///
    /// * `kind` - A string slice representing the type of the character filter to be loaded. This string must match one of the supported filter types.
    /// * `value` - A `serde_json::Value` that contains the configuration for the filter. The structure of this value depends on the filter type.
    ///
    /// # Returns
    ///
    /// Returns a `LinderaResult<BoxCharacterFilter>`, which is a boxed character filter, or an error if the filter type is unsupported or if the configuration fails to load.
    ///
    /// # Supported Filters
    ///
    /// - `JAPANESE_ITERATION_MARK_CHARACTER_FILTER_NAME`: Loads a `JapaneseIterationMarkCharacterFilter`.
    /// - `MAPPING_CHARACTER_FILTER_NAME`: Loads a `MappingCharacterFilter`.
    /// - `REGEX_CHARACTER_FILTER_NAME`: Loads a `RegexCharacterFilter`.
    /// - `UNICODE_NORMALIZE_CHARACTER_FILTER_NAME`: Loads a `UnicodeNormalizeCharacterFilter`.
    ///
    /// # Errors
    ///
    /// - If the `kind` does not match any of the supported filters, an error is returned.
    /// - If the configuration (`value`) for a filter is invalid, an error is returned during deserialization.
    ///
    /// # Details
    ///
    /// - This function uses the `kind` argument to determine which specific character filter to load. It matches the `kind` string to a filter name, deserializes the `value` into the appropriate filter configuration, and then constructs the corresponding filter.
    /// - If the `kind` does not match any supported filters, the function returns a deserialization error with an appropriate error message.
    pub fn load_from_value(kind: &str, value: &Value) -> LinderaResult<BoxCharacterFilter> {
        let character_filter = match kind {
            JAPANESE_ITERATION_MARK_CHARACTER_FILTER_NAME => {
                BoxCharacterFilter::from(JapaneseIterationMarkCharacterFilter::from_config(value)?)
            }
            MAPPING_CHARACTER_FILTER_NAME => {
                BoxCharacterFilter::from(MappingCharacterFilter::from_config(value)?)
            }
            REGEX_CHARACTER_FILTER_NAME => {
                BoxCharacterFilter::from(RegexCharacterFilter::from_config(value)?)
            }
            UNICODE_NORMALIZE_CHARACTER_FILTER_NAME => {
                BoxCharacterFilter::from(UnicodeNormalizeCharacterFilter::from_config(value)?)
            }
            _ => {
                return Err(LinderaErrorKind::Deserialize
                    .with_error(anyhow::anyhow!("unsupported character filter: {kind}")));
            }
        };

        Ok(character_filter)
    }

    /// Loads a character filter based on a CLI flag string.
    ///
    /// # Arguments
    ///
    /// * `cli_flag` - A string slice representing the command-line interface (CLI) flag used to specify the character filter. The flag typically contains both the filter kind and its arguments.
    ///
    /// # Returns
    ///
    /// Returns a `LinderaResult<BoxCharacterFilter>`, which is a boxed character filter, or an error if the CLI flag is invalid or the filter configuration cannot be loaded.
    ///
    /// # Process
    ///
    /// 1. **Parse CLI flag**:
    ///    - The `parse_cli_flag` function is called to extract the filter kind and its arguments from the `cli_flag` string.
    /// 2. **Load filter from parsed values**:
    ///    - The filter kind and arguments are passed to `load_from_value`, which constructs the appropriate character filter based on the parsed values.
    ///
    /// # Errors
    ///
    /// - If the CLI flag cannot be parsed, an error is returned.
    /// - If the filter kind or its configuration is invalid, an error is returned during the filter loading process.
    ///
    /// # Details
    ///
    /// - The CLI flag is parsed into a filter kind and arguments. These are then used to load the appropriate character filter using the `load_from_value` function.
    pub fn load_from_cli_flag(cli_flag: &str) -> LinderaResult<BoxCharacterFilter> {
        let (kind, args) = parse_cli_flag(cli_flag)?;

        let character_filter = Self::load_from_value(kind, &args)?;

        Ok(character_filter)
    }
}

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn test_transformation() {
        let transformation = Transformation::new(0, 3, 0, 1);
        assert_eq!(transformation.original_start, 0);
        assert_eq!(transformation.original_end, 3);
        assert_eq!(transformation.filtered_start, 0);
        assert_eq!(transformation.filtered_end, 1);
    }

    #[test]
    fn test_offset_mapping_empty() {
        let mapping = OffsetMapping::new();
        assert!(mapping.is_empty());

        // Empty mapping should not change offsets
        assert_eq!(5, mapping.correct_offset(5, 10));
        assert_eq!(0, mapping.correct_offset(0, 10));
    }

    #[test]
    fn test_offset_mapping_with_transformation() {
        let mut mapping = OffsetMapping::new();
        mapping.add_transformation(Transformation::new(0, 3, 0, 1));

        assert!(!mapping.is_empty());

        // Test offset correction for shortening transformation (0-3) -> (0-1)
        assert_eq!(0, mapping.correct_offset(0, 8)); // Start maps to start
        assert_eq!(3, mapping.correct_offset(1, 8)); // End of filtered maps to end of original
        assert_eq!(5, mapping.correct_offset(3, 8)); // After transformation, add diff
    }

    #[test]
    fn test_offset_mapping_correct_offset_multiple_transformations_boundaries() {
        // Locks in the binary-search rewrite's boundary conditions against
        // three transformations covering all four cases the linear scan
        // used to handle: inside a transformation, before a transformation
        // (but after a previous one), after all transformations (within
        // and beyond text_len), and exactly on a filtered_start/filtered_end
        // boundary.
        let mut mapping = OffsetMapping::new();
        // T0: original[0,2) "AB" -> filtered[0,1) "X" (shrink, diff = +1)
        mapping.add_transformation(Transformation::new(0, 2, 0, 1));
        // T1: original[4,5) "C" -> filtered[3,6) "YYY" (expand, diff = -2)
        mapping.add_transformation(Transformation::new(4, 5, 3, 6));
        // T2: original[7,9) "DE" -> filtered[8,9) "Z" (shrink, diff = +1)
        mapping.add_transformation(Transformation::new(7, 9, 8, 9));

        // filtered text is longer than the last transformation's end
        let text_len = 12;

        // Inside T0 (filtered_start and filtered_end boundaries)
        assert_eq!(0, mapping.correct_offset(0, text_len));
        assert_eq!(2, mapping.correct_offset(1, text_len));

        // Between T0 and T1 (before T1, cumulative diff of T0 only)
        assert_eq!(3, mapping.correct_offset(2, text_len));

        // Inside T1 (filtered_start and filtered_end boundaries)
        assert_eq!(4, mapping.correct_offset(3, text_len));
        assert_eq!(5, mapping.correct_offset(6, text_len));

        // Between T1 and T2 (before T2, cumulative diff of T0+T1)
        assert_eq!(6, mapping.correct_offset(7, text_len));

        // Inside T2 (filtered_start and filtered_end boundaries)
        assert_eq!(7, mapping.correct_offset(8, text_len));
        assert_eq!(9, mapping.correct_offset(9, text_len));

        // After all transformations, within text_len (total cumulative diff = 0)
        assert_eq!(10, mapping.correct_offset(10, text_len));
        assert_eq!(12, mapping.correct_offset(12, text_len));

        // Beyond text_len: clamped, then overshoot preserved
        assert_eq!(15, mapping.correct_offset(15, text_len));
    }

    #[test]
    fn test_offset_mapping_compose() {
        let mut mapping1 = OffsetMapping::new();
        mapping1.add_transformation(Transformation::new(0, 3, 0, 1));

        let mut mapping2 = OffsetMapping::new();
        mapping2.add_transformation(Transformation::new(1, 2, 1, 4));

        let composed = mapping1.compose(mapping2);
        assert_eq!(composed.transformations.len(), 2);
    }
}