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
// SPDX-FileCopyrightText: 2026 Minamiyama Kotaro
// SPDX-License-Identifier: AGPL-3.0-only
//! `Sheet`: the sparse-matrix data model for a single worksheet, including
//! transparent merged-cell access.
use crate::model::cell::{Cell, CellRef};
use std::collections::HashMap;
/// A merged range. Holds the top-left (origin cell) and bottom-right
/// coordinates.
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub struct MergedRegion {
/// Origin cell (holds the actual data).
pub start: CellRef,
pub end: CellRef,
}
impl MergedRegion {
/// Callers (`resolve/merge.rs`) are expected to validate that `start <=
/// end` before constructing a region; this is asserted (debug-only) so
/// a violation is caught during testing rather than silently
/// underflowing `u32` in release builds.
pub fn row_span(&self) -> u32 {
debug_assert!(self.start.row <= self.end.row);
self.end.row - self.start.row + 1
}
pub fn col_span(&self) -> u32 {
debug_assert!(self.start.col <= self.end.col);
self.end.col - self.start.col + 1
}
}
/// A `<col min=".." max=".." width=".."/>` range: column width applies to
/// every column index in `[min, max]` inclusive. Kept as a range rather
/// than expanded per-column, for the same reason `MergedRegion` isn't
/// expanded into per-cell aliases — a single `<col min="1" max="16384"
/// .../>` (common in real files) would otherwise force one entry per
/// column (Issue #39).
#[derive(Debug, Clone, Copy, PartialEq)]
pub struct ColWidthRange {
pub min: u32,
pub max: u32,
pub width: f64,
}
/// A sheet's visibility (`workbook.xml`'s `<sheet state="...">`).
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub enum SheetVisibility {
Visible,
Hidden,
VeryHidden,
}
/// Sparse matrix data for a single sheet.
#[derive(Debug, Clone)]
pub struct Sheet {
pub name: String,
pub visibility: SheetVisibility,
cells: HashMap<CellRef, Cell>,
/// origin cell coordinate -> merged region. Also doubles as the source
/// of truth for resolving a virtual coordinate to its origin (see
/// `resolve_origin`) via geometric containment, rather than
/// materializing an alias entry for every cell in the region up front.
/// An earlier design did the latter (`HashMap<CellRef, CellRef>`,
/// populated by iterating every row/col in the range inside
/// `insert_merge`), but that costs O(row_span * col_span) — unbounded
/// for a legitimate full-sheet merge like `A1:XFD1048576` (~17 billion
/// cells) — and was found to hang in practice (see the regression test
/// `insert_merge_on_huge_region_does_not_hang`).
merged_regions: HashMap<CellRef, MergedRegion>,
/// Union bounding box (min_row, max_row, min_col, max_col) across every
/// merged region's `start`/`end`. `None` when there are no merges. Lets
/// `resolve_origin` reject a coordinate clearly outside every merge in
/// O(1), before falling back to the O(N) per-region scan — most cells
/// on a sheet with merges concentrated in one area are outside all of
/// them (PR #23 review). May end up looser than the tightest possible
/// box after a same-origin `insert_merge` overwrite shrinks a region
/// (the old, larger bound is never retracted); that only costs a missed
/// early exit, never correctness, since the full scan below is still
/// authoritative.
merge_bounds: Option<(u32, u32, u32, u32)>,
/// The largest row/column number among inserted cells. Updated
/// incrementally on each cell insertion; does not depend on the
/// `<dimension>` element's value.
pub max_row: u32,
pub max_col: u32,
/// Column-width ranges from `<cols>`, sorted by `min` and mutually
/// non-overlapping (`resolve::column_width::resolve` guarantees both
/// before calling `set_col_widths`). Kept as a sorted `Vec` rather
/// than a `HashMap<u32, f64>` so `column_width` can binary-search in
/// O(log R) instead of holding one entry per column (Issue #39).
col_widths: Vec<ColWidthRange>,
/// `<sheetFormatPr defaultColWidth="..">`, the width for any column not
/// covered by `col_widths`. `None` when the attribute is absent (Excel
/// itself falls back to a font-metric-derived default in that case,
/// which this library does not compute — see `column_width`'s doc).
default_col_width: Option<f64>,
}
impl Sheet {
/// Constructs a new, empty sheet. Called by `pipeline::run` to build
/// sheets from `parse/workbook.rs`'s output.
pub(crate) fn new(name: String, visibility: SheetVisibility) -> Self {
Self {
name,
visibility,
cells: HashMap::new(),
merged_regions: HashMap::new(),
merge_bounds: None,
max_row: 0,
max_col: 0,
col_widths: Vec::new(),
default_col_width: None,
}
}
/// Resolves `r` to a merged region's origin coordinate, if `r` falls
/// inside one; otherwise returns `r` unchanged. First rejects `r` in
/// O(1) via `merge_bounds` if it falls outside every merge's combined
/// bounding box; otherwise falls back to a linear scan over
/// `merged_regions`. Real-world sheets have at most a few thousand
/// merged regions regardless of sheet dimensions, so even the fallback
/// scan stays cheap — the same "simple O(N) is fine for expected-small
/// N" tradeoff `resolve::merge`'s overlap validation already makes.
fn resolve_origin(&self, r: CellRef) -> CellRef {
let Some((min_row, max_row, min_col, max_col)) = self.merge_bounds else {
return r;
};
if r.row < min_row || r.row > max_row || r.col < min_col || r.col > max_col {
return r;
}
self.merged_regions
.values()
.find(|region| {
r.row >= region.start.row
&& r.row <= region.end.row
&& r.col >= region.start.col
&& r.col <= region.end.col
})
.map_or(r, |region| region.start)
}
/// Retrieves a cell, resolving the merged-cell alias if needed. Returns
/// the same `Cell` whether passed the origin or a virtual coordinate.
pub fn get(&self, r: CellRef) -> Option<&Cell> {
let origin = self.resolve_origin(r);
self.cells.get(&origin)
}
/// Retrieves a mutable reference to a cell, resolving the merged-cell
/// alias if needed. Used by `resolve/shared_strings.rs` and
/// `resolve/style.rs` to rewrite a cell's value/style with resolved
/// data.
pub(crate) fn get_mut(&mut self, r: CellRef) -> Option<&mut Cell> {
let origin = self.resolve_origin(r);
self.cells.get_mut(&origin)
}
/// Inserts a cell while updating max_row/max_col at the same time.
/// Writes to `cells` only ever go through this method, structurally
/// preventing the dimension fields from going out of sync.
pub(crate) fn insert_cell(&mut self, r: CellRef, cell: Cell) {
self.max_row = self.max_row.max(r.row);
self.max_col = self.max_col.max(r.col);
self.cells.insert(r, cell);
}
/// Registers a merged region, keyed by its origin cell, in
/// `merged_regions` (`get`/`get_mut`/`iter_cells` resolve membership
/// geometrically via `resolve_origin` — see that method and the
/// `merged_regions` field doc for why no per-cell alias is
/// materialized here). If the origin cell does not yet exist in
/// `cells` (a merged range with neither value nor formatting), a blank
/// placeholder cell is inserted first, so `iter_cells` always picks up
/// the origin cell. Calling this again for the same origin overwrites
/// the previous region (last-write-wins).
pub(crate) fn insert_merge(&mut self, region: MergedRegion) {
debug_assert!(region.start.row <= region.end.row);
debug_assert!(region.start.col <= region.end.col);
if !self.cells.contains_key(®ion.start) {
self.insert_cell(
region.start,
Cell {
value: None,
style: None,
},
);
}
self.merged_regions.insert(region.start, region);
let (min_row, max_row, min_col, max_col) = self.merge_bounds.unwrap_or((
region.start.row,
region.end.row,
region.start.col,
region.end.col,
));
self.merge_bounds = Some((
min_row.min(region.start.row),
max_row.max(region.end.row),
min_col.min(region.start.col),
max_col.max(region.end.col),
));
self.max_row = self.max_row.max(region.end.row);
self.max_col = self.max_col.max(region.end.col);
}
/// Retrieves, in O(1), the merged region an origin cell belongs to (used
/// by `json.rs` to compute row_span/col_span).
pub fn merged_region_at(&self, origin: CellRef) -> Option<&MergedRegion> {
self.merged_regions.get(&origin)
}
/// Runs once, after every `<mergeCell>` on this sheet has been
/// registered via `insert_merge` (called by `resolve::merge::resolve`
/// as its last step). Batch-resolves every currently-inserted cell key
/// to its merge origin via a single sweep over rows, then drops every
/// entry whose key isn't its own origin.
///
/// This never discards observable data: a coordinate that isn't its
/// own origin was already unreachable through `get`/`get_mut`/
/// `iter_cells` (`resolve_origin` always redirects to the origin
/// first — see `iter_cells_excludes_cells_pre_inserted_at_alias_coordinates`),
/// so every entry this drops was already dead. What changes is that
/// `iter_cells` no longer needs to call `resolve_origin` per cell
/// afterwards (see its doc comment).
///
/// Before this existed, a sheet whose merges maximized `merge_bounds`
/// (e.g. two 1x1 merges at opposite corners) forced every
/// `iter_cells` call to fall back to the O(number of merged regions)
/// scan in `resolve_origin`, for every cell — a legitimate file
/// (hundreds of thousands of cells, tens of thousands of merges, both
/// within existing limits) could cost tens of seconds of CPU time in
/// `json.rs`'s output generation (measured; see Issue #43). Sorting
/// events once and sweeping is O((C + M) log (C + M)) for C cells and
/// M merged regions, independent of how the merges are arranged in
/// space — closing the adversarial-arrangement gap that three earlier,
/// more "clever" attempts (a global tallest-region cutoff, fixed-size
/// row bucketing, an augmented BST with ad hoc pruning) were each
/// found, by direct measurement, not to close (see Issue #43's
/// discussion for the counter-examples).
pub(crate) fn finalize_merges(&mut self) {
if self.merged_regions.is_empty() {
return;
}
enum SweepEvent {
/// Fired at `region.start.row`.
Start(CellRef),
/// Fired at `region.end.row + 1`, i.e. one past the last row
/// the region is active for.
End(CellRef),
/// Fired at the row of a cell coordinate to resolve.
Query(CellRef),
}
let mut events: Vec<(u32, u8, SweepEvent)> =
Vec::with_capacity(self.merged_regions.len() * 2 + self.cells.len());
for region in self.merged_regions.values() {
events.push((region.start.row, 0, SweepEvent::Start(region.start)));
events.push((region.end.row + 1, 0, SweepEvent::End(region.start)));
}
for &coord in self.cells.keys() {
events.push((coord.row, 2, SweepEvent::Query(coord)));
}
// Tie-break: at the same row, End/Start (rank 0/1 below) must be
// applied before any Query at that row sees the active set.
events.sort_by_key(|(row, kind_rank, event)| {
let start_end_rank = match event {
SweepEvent::End(_) => 0,
SweepEvent::Start(_) => 1,
SweepEvent::Query(_) => *kind_rank,
};
(*row, start_end_rank)
});
// Merges active at the current sweep row, holding each region's
// `start` (its key in `merged_regions`), sorted by `start.col`.
// Disjoint column ranges are guaranteed by resolve::merge's
// overlap validation, so at most one active entry can ever
// contain a given query column.
let mut active: Vec<CellRef> = Vec::new();
let mut to_drop: Vec<CellRef> = Vec::new();
for (_, _, event) in &events {
match event {
SweepEvent::Start(start) => {
let pos = active.partition_point(|s| s.col < start.col);
active.insert(pos, *start);
}
SweepEvent::End(start) => {
let pos = active.partition_point(|s| s.col < start.col);
debug_assert_eq!(active.get(pos), Some(start));
active.remove(pos);
}
SweepEvent::Query(coord) => {
let pos = active.partition_point(|s| s.col <= coord.col);
if pos == 0 {
continue;
}
let candidate_start = active[pos - 1];
if *coord == candidate_start {
continue; // it's already this region's own origin.
}
let region = self
.merged_regions
.get(&candidate_start)
.expect("active set only ever holds keys currently in merged_regions");
if coord.col <= region.end.col {
to_drop.push(*coord);
}
}
}
}
for coord in to_drop {
self.cells.remove(&coord);
}
}
/// An iterator over origin cells only (for JSON generation). No longer
/// filters via `resolve_origin`: `finalize_merges` (called once, right
/// after every merge is registered — see its doc comment) already
/// guarantees every remaining `cells` key is its own origin, so a
/// plain `cells.iter()` is correct on its own and doesn't pay
/// `resolve_origin`'s per-cell cost (Issue #43).
pub fn iter_cells(&self) -> impl Iterator<Item = (CellRef, &Cell)> {
self.cells.iter().map(|(&r, c)| (r, c))
}
/// Registers this sheet's column-width ranges. Called once by
/// `resolve::column_width::resolve`, which guarantees `ranges` is
/// already sorted by `min` and mutually non-overlapping — this method
/// trusts that precondition rather than re-validating it (Issue #39).
pub(crate) fn set_col_widths(&mut self, ranges: Vec<ColWidthRange>, default: Option<f64>) {
self.col_widths = ranges;
self.default_col_width = default;
}
/// The width of column `col`, or `None` if it falls in no `<col>`
/// range and no `<sheetFormatPr defaultColWidth>` was set. Binary
/// search over `col_widths` (sorted, non-overlapping by construction —
/// see `set_col_widths`): find the last range with `min <= col`, then
/// check whether it actually reaches `col` — O(log R) for R ranges,
/// never O(R) regardless of how a file arranges them (Issue #39;
/// same class of concern as `resolve_origin`'s Issue #43 fix).
///
/// Returns `None` rather than a guessed fallback (e.g. Excel's common
/// "Calibri 11" default of ~8.43 characters) when nothing covers
/// `col`: that default depends on the workbook's font metrics, which
/// this library does not compute — a wrong guess would be worse than
/// an explicit absence for a caller to fill in its own default.
pub fn column_width(&self, col: u32) -> Option<f64> {
let idx = self.col_widths.partition_point(|r| r.min <= col);
if idx > 0 {
let candidate = &self.col_widths[idx - 1];
if col <= candidate.max {
return Some(candidate.width);
}
}
self.default_col_width
}
/// The raw column-width ranges, for JSON output as a sheet-level
/// `columns` array rather than duplicated onto every cell (Issue #36
/// review discussion: embedding a column-level value per cell would
/// multiply output size by the number of populated cells in each
/// column, undermining the sparse-output design this library exists
/// for).
pub fn col_width_ranges(&self) -> &[ColWidthRange] {
&self.col_widths
}
pub fn default_col_width(&self) -> Option<f64> {
self.default_col_width
}
}
#[cfg(test)]
mod tests {
use super::*;
fn r(row: u32, col: u32) -> CellRef {
CellRef { row, col }
}
#[test]
fn get_on_blank_cell_returns_none() {
let sheet = Sheet::new("Sheet1".into(), SheetVisibility::Visible);
assert!(sheet.get(r(1, 1)).is_none());
}
#[test]
fn get_on_virtual_coordinate_returns_origin_cell() {
let mut sheet = Sheet::new("Sheet1".into(), SheetVisibility::Visible);
sheet.insert_cell(
r(1, 1),
Cell {
value: Some(crate::model::CellValue::Boolean(true)),
style: None,
},
);
sheet.insert_merge(MergedRegion {
start: r(1, 1),
end: r(3, 3),
});
let origin = sheet.get(r(1, 1)).cloned();
let virtual_cell = sheet.get(r(2, 2)).cloned();
assert_eq!(origin, virtual_cell);
assert!(virtual_cell.is_some());
}
#[test]
fn get_mut_resolves_alias_and_allows_mutation() {
let mut sheet = Sheet::new("Sheet1".into(), SheetVisibility::Visible);
sheet.insert_cell(
r(1, 1),
Cell {
value: Some(crate::model::CellValue::Boolean(false)),
style: None,
},
);
sheet.insert_merge(MergedRegion {
start: r(1, 1),
end: r(2, 2),
});
// Mutating through a virtual coordinate rewrites the origin cell.
sheet.get_mut(r(2, 2)).unwrap().value = Some(crate::model::CellValue::Boolean(true));
assert_eq!(
sheet.get(r(1, 1)).unwrap().value,
Some(crate::model::CellValue::Boolean(true))
);
assert!(sheet.get_mut(r(9, 9)).is_none());
}
#[test]
fn merged_region_span() {
let one_by_one = MergedRegion {
start: r(1, 1),
end: r(1, 1),
};
assert_eq!(one_by_one.row_span(), 1);
assert_eq!(one_by_one.col_span(), 1);
let large = MergedRegion {
start: r(2, 3),
end: r(10, 20),
};
assert_eq!(large.row_span(), 9);
assert_eq!(large.col_span(), 18);
}
#[test]
fn merged_region_at_lookup() {
let mut sheet = Sheet::new("Sheet1".into(), SheetVisibility::Visible);
let region = MergedRegion {
start: r(1, 1),
end: r(2, 2),
};
sheet.insert_merge(region);
assert_eq!(sheet.merged_region_at(r(1, 1)), Some(®ion));
assert_eq!(sheet.merged_region_at(r(2, 2)), None);
}
#[test]
fn iter_cells_only_yields_origin_cells() {
let mut sheet = Sheet::new("Sheet1".into(), SheetVisibility::Visible);
sheet.insert_cell(
r(1, 1),
Cell {
value: None,
style: None,
},
);
sheet.insert_merge(MergedRegion {
start: r(1, 1),
end: r(2, 2),
});
sheet.finalize_merges();
let coords: Vec<CellRef> = sheet.iter_cells().map(|(coord, _)| coord).collect();
assert_eq!(coords, vec![r(1, 1)]);
}
#[test]
fn iter_cells_excludes_cells_pre_inserted_at_alias_coordinates() {
// parse/worksheet.rs streams a `<c>` element for every cell it
// encounters, including ones inside a merged range that later turn
// out not to be the origin (e.g. border-only styling on B2 within
// A1:B2). insert_merge must not let a pre-existing `cells` entry at
// an alias coordinate leak into iter_cells.
let mut sheet = Sheet::new("Sheet1".into(), SheetVisibility::Visible);
sheet.insert_cell(
r(1, 1),
Cell {
value: Some(crate::model::CellValue::Boolean(true)),
style: None,
},
);
sheet.insert_cell(
r(2, 2),
Cell {
value: None,
style: None,
},
);
sheet.insert_merge(MergedRegion {
start: r(1, 1),
end: r(2, 2),
});
sheet.finalize_merges();
let coords: Vec<CellRef> = sheet.iter_cells().map(|(coord, _)| coord).collect();
assert_eq!(coords, vec![r(1, 1)]);
}
#[test]
fn insert_cell_updates_max_row_col() {
let mut sheet = Sheet::new("Sheet1".into(), SheetVisibility::Visible);
sheet.insert_cell(
r(5, 2),
Cell {
value: None,
style: None,
},
);
assert_eq!(sheet.max_row, 5);
assert_eq!(sheet.max_col, 2);
sheet.insert_cell(
r(3, 9),
Cell {
value: None,
style: None,
},
);
assert_eq!(sheet.max_row, 5);
assert_eq!(sheet.max_col, 9);
}
#[test]
fn insert_merge_backfills_blank_origin_cell() {
let mut sheet = Sheet::new("Sheet1".into(), SheetVisibility::Visible);
sheet.insert_merge(MergedRegion {
start: r(1, 1),
end: r(2, 2),
});
let origin_cell = sheet.get(r(1, 1));
assert_eq!(
origin_cell,
Some(&Cell {
value: None,
style: None,
})
);
assert_eq!(
sheet.merged_region_at(r(1, 1)),
Some(&MergedRegion {
start: r(1, 1),
end: r(2, 2),
})
);
sheet.finalize_merges();
let coords: Vec<CellRef> = sheet.iter_cells().map(|(coord, _)| coord).collect();
assert_eq!(coords, vec![r(1, 1)]);
}
#[test]
fn insert_merge_expands_used_range_from_only_a1_data() {
let mut sheet = Sheet::new("Sheet1".into(), SheetVisibility::Visible);
sheet.insert_cell(
r(1, 1),
Cell {
value: Some(crate::model::CellValue::Boolean(true)),
style: None,
},
);
assert_eq!(sheet.max_row, 1);
assert_eq!(sheet.max_col, 1);
sheet.insert_merge(MergedRegion {
start: r(1, 1),
end: r(3, 3),
});
assert_eq!(sheet.max_row, 3);
assert_eq!(sheet.max_col, 3);
}
#[test]
fn insert_merge_on_huge_region_does_not_hang() {
// Regression test: a full-sheet merge (Excel's actual maximum
// dimensions, ~17 billion cells) must register in roughly constant
// time, not time proportional to its area. An earlier
// implementation populated a `HashMap<CellRef, CellRef>` alias
// entry for every cell in the region inside `insert_merge`, which
// hung in practice on a range this size.
let mut sheet = Sheet::new("Sheet1".into(), SheetVisibility::Visible);
let huge = MergedRegion {
start: r(1, 1),
end: r(1_048_576, 16_384),
};
sheet.insert_merge(huge);
assert_eq!(sheet.get(r(1, 1)), sheet.get(r(500_000, 8_000)));
assert_eq!(sheet.merged_region_at(r(1, 1)), Some(&huge));
assert_eq!(sheet.max_row, 1_048_576);
assert_eq!(sheet.max_col, 16_384);
}
#[test]
fn get_outside_any_merged_region_is_unaffected_by_other_regions() {
let mut sheet = Sheet::new("Sheet1".into(), SheetVisibility::Visible);
sheet.insert_cell(
r(10, 10),
Cell {
value: Some(crate::model::CellValue::Boolean(true)),
style: None,
},
);
sheet.insert_merge(MergedRegion {
start: r(1, 1),
end: r(2, 2),
});
// r(10, 10) falls inside no merged region, so it must resolve to
// itself rather than being swept into the unrelated A1:B2 region.
assert_eq!(
sheet.get(r(10, 10)),
Some(&Cell {
value: Some(crate::model::CellValue::Boolean(true)),
style: None,
})
);
}
#[test]
fn get_inside_bounding_box_but_outside_any_region_resolves_to_itself() {
// Two merges with a gap between them: their combined merge_bounds
// spans rows 1-10, but row 5 (inside the bounds, outside both
// regions) must still resolve to itself rather than being
// incorrectly swept into a region by the O(1) bounds pre-check.
let mut sheet = Sheet::new("Sheet1".into(), SheetVisibility::Visible);
sheet.insert_cell(
r(5, 1),
Cell {
value: Some(crate::model::CellValue::Boolean(true)),
style: None,
},
);
sheet.insert_merge(MergedRegion {
start: r(1, 1),
end: r(2, 1),
});
sheet.insert_merge(MergedRegion {
start: r(9, 1),
end: r(10, 1),
});
assert_eq!(
sheet.get(r(5, 1)),
Some(&Cell {
value: Some(crate::model::CellValue::Boolean(true)),
style: None,
})
);
}
#[test]
fn finalize_merges_is_a_no_op_when_there_are_no_merges() {
let mut sheet = Sheet::new("Sheet1".into(), SheetVisibility::Visible);
sheet.insert_cell(
r(1, 1),
Cell {
value: Some(crate::model::CellValue::Boolean(true)),
style: None,
},
);
sheet.finalize_merges();
let coords: Vec<CellRef> = sheet.iter_cells().map(|(coord, _)| coord).collect();
assert_eq!(coords, vec![r(1, 1)]);
}
#[test]
fn finalize_merges_drops_non_origin_cells_but_keeps_origin_and_standalone_cells() {
let mut sheet = Sheet::new("Sheet1".into(), SheetVisibility::Visible);
// A1: this merge's origin (real data).
sheet.insert_cell(
r(1, 1),
Cell {
value: Some(crate::model::CellValue::Boolean(true)),
style: None,
},
);
// B2: a virtual coordinate inside A1:B2, pre-populated the same way
// parse/worksheet.rs would for border-only styling.
sheet.insert_cell(
r(2, 2),
Cell {
value: None,
style: None,
},
);
// C1: unrelated to any merge.
sheet.insert_cell(
r(1, 3),
Cell {
value: Some(crate::model::CellValue::Boolean(false)),
style: None,
},
);
sheet.insert_merge(MergedRegion {
start: r(1, 1),
end: r(2, 2),
});
sheet.finalize_merges();
let mut coords: Vec<CellRef> = sheet.iter_cells().map(|(coord, _)| coord).collect();
coords.sort();
assert_eq!(coords, vec![r(1, 1), r(1, 3)]);
}
#[test]
fn finalize_merges_resolves_multiple_disjoint_row_bound_merges_correctly() {
// Two merges sharing no row overlap, each spanning several
// columns, plus data cells scattered both inside and outside
// either range — exercises the sweep line's Start/End bookkeeping
// across more than one active region.
let mut sheet = Sheet::new("Sheet1".into(), SheetVisibility::Visible);
for col in 1..=5 {
sheet.insert_cell(
r(3, col),
Cell {
value: Some(crate::model::CellValue::Number(col as f64)),
style: None,
},
);
sheet.insert_cell(
r(8, col),
Cell {
value: Some(crate::model::CellValue::Number(col as f64)),
style: None,
},
);
}
sheet.insert_cell(
r(5, 1),
Cell {
value: Some(crate::model::CellValue::Boolean(true)),
style: None,
},
);
sheet.insert_merge(MergedRegion {
start: r(3, 1),
end: r(3, 5),
});
sheet.insert_merge(MergedRegion {
start: r(8, 1),
end: r(8, 5),
});
sheet.finalize_merges();
let mut coords: Vec<CellRef> = sheet.iter_cells().map(|(coord, _)| coord).collect();
coords.sort();
assert_eq!(coords, vec![r(3, 1), r(5, 1), r(8, 1)]);
assert_eq!(
sheet.get(r(3, 4)),
Some(&Cell {
value: Some(crate::model::CellValue::Number(1.0)),
style: None,
})
);
}
#[test]
fn column_width_with_no_ranges_and_no_default_is_none() {
let sheet = Sheet::new("Sheet1".into(), SheetVisibility::Visible);
assert_eq!(sheet.column_width(1), None);
}
#[test]
fn column_width_falls_back_to_default_col_width_outside_every_range() {
let mut sheet = Sheet::new("Sheet1".into(), SheetVisibility::Visible);
sheet.set_col_widths(
vec![ColWidthRange {
min: 1,
max: 3,
width: 12.0,
}],
Some(8.43),
);
assert_eq!(sheet.column_width(2), Some(12.0));
assert_eq!(sheet.column_width(10), Some(8.43));
}
#[test]
fn column_width_binary_search_across_multiple_ranges() {
let mut sheet = Sheet::new("Sheet1".into(), SheetVisibility::Visible);
sheet.set_col_widths(
vec![
ColWidthRange {
min: 1,
max: 5,
width: 10.0,
},
ColWidthRange {
min: 10,
max: 20,
width: 20.0,
},
ColWidthRange {
min: 100,
max: 16_384,
width: 5.0,
},
],
None,
);
assert_eq!(sheet.column_width(1), Some(10.0));
assert_eq!(sheet.column_width(5), Some(10.0));
assert_eq!(sheet.column_width(7), None); // gap between ranges
assert_eq!(sheet.column_width(10), Some(20.0));
assert_eq!(sheet.column_width(20), Some(20.0));
assert_eq!(sheet.column_width(21), None); // gap
assert_eq!(sheet.column_width(100), Some(5.0));
assert_eq!(sheet.column_width(16_384), Some(5.0));
}
#[test]
fn col_width_ranges_exposes_the_raw_ranges_for_json_output() {
let mut sheet = Sheet::new("Sheet1".into(), SheetVisibility::Visible);
let ranges = vec![ColWidthRange {
min: 1,
max: 16_384,
width: 8.43,
}];
sheet.set_col_widths(ranges.clone(), None);
assert_eq!(sheet.col_width_ranges(), ranges.as_slice());
assert_eq!(sheet.default_col_width(), None);
}
}