varlen 0.1.2

Ergonomic variable-length types
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
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
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
#![doc = crate::doc_macro::make_svgbobdoc!(
    //! A sequence of variable-length objects in a flat buffer.
    //! 
    //! For example, the [`Seq<Str<u8>>`] representation of `["hello", "good", "world!"]` is:
    //! 
    //! ```svgbob
    //! "Seq  (actual layout may vary)"
    //! +------+--------+--------------+--------------+
    //! | base | len: 3 | occupied_end | capacity_end |
    //! +------+--------+--------------+--------------+
    //!    |                   |              |
    //!    |                   |              '----------------------.
    //!    '-.                 '-----------------.                   |
    //!      |                                   |                   |
    //!      v  "Storage"                        v                   v
    //!      +---+-------+---+------+---+--------+-------------------+
    //!      | 5 | hello | 4 | good | 6 | world! | "<uninitialized>" |
    //!      +---+-------+---+------+---+--------+-------------------+
    //! ```
    //! 
    //! Unlike [`Vec<T>`], once an element has been pushed onto the sequence, its size cannot change. Also
    //! unlike [`Vec<T>`] there is no random access to the `n`th element of the sequence; access is primarily
    //! sequential although some indexing options exist. (TODO: explain)
    //! 
    //! # Examples
    //! 
    //! Like [`Vec<T>`], this type is a sequence of objects supporting amortized-O(1) [`push()`](`Seq::push`), and
    //! you can iterate through elements of the sequence:
    //! 
    //! ```
    //! use varlen::prelude::*;
    //! let mut seq: Seq<Str> = Seq::new();
    //! seq.push(Str::copy("hello"));
    //! seq.push(Str::copy("good"));
    //! seq.push(Str::copy("world!"));
    //! let v: Vec<&str> = seq.iter().map(|s| &s[..]).collect();
    //! assert_eq!(vec!["hello", "good", "world!"], v);
    //! ```
    //! 
    //! # Module contents
    //! 
    //! The main type is [`Seq<T>`]. It includes iterator types [`Iter<T>`], [`IterMut<T>`] and
    //! [`OwnedElems<T>`]. 
    //! 
    //! Types [`CheckedIndexing`] and [`UncheckedIndexing`] parametrize the [`Seq<T>`] and control whether
    //! checked random access is available.
    )]

#[cfg(doc)]
use std::vec::Vec;

use crate::owned::Owned;
use crate::{Initializer, Layout, VarLen};
use alloc::alloc;
use core::pin::Pin;
use core::ptr::NonNull;

/// Creates a sequence with the specified elements.
///
/// # Examples
///
/// ```
/// use varlen::prelude::*;
/// let s: Seq<Str> = seq![Str::copy("hello"), Str::copy("world")];
/// let vec: Vec<&str> = s.iter().map(|s| &s[..]).collect();
/// assert_eq!(&vec[..], &["hello", "world"]);
/// ```
#[macro_export]
macro_rules! seq {
    ($($element:expr),* $(,)? ) => {
        {
            let mut s = $crate::seq::Seq::new();
            $(
                s.push($element);
            )*
            s
        }
    }
}

#[doc(inline)]
pub use seq;

/// Controls what kind of indexing is available on a sequence: either `CheckedIndexing` or `UncheckedIndexing`.
///
/// # Examples
///
/// Generic operation on a [`Seq<T, I>`] independent of indexing style:
///
/// ```
/// use varlen::prelude::*;
/// fn sum_lengths<I: Indexing>(s: &Seq<Str, I>) -> usize {
///     let mut result = 0;
///     for st in s.iter() {
///         result += st.len();
///     }
///     result
/// }
///
/// let seq1: Seq<Str> = seq![Str::copy("hello"), Str::copy("world")];
/// assert_eq!(sum_lengths(&seq1), 10);
/// let seq2: IndexableSeq<Str> = seq![Str::copy("au"), Str::copy("revoir")];
/// assert_eq!(sum_lengths(&seq2), 8)
/// ```
pub trait Indexing: private::Sealed {}

mod private {
    use super::*;

    pub trait Sealed {
        const INSTANCE: Self;
        unsafe fn alloc_storage(layout: alloc::Layout) -> Option<NonNull<u8>>;
        unsafe fn grow_storage(
            ptr: *mut u8,
            layout: alloc::Layout,
            new_size: usize,
        ) -> Option<NonNull<u8>>;
        unsafe fn mark_offset_valid<T: VarLen>(
            ptr: NonNull<T>,
            capacity_offsets: usize,
            offset: usize,
        );
        unsafe fn clear_bitmasks<T: VarLen>(
            ptr: NonNull<T>,
            capacity_offsets: usize,
            occupied_offsets: usize,
        );
        fn extended_layout(layout: alloc::Layout) -> alloc::Layout;
    }
}

/// Unchecked indexing strategy for sequences.
///
/// In this mode, the [`Seq<T>`] includes only the storage
/// for the `T` objects, and nothing else. It is not possible to check integer offsets for
/// validity in this mode, so only unsafe unchecked indexing is available.
///
/// # Examples
///
/// ```
/// use varlen::prelude::*;
///
/// let mut seq = Seq::new_minimal();
/// seq.push(Str::copy("hello"));
/// let pos = seq.offset();
/// seq.push(Str::copy("world"));
/// // Safe because: first element is always at offset 0.
/// assert_eq!("hello", unsafe { &seq.from_offset_unchecked(0)[..] });
/// // Safe because: offset() returned offset of the next element to be pushed.
/// assert_eq!("world", unsafe { &seq.from_offset_unchecked(pos)[..] });
/// ```
pub struct UncheckedIndexing;

impl private::Sealed for UncheckedIndexing {
    const INSTANCE: Self = UncheckedIndexing;
    unsafe fn alloc_storage(layout: alloc::Layout) -> Option<NonNull<u8>> {
        NonNull::new(alloc::alloc(layout))
    }
    unsafe fn grow_storage(
        ptr: *mut u8,
        layout: alloc::Layout,
        new_size: usize,
    ) -> Option<NonNull<u8>> {
        NonNull::new(alloc::realloc(ptr, layout, new_size))
    }

