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
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
//! Audio buffers.
//!
//! ## Some audio concepts
//! A *sample* is a single number representing the air pressure at a given time.
//! It is usually represented by an `f32`, `f64`, `i16` or `i32` number, but other
//! types are possible as well.
//!
//! A *channel* usually corresponds with a speaker or a number of speakers.
//! E.g. in a stereo setup, there is a "left" channel and a "right" channel.
//!
//! A *frame* consists of the samples for all the channels at a given time.
//!
//! A *buffer* consists of subsequent samples for a given channel and corresponds
//! to a certain time period.
//! (Non-standard terminology.)
//!
//! A *chunk* consists of the buffers for all channels for a given time period.
//! (Non-standard terminology.)
//!
//!```text
//!                         ┌ chunk     ┌ frame
//!             ┌ sample    ↓           ↓
//!             │      ┌─────────┐     ┌─┐
//!          ┌──↓──────┼─────────┼─────┼─┼───────────────────┐
//! channel →│• • • • •│• • • • •│• • •│•│• • • • • • • • • •│
//!          └─────────┼─────────┼─────┼─┼───────────────────┘
//!           • • • • •│• • • • •│• • •│•│• • • • • • • • • •
//!                    │         │     │ │   ┌───────┐
//!           • • • • •│• • • • •│• • •│•│• •│• • • •│• • • •
//!                    └─────────┘     └─┘   └───────┘
//!                                            ↑
//!                                            └ buffer
//! ```
use crate::audio_chunk;
#[cfg(test)]
use crate::event::EventHandler;
#[cfg(feature = "rsor-0-1")]
use crate::rsor::Slice;
use crate::test_utilities::{DummyEventHandler, TestPlugin};
use crate::vecstorage::VecStorage;
use crate::ContextualAudioRenderer;
use num_traits::Zero;
use std::mem;
use std::ops::{Bound, Index, IndexMut, RangeBounds};
use std::slice::SliceIndex;

fn number_of_frames_in_range<R: RangeBounds<usize>>(number_of_frames: usize, range: R) -> usize {
    // start: inclusive
    let start = match range.start_bound() {
        Bound::Unbounded => 0,
        Bound::Excluded(x) => x + 1,
        Bound::Included(x) => *x,
    };
    // end: inclusive
    let end = match range.end_bound() {
        Bound::Unbounded => number_of_frames,
        Bound::Excluded(x) => *x,
        Bound::Included(x) => x + 1,
    };
    if start < end {
        end - start
    } else {
        0
    }
}

#[test]
fn number_of_frames_in_range_works_full_range() {
    assert_eq!(number_of_frames_in_range(4, ..), 4);
}

#[test]
fn number_of_frames_in_range_works_exclusive_range() {
    assert_eq!(number_of_frames_in_range(4, 1..3), 2);
}

#[test]
fn number_of_frames_in_range_works_inclusive_range() {
    assert_eq!(number_of_frames_in_range(4, 1..=3), 3);
}

#[test]
fn number_of_frames_in_range_works_open_ended_range() {
    assert_eq!(number_of_frames_in_range(4, 1..), 3);
}

#[test]
fn number_of_frames_in_range_works_open_starting_range() {
    assert_eq!(number_of_frames_in_range(4, ..2), 2);
}

/// Audio input buffer.
///
/// It is guaranteed that all channels have the same number of frames.
#[derive(Clone, Copy, Debug)]
pub struct AudioBufferIn<'channels, 'samples, S>
where
    S: 'static + Copy,
{
    channels: &'channels [&'samples [S]],
    length: usize,
}

impl<'channels, 'samples, S> AudioBufferIn<'channels, 'samples, S>
where
    S: 'static + Copy,
{
    /// Create a new audio input buffer.
    ///
    /// # Panics
    /// Panics if one of the elements of `channels` does not have the given length.
    pub fn new(channels: &'channels [&'samples [S]], length: usize) -> Self {
        for channel in channels {
            assert_eq!(channel.len(), length);
        }
        Self { channels, length }
    }

    /// Get the number of channels.
    pub fn number_of_channels(&self) -> usize {
        self.channels.len()
    }

    /// Get the number of frames.
    pub fn number_of_frames(&self) -> usize {
        self.length
    }

    /// Get the channels as slices.
    pub fn channels(&self) -> &'channels [&'samples [S]] {
        self.channels
    }

    fn index_frames_inner<'s, 'v, R>(&'s self, range: R, vec: &'v mut Vec<&'s [S]>)
    where
        R: SliceIndex<[S], Output = [S]> + RangeBounds<usize> + Clone,
    {
        let mut remaining_chunk = &*self.channels;
        vec.clear();
        while let Some((first_channel, remaining_channels)) = remaining_chunk.split_first() {
            vec.push(first_channel.index(range.clone()));
            remaining_chunk = remaining_channels;
        }
    }

    /// Get an `AudioBufferIn` with all channels and the given range of frames.
    ///
    /// The vector `vec` will be used to store the channels of the result.
    ///
    /// # Remark
    /// The vector `vec` will be cleared before use in order to guarantee that all channels
    /// have the same length.
    ///
    /// # Usage in a real-time thread
    /// This method will append `number_of_channels` elements to the given vector.
    /// This will cause memory to be allocated if this exceeds the capacity of the
    /// given vector.
    ///
    /// # Suggestion
    /// You can use the [`vecstorage`] crate to re-use the memory of a vector for
    /// different lifetimes.
    ///
    /// # Remark
    /// If you enable the `rsor-0-1` Cargo feature,
    /// you can also use the [`index_frames_from_slice`] method.
    ///
    /// # Example
    /// ```
    /// use rsynth::buffer::AudioBufferIn;
    /// let mut vec = Vec::with_capacity(2);
    /// let channel1 = vec![11, 12, 13, 14];
    /// let channel2 = vec![21, 22, 23, 24];
    /// let chunk = [channel1.as_slice(), channel2.as_slice()];
    /// let chunk = AudioBufferIn::new(&chunk, 4);
    /// let parts = chunk.index_frames(1..2, &mut vec);
    /// assert_eq!(parts.number_of_frames(), 1);
    /// assert_eq!(parts.number_of_channels(), 2);
    /// let channels = parts.channels();
    /// assert_eq!(channels[0], &[12]);
    /// assert_eq!(channels[1], &[22]);
    /// ```
    ///
    /// [`vecstorage`]: https://crates.io/crates/vecstorage
    /// [`rsor`]: https://crates.io/crates/rsor
    /// [`index_frames_from_slice`]: ./struct.AudioBufferIn.html#method.index_frames_from_slice
    pub fn index_frames<'s, 'v, R>(
        &'s self,
        range: R,
        vec: &'v mut Vec<&'s [S]>,
    ) -> AudioBufferIn<'v, 's, S>
    where
        R: SliceIndex<[S], Output = [S]> + RangeBounds<usize> + Clone,
    {
        let length = number_of_frames_in_range(self.length, range.clone());
        self.index_frames_inner(range, vec);
        AudioBufferIn {
            channels: vec.as_slice(),
            length,
        }
    }

    /// Get an `AudioBufferIn` with all channels and the given range of frames.
    ///
    /// The `Slice` will be used to store the channels of the result.
    ///
    /// # Usage in a real-time thread
    /// This method will append `number_of_channels` elements to the given `Slice`.
    /// This will cause memory to be allocated if this exceeds the capacity of the
    /// given `Slice`.
    ///
    /// # Example
    /// ```
    /// use rsynth::rsor::Slice;
    /// use rsynth::buffer::AudioBufferIn;
    /// let mut slice = Slice::with_capacity(2);
    /// let channel1 = vec![11, 12, 13, 14];
    /// let channel2 = vec![21, 22, 23, 24];
    /// let chunk = [channel1.as_slice(), channel2.as_slice()];
    /// let chunk = AudioBufferIn::new(&chunk, 4);
    /// let parts = chunk.index_frames_from_slice(1..2, &mut slice);
    /// assert_eq!(parts.number_of_frames(), 1);
    /// assert_eq!(parts.number_of_channels(), 2);
    /// let channels = parts.channels();
    /// assert_eq!(channels[0], &[12]);
    /// assert_eq!(channels[1], &[22]);
    /// ```
    #[cfg(feature = "rsor-0-1")]
    pub fn index_frames_from_slice<'s, 'v, R>(
        &'s self,
        range: R,
        slice: &'v mut Slice<[S]>,
    ) -> AudioBufferIn<'v, 's, S>
    where
        R: SliceIndex<[S], Output = [S]> + RangeBounds<usize> + Clone,
    {
        let length = number_of_frames_in_range(self.length, range.clone());
        let channels = slice.fill(|mut v: Vec<&[S]>| {
            self.index_frames(range, &mut v);
            v
        });
        AudioBufferIn { channels, length }
    }

    /// Get the channel with the given index.
    ///
    /// Return `None` when the index is out of bounds.
    // TODO: maybe find a better name for this method.
    pub fn get_channel(&self, index: usize) -> Option<&[S]> {
        if index > self.channels.len() {
            None
        } else {
            Some(self.channels[index])
        }
    }

    /// Get the channel with the given index.
    ///
    /// # Panics
    /// Panics if the index is out of bounds.
    pub fn index_channel(&self, index: usize) -> &[S] {
        self.channels[index]
    }
}