    #[inline(always)]
    unsafe fn mark_offset_valid<T: VarLen>(
        _ptr: NonNull<T>,
        _capacity_offsets: usize,
        _offset: usize,
    ) {
    }

    #[inline(always)]
    unsafe fn clear_bitmasks<T: VarLen>(
        _ptr: NonNull<T>,
        _capacity_offsets: usize,
        _occupied_offsets: usize,
    ) {
    }

    fn extended_layout(layout: alloc::Layout) -> alloc::Layout {
        layout
    }
}
impl Indexing for UncheckedIndexing {}

/// Checked indexing strategy for sequences.
///
/// A [`Seq<T, CheckedIndexing>`] includes a bitmask
/// which indicates the locations at which `T` objects start. Appending to the sequence updates the
/// bitmask. In this mode, safe (checked) indexing is available, which will either return to a
/// valid object or will fail at runtime (with either `None` or a panic).
///
/// # Examples
///
/// ```
/// use varlen::prelude::*;
///
/// let mut seq = Seq::new_indexable();
/// seq.push(Str::copy("hello"));
/// let pos = seq.offset();
/// seq.push(Str::copy("world"));
/// assert_eq!("hello", &seq.from_offset(0)[..]);
/// assert_eq!("world", &seq.from_offset(pos)[..]);
/// ```
///
/// # Overheads
///
/// This mode has some performance overheads relative to `UncheckedIndexing` mode:
///
/// * We consume additional memory: 1 bit overhead per [`T::ALIGN`](VarLen::ALIGN) bytes of storage. The max
///   is when `T::ALIGN=1`, in which case there is 12.5% of memory overhead.
/// * Modifying (appending or clearing) the sequence has some runtime overhead, as it must
///   update the bitmask in addition to the underlying byte storage.
///
/// You should only enable this mode if you want to use safe indexing by integers; otherwise
/// use [`crate::seq::UncheckedIndexing`].
pub struct CheckedIndexing;

#[inline]
fn add_bitmask_to_layout(layout: alloc::Layout) -> Option<(alloc::Layout, usize)> {
    assert!(layout.size() % layout.align() == 0);
    let offsets = layout.size() / layout.align();
    let bitmask_bytes = offsets.checked_add(7)? / 8;
    let full_layout =
        alloc::Layout::from_size_align(layout.size() + bitmask_bytes, layout.align()).ok()?;
    Some((full_layout, bitmask_bytes))
}

impl private::Sealed for CheckedIndexing {
    const INSTANCE: Self = CheckedIndexing;
    unsafe fn alloc_storage(layout: alloc::Layout) -> Option<NonNull<u8>> {
        let (full_layout, bitmask_bytes) = add_bitmask_to_layout(layout)?;
        let ptr = NonNull::new(alloc::alloc(full_layout))?;
        // Zero the bitmask.
        let bitmask =
            core::slice::from_raw_parts_mut(ptr.as_ptr().add(layout.size()), bitmask_bytes);
        bitmask.fill(0);
        Some(ptr)
    }

    unsafe fn grow_storage(
        ptr: *mut u8,
        old_layout: alloc::Layout,
        new_size: usize,
    ) -> Option<NonNull<u8>> {
        debug_assert!(new_size >= old_layout.size());
        let (old_full_layout, old_bitmask_bytes) = add_bitmask_to_layout(old_layout)?;
        let (new_full_layout, new_bitmask_bytes) = add_bitmask_to_layout(
            alloc::Layout::from_size_align(new_size, old_layout.align()).ok()?,
        )?;
        let ptr = NonNull::new(alloc::realloc(ptr, old_full_layout, new_full_layout.size()))?;
        let old_bitmask =
            core::slice::from_raw_parts(ptr.as_ptr().add(old_layout.size()), old_bitmask_bytes);
        let new_bitmask =
            core::slice::from_raw_parts_mut(ptr.as_ptr().add(new_size), new_bitmask_bytes);
        debug_assert!(new_bitmask_bytes >= old_bitmask_bytes);
        core::ptr::copy(
            old_bitmask.as_ptr(),
            new_bitmask.as_mut_ptr(),
            old_bitmask_bytes,
        );
        new_bitmask[old_bitmask_bytes..].fill(0);
        Some(ptr)
    }

    #[inline(always)]
    unsafe fn mark_offset_valid<T: VarLen>(
        ptr: NonNull<T>,
        capacity_offsets: usize,
        offset: usize,
    ) {
        let ptr = ptr.cast::<u8>().as_ptr();
        *ptr.wrapping_add(capacity_offsets * T::ALIGN + (offset / 8)) |= 1u8 << (offset % 8);
    }

    #[inline]
    unsafe fn clear_bitmasks<T: VarLen>(
        ptr: NonNull<T>,
        capacity_offsets: usize,
        occupied_offsets: usize,
    ) {
        let num_bytes = (occupied_offsets + 7) / 8;
        let bitmask_start = ptr.as_ptr().cast::<u8>().add(capacity_offsets * T::ALIGN);
        core::slice::from_raw_parts_mut(bitmask_start, num_bytes).fill(0);
    }

    #[inline]
    fn extended_layout(layout: alloc::Layout) -> alloc::Layout {
        add_bitmask_to_layout(layout)
            .unwrap_or_else(|| layout_overflow())
            .0
    }
}
impl Indexing for CheckedIndexing {}