#[test]
fn buffer_in_index_frames_works() {
    let mut vec = Vec::with_capacity(2);
    let channel1 = vec![11, 12, 13, 14];
    let channel2 = vec![21, 22, 23, 24];
    let chunk = [channel1.as_slice(), channel2.as_slice()];
    let chunk = AudioBufferIn::new(&chunk, 4);
    {
        let sub_part = chunk.index_frames(0..0, &mut vec);
        assert_eq!(sub_part.number_of_frames(), 0);
        assert_eq!(sub_part.number_of_channels(), 2);
        let channels = sub_part.channels();
        assert!(channels[0].is_empty());
        assert!(channels[1].is_empty());
    }
    {
        let sub_part = chunk.index_frames(0..1, &mut vec);
        assert_eq!(sub_part.number_of_frames(), 1);
        assert_eq!(sub_part.number_of_channels(), 2);
        let channels = sub_part.channels();
        assert_eq!(channels[0], &[11]);
        assert_eq!(channels[1], &[21]);
    }
    {
        let sub_part = chunk.index_frames(0..2, &mut vec);
        assert_eq!(sub_part.number_of_frames(), 2);
        assert_eq!(sub_part.number_of_channels(), 2);
        let channels = sub_part.channels();
        assert_eq!(channels[0], &[11, 12]);
        assert_eq!(channels[1], &[21, 22]);
    }
    {
        let sub_part = chunk.index_frames(1..2, &mut vec);
        assert_eq!(sub_part.number_of_frames(), 1);
        assert_eq!(sub_part.number_of_channels(), 2);
        let channels = sub_part.channels();
        assert_eq!(channels[0], &[12]);
        assert_eq!(channels[1], &[22]);
    }
}

#[cfg(feature = "rsor-0-1")]
#[test]
fn buffer_in_index_frames_from_slice_works() {
    let mut slice = Slice::with_capacity(2);
    let channel1 = vec![11, 12, 13, 14];
    let channel2 = vec![21, 22, 23, 24];
    let chunk = [channel1.as_slice(), channel2.as_slice()];
    let chunk = AudioBufferIn::new(&chunk, 4);
    {
        let sub_part = chunk.index_frames_from_slice(0..0, &mut slice);
        assert_eq!(sub_part.number_of_frames(), 0);
        assert_eq!(sub_part.number_of_channels(), 2);
        let channels = sub_part.channels();
        assert!(channels[0].is_empty());
        assert!(channels[1].is_empty());
    }
    {
        let sub_part = chunk.index_frames_from_slice(0..1, &mut slice);
        assert_eq!(sub_part.number_of_frames(), 1);
        assert_eq!(sub_part.number_of_channels(), 2);
        let channels = sub_part.channels();
        assert_eq!(channels[0], &[11]);
        assert_eq!(channels[1], &[21]);
    }
    {
        let sub_part = chunk.index_frames_from_slice(0..2, &mut slice);
        assert_eq!(sub_part.number_of_frames(), 2);
        assert_eq!(sub_part.number_of_channels(), 2);
        let channels = sub_part.channels();
        assert_eq!(channels[0], &[11, 12]);
        assert_eq!(channels[1], &[21, 22]);
    }
    {
        let sub_part = chunk.index_frames_from_slice(1..2, &mut slice);
        assert_eq!(sub_part.number_of_frames(), 1);
        assert_eq!(sub_part.number_of_channels(), 2);
        let channels = sub_part.channels();
        assert_eq!(channels[0], &[12]);
        assert_eq!(channels[1], &[22]);
    }
}

/// An audio output buffer.
///
/// It is guaranteed that all channels have the same number of frames.
#[derive(Debug)]
pub struct AudioBufferOut<'channels, 'out_samples, S>
where
    S: 'static + Copy,
{
    channels: &'channels mut [&'out_samples mut [S]],
    length: usize,
}

impl<'channels, 'samples, S> AudioBufferOut<'channels, 'samples, S>
where
    S: 'static + Copy,
{
    /// Create a new audio output buffer.
    ///
    /// # Panics
    /// Panics if one of the elements of `outputs` does not have the given length.
    pub fn new(outputs: &'channels mut [&'samples mut [S]], length: usize) -> Self {
        for channel in outputs.iter() {
            assert_eq!(channel.len(), length);
        }
        Self {
            channels: outputs,
            length,
        }
    }

    /// Get the number of channels.
    pub fn number_of_channels(&self) -> usize {
        self.channels.len()
    }

    /// Get the number of frames.
    pub fn number_of_frames(&self) -> usize {
        self.length
    }

    /// Get the channels as slices.
    ///
    /// # Unsafe
    /// This method is marked unsafe because using it allows to change the length of the
    /// channels, which invalidates the invariant.
    pub unsafe fn channels<'a>(&'a mut self) -> &'a mut [&'samples mut [S]] {
        self.channels
    }

    /// Split into two `AudioBufferOut`s.
    /// The first will contain the first `mid-1` channels and the second
    /// will contain the remaining channels.
    ///
    /// # Panics
    /// Panics if `mid` is `>` the number of output channels.
    ///
    /// # Example
    /// ```
    /// use rsynth::buffer::AudioBufferOut;
    ///
    /// let mut channel1 = vec![11, 12, 13, 14];
    /// let mut channel2 = vec![21, 22, 23, 24];
    /// let mut chunk = [channel1.as_mut_slice(), channel2.as_mut_slice()];
    ///
    /// let mut buffer = AudioBufferOut::new(&mut chunk, 4);
    ///
    /// let (mut firstchannels, mut secondchannels) = buffer.split_channels_at(1);
    /// assert_eq!(firstchannels.number_of_channels(), 1);
    /// assert_eq!(secondchannels.number_of_channels(), 1);
    ///
    /// assert_eq!(firstchannels.index_channel(0), &[11, 12, 13, 14]);
    /// assert_eq!(secondchannels.index_channel(0), &[21, 22, 23, 24]);
    /// ```
    pub fn split_channels_at<'a>(
        &'a mut self,
        mid: usize,
    ) -> (
        AudioBufferOut<'a, 'samples, S>,
        AudioBufferOut<'a, 'samples, S>,
    )
    where
        'a: 'channels,
    {
        let (outputs1, outputs2) = self.channels.split_at_mut(mid);
        (
            Self {
                channels: outputs1,
                length: self.length,
            },
            Self {
                channels: outputs2,
                length: self.length,
            },
        )
    }

    fn index_frames_inner<'a, 's, 'v, R>(
        mut remaining_chunk: &'a mut [&'s mut [S]],
        range: R,
        vec: &'v mut Vec<&'a mut [S]>,
    ) where
        R: SliceIndex<[S], Output = [S]> + RangeBounds<usize> + Clone,
    {
        vec.clear();
        while let Some((first_channel, remaining_channels)) = remaining_chunk.split_first_mut() {
            vec.push(first_channel.index_mut(range.clone()));
            remaining_chunk = remaining_channels;
        }
    }

    /// Get an `AdioBufferOut` with all channels and the given range of frames,
    /// using a vector to store the channels of the result.
    ///
    /// The vector `vec` will be used to store the channels of the result.
    ///
    /// # Remark
    /// The vector `vec` will be cleared before use in order to guarantee that all channels
    /// have the same length.
    ///
    /// # Usage in a real-time threat
    /// This method will append `number_of_channels` elements to the given vector.
    /// This will cause memory to be allocated if this exceeds the capacity of the
    /// given vector.
    ///
    /// # Suggestion
    /// You can use the [`vecstorage`] crate to re-use the memory of a vector for
    /// different lifetimes.
    ///
    /// # Remark
    /// If you enable the `rsor-0-1` Cargo feature,
    /// you can also use the [`index_frames_from_slice`] method.    
    ///
    /// # Example
    /// ```
    /// use rsynth::buffer::AudioBufferOut;
    ///
    /// let mut channel1 = vec![11, 12, 13, 14];
    /// let mut channel2 = vec![21, 22, 23, 24];
    /// let mut channels = [channel1.as_mut_slice(), channel2.as_mut_slice()];
    /// let number_of_channels = channels.len();
    /// let mut buffer = AudioBufferOut::new(&mut channels, 4);
    /// let mut vec = Vec::with_capacity(number_of_channels);
    /// let mut sub_part = buffer.index_frames(1..2, &mut vec);
    /// assert_eq!(sub_part.number_of_frames(), 1);
    /// assert_eq!(sub_part.number_of_channels(), number_of_channels);
    /// assert_eq!(sub_part.index_channel(0), &[12]);
    /// assert_eq!(sub_part.index_channel(1), &[22]);
    /// ```
    ///
    /// [`vecstorage`]: https://crates.io/crates/vecstorage
    /// [`index_frames_from_slice`]: ./struct.AudioBufferOut.html#method.index_frames_from_slice
    pub fn index_frames<'s, 'v, R>(
        &'s mut self,
        range: R,
        vec: &'v mut Vec<&'s mut [S]>,
    ) -> AudioBufferOut<'v, 's, S>
    where
        R: SliceIndex<[S], Output = [S]> + RangeBounds<usize> + Clone,
    {
        let length = number_of_frames_in_range(self.length, range.clone());
        Self::index_frames_inner(&mut *self.channels, range, vec);
        AudioBufferOut {
            channels: vec.as_mut_slice(),
            length,
        }
    }

    #[cfg(feature = "rsor-0-1")]
    /// Get an `AdioBufferOut` with all channels and the given range of frames, using a [`Slice`]
    /// to store the channels of the result.
    ///
    /// The parameter `slice` will be used to store the channels of the result.
    ///
    /// # Usage in a real-time threat
    /// This method will append `number_of_channels` elements to the given slice.
    /// This will cause memory to be allocated if this exceeds the capacity of the
    /// given slice.
    ///
    /// # Example
    /// ```
    /// use rsynth::buffer::AudioBufferOut;
    /// use rsynth::rsor::Slice;
    ///
    /// let mut channel1 = vec![11, 12, 13, 14];
    /// let mut channel2 = vec![21, 22, 23, 24];
    /// let mut channels = [channel1.as_mut_slice(), channel2.as_mut_slice()];
    /// let number_of_channels = channels.len();
    /// let mut buffer = AudioBufferOut::new(&mut channels, 4);
    /// let mut slice = Slice::with_capacity(number_of_channels);
    /// let mut sub_part = buffer.index_frames_from_slice(1..2, &mut slice);
    /// assert_eq!(sub_part.number_of_frames(), 1);
    /// assert_eq!(sub_part.number_of_channels(), number_of_channels);
    /// assert_eq!(sub_part.index_channel(0), &[12]);
    /// assert_eq!(sub_part.index_channel(1), &[22]);
    /// ```
    pub fn index_frames_from_slice<'s, 'v, R>(
        &'s mut self,
        range: R,
        slice: &'v mut Slice<[S]>,
    ) -> AudioBufferOut<'v, 's, S>
    where
        R: SliceIndex<[S], Output = [S]> + RangeBounds<usize> + Clone,
    {
        let length = number_of_frames_in_range(self.length, range.clone());
        let channels = &mut *self.channels;
        let channels = slice.fill_mut(move |mut v: Vec<&mut [S]>| {
            Self::index_frames_inner(channels, range, &mut v);
            v
        });
        AudioBufferOut { channels, length }
    }

    /// Get the channel with the given index.
    ///
    /// Returns `None` if `index` is out of bonds.
    // TODO: maybe find a better name for this method.
    pub fn get_channel(&mut self, index: usize) -> Option<&mut [S]> {
        if index > self.channels.len() {
            None
        } else {
            Some(self.channels[index])
        }
    }

    /// Get the channel with the given index.
    ///
    /// # Panics
    /// Panics if the index is out of bounds.
    pub fn index_channel(&mut self, index: usize) -> &mut [S] {
        self.channels[index]
    }

    /// Set all samples to the given value.
    pub fn set(&mut self, value: S) {
        for channel in self.channels.iter_mut() {
            for sample in channel.iter_mut() {
                *sample = value;
            }
        }
    }

    /// Get an iterator over the channels.
    pub fn channel_iter_mut<'a>(&'a mut self) -> AudioBufferOutChannelIteratorMut<'a, 'samples, S> {
        AudioBufferOutChannelIteratorMut {
            inner: self.channels.iter_mut(),
        }
    }

    /// Convert to an [`AudioBufferIn`].
    ///
    /// [`AudioBufferIn`]: struct.AudioBufferIn.html
    pub fn as_audio_buffer_in<'s, 'vec>(
        &'s self,
        vec: &'vec mut Vec<&'s [S]>,
    ) -> AudioBufferIn<'vec, 's, S> {
        vec.clear();
        for channel in self.channels.iter() {
            vec.push(&**channel);
        }
        AudioBufferIn {
            channels: vec,
            length: self.length,
        }
    }
}

/// An iterator over the channels of an [`AudioBufferOut`].
///
/// [`AudioBufferOut`]: ./struct.AudioBufferOut.html
pub struct AudioBufferOutChannelIteratorMut<'channels, 'samples, S> {
    inner: std::slice::IterMut<'channels, &'samples mut [S]>,
}

impl<'channels, 'samples, S> Iterator for AudioBufferOutChannelIteratorMut<'channels, 'samples, S> {
    type Item = &'channels mut [S];