#[doc = crate::doc_macro::make_svgbobdoc!(
/// A sequence of variable-length objects in a flat buffer.
/// 
/// For example, the [`Seq<Str<u8>>`] representation of `["hello", "good", "world!"]` is:
/// 
/// ```svgbob
/// "Seq (actual layout may vary)"
/// +------+--------+--------------+--------------+
/// | base | len: 3 | occupied_end | capacity_end |
/// +------+--------+--------------+--------------+
///    |                   |              |
///    |                   |              '----------------------.
///    '-.                 '-----------------.                   |
///      |                                   |                   |
///      v  "Storage"                        v                   v
///      +---+-------+---+------+---+--------+-------------------+
///      | 5 | hello | 4 | good | 6 | world! | "<uninitialized>" |
///      +---+-------+---+------+---+--------+-------------------+
/// ```
/// 
/// # Examples
/// 
/// Like [`Vec<T>`], this type is a sequence of objects supporting amortized-O(1) [`push()`](`Seq::push`), and
/// you can iterate through elements of the sequence:
/// 
/// ```
/// use varlen::prelude::*;
/// let mut seq: Seq<Str> = Seq::new();
/// seq.push(Str::copy("hello"));
/// seq.push(Str::copy("good"));
/// seq.push(Str::copy("world!"));
/// let v: Vec<&str> = seq.iter().map(|s| &s[..]).collect();
/// assert_eq!(vec!["hello", "good", "world!"], v);
/// ```
/// 
/// *Unlike* [`Vec<T>`], there is no random access to the `n`th element of the sequence, 
/// Unlike [`Vec<T>`], once an element has been pushed onto the sequence, its size cannot change.
/// 
/// # Indexing
/// 
/// Since the `T` elements are variable-sized, the address of the `n`th element in the storage 
/// cannot directly be calculated from `n`. This means that random access to the `n`th element is 
/// not available in the [`Seq<T>`] type. However, some alternatives exist, either in variations 
/// of the [`Seq<T>`] type or in different kinds of indexing.
/// 
/// ## Indexing by offset
/// Instead of indexing by element index, you may index by *offset*. The 
/// offset of an element is defined to be its position in the storage buffer, in units of 
/// [`T::ALIGN`](VarLen::ALIGN). Offsets start at 0 and increase as you push elements onto a sequence, but they may
/// skip values:
/// 
/// ```
/// use varlen::prelude::*;
/// let mut seq: Seq<Str<u16>> = Seq::new();
/// assert_eq!(0, seq.offset());
/// seq.push(Str::try_copy("hello").unwrap());
/// // "hello" takes u16 length, plus 5 bytes storage. Total: 7 bytes, which is 
/// // `div_round_up(7, Str::<u16>::ALIGN)=4` offsets.
/// assert_eq!(4, seq.offset());
/// seq.push(Str::try_copy("fantastic").unwrap());
/// assert_eq!(10, seq.offset());
/// seq.push(Str::try_copy("world").unwrap());
/// assert_eq!(14, seq.offset());
/// ```
/// 
/// In [`Seq<T>`] indexing by offset is available, but unsafe, because the data structure doesn't
/// contain enough information to validate an offset:
/// 
/// ```
/// // ... continued
/// # use varlen::prelude::*;
/// # let mut seq: Seq<Str<u16>> = Seq::new();
/// # assert_eq!(0, seq.offset());
/// # seq.push(Str::try_copy("hello").unwrap());
/// # // "hello" takes u16 length, plus 5 bytes storage. Total: 7 bytes, which is 
/// # // `div_round_up(7, Str::<u16>::ALIGN)=4` offsets.
/// # assert_eq!(4, seq.offset());
/// # seq.push(Str::try_copy("fantastic").unwrap());
/// # assert_eq!(10, seq.offset());
/// # seq.push(Str::try_copy("world").unwrap());
/// # assert_eq!(14, seq.offset());
/// let s = unsafe { seq.from_offset_unchecked(4) };
/// assert_eq!("fantastic", &s[..]);
/// ```
/// 
/// In [`Seq<T, CheckedIndexing>`] indexing by offset is available and safe:
/// 
/// ```
/// use varlen::prelude::*;
/// let mut seq: IndexableSeq<Str<u16>> = Seq::new();
/// seq.push(Str::try_copy("hello").unwrap());
/// assert_eq!(4, seq.offset());
/// seq.push(Str::try_copy("fantastic").unwrap());
/// seq.push(Str::try_copy("world").unwrap());
/// assert_eq!("fantastic", &seq.from_offset(4)[..]);
/// // Would panic: seq.from_offset(5)
/// ```
/// 
/// To make this possible, [`Seq<T, CheckedIndexing>`] stores a bitmap indicating where the start
/// of every element in the storage is:
///
/// ```svgbob
/// "Seq (actual layout may vary)"
/// +------+--------+--------------+--------------+
/// | base | len: 3 | occupied_end | capacity_end |
/// +------+--------+--------------+--------------+
///    |                   |              |
///    |                   |              '----------------------.
///    '-.                 '-----------------.                   |
///      |                                   |                   |
///      v  "Storage"                        v                   v
///      +---+-------+---+-------+---+-------+-------------------+
///      | 5 | hello | 4 | good  | 6 | world | "<uninitialized>" |
///      +---+-------+---+-------+---+-------+-------------------+
///      ^           ^           ^       
///      |           |           |
///      v           v           v
///      +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-------------------+
///      |1|0|0|0|0|0|1|0|0|0|0|0|1|0|0|0|0|0| "<uninitialized>" |
///      +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-------------------+
///      "Bitmap"
/// ```
/// 
/// Maintaining this bitmap adds a memory overhead of 1 bit per [`T::ALIGN`](VarLen::ALIGN) bytes (at most 12.5% 
/// overhead in the case `T::ALIGN=1`), and slightly increases the cost of [`Seq::push`].
)]
pub struct Seq<T: VarLen, Idx: Indexing = UncheckedIndexing> {
    // Actually aligned to T::ALIGN, which is at least as large as core::mem::align_of::<T>().
    //
    // If B=UseBitmask, additionally has `capacity_bytes / (8 * T::ALIGN)` bytes of storage
    // immediately afterwards (at offset `capacity_bytes`), with set bits indicating the start
    // of an element.
    ptr: NonNull<T>,
    len_elements: usize,     // Number of elements
    occupied_offsets: usize, // Units of T::ALIGN
    capacity_offsets: usize, // Units of T::ALIGN
    _idx: Idx,
}

/// A sequence with safe indexing by integers.
///
/// # Examples
///
/// ```
/// use varlen::prelude::*;
///
/// let mut seq = IndexableSeq::new();
/// seq.push(Str::copy("hello"));
/// let pos = seq.offset();
/// seq.push(Str::copy("world"));
/// assert_eq!("hello", &seq.from_offset(0)[..]);
/// assert_eq!("world", &seq.from_offset(pos)[..]);
/// ```
pub type IndexableSeq<T> = Seq<T, CheckedIndexing>;