    fn next(&mut self) -> Option<Self::Item> {
        self.inner.next().map(|x| &mut **x)
    }
}

#[test]
fn buffer_out_index_frames_works() {
    let mut channel1 = vec![11, 12, 13, 14];
    let mut channel2 = vec![21, 22, 23, 24];
    let mut chunk = [channel1.as_mut_slice(), channel2.as_mut_slice()];
    let mut chunk = AudioBufferOut::new(&mut chunk, 4);
    {
        let mut vec = Vec::with_capacity(2);
        let mut sub_part = chunk.index_frames(0..0, &mut vec);
        assert_eq!(sub_part.number_of_frames(), 0);
        assert_eq!(sub_part.number_of_channels(), 2);
        assert!(sub_part.index_channel(0).is_empty());
        assert!(sub_part.index_channel(1).is_empty());
    }
    {
        let mut vec = Vec::with_capacity(2);
        let mut sub_part = chunk.index_frames(0..1, &mut vec);
        assert_eq!(sub_part.number_of_frames(), 1);
        assert_eq!(sub_part.number_of_channels(), 2);
        assert_eq!(sub_part.index_channel(0), &[11]);
        assert_eq!(sub_part.index_channel(1), &[21]);
    }
    {
        let mut vec = Vec::with_capacity(2);
        let mut sub_part = chunk.index_frames(0..2, &mut vec);
        assert_eq!(sub_part.number_of_frames(), 2);
        assert_eq!(sub_part.number_of_channels(), 2);
        assert_eq!(sub_part.index_channel(0), &[11, 12]);
        assert_eq!(sub_part.index_channel(1), &[21, 22]);
    }
    {
        let mut vec = Vec::with_capacity(2);
        let mut sub_part = chunk.index_frames(1..2, &mut vec);
        assert_eq!(sub_part.number_of_frames(), 1);
        assert_eq!(sub_part.number_of_channels(), 2);
        assert_eq!(sub_part.index_channel(0), &[12]);
        assert_eq!(sub_part.index_channel(1), &[22]);
    }
}

#[cfg(feature = "rsor-0-1")]
#[test]
fn buffer_out_index_frames_from_slice_works() {
    let mut channel1 = vec![11, 12, 13, 14];
    let mut channel2 = vec![21, 22, 23, 24];
    let mut chunk = [channel1.as_mut_slice(), channel2.as_mut_slice()];
    let mut chunk = AudioBufferOut::new(&mut chunk, 4);
    {
        let mut slice = Slice::with_capacity(2);
        let mut sub_part = chunk.index_frames_from_slice(0..0, &mut slice);
        assert_eq!(sub_part.number_of_frames(), 0);
        assert_eq!(sub_part.number_of_channels(), 2);
        assert!(sub_part.index_channel(0).is_empty());
        assert!(sub_part.index_channel(1).is_empty());
    }
    {
        let mut slice = Slice::with_capacity(2);
        let mut sub_part = chunk.index_frames_from_slice(0..1, &mut slice);
        assert_eq!(sub_part.number_of_frames(), 1);
        assert_eq!(sub_part.number_of_channels(), 2);
        assert_eq!(sub_part.index_channel(0), &[11]);
        assert_eq!(sub_part.index_channel(1), &[21]);
    }
    {
        let mut vec = Slice::with_capacity(2);
        let mut sub_part = chunk.index_frames_from_slice(0..2, &mut vec);
        assert_eq!(sub_part.number_of_frames(), 2);
        assert_eq!(sub_part.number_of_channels(), 2);
        assert_eq!(sub_part.index_channel(0), &[11, 12]);
        assert_eq!(sub_part.index_channel(1), &[21, 22]);
    }
    {
        let mut slice = Slice::with_capacity(2);
        let mut sub_part = chunk.index_frames_from_slice(1..2, &mut slice);
        assert_eq!(sub_part.number_of_frames(), 1);
        assert_eq!(sub_part.number_of_channels(), 2);
        assert_eq!(sub_part.index_channel(0), &[12]);
        assert_eq!(sub_part.index_channel(1), &[22]);
    }
}

/// A buffer holding both input and output audio.
///
/// All inputs and all outputs are guaranteed to have the same number of frames.
#[derive(Debug)]
pub struct AudioBufferInOut<'in_channels, 'in_samples, 'out_channels, 'out_samples, S>
where
    S: 'static + Copy,
{
    inputs: AudioBufferIn<'in_channels, 'in_samples, S>,
    outputs: AudioBufferOut<'out_channels, 'out_samples, S>,
    length: usize,
}

impl<'in_channels, 'in_samples, 'out_channels, 'out_samples, S>
    AudioBufferInOut<'in_channels, 'in_samples, 'out_channels, 'out_samples, S>