#[inline(never)]
#[cold]
fn layout_overflow() -> ! {
    panic!("Overflowing layout")
}

#[inline(never)]
#[cold]
fn out_of_bounds() -> ! {
    panic!("Out-of-bounds access")
}

#[inline(never)]
#[cold]
fn invalid_offset() -> ! {
    panic!("Invalid Seq offset")
}

struct OverflowError;

#[inline(always)]
unsafe fn add_offsets_fast<T: VarLen>(ptr: NonNull<T>, offsets: usize) -> NonNull<T> {
    add_bytes_fast(ptr, offsets * T::ALIGN)
}

#[inline(always)]
unsafe fn add_bytes_fast<T: VarLen>(ptr: NonNull<T>, bytes: usize) -> NonNull<T> {
    NonNull::new_unchecked((ptr.as_ptr() as *mut u8).wrapping_add(bytes) as *mut T)
}

#[inline(always)]
fn round_up_fast(size: usize, align: usize) -> usize {
    size.wrapping_add(align - 1) & 0usize.wrapping_sub(align)
}

#[inline]
fn try_realloc<Idx: Indexing>(
    ptr: NonNull<u8>,
    capacity_offsets: usize,
    minimum_offsets: usize,
    align: usize,
) -> Result<(NonNull<u8>, usize), OverflowError> {
    let size_offsets = core::cmp::max(
        core::cmp::max(minimum_offsets, (32 + align - 1) / align),
        capacity_offsets.checked_mul(2).ok_or(OverflowError)?,
    );
    let size_bytes = size_offsets.checked_mul(align).ok_or(OverflowError)?;
    let old_layout = alloc::Layout::from_size_align(capacity_offsets * align, align)
        .map_err(|_| OverflowError)?;
    let layout = alloc::Layout::from_size_align(size_bytes, align).map_err(|_| OverflowError)?;
    let ptr = if capacity_offsets == 0 {
        unsafe { Idx::alloc_storage(layout) }
    } else {
        unsafe { Idx::grow_storage(ptr.as_ptr(), old_layout, size_bytes) }
    };
    let ptr = ptr.ok_or(OverflowError)?;
    Ok((ptr, size_offsets))
}

#[inline(never)]
#[cold]
fn must_realloc<Idx: Indexing>(
    ptr: NonNull<u8>,
    capacity_offsets: usize,
    minimum_offsets: usize,
    align: usize,
) -> (NonNull<u8>, usize) {
    try_realloc::<Idx>(ptr, capacity_offsets, minimum_offsets, align)
        .unwrap_or_else(|_| layout_overflow())
}

#[allow(rustdoc::missing_doc_code_examples)]
impl<T: VarLen> Seq<T> {
    /// Constructs a sequence without checked indexing.
    ///
    /// # Examples
    ///
    /// ```
    /// use varlen::prelude::*;
    ///
    /// let mut seq = Seq::new_minimal();
    /// seq.push(Str::copy("hello"));
    /// seq.push(Str::copy("world"));
    /// let v: Vec<&str> = seq.iter().map(|s| &s[..]).collect();
    /// assert_eq!(vec!["hello", "world"], v);
    /// ```
    #[inline]
    pub fn new_minimal() -> Self {
        Self::new()
    }
}

#[allow(rustdoc::missing_doc_code_examples)]
impl<T: VarLen> Seq<T, CheckedIndexing> {
    /// Constructs a seq with checked indexing.
    ///
    /// # Examples
    ///
    /// ```
    /// use varlen::prelude::*;
    ///
    /// let mut seq = Seq::new_indexable();
    /// seq.push(Str::copy("hello"));
    /// let pos = seq.offset();
    /// seq.push(Str::copy("world"));
    /// assert_eq!("hello", &seq.from_offset(0)[..]);
    /// assert_eq!("world", &seq.from_offset(pos)[..]);
    /// ```
    #[inline]
    pub fn new_indexable() -> Self {
        Self::new()
    }
}

#[allow(rustdoc::missing_doc_code_examples)]
impl<T: VarLen, Idx: Indexing> Seq<T, Idx> {
    /// Creates an empty sequence.
    ///
    /// # Examples
    ///
    /// ```
    /// use varlen::prelude::*;
    /// let mut seq: Seq<Str> = Seq::new();
    /// seq.push(Str::copy("hello"));
    /// seq.push(Str::copy("world"));
    /// let v: Vec<&str> = seq.iter().map(|s| &s[..]).collect();
    /// assert_eq!(vec!["hello", "world"], v);
    /// ```
    #[inline]
    pub fn new() -> Self {
        Seq {
            ptr: NonNull::dangling(),
            len_elements: 0,
            occupied_offsets: 0,
            capacity_offsets: 0,
            _idx: Idx::INSTANCE,
        }
    }

    /// Number of elements in the sequence.
    ///
    /// # Examples
    ///
    /// ```
    /// use varlen::prelude::*;
    /// let mut seq: Seq<Str> = Seq::new_minimal();
    /// assert_eq!(seq.len(), 0);
    /// seq.push(Str::copy("hello"));
    /// assert_eq!(seq.len(), 1);
    /// seq.push(Str::copy("world"));
    /// assert_eq!(seq.len(), 2);
    /// ```
    #[inline]
    pub fn len(&self) -> usize {
        self.len_elements
    }

    /// Number of offsets (units of [`T::ALIGN`](VarLen::ALIGN)) in the storage.
    ///
    /// # Examples
    ///
    /// ```
    /// use varlen::prelude::*;
    /// let mut seq: Seq<Str<u32>> = Seq::new_minimal();
    /// assert_eq!(seq.capacity_in_offsets(), 0);
    /// seq.push(Str::try_copy("hello").unwrap());
    /// assert_eq!(seq.capacity_in_offsets(), 8);
    /// seq.push(Str::try_copy("world").unwrap());
    /// assert_eq!(seq.capacity_in_offsets(), 8);
    /// ```
    #[inline]
    pub fn capacity_in_offsets(&self) -> usize {
        self.capacity_offsets
    }