where
    S: 'static + Copy,
{
    /// Create a new `AudioBufferInOut`.
    ///
    /// # Panics
    /// Panics if one of the following happens:
    /// * not all elements of `inputs` have the same length,
    /// * not all elements of `outputs` have the same length,
    /// * not all elements of `inputs` have the same length as all the elements of `outputs`
    pub fn new(
        inputs: &'in_channels [&'in_samples [S]],
        outputs: &'out_channels mut [&'out_samples mut [S]],
        length: usize,
    ) -> Self {
        let inputs = AudioBufferIn::new(inputs, length);
        let outputs = AudioBufferOut::new(outputs, length);
        assert_eq!(inputs.number_of_frames(), outputs.number_of_frames());
        AudioBufferInOut {
            inputs,
            outputs,
            length,
        }
    }

    /// Get the number of frames.
    pub fn number_of_frames(&self) -> usize {
        self.length
    }

    /// Get the number of input channels.
    pub fn number_of_input_channels(&self) -> usize {
        self.inputs.number_of_channels()
    }

    /// Get the number of output channels.
    pub fn number_of_output_channels(&self) -> usize {
        self.outputs.number_of_channels()
    }

    /// Create two new `AUdioBufferInOut`s: one with all the input channels and with the
    /// output channels from 0 to `mid`, excluding `mid` and one with all the input channels
    /// and with the output channels from `mid` including onwards.
    ///
    /// # Panics
    /// Panics if `mid` is `>` the number of output channels.
    pub fn split_output_channels_at<'a>(
        &'a mut self,
        mid: usize,
    ) -> (
        AudioBufferInOut<'in_channels, 'in_samples, 'a, 'out_samples, S>,
        AudioBufferInOut<'in_channels, 'in_samples, 'a, 'out_samples, S>,
    )
    where
        'a: 'out_channels,
    {
        let (outputs1, outputs2) = self.outputs.split_channels_at(mid);
        (
            Self {
                inputs: self.inputs,
                outputs: outputs1,
                length: self.length,
            },
            Self {
                inputs: self.inputs,
                outputs: outputs2,
                length: self.length,
            },
        )
    }

    /// Get the input channel with the given index.
    ///
    /// Returns `None` when `index` is out of bounds.
    // TODO: maybe find a better name for this method.
    pub fn get_input_channel(&self, index: usize) -> Option<&[S]> {
        self.inputs.get_channel(index)
    }

    /// Get the output channel with the given index.
    ///
    /// # Panics
    /// Panics if the index is out of bounds.
    pub fn index_input_channel(&mut self, index: usize) -> &[S] {
        self.inputs.index_channel(index)
    }

    /// Get the output channel with the given index.
    ///
    /// Returns `None` when `index` is out of bounds.
    // TODO: maybe find a better name for this method.
    pub fn get_output_channel(&mut self, index: usize) -> Option<&mut [S]> {
        self.outputs.get_channel(index)
    }

    /// Get the output channel with the given index.
    ///
    /// # Panics
    /// Panics if the index is out of bounds.
    pub fn index_output_channel(&mut self, index: usize) -> &mut [S] {
        self.outputs.index_channel(index)
    }

    /// Get an `AudioBufferInOut` with all channels and with the given range of frames.
    ///
    /// The vectors `vec_in` and `vec_out` will be used to store the channels of the result.
    ///
    /// # Remark
    /// The vectors `vec_in` and `vec_out` will be cleared before use in order to guarantee that all
    /// channels have the same length.
    ///
    /// # Usage in a real-time thread
    /// This method will push `number_of_input_channels` elements to the given "input" vector
    /// and `number_of_output_channels` to the "output" vector.
    /// This will cause memory to be allocated if this exceeds the capacity of the
    /// given vector.
    ///
    /// # Suggestion
    /// You can use the [`vecstorage`] crate to re-use the memory of a vector for
    /// different lifetimes.
    ///
    /// # Remark
    /// If you enable the `rsor-0-1` Cargo feature,
    /// you can also use the [`index_frames_from_slice`] method.
    ///
    /// # Example
    /// ```
    /// use rsynth::buffer::AudioBufferInOut;
    ///
    /// let channel1_in = vec![11, 12, 13, 14];
    /// let channel2_in = vec![21, 22, 23, 24];
    /// let channels_in = [channel1_in.as_slice(), channel2_in.as_slice()];
    /// let number_of_input_channels = channels_in.len();
    /// let mut channel1_out = vec![110, 120, 130, 140];
    /// let mut channels_out = [channel1_out.as_mut_slice()];
    /// let number_of_output_channels = channels_out.len();
    /// let mut buffer = AudioBufferInOut::new(&channels_in, &mut channels_out, 4);
    /// let mut vec_in = Vec::with_capacity(number_of_input_channels);
    /// let mut vec_out = Vec::with_capacity(number_of_output_channels);
    /// let mut sub_part = buffer.index_frames(1..2, &mut vec_in, &mut vec_out);
    /// assert_eq!(sub_part.number_of_frames(), 1);
    /// assert_eq!(sub_part.number_of_input_channels(), number_of_input_channels);
    /// assert_eq!(sub_part.number_of_output_channels(), number_of_output_channels);
    /// assert_eq!(sub_part.index_input_channel(0), &[12]);
    /// assert_eq!(sub_part.index_input_channel(1), &[22]);
    /// assert_eq!(sub_part.index_output_channel(0), &[120]);
    /// ```
    ///
    /// [`index_frames_from_slice`]: ./struct.AudioBufferInOut.html#method.index_frames_from_slice
    /// [`vecstorage`]: https://crates.io/crates/vecstorage
    pub fn index_frames<'s, 'in_vec, 'out_vec, R>(
        &'s mut self,
        range: R,
        vec_in: &'in_vec mut Vec<&'s [S]>,
        vec_out: &'out_vec mut Vec<&'s mut [S]>,
    ) -> AudioBufferInOut<'in_vec, 's, 'out_vec, 's, S>
    where
        R: SliceIndex<[S], Output = [S]> + RangeBounds<usize> + Clone,
    {
        AudioBufferInOut {
            inputs: self.inputs.index_frames(range.clone(), vec_in),
            outputs: self.outputs.index_frames(range.clone(), vec_out),
            length: number_of_frames_in_range(self.length, range),
        }
    }

    #[cfg(feature = "rsor-0-1")]
    /// Get an `AudioBufferInOut` with all channels and with the given range of frames,
    /// using `rsor`'s `Slice`s to store the output.
    ///
    /// This method is behind the "rsor-0-1" Cargo feature.
    /// This method is similar to the [`index_frames`] method.
    ///
    /// # Usage in a real-time thread
    /// This method will push `number_of_input_channels` elements to the given "input" [`Slice`]
    /// and `number_of_output_channels` to the "output" [`Slice`].
    /// This will cause memory to be allocated if this exceeds the capacity of the
    /// given vector.
    ///
    /// # Example
    /// ```
    /// use rsynth::rsor::Slice;
    /// use rsynth::buffer::AudioBufferInOut;
    ///
    /// let channel1_in = vec![11, 12, 13, 14];
    /// let channel2_in = vec![21, 22, 23, 24];
    /// let channels_in = [channel1_in.as_slice(), channel2_in.as_slice()];
    /// let number_of_input_channels = channels_in.len();
    /// let mut channel1_out = vec![110, 120, 130, 140];
    /// let mut channels_out = [channel1_out.as_mut_slice()];
    /// let number_of_output_channels = channels_out.len();
    /// let mut buffer = AudioBufferInOut::new(&channels_in, &mut channels_out, 4);
    /// let mut slice_in = Slice::with_capacity(number_of_input_channels);
    /// let mut slice_out = Slice::with_capacity(number_of_output_channels);
    /// let mut sub_part = buffer.index_frames_from_slices(1..2, &mut slice_in, &mut slice_out);
    /// assert_eq!(sub_part.number_of_frames(), 1);
    /// assert_eq!(sub_part.number_of_input_channels(), number_of_input_channels);
    /// assert_eq!(sub_part.number_of_output_channels(), number_of_output_channels);
    /// assert_eq!(sub_part.index_input_channel(0), &[12]);
    /// assert_eq!(sub_part.index_input_channel(1), &[22]);
    /// assert_eq!(sub_part.index_output_channel(0), &[120]);
    /// ```
    ///
    /// [`index_frames`]: ./struct.AudioBufferInOut.html#method.index_frames
    pub fn index_frames_from_slices<'s, 'in_slice, 'out_slice, R>(
        &'s mut self,
        range: R,
        slice_in: &'in_slice mut Slice<[S]>,
        slice_out: &'out_slice mut Slice<[S]>,
    ) -> AudioBufferInOut<'in_slice, 's, 'out_slice, 's, S>
    where
        R: SliceIndex<[S], Output = [S]> + RangeBounds<usize> + Clone,
    {
        AudioBufferInOut {
            inputs: self.inputs.index_frames_from_slice(range.clone(), slice_in),
            outputs: self
                .outputs
                .index_frames_from_slice(range.clone(), slice_out),
            length: number_of_frames_in_range(self.length, range),
        }
    }

    /// Separate the input channels from the output channels.
    ///
    /// Separates the `AudioBufferInOut` into an `AudioBufferIn` and an `AudioBufferOut`.
    ///
    /// # Example
    /// ```
    /// use rsynth::buffer::AudioBufferInOut;
    ///
    /// let channel1_in = vec![11, 12, 13, 14];
    /// let channel2_in = vec![21, 22, 23, 24];
    /// let channels_in = [channel1_in.as_slice(), channel2_in.as_slice()];
    /// let number_of_input_channels = channels_in.len();
    /// let mut channel1_out = vec![110, 120, 130, 140];
    /// let mut channels_out = [channel1_out.as_mut_slice()];
    /// let number_of_output_channels = channels_out.len();
    /// let mut buffer = AudioBufferInOut::new(&channels_in, &mut channels_out, 4);
    ///
    /// let (input_buffer, output_buffer) = buffer.separate();
    /// ```
    pub fn separate<'s>(
        &'s mut self,
    ) -> (
        AudioBufferIn<'in_channels, 'in_samples, S>,
        AudioBufferOut<'s, 'out_samples, S>,
    ) {
        (
            self.inputs,
            AudioBufferOut {
                channels: self.outputs.channels,
                length: self.outputs.length,
            },
        )
    }

    /// Get the input channels as an [`AudioBufferIn`].
    ///
    /// [`AudioBufferIn`]: ./struct.AudioBufferIn.html
    pub fn inputs(&self) -> &AudioBufferIn<'in_channels, 'in_samples, S> {
        &self.inputs
    }

    /// Get the output channels as an [`AudioBufferOut`].
    ///
    /// [`AudioBufferOut`]: ./struct.AudioBufferOut.html
    pub fn outputs(&mut self) -> &mut AudioBufferOut<'out_channels, 'out_samples, S> {
        &mut self.outputs
    }

    #[cfg(feature = "rsor-0-1")]
    /// Interleave actions on subsequent frames with other actions, such as handling events,
    /// Similar to the [`interleave`] method, but using the the [`Slice`] struct
    /// from the [`rsor`] crate.
    ///
    /// This method is behind the `rsor-0-1` feature.
    /// See the documentation of [`interleave`] for more information.
    ///
    /// # Note
    /// If the iterator yields items for which the time is > `self.number_of_frames`,
    /// all these items will be handled after the audio.
    ///
    /// [`rsor`]: https://crates.io/crate/rsor
    /// [`interleave`]: ./struct.AudioBufferInOut.html#method.interleave
    pub fn interleave_with_slice<I, E, C, FR, FE>(
        &mut self,
        input_slice: &mut Slice<[S]>,
        output_slice: &mut Slice<[S]>,
        iterator: I,
        context: &mut C,
        render: FR,
        handle_event: FE,
    ) where
        S: Copy + 'static,
        I: Iterator<Item = (usize, E)>,
        FR: Fn(&mut C, &mut AudioBufferInOut<'_, '_, '_, '_, S>),
        FE: Fn(&mut C, E),
    {
        let mut last_event_time = 0;
        for (event_time, event) in iterator {
            let event_time = event_time as usize;
            if event_time == last_event_time {
                handle_event(context, event);
                continue;
            }
            if last_event_time < self.number_of_frames() {
                let mut sub_buffer = self.index_frames_from_slices(
                    last_event_time..event_time,
                    input_slice,
                    output_slice,
                );
                render(context, &mut sub_buffer);
            }
            last_event_time = event_time;
            handle_event(context, event);
        }
        if (last_event_time as usize) < self.number_of_frames() {
            let mut sub_buffer = self.index_frames_from_slices(
                last_event_time..self.number_of_frames(),
                input_slice,
                output_slice,
            );
            render(context, &mut sub_buffer);
        }
    }

    /// Interleave actions on subsequent frames with other actions, such as handling events.
    ///
    /// Apart from the `input_storage` and `output_storage`, which are only used for technical
    /// purposes, this method has the following parameters:
    /// * `iterator`: an iterator, yielding items of type `(usize, E)`, where `E` is a generic
    ///   type parameter.
    /// * `context`: some context, see below
    /// * `render`: a function that will be called with two parameters: the `context` and a sub-chunk
    /// * `handle_event`: a function that will be called for every item yielded by the `iterator`.
    ///
    /// # Note
    /// If the iterator yields items for which the time is > `self.number_of_frames`,
    /// all these items will be handled after the audio.
    ///
    /// # Example
    /// ```
    /// use rsynth::audio_chunk;
    /// use rsynth::vecstorage::VecStorage;
    /// use rsynth::buffer::AudioBufferInOut;
    ///
    /// let input = audio_chunk![[11, 12, 13, 14], [21, 22, 23, 24]];
    /// let mut provided_output = audio_chunk![[0, 0, 0, 0], [0, 0, 0, 0]];
    /// let mut events = vec![(0 as usize, 1), (0, 2), (2, 3), (2, 4), (4, 5)];
    /// let input = input.as_slices();
    /// let mut output_as_slices = provided_output.as_mut_slices();
    /// let mut buffer = AudioBufferInOut::new(&input, &mut output_as_slices, 4);
    ///
    /// buffer.interleave(
    ///     &mut VecStorage::with_capacity(2),
    ///     &mut VecStorage::with_capacity(2),
    ///     events.drain(..),
    ///     &mut (),
    ///     |&mut _context, buf: &mut AudioBufferInOut<i32>| {
    ///         println!("Audio: {:?}", buf);
    ///     },
    ///     |&mut _context, e| {
    ///         println!("Event: {}", e);
    ///     },
    /// );
    /// // This will first print "Event: 1", "Event: 2", then debug-print the first two frames
    /// // of the audio, then "Event: 3", "Event: 4", then debug-print the remaining two frames
    /// // of the audio and then debug-print "Event: 5".
    /// ```
    pub fn interleave<I, E, C, FR, FE>(
        &mut self,
        input_storage: &mut VecStorage<&'static [S]>,
        output_storage: &mut VecStorage<&'static [S]>,
        iterator: I,
        context: &mut C,
        render: FR,
        handle_event: FE,
    ) where
        S: Copy + 'static,
        I: Iterator<Item = (usize, E)>,
        FR: Fn(&mut C, &mut AudioBufferInOut<'_, '_, '_, '_, S>),
        FE: Fn(&mut C, E),
    {
        let mut last_event_time = 0;
        for (event_time, event) in iterator {
            let event_time = event_time as usize;
            if event_time == last_event_time {
                handle_event(context, event);
                continue;
            }
            if last_event_time < self.number_of_frames() {
                let mut input_guard = input_storage.vec_guard();
                let mut output_guard = output_storage.vec_guard();
                let mut sub_buffer = self.index_frames(
                    last_event_time..event_time,
                    &mut input_guard,
                    &mut output_guard,
                );
                render(context, &mut sub_buffer);
            }
            last_event_time = event_time;
            handle_event(context, event);
        }
        if (last_event_time as usize) < self.number_of_frames() {
            let mut input_guard = input_storage.vec_guard();
            let mut output_guard = output_storage.vec_guard();
            let mut sub_buffer = self.index_frames(
                last_event_time..self.number_of_frames(),
                &mut input_guard,
                &mut output_guard,
            );
            render(context, &mut sub_buffer);
        }
    }
}

#[cfg(feature = "rsor-0-1")]
#[test]
fn interleave_with_slices_works() {
    let test_plugin = TestPlugin::new(
        vec![
            audio_chunk![[11, 12], [21, 22]],
            audio_chunk![[13, 14], [23, 24]],
        ],
        vec![
            audio_chunk![[110, 120], [210, 220]],
            audio_chunk![[130, 140], [230, 240]],
        ],
        vec![vec![1, 2], vec![3, 4], vec![5]],
        vec![vec![], vec![]],
        (),
    );
    let input = audio_chunk![[11, 12, 13, 14], [21, 22, 23, 24]];
    let mut provided_output = audio_chunk![[0, 0, 0, 0], [0, 0, 0, 0]];
    let mut events = vec![(0 as usize, 1), (0, 2), (2, 3), (2, 4), (4, 5)];
    let mut input_slice = Slice::with_capacity(2);
    let mut output_slice = Slice::with_capacity(2);
    let input = input.as_slices();
    let mut output_as_slices = provided_output.as_mut_slices();
    let mut buffer = AudioBufferInOut::new(&input, &mut output_as_slices, 4);
    let dummy_event_handler = DummyEventHandler;
    buffer.interleave_with_slice(
        &mut input_slice,
        &mut output_slice,
        events.drain(..),
        &mut (test_plugin, dummy_event_handler),
        |&mut (ref mut tp, ref mut de), ref mut buf| {
            tp.render_buffer(buf, de);
        },
        |&mut (ref mut tp, _), e| {
            tp.handle_event(e);
        },
    );
    let expected_output = audio_chunk![[110, 120, 130, 140], [210, 220, 230, 240]];
    assert_eq!(provided_output, expected_output);
}