    /// Offset of the next element to be added to the sequence.
    ///
    /// The offset is counted in units of [`T::ALIGN`](VarLen::ALIGN).
    ///
    /// Also see [`crate::seq::Seq::from_offset`].
    ///
    /// # Examples
    ///
    /// ```
    /// use varlen::prelude::*;
    /// let mut seq: Seq<Str<u32>> = Seq::new_minimal();
    /// assert_eq!(seq.offset(), 0);
    /// seq.push(Str::try_copy("hello").unwrap());
    /// assert_eq!(seq.offset(), 3);
    /// seq.push(Str::try_copy("world").unwrap());
    /// assert_eq!(seq.offset(), 6);
    /// ```
    #[inline]
    pub fn offset(&self) -> usize {
        self.occupied_offsets
    }

    /// Adds an element to the sequence.
    ///
    /// # Examples
    ///
    /// ```
    /// use varlen::prelude::*;
    /// let mut seq: Seq<Str> = Seq::new();
    /// seq.push(Str::copy("hello"));
    /// seq.push(Str::copy("good"));
    /// seq.push(Str::copy("world!"));
    /// let v: Vec<&str> = seq.iter().map(|s| &s[..]).collect();
    /// assert_eq!(vec!["hello", "good", "world!"], v);
    /// ```
    #[inline]
    pub fn push(&mut self, init: impl Initializer<T>) {
        self.try_push(init).unwrap_or_else(|_| layout_overflow())
    }

    #[inline]
    fn try_push(&mut self, init: impl Initializer<T>) -> Result<(), OverflowError> {
        let layout = init.calculate_layout_cautious().ok_or(OverflowError)?;
        let align = T::ALIGN;
        let size_offsets = layout.size().checked_add(align - 1).ok_or(OverflowError)? / align;
        let occupied_plus = self
            .occupied_offsets
            .checked_add(size_offsets)
            .ok_or(OverflowError)?;
        if occupied_plus > self.capacity_offsets {
            let (ptr, capacity) = must_realloc::<Idx>(
                self.ptr.cast(),
                self.capacity_offsets,
                occupied_plus,
                T::ALIGN,
            );
            self.ptr = ptr.cast();
            self.capacity_offsets = capacity;
        }
        let elem_offset = self.occupied_offsets;
        unsafe {
            Idx::mark_offset_valid(self.ptr, self.capacity_offsets, elem_offset);
            init.initialize(add_offsets_fast(self.ptr, elem_offset), layout);
        }
        self.occupied_offsets = occupied_plus;
        self.len_elements += 1;
        Ok(())
    }