#[test]
fn interleave_works() {
    let test_plugin = TestPlugin::new(
        vec![
            audio_chunk![[11, 12], [21, 22]],
            audio_chunk![[13, 14], [23, 24]],
        ],
        vec![
            audio_chunk![[110, 120], [210, 220]],
            audio_chunk![[130, 140], [230, 240]],
        ],
        vec![vec![1, 2], vec![3, 4], vec![5]],
        vec![vec![], vec![]],
        (),
    );
    let input = audio_chunk![[11, 12, 13, 14], [21, 22, 23, 24]];
    let mut provided_output = audio_chunk![[0, 0, 0, 0], [0, 0, 0, 0]];
    let mut events = vec![(0 as usize, 1), (0, 2), (2, 3), (2, 4), (4, 5)];
    let mut input_storage = VecStorage::with_capacity(2);
    let mut output_storage = VecStorage::with_capacity(2);
    let input = input.as_slices();
    let mut output_as_slices = provided_output.as_mut_slices();
    let mut buffer = AudioBufferInOut::new(&input, &mut output_as_slices, 4);
    let dummy_event_handler = DummyEventHandler;
    buffer.interleave(
        &mut input_storage,
        &mut output_storage,
        events.drain(..),
        &mut (test_plugin, dummy_event_handler),
        |&mut (ref mut tp, ref mut de), ref mut buf| {
            tp.render_buffer(buf, de);
        },
        |&mut (ref mut tp, _), e| {
            tp.handle_event(e);
        },
    );
    let expected_output = audio_chunk![[110, 120, 130, 140], [210, 220, 230, 240]];
    assert_eq!(provided_output, expected_output);
}

#[cfg(feature = "rsor-0-1")]
#[test]
fn interleave_with_slice_works_with_empty_event_iterator() {
    let test_plugin = TestPlugin::<_, (), _>::new(
        vec![audio_chunk![[11, 12, 13, 14], [21, 22, 23, 24]]],
        vec![audio_chunk![[110, 120, 130, 140], [210, 220, 230, 240]]],
        vec![vec![]],
        vec![vec![]],
        (),
    );
    let input = audio_chunk![[11, 12, 13, 14], [21, 22, 23, 24]];
    let mut provided_output = audio_chunk![[0, 0, 0, 0], [0, 0, 0, 0]];
    let mut input_slice = Slice::with_capacity(2);
    let mut output_slice = Slice::with_capacity(2);
    let dummy_event_handler = DummyEventHandler;
    let input = input.as_slices();
    let mut output_as_slices = provided_output.as_mut_slices();
    let mut events = Vec::new();
    let mut buffer = AudioBufferInOut::new(&input, &mut output_as_slices, 4);
    buffer.interleave_with_slice(
        &mut input_slice,
        &mut output_slice,
        events.drain(..),
        &mut (test_plugin, dummy_event_handler),
        |&mut (ref mut tp, ref mut de), ref mut buf| {
            tp.render_buffer(buf, de);
        },
        |&mut (ref mut tp, _), e| {
            tp.handle_event(e);
        },
    );
    let expected_output = audio_chunk![[110, 120, 130, 140], [210, 220, 230, 240]];
    assert_eq!(provided_output, expected_output);
}

#[test]
fn interleave_works_with_empty_event_iterator() {
    let test_plugin = TestPlugin::<_, (), _>::new(
        vec![audio_chunk![[11, 12, 13, 14], [21, 22, 23, 24]]],
        vec![audio_chunk![[110, 120, 130, 140], [210, 220, 230, 240]]],
        vec![vec![]],
        vec![vec![]],
        (),
    );
    let input = audio_chunk![[11, 12, 13, 14], [21, 22, 23, 24]];
    let mut provided_output = audio_chunk![[0, 0, 0, 0], [0, 0, 0, 0]];
    let mut input_storage = VecStorage::with_capacity(2);
    let mut output_storage = VecStorage::with_capacity(2);
    let dummy_event_handler = DummyEventHandler;
    let input = input.as_slices();
    let mut output_as_slices = provided_output.as_mut_slices();
    let mut events = Vec::new();
    let mut buffer = AudioBufferInOut::new(&input, &mut output_as_slices, 4);
    buffer.interleave(
        &mut input_storage,
        &mut output_storage,
        events.drain(..),
        &mut (test_plugin, dummy_event_handler),
        |&mut (ref mut tp, ref mut de), ref mut buf| {
            tp.render_buffer(buf, de);
        },
        |&mut (ref mut tp, _), e| {
            tp.handle_event(e);
        },
    );
    let expected_output = audio_chunk![[110, 120, 130, 140], [210, 220, 230, 240]];
    assert_eq!(provided_output, expected_output);
}

// Alternative name: "packet"?
/// A buffer representing a fixed amount of samples for a fixed amount of audio channels.
///
/// An `AudioChunk` "owns" all its samples.
#[derive(Clone, PartialEq, Eq, Debug)]
pub struct AudioChunk<S> {
    // Invariant: channels is not empty.
    // TODO: This variant is currently not upheld and it's also not clear if we really need this.
    channels: Vec<Vec<S>>,
}

/// An iterator over the samples of an `AudioChunk`, operating frame by frame.
pub struct InterlacedSampleIterator<'a, S>
where
    S: Copy,
{
    channel_index: usize,
    frame_index: usize,
    chunk: &'a AudioChunk<S>,
}

impl<'a, S> InterlacedSampleIterator<'a, S>
where
    S: Copy,
{
    fn new(chunk: &'a AudioChunk<S>) -> Self {
        Self {
            channel_index: 0,
            frame_index: 0,
            chunk,
        }
    }
}

impl<'a, S> Iterator for InterlacedSampleIterator<'a, S>
where
    S: Copy,
{
    type Item = S;

    fn next(&mut self) -> Option<Self::Item> {
        if self.chunk.channels.is_empty() {
            return None;
        }
        let result = self.chunk.channels[self.channel_index]
            .get(self.frame_index)
            .cloned();
        if result.is_some() {
            self.channel_index += 1;
            if self.channel_index >= self.chunk.channels.len() {
                self.channel_index = 0;
                self.frame_index += 1;
            }
        }
        result
    }
}

impl<S> AudioChunk<S> {
    /// Create a new `AudioChunk`.
    /// # Panics
    /// Panics if `number_of_channels == 0`.
    /// # Note: cannot be used in a real-time context
    /// This method allocates memory and cannot be used in a real-time context.
    pub fn new(number_of_channels: usize) -> Self {
        assert!(number_of_channels > 0);
        let mut channels = Vec::with_capacity(number_of_channels);
        for _ in 0..number_of_channels {
            channels.push(Vec::new());
        }

        Self { channels }
    }
    // TODO: what we really want here, is to generate "silence" (equilibrium), this does not need to be equal to zero.
    /// # Note: cannot be used in a real-time context
    /// This method allocates memory and cannot be used in a real-time context.
    pub fn zero(number_of_channels: usize, number_of_frames: usize) -> Self
    where
        S: Zero,
    {
        let mut buffers = Vec::with_capacity(number_of_channels);
        for _ in 0..number_of_channels {
            let mut buffer = Vec::with_capacity(number_of_frames);
            for _ in 0..number_of_frames {
                buffer.push(S::zero());
            }
            buffers.push(buffer);
        }
        Self { channels: buffers }
    }

    pub fn from_channels(channels: Vec<Vec<S>>) -> Self {
        assert!(!channels.is_empty());
        let len = channels[0].len();
        assert!(len > 0);
        for channel in channels.iter() {
            assert_eq!(len, channel.len());
        }

        Self { channels }
    }