    /// Iterate over references.
    ///
    /// # Examples
    ///
    /// ```
    /// use varlen::prelude::*;
    /// let s: Seq<Str>  = seq![Str::copy("hello"), Str::copy("world")];
    /// let total_len: usize = s.iter().map(|s| s.len()).sum();
    /// assert_eq!(10, total_len);
    /// ```
    #[inline]
    pub fn iter(&self) -> Iter<'_, T> {
        Iter {
            ptr: self.ptr,
            len_elements: self.len_elements,
            marker: core::marker::PhantomData,
        }
    }

    /// Iterate over mutable (pinned) references.
    ///
    /// # Examples
    ///
    /// ```
    /// use varlen::prelude::*;
    /// let mut s: Seq<Str> = seq![Str::copy("hello"), Str::copy("world")];
    /// for str in s.iter_mut() {
    ///     str.mut_slice().make_ascii_uppercase();
    /// }
    /// let v: Vec<&str> = s.iter().map(|s| &s[..]).collect();
    /// assert_eq!(&v[..], &["HELLO", "WORLD"]);
    /// ```
    #[inline]
    pub fn iter_mut(&mut self) -> IterMut<'_, T> {
        IterMut {
            ptr: self.ptr,
            len_elements: self.len_elements,
            marker: core::marker::PhantomData,
        }
    }

    /// Gets the offset of this element from the start of the contiguous storage, counted in
    /// multiples of `<T as VarLen>::ALIGN`.
    ///
    /// # Examples
    ///
    /// ```
    /// use varlen::prelude::*;
    /// let s: Seq<Str<u16>> = seq![
    ///     Str::try_copy("hello").unwrap(),
    ///     Str::try_copy("world").unwrap(),
    /// ];
    /// let element = s.iter().nth(1).unwrap();
    /// assert_eq!(4, s.offset_of(element));
    /// ```
    ///
    /// # Panics
    ///
    /// Panics if this element isn't from this sequence's storage.
    ///
    /// ```should_panic
    /// use varlen::prelude::*;
    /// let s: Seq<Str> = seq![
    ///     Str::copy("hello"),
    ///     Str::copy("world"),
    /// ];
    /// let b = VBox::new(Str::copy("hello"));
    /// s.offset_of(&*b);  // Panics
    /// ```
    #[inline]
    pub fn offset_of(&self, element: &T) -> usize {
        let byte_offset = (element as *const T as usize).wrapping_sub(self.ptr.as_ptr() as usize);
        debug_assert!(byte_offset % T::ALIGN == 0);
        let offset = byte_offset / T::ALIGN;
        if offset >= self.occupied_offsets {
            out_of_bounds()
        } else {
            offset
        }
    }

    /// Given an offset of an element from the start of the continuous storage (counted in multiples
    /// of `<T as VarLen>::ALIGN`), returns a reference to the element.
    ///
    /// # Example
    ///
    /// ```
    /// use varlen::prelude::*;
    ///
    /// let mut seq = Seq::new_minimal();
    /// seq.push(Str::copy("hello"));
    /// let pos = seq.offset();
    /// seq.push(Str::copy("world"));
    /// // Safe because: first element is always at offset 0.
    /// assert_eq!("hello", unsafe { &seq.from_offset_unchecked(0)[..] });
    /// // Safe because: offset() returned offset of the next element to be pushed.
    /// assert_eq!("world", unsafe { &seq.from_offset_unchecked(pos)[..] });
    /// ```
    ///
    /// # Safety
    ///
    /// The offset must be a valid offset to an element in this sequence. The
    /// canonical way to find this is by [`Self::offset()`] or by [`Self::offset_of()`]
    /// on an element from this sequence. Such offsets remain valid for all
    /// immutable operations on the sequence, and also for [`Self::push()`] on the
    /// sequence. The offset is invalidated by any mutable operation that removes
    /// the specified element, or any earlier element, from the sequence.
    ///
    /// For a safe variant, see [`Self::from_offset()`].
    #[inline]
    pub unsafe fn from_offset_unchecked(&self, offset: usize) -> &T {
        debug_assert!(offset < self.occupied_offsets);
        &*self
            .ptr
            .as_ptr()
            .cast::<u8>()
            .wrapping_add(offset * T::ALIGN)
            .cast::<T>()
    }

    /// Given an offset of an element from the start of the continuous storage (counted in multiples
    /// of `<T as VarLen>::ALIGN`), returns a reference to the element.
    ///
    /// # Example
    ///
    /// ```
    /// use varlen::prelude::*;
    ///
    /// let mut seq = Seq::new_minimal();
    /// seq.push(Str::copy("hello"));
    /// let pos = seq.offset();
    /// seq.push(Str::copy("world"));
    /// // Safe because: first element is always at offset 0.
    /// assert_eq!("hello", unsafe { &seq.from_offset_unchecked(0)[..] });
    /// // Safe because: offset() returned offset of the next element to be pushed.
    /// unsafe { seq.from_offset_unchecked_mut(pos) }
    ///     .mut_slice().make_ascii_uppercase();
    /// assert_eq!("WORLD", unsafe { &seq.from_offset_unchecked(pos)[..] });
    /// ```
    ///
    /// # Safety
    ///
    /// The offset must be a valid offset to an element in this sequence. The
    /// canonical way to find this is by [`Self::offset()`] or by [`Self::offset_of()`]
    /// on an element from this sequence. Such offsets remain valid for all
    /// immutable operations on the sequence, and also for [`Self::push()`] on the
    /// sequence. The offset is invalidated by any mutable operation that removes
    /// the specified element, or any earlier element, from the sequence.
    ///
    /// For a safe variant, see [`Self::from_offset_mut()`].
    #[inline]
    pub unsafe fn from_offset_unchecked_mut(&mut self, offset: usize) -> Pin<&mut T> {
        debug_assert!(offset < self.occupied_offsets);
        Pin::new_unchecked(
            &mut *self
                .ptr
                .as_ptr()
                .cast::<u8>()
                .wrapping_add(offset * T::ALIGN)
                .cast::<T>(),
        )
    }

    /// Iterate over [`Owned<T>`] values.
    ///
    /// # Examples
    ///
    /// ```
    /// use varlen::prelude::*;
    /// use std::sync::atomic::{AtomicUsize, Ordering};
    ///
    /// struct CountsDropCalls(usize);
    /// static DROP_COUNT: AtomicUsize = AtomicUsize::new(0);
    /// impl Drop for CountsDropCalls {
    ///     fn drop(&mut self) {
    ///         DROP_COUNT.fetch_add(1, Ordering::SeqCst);
    ///     }
    /// }
    ///
    /// let mut seq: Seq<FixedLen<CountsDropCalls>> = seq![
    ///     FixedLen(CountsDropCalls(123)),
    ///     FixedLen(CountsDropCalls(456)),
    /// ];
    /// assert_eq!(DROP_COUNT.load(Ordering::SeqCst), 0);
    /// let mut iter = seq.take_elems();
    ///
    /// // Take and drop first element:
    /// assert_eq!(iter.next().unwrap().0.0, 123);
    /// assert_eq!(DROP_COUNT.load(Ordering::SeqCst), 1);
    ///
    /// // Take and drop second element:
    /// assert_eq!(iter.next().unwrap().0.0, 456);
    /// assert_eq!(DROP_COUNT.load(Ordering::SeqCst), 2);
    ///
    /// assert!(iter.next().is_none());
    /// ```
    ///
    /// # Ownership
    ///
    /// Ownership semantics is a little unusual:
    ///  * ownership (responsibility to `drop`) of the `T` values is transferred
    ///    to `OwnedElems`
    ///  * ownership (responsibility to `drop`) the storage remains with the sequence
    ///  * any access to the sequence after calling `take_elems` will see a logically
    ///    empty sequence, with large capacity.
    #[inline]
    pub fn take_elems(&mut self) -> OwnedElems<'_, T> {
        let r = OwnedElems {
            ptr: self.ptr,
            len_elements: self.len_elements,
            marker: core::marker::PhantomData,
        };
        self.len_elements = 0;
        self.occupied_offsets = 0;
        unsafe {
            Idx::clear_bitmasks(self.ptr, self.capacity_offsets, self.occupied_offsets);
        }
        r
    }

    #[inline]
    fn layout(&self) -> alloc::Layout {
        let base_layout = unsafe {
            alloc::Layout::from_size_align_unchecked(self.capacity_offsets * T::ALIGN, T::ALIGN)
        };
        Idx::extended_layout(base_layout)
    }
}

#[allow(rustdoc::missing_doc_code_examples)]
impl<T: VarLen> Seq<T, CheckedIndexing> {
    /// Gets a reference to the element at the specified offset (measured in units of [`T::ALIGN`](VarLen::ALIGN)).
    ///
    /// # Examples
    ///
    /// ```
    /// use varlen::prelude::*;
    ///
    /// let mut seq = Seq::new_indexable();
    /// seq.push(Str::copy("hello"));
    /// let pos = seq.offset();
    /// seq.push(Str::copy("world"));
    /// assert_eq!("hello", &seq.from_offset(0)[..]);
    /// assert_eq!("world", &seq.from_offset(pos)[..]);
    /// ```
    ///
    /// # Panics
    ///
    /// Panics if the offset doesn't point to the beginning of an element of this sequence.
    #[inline]
    pub fn from_offset(&self, offset: usize) -> &T {
        if self.is_offset_valid(offset) {
            // Safety: we just checked offset validity!
            unsafe { self.from_offset_unchecked(offset) }
        } else {
            invalid_offset()
        }
    }

    /// Gets a mutable reference to the element at the specified offset (measured in units of [`T::ALIGN`](VarLen::ALIGN)).
    ///
    /// # Examples
    ///
    /// ```
    /// use varlen::prelude::*;
    ///
    /// let mut seq = Seq::new_indexable();
    /// seq.push(Str::copy("hello"));
    /// let pos = seq.offset();
    /// seq.push(Str::copy("world"));
    /// let mut w = seq.from_offset_mut(pos);
    /// w.as_mut().mut_slice().make_ascii_uppercase();
    /// assert_eq!("WORLD", &w[..]);
    /// ```
    ///
    /// # Panics
    ///
    /// Panics if the offset doesn't point to the beginning of an element of this sequence.
    #[inline]
    pub fn from_offset_mut(&mut self, offset: usize) -> Pin<&mut T> {
        if self.is_offset_valid(offset) {
            // Safety: we just checked offset validity!
            unsafe { self.from_offset_unchecked_mut(offset) }
        } else {
            invalid_offset()
        }
    }

    /// Checks whether the specified offset is valid for this sequence.
    ///
    /// # Examples
    /// ```
    /// use varlen::prelude::*;
    ///
    /// let mut seq = Seq::new_indexable();
    /// seq.push(Str::copy("hello"));
    /// let pos = seq.offset();
    /// assert!(!seq.is_offset_valid(pos));
    /// seq.push(Str::copy("world"));
    /// assert!(seq.is_offset_valid(pos));
    /// assert!(!seq.is_offset_valid(1));
    /// ```
    #[inline]
    pub fn is_offset_valid(&self, offset: usize) -> bool {
        if offset >= self.occupied_offsets {
            return false;
        }
        let ptr = self.ptr.cast::<u8>().as_ptr() as *const u8;
        unsafe {
            *ptr.wrapping_add(self.capacity_offsets * T::ALIGN + (offset / 8))
                & (1u8 << (offset % 8))
                != 0
        }
    }
}

impl<T: VarLen, Idx: Indexing> Drop for Seq<T, Idx> {
    fn drop(&mut self) {
        if self.capacity_offsets == 0 {
            return;
        }
        drop(self.take_elems());
        unsafe {
            alloc::dealloc(self.ptr.as_ptr() as *mut u8, self.layout());
        }
    }
}

/// Extends a [`Seq<T>`] from a slice.
///
/// # Examples
///
/// ```
/// use varlen::prelude::*;
/// let mut seq = Seq::new_minimal();
/// seq.push(Str::copy("hello"));
/// seq.extend(["brave", "new", "world"]
///     .iter()
///     .map(|s| Str::copy(s)));
/// let mut iter = seq.iter();
/// assert_eq!(&iter.next().unwrap()[..], "hello");
/// assert_eq!(&iter.next().unwrap()[..], "brave");
/// assert_eq!(&iter.next().unwrap()[..], "new");
/// assert_eq!(&iter.next().unwrap()[..], "world");
/// assert!(iter.next().is_none());
/// ```
impl<T: VarLen, Init: Initializer<T>, Idx: Indexing> Extend<Init> for Seq<T, Idx> {
    fn extend<I>(&mut self, iter: I)
    where
        I: IntoIterator<Item = Init>,
    {
        for init in iter {
            self.push(init);
        }
    }
}

/// Collects a [`Seq<T>`] from an iterator.
///
/// # Examples
///
/// ```
/// use varlen::prelude::*;
/// let seq: Seq<Str> = ["hello", "world"]
///     .iter()
///     .map(|s| Str::copy(s))
///     .collect();
/// let mut iter = seq.iter();
/// assert_eq!(&iter.next().unwrap()[..], "hello");
/// assert_eq!(&iter.next().unwrap()[..], "world");
/// assert!(iter.next().is_none());
/// ```
impl<T: VarLen, Init: Initializer<T>, Idx: Indexing> FromIterator<Init> for Seq<T, Idx> {
    fn from_iter<I>(iter: I) -> Self
    where
        I: IntoIterator<Item = Init>,
    {
        let mut seq = Seq::new();
        seq.extend(iter);
        seq
    }
}

/// Iterates over references.
///
/// # Examples
///
/// ```
/// use varlen::prelude::*;
/// let mut seq: Seq<Str> = Seq::new();
/// seq.push(Str::copy("hello"));
/// seq.push(Str::copy("good"));
/// seq.push(Str::copy("world!"));
/// let v: Vec<&str> = seq.iter().map(|s| &s[..]).collect();
/// assert_eq!(vec!["hello", "good", "world!"], v);
/// ```
pub struct Iter<'a, T> {
    ptr: NonNull<T>,
    len_elements: usize,
    marker: core::marker::PhantomData<&'a [T]>,
}

#[allow(rustdoc::missing_doc_code_examples)]
impl<'a, T: VarLen> Iter<'a, T> {
    /// Returns a copy of this iterator that is limited to at most `n` elements.
    ///
    /// This is a slightly more efficient variant of `take`.
    ///
    /// # Examples
    ///
    /// ```
    /// use varlen::prelude::*;
    /// let mut seq: Seq<Str> = Seq::new();
    /// seq.push(Str::copy("hello"));
    /// seq.push(Str::copy("good"));
    /// seq.push(Str::copy("world!"));
    /// let v: Vec<&str> = seq.iter().limited_to(2).map(|s| &s[..]).collect();
    /// assert_eq!(vec!["hello", "good"], v);
    /// ```
    #[inline]
    pub fn limited_to(&self, n: usize) -> Self {
        Iter {
            ptr: self.ptr,
            len_elements: core::cmp::min(self.len_elements, n),
            marker: core::marker::PhantomData,
        }
    }
}

impl<'a, T: VarLen> Iterator for Iter<'a, T> {
    type Item = &'a T;

    #[inline]
    fn next(&mut self) -> Option<&'a T> {
        if self.len_elements > 0 {
            let t = unsafe { self.ptr.as_ref() };
            let size = t.calculate_layout().size();
            self.ptr = unsafe { add_bytes_fast(self.ptr, round_up_fast(size, T::ALIGN)) };
            self.len_elements -= 1;
            Some(t)
        } else {
            None
        }
    }

    #[inline]
    fn size_hint(&self) -> (usize, Option<usize>) {
        (self.len_elements, Some(self.len_elements))
    }

    #[inline]
    fn count(self) -> usize {
        self.len_elements
    }
}