    /// # Panics
    /// Panics if `number_of_channels == 0`.
    /// Panics if the number of elements yielded by the iterator is not an
    /// integer multiple of `number_of_channels`.
    pub fn from_interlaced_iterator<I>(iterator: I, number_of_channels: usize) -> Self
    where
        I: Iterator<Item = S>,
        S: Copy,
    {
        let mut result = Self::new(number_of_channels);
        let mut index = 0;
        for s in iterator {
            result.channels[index % number_of_channels].push(s.clone());
            index += 1;
        }
        assert_eq!(
            index % number_of_channels,
            0,
            "Number of elements must be an integer multiple of the number of channels."
        );
        result
    }

    /// Create an interlaced iterator from an `AudioChunk`
    /// # Example
    /// ```
    /// #[macro_use]
    /// extern crate rsynth;
    /// # fn main() {
    /// let chunk = audio_chunk![[0, 1, 2], [3, 4, 5]];
    /// let iterator = chunk.interlaced();
    /// let interlaced: Vec<_> = iterator.collect();
    /// assert_eq!(interlaced, vec![0, 3, 1, 4, 2, 5]);
    /// # }
    /// ```
    pub fn interlaced<'a>(&'a self) -> InterlacedSampleIterator<'a, S>
    where
        S: Copy,
    {
        InterlacedSampleIterator::new(self)
    }

    /// Create a new `AudioChunk` in which each channel has the given capacity.
    /// This allows to append `capacity` frames to the `AudioChunk` (e.g. by calling
    /// `append_sliced_chunk`).
    ///
    /// # Note: cannot be used in a real-time context
    /// This method allocates memory and cannot be used in a real-time context.
    pub fn with_capacity(number_of_channels: usize, capacity: usize) -> Self {
        assert!(number_of_channels > 0);
        let mut channels = Vec::with_capacity(number_of_channels);
        for _ in 0..number_of_channels {
            channels.push(Vec::with_capacity(capacity));
        }

        Self { channels }
    }

    pub fn channels(&self) -> &Vec<Vec<S>> {
        &self.channels
    }

    /// Return the number of channels.
    pub fn number_of_channels(&self) -> usize {
        self.channels().len()
    }

    /// # Note about using in a real-time context
    /// This method will allocate memory if the capacity of the chunk is exceeded and cannot
    /// be used in a real-time context in that case.
    pub fn append_sliced_chunk(&mut self, chunk: &[&[S]])
    where
        S: Clone,
    {
        assert_eq!(self.channels.len(), chunk.len());
        let len = chunk[0].len();
        for channel in chunk.iter() {
            assert_eq!(len, channel.len());
        }
        for (output_channel, input_channel) in self.channels.iter_mut().zip(chunk.iter()) {
            output_channel.extend_from_slice(input_channel);
        }
    }

    pub fn inner(self) -> Vec<Vec<S>> {
        self.channels
    }

    /// # Note: cannot be used in a real-time context
    /// This method allocates memory and cannot be used in a real-time context.
    pub fn as_slices<'a>(&'a self) -> Vec<&[S]> {
        self.channels
            .iter()
            .map(|element| element.as_slice())
            .collect()
    }

    /// # Note: cannot be used in a real-time context
    /// This method allocates memory and cannot be used in a real-time context.
    pub fn as_mut_slices<'a>(&'a mut self) -> Vec<&mut [S]> {
        self.channels
            .iter_mut()
            .map(|element| element.as_mut_slice())
            .collect()
    }

    /// # Note: cannot be used in a real-time context
    /// This method allocates memory and cannot be used in a real-time context.
    pub fn split(mut self, number_of_frames_per_chunk: usize) -> Vec<Self> {
        assert!(number_of_frames_per_chunk > 0);

        let number_of_samples = self.channels[0].len();

        let result_len = number_of_samples / number_of_frames_per_chunk
            + if number_of_samples % number_of_frames_per_chunk == 0 {
                0
            } else {
                1
            };

        let mut result = Vec::with_capacity(result_len);
        for _ in 0..result_len {
            result.push(Vec::new());
        }

        for mut channel in self.channels.drain(..) {
            let mut chunk_index = 0;
            let mut chunk = Vec::new();
            for sample in channel.drain(..) {
                chunk.push(sample);
                if chunk.len() == number_of_frames_per_chunk {
                    result[chunk_index].push(mem::replace(&mut chunk, Vec::new()));
                    chunk_index += 1;
                }
            }
            if !chunk.is_empty() {
                result[chunk_index].push(chunk);
            }
        }
        result.drain(..).map(AudioChunk::from_channels).collect()
    }
}

#[macro_export]
/// Create an audio chunk.
/// ## Example
/// ```
/// // Create an audio chunk with two channels and three frames.
/// # #[macro_use]
/// # extern crate rsynth;
/// # fn main() {
/// let input = audio_chunk![[1, 2], [3, 4], [5, 6]];
/// # }
/// ```
macro_rules! audio_chunk {
    [
        [
            $head_head:expr
            $(
                , $head_tail: expr
            )*
        ]
        $(
            ,
            [
                $tail_head:expr
                $(
                    , $tail_tail: expr
                )*
            ]
        )*
    ] => {
        $crate::buffer::AudioChunk::from_channels(
            vec![
                vec![
                    $head_head
                    $(
                        , $head_tail
                    )*
                ]
                $(
                    , vec![
                        $tail_head
                        $(
                            , $tail_tail
                        )*
                    ]
                )*
            ]
        )
    };
}

#[test]
fn append_works_as_expected() {
    let mut audio_buffer = AudioChunk::new(3);
    let input = audio_chunk![[1, 2], [3, 4], [5, 6]];
    audio_buffer.append_sliced_chunk(input.as_slices().as_ref());
    assert_eq!(audio_buffer.channels()[0], vec![1, 2]);
    assert_eq!(audio_buffer.channels()[1], vec![3, 4]);
    assert_eq!(audio_buffer.channels()[2], vec![5, 6]);
}

#[test]
fn split_works_with_dividing_input_length() {
    let input = audio_chunk![[0, 1, 2, 3], [5, 6, 7, 8]];
    let observed = input.split(2);
    assert_eq!(
        observed,
        vec![audio_chunk![[0, 1], [5, 6]], audio_chunk![[2, 3], [7, 8]]]
    )
}

#[test]
fn split_works_with_non_dividing_input_length() {
    let input = audio_chunk![[0, 1, 2, 3, 4], [5, 6, 7, 8, 9]];
    let observed = input.split(2);
    assert_eq!(
        observed,
        vec![
            audio_chunk![[0, 1], [5, 6]],
            audio_chunk![[2, 3], [7, 8]],
            audio_chunk![[4], [9]]
        ]
    )
}

#[test]
fn from_interlaced_iterator_works() {
    let input = vec![1, 2, 3, 4, 5, 6];
    let chunk = AudioChunk::from_interlaced_iterator(input.iter().cloned(), 2);
    assert_eq!(chunk.channels, vec![vec![1, 3, 5], vec![2, 4, 6]]);
}

pub fn buffers_as_slice<'a, S>(buffers: &'a [Vec<S>], slice_len: usize) -> Vec<&'a [S]> {
    buffers.iter().map(|b| &b[0..slice_len]).collect()
}

pub fn buffers_as_mut_slice<'a, S>(
    buffers: &'a mut [Vec<S>],
    slice_len: usize,
) -> Vec<&'a mut [S]> {
    buffers.iter_mut().map(|b| &mut b[0..slice_len]).collect()
}