impl<'a, T: VarLen> ExactSizeIterator for Iter<'a, T> {
    #[inline]
    fn len(&self) -> usize {
        self.len_elements
    }
}

/// Iterate over mutable (pinned) references.
///
/// # Examples
///
/// ```
/// use varlen::prelude::*;
/// let mut s: Seq<Str> = seq![Str::copy("hello"), Str::copy("world")];
/// for str in s.iter_mut() {
///     str.mut_slice().make_ascii_uppercase();
/// }
/// let mut iter = s.iter();
/// assert_eq!(&iter.next().unwrap()[..], "HELLO");
/// assert_eq!(&iter.next().unwrap()[..], "WORLD");
/// assert!(iter.next().is_none());
/// ```
pub struct IterMut<'a, T> {
    ptr: NonNull<T>,
    len_elements: usize,
    marker: core::marker::PhantomData<&'a mut [T]>,
}

#[allow(rustdoc::missing_doc_code_examples)]
impl<'a, T: VarLen> IterMut<'a, T> {
    /// Returns this iterator, modified to return at most `n` elements.
    ///
    /// This is a slightly more efficient variant of `take`.
    ///
    /// # Examples
    ///
    /// ```
    /// use varlen::prelude::*;
    /// let mut seq: Seq<Str> = seq![
    ///     Str::copy("hello"),
    ///     Str::copy("good"),
    ///     Str::copy("world!"),
    /// ];
    /// for str in seq.iter_mut().limited_to(2) {
    ///     str.mut_slice().make_ascii_uppercase();
    /// }
    /// let mut iter = seq.iter();
    /// assert_eq!(&iter.next().unwrap()[..], "HELLO");
    /// assert_eq!(&iter.next().unwrap()[..], "GOOD");
    /// assert_eq!(&iter.next().unwrap()[..], "world!");
    /// assert!(iter.next().is_none());
    /// ```
    #[inline]
    pub fn limited_to(mut self, n: usize) -> Self {
        self.len_elements = core::cmp::min(self.len_elements, n);
        self
    }
}

impl<'a, T: VarLen> Iterator for IterMut<'a, T> {
    type Item = Pin<&'a mut T>;

    #[inline]
    fn next(&mut self) -> Option<Pin<&'a mut T>> {
        if self.len_elements > 0 {
            let t = unsafe { Pin::new_unchecked(self.ptr.as_mut()) };
            let size = t.calculate_layout().size();
            self.ptr = unsafe { add_bytes_fast(self.ptr, round_up_fast(size, T::ALIGN)) };
            self.len_elements -= 1;
            Some(t)
        } else {
            None
        }
    }

    #[inline]
    fn size_hint(&self) -> (usize, Option<usize>) {
        (self.len_elements, Some(self.len_elements))
    }

    #[inline]
    fn count(self) -> usize {
        self.len_elements
    }
}

impl<'a, T: VarLen> ExactSizeIterator for IterMut<'a, T> {
    #[inline]
    fn len(&self) -> usize {
        self.len_elements
    }
}

/// Iterate over [`Owned<T>`] values.
///
/// See [`Seq<T>::take_elems()`].
///
/// # Examples
///
/// ```
/// use varlen::prelude::*;
/// use std::sync::atomic::{AtomicUsize, Ordering};
///
/// struct CountsDropCalls(usize);
/// static DROP_COUNT: AtomicUsize = AtomicUsize::new(0);
/// impl Drop for CountsDropCalls {
///     fn drop(&mut self) {
///         DROP_COUNT.fetch_add(1, Ordering::SeqCst);
///     }
/// }
///
/// let mut seq: Seq<FixedLen<CountsDropCalls>> = seq![
///     FixedLen(CountsDropCalls(123)),
///     FixedLen(CountsDropCalls(456)),
/// ];
/// assert_eq!(DROP_COUNT.load(Ordering::SeqCst), 0);
/// let mut iter = seq.take_elems();
///
/// // Take and drop first element:
/// assert_eq!(iter.next().unwrap().0.0, 123);
/// assert_eq!(DROP_COUNT.load(Ordering::SeqCst), 1);
///
/// // Take and drop second element:
/// assert_eq!(iter.next().unwrap().0.0, 456);
/// assert_eq!(DROP_COUNT.load(Ordering::SeqCst), 2);
///
/// assert!(iter.next().is_none());
/// ```
///
/// # Ownership
///
/// Ownership semantics is a little unusual:
///  * ownership (responsibility to `drop`) of the `T` values is transferred
///    to `OwnedElems`
///  * ownership (responsibility to `drop`) the storage remains with the sequence
///  * any access to the sequence after calling `take_elems` will see a logically
///    empty sequence, with large capacity.
pub struct OwnedElems<'a, T: VarLen> {
    // Modified by iterator:
    ptr: NonNull<T>,
    len_elements: usize,
    marker: core::marker::PhantomData<&'a [u8]>,
}

impl<'a, T: VarLen> Iterator for OwnedElems<'a, T> {
    type Item = Owned<'a, T>;

    #[inline]
    fn next(&mut self) -> Option<Owned<'a, T>> {
        if self.len_elements > 0 {
            let t = unsafe { Owned::from_raw(self.ptr) };
            let size = T::calculate_layout(&*t).size();
            self.ptr = unsafe { add_bytes_fast(self.ptr, round_up_fast(size, T::ALIGN)) };
            self.len_elements -= 1;
            Some(t)
        } else {
            None
        }
    }

    #[inline]
    fn size_hint(&self) -> (usize, Option<usize>) {
        (self.len_elements, Some(self.len_elements))
    }

    #[inline]
    fn count(self) -> usize {
        self.len_elements
    }
}

impl<'a, T: VarLen> ExactSizeIterator for OwnedElems<'a, T> {
    #[inline]
    fn len(&self) -> usize {
        self.len_elements
    }
}

impl<'a, T: VarLen> Drop for OwnedElems<'a, T> {
    fn drop(&mut self) {
        if core::mem::needs_drop::<T>() || T::NEEDS_VDROP {
            while let Some(t) = self.next() {
                drop(t);
            }
        }
    }
}