votable 0.7.0

Rust implementation of a VOTable serializer/deserializer with support for format other than XML, such as JSON, TOML or YAML.
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
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
//! Module defining iterators on table rows.

use std::{
  fs::File,
  io::{BufRead, BufReader, Write},
  ops::Range,
  path::Path,
};

use base64::{engine::general_purpose, read::DecoderReader};
use memchr::memmem::Finder;
use once_cell::sync::Lazy;
use quick_xml::{events::Event, Reader};

use crate::{
  data::{
    binary::Binary, binary2::Binary2, stream::Stream, tabledata::TableData, TableOrBinOrBin2,
  },
  error::VOTableError,
  impls::{
    b64::read::{
      B64Cleaner, BulkBinaryRowDeserializer, OwnedB64Cleaner, OwnedBulkBinaryRowDeserializer,
    },
    mem::VoidTableDataContent,
    Schema, VOTableValue,
  },
  iter::elems::{
    Binary2RowValueIterator, BinaryRowValueIterator, DataTableRowValueIterator, RowValueIterator,
  },
  resource::{Resource, ResourceOrTable, ResourceSubElem},
  table::{Table, TableElem},
  utils::{discard_comment, discard_event, is_empty},
  votable::{VOTable, VOTableWrapper},
  VOTableElement,
};

pub mod elems;
pub mod strings;

static TR_END_FINDER: Lazy<Finder<'static>> = Lazy::new(|| Finder::new("</TR>"));
static STREAM_END_FINDER: Lazy<Finder<'static>> = Lazy::new(|| Finder::new("</STREAM>"));
static TABLEDATA_END_FINDER: Lazy<Finder<'static>> = Lazy::new(|| Finder::new("</TABLEDATA>"));

/// Iterate over the raw rows (i.e. everything inside the `<TR>`/`</TR>` tags).
/// We assume the `<TABLEDATA>` tag has already been consumed and this iterator will consume
/// the `</TABLEDATA>` tag.
pub struct TabledataRowIterator<'a, R: BufRead> {
  reader: &'a mut Reader<R>,
  reader_buff: &'a mut Vec<u8>,
  has_next: bool,
}

impl<'a, R: BufRead> TabledataRowIterator<'a, R> {
  /// We assume here that the reader has already consumed the `<TABLEDATA>` tag.
  pub fn new(reader: &'a mut Reader<R>, reader_buff: &'a mut Vec<u8>) -> Self {
    Self {
      reader,
      reader_buff,
      has_next: true,
    }
  }
}

impl<'a, R: BufRead> Iterator for TabledataRowIterator<'a, R> {
  type Item = Result<Vec<u8>, VOTableError>;

  fn next(&mut self) -> Option<Self::Item> {
    next_tabledata_row(self.reader, self.reader_buff, &mut self.has_next)
  }
}

/// Iterate over the raw rows (i.e. everything inside the `<TR>`/`</TR>` tags).
/// We assume the `<TABLEDATA>` tag has already been consumed and this iterator will consume
/// the `</TABLEDATA>` tag.
pub struct OwnedTabledataRowIterator<R: BufRead> {
  pub reader: Reader<R>,
  pub reader_buff: Vec<u8>,
  pub votable: VOTable<VoidTableDataContent>,
  pub has_next: bool,
}

impl<R: BufRead> OwnedTabledataRowIterator<R> {
  pub fn skip_remaining_data(&mut self) -> Result<(), VOTableError> {
    self
      .reader
      .read_to_end(
        TableData::<VoidTableDataContent>::TAG_BYTES,
        &mut self.reader_buff,
      )
      .map_err(VOTableError::Read)
  }

  pub fn read_to_end(self) -> Result<VOTable<VoidTableDataContent>, VOTableError> {
    let Self {
      mut reader,
      mut reader_buff,
      mut votable,
      has_next: _,
    } = self;
    votable
      .read_from_data_end_to_end(&mut reader, &mut reader_buff)
      .map(|()| votable)
  }
}

impl<R: BufRead> Iterator for OwnedTabledataRowIterator<R> {
  type Item = Result<Vec<u8>, VOTableError>;

  fn next(&mut self) -> Option<Self::Item> {
    next_tabledata_row(&mut self.reader, &mut self.reader_buff, &mut self.has_next)
  }
}

fn next_tabledata_row<T: BufRead>(
  reader: &mut Reader<T>,
  reader_buff: &mut Vec<u8>,
  has_next: &mut bool,
) -> Option<Result<Vec<u8>, VOTableError>> {
  if *has_next {
    reader_buff.clear();
    loop {
      let event = reader.read_event(reader_buff);
      match event {
        Ok(Event::Start(e)) if e.name() == b"TR" => {
          let mut raw_row: Vec<u8> = Vec::with_capacity(256);
          return Some(
            read_until_found(TR_END_FINDER.as_ref(), reader, &mut raw_row).map(move |_| raw_row),
          );
        }
        Ok(Event::End(e)) if e.name() == TableData::<VoidTableDataContent>::TAG_BYTES => {
          *has_next = false;
          return None;
        }
        Ok(Event::Eof) => return Some(Err(VOTableError::PrematureEOF("reading rows"))),
        Ok(Event::Text(e)) if is_empty(&e) => {}
        Ok(Event::Comment(e)) => {
          discard_comment(&e, reader, TableData::<VoidTableDataContent>::TAG)
        }
        Ok(event) => discard_event(event, TableData::<VoidTableDataContent>::TAG),
        Err(e) => return Some(Err(VOTableError::Read(e))),
      }
    }
  } else {
    None
  }
}

/// Iterate over the raw rows (i.e. everything inside the `<TR>`/`</TR>` tags).
/// Also, provide the index of the starting `<TR>` byte in the file.
/// We assume the `<TABLEDATA>` tag has already been consumed and this iterator will consume
/// the `</TABLEDATA>` tag.
pub struct OwnedTabledataRowIteratorWithPosition<R: BufRead> {
  pub reader: Reader<R>,
  pub reader_buff: Vec<u8>,
  pub votable: VOTable<VoidTableDataContent>,
  pub has_next: bool,
  pub n_bytes_readen_cumul: usize,
}

impl<R: BufRead> OwnedTabledataRowIteratorWithPosition<R> {
  pub fn skip_remaining_data(&mut self) -> Result<(), VOTableError> {
    self
      .reader
      .read_to_end(
        TableData::<VoidTableDataContent>::TAG_BYTES,
        &mut self.reader_buff,
      )
      .map_err(VOTableError::Read)
  }

  pub fn read_to_end(self) -> Result<VOTable<VoidTableDataContent>, VOTableError> {
    let Self {
      mut reader,
      mut reader_buff,
      mut votable,
      has_next: _,
      n_bytes_readen_cumul: _,
    } = self;
    votable
      .read_from_data_end_to_end(&mut reader, &mut reader_buff)
      .map(|()| votable)
  }
}

impl<R: BufRead> Iterator for OwnedTabledataRowIteratorWithPosition<R> {
  type Item = Result<(Range<usize>, Vec<u8>), VOTableError>;

  fn next(&mut self) -> Option<Self::Item> {
    next_tabledata_row_with_position(
      &mut self.reader,
      &mut self.reader_buff,
      &mut self.has_next,
      &mut self.n_bytes_readen_cumul,
    )
  }
}

/// Returns the position of the bytes of the the row, from the first `<` of the `<TR>` tag (inclusive)
/// to the first character ofter the `>` of the `</TR>` tag.
/// # Note
/// The method `read_to_end(b"TR", &mut buff)` do not put the parsed eleemnts in the `buff`, so we cannot use it.
fn next_tabledata_row_with_position<T: BufRead>(
  reader: &mut Reader<T>,
  reader_buff: &mut Vec<u8>,
  has_next: &mut bool,
  n_bytes_readen_cumul: &mut usize,
) -> Option<Result<(Range<usize>, Vec<u8>), VOTableError>> {
  if *has_next {
    reader_buff.clear();
    loop {
      // Save position before reading the next event
      let pos = reader.buffer_position();
      let event = reader.read_event(reader_buff);
      match event {
        Ok(Event::Start(ref e)) if e.name() == b"TR" => {
          let mut raw_row: Vec<u8> = Vec::with_capacity(256);
          return match read_until_found(TR_END_FINDER.as_ref(), reader, &mut raw_row) {
            Ok(n_bytes_readen) => {
              let start = pos + *n_bytes_readen_cumul;
              *n_bytes_readen_cumul += n_bytes_readen;
              let end = reader.buffer_position() + *n_bytes_readen_cumul;
              Some(Ok((start..end, raw_row)))
            }
            Err(e) => Some(Err(e)),
          };
        }
        Ok(Event::End(ref e)) if e.name() == TableData::<VoidTableDataContent>::TAG_BYTES => {
          *has_next = false;
          return None;
        }
        Ok(Event::Eof) => return Some(Err(VOTableError::PrematureEOF("reading rows"))),
        Ok(Event::Text(ref e)) if is_empty(e) => {}
        Ok(Event::Comment(ref e)) => {
          discard_comment(e, reader, TableData::<VoidTableDataContent>::TAG)
        }
        Ok(event) => discard_event(event, TableData::<VoidTableDataContent>::TAG),
        Err(e) => return Some(Err(VOTableError::Read(e))),
      }
    }
  } else {
    None
  }
}

/// Same as `read_until` but taking a `memchr::memmem::Finder` for better performances when
/// a same `needle` has to be used several times.
/// # Returns
/// the number of bytes read.
fn read_until_found<T: BufRead>(
  finder: Finder<'_>,
  reader: &mut Reader<T>,
  buf: &mut Vec<u8>,
) -> Result<usize, VOTableError> {
  let needle = finder.needle();
  let l = needle.len();
  let r = reader.get_mut();
  let mut ending_pattern: Option<(&[u8], &[u8])> = None;
  let mut read = 0;
  loop {
    let (done, used) = {
      let available = match r.fill_buf() {
        Ok(n) => n,
        Err(ref e) if e.kind() == std::io::ErrorKind::Interrupted => continue,
        Err(e) => return Err(VOTableError::Io(e)),
      };
      if let Some((start, end)) = ending_pattern {
        if available.starts_with(end) {
          r.consume(end.len());
          read += end.len();
          return Ok(read);
        } else {
          // not the right pattern, starting part to be added!!
          buf.extend_from_slice(start);
          ending_pattern = None;
        }
      }
      match finder.find(available) {
        Some(i) => {
          buf.extend_from_slice(&available[..i]);
          (true, i + l)
        }
        None => {
          let len = available.len();
          for sub in 1..l {
            if available.ends_with(&needle[0..sub]) {
              /*println!(
                "{} -- {}",
                from_utf8(&needle[0..sub]).unwrap(),
                from_utf8(&needle[sub..l]).unwrap()
              );*/
              ending_pattern = Some((&needle[0..sub], &needle[sub..l]));
              buf.extend_from_slice(&available[..len - sub]);
              break;
            }
          }
          if ending_pattern.is_none() {
            buf.extend_from_slice(available);
          }
          (false, len)
        }
      }
    };
    r.consume(used);
    read += used;
    if done || used == 0 {
      return Ok(read);
    }
  }
}

fn copy_until_found<R, W>(
  finder: Finder<'_>,
  reader: &mut R,
  writer: &mut W,
) -> Result<usize, VOTableError>
where
  R: BufRead,
  W: Write,
{
  let needle = finder.needle();
  let l = needle.len();
  let r = reader;
  let mut ending_pattern: Option<(&[u8], &[u8])> = None;
  let mut read = 0;
  loop {
    let (done, used) = {
      let available = match r.fill_buf() {
        Ok(n) => n,
        Err(ref e) if e.kind() == std::io::ErrorKind::Interrupted => continue,
        Err(e) => return Err(VOTableError::Io(e)),
      };
      if let Some((start, end)) = ending_pattern {
        if available.starts_with(end) {
          r.consume(end.len());
          read += end.len();
          return Ok(read);
        } else {
          // not the right pattern, starting part to be added!!
          writer.write_all(start).map_err(VOTableError::Io)?;
          ending_pattern = None;
        }
      }
      match finder.find(available) {
        Some(i) => {
          writer
            .write_all(&available[..i])
            .map_err(VOTableError::Io)?;
          (true, i + l)
        }
        None => {
          let len = available.len();
          for sub in 1..l {
            if available.ends_with(&needle[0..sub]) {
              ending_pattern = Some((&needle[0..sub], &needle[sub..l]));
              writer
                .write_all(&available[..len - sub])
                .map_err(VOTableError::Io)?;
              break;
            }
          }
          if ending_pattern.is_none() {
            writer.write_all(available).map_err(VOTableError::Io)?;
          }
          (false, len)
        }
      }
    };
    r.consume(used);
    read += used;
    if done || used == 0 {
      return Ok(read);
    }
  }
}

/// Iterate over the raw rows.
/// We assume the `<BINARY>` or `<BINARY2>` tag has already been consumed and this iterator will consume
/// the `</BINARY>` or `</BINARY2>` tag.
pub struct Binary1or2RowIterator<'a, R: BufRead> {
  reader: BulkBinaryRowDeserializer<'a, R>,
}

impl<'a, R: BufRead> Binary1or2RowIterator<'a, R> {
  /// We assume here that the reader has already consumed the `<STREAM>` tag.
  pub fn new(reader: &'a mut Reader<R>, context: &[TableElem], is_binary2: bool) -> Self {
    let b64_cleaner = B64Cleaner::new(reader.get_mut());
    let decoder = DecoderReader::new(b64_cleaner, &general_purpose::STANDARD);
    // Get schema
    let schema: Vec<Schema> = context
      .iter()
      .filter_map(|table_elem| match table_elem {
        TableElem::Field(field) => Some(field.into()),
        _ => None,
      })
      .collect();
    let reader = if is_binary2 {
      BulkBinaryRowDeserializer::new_binary2(decoder, schema.as_slice())
    } else {
      BulkBinaryRowDeserializer::new_binary(decoder, schema.as_slice())
    };
    Self { reader }
  }
}

impl<'a, R: BufRead> Iterator for Binary1or2RowIterator<'a, R> {
  type Item = Result<Vec<u8>, VOTableError>;

  fn next(&mut self) -> Option<Self::Item> {
    if self.reader.has_data_left().unwrap_or(false) {
      let mut row = Vec::with_capacity(512);
      Some(self.reader.read_raw_row(&mut row).map(|_| {
        row.shrink_to_fit();
        row
      }))
    } else {
      None
    }
  }
}

pub struct OwnedBinary1or2RowIterator<R: BufRead> {
  pub votable: VOTable<VoidTableDataContent>,
  pub reader: OwnedBulkBinaryRowDeserializer<R>,
  pub is_binary2: bool,
}

impl<R: BufRead> OwnedBinary1or2RowIterator<R> {
  pub fn new(reader: Reader<R>, votable: VOTable<VoidTableDataContent>, is_binary2: bool) -> Self {
    let b64_cleaner = OwnedB64Cleaner::new(reader.into_inner());
    let decoder = DecoderReader::new(b64_cleaner, &general_purpose::STANDARD);
    // Get schema
    let schema: Vec<Schema> = votable
      .get_first_table()
      .unwrap() // .resources[0].tables[0]
      .elems
      .iter()
      .filter_map(|table_elem| match table_elem {
        TableElem::Field(field) => Some(field.into()),
        _ => None,
      })
      .collect();
    let reader = if is_binary2 {
      OwnedBulkBinaryRowDeserializer::new_binary2(decoder, schema.as_slice())
    } else {
      OwnedBulkBinaryRowDeserializer::new_binary(decoder, schema.as_slice())
    };
    Self {
      votable,
      reader,
      is_binary2,
    }
  }

  pub fn skip_remaining_data(mut self) -> Result<Self, VOTableError> {
    match self.reader.has_data_left() {
      Ok(true) => {
        let Self {
          votable,
          reader,
          is_binary2,
        } = self;
        reader.skip_remaining_data().map(|reader| Self {
          votable,
          reader,
          is_binary2,
        })
      }
      Ok(false) => Ok(self),
      Err(e) => Err(e),
    }
  }

  pub fn read_to_end(self) -> Result<VOTable<VoidTableDataContent>, VOTableError> {
    let Self {
      mut votable,
      reader,
      is_binary2,
    } = self;
    // TODO: partly redundant code with SimpleVOTableRowIterator...
    let mut reader = Reader::from_reader(reader.into_inner());
    reader.check_end_names(false);
    let mut reader_buff: Vec<u8> = Vec::with_capacity(512);
    reader
      .read_to_end(
        if is_binary2 {
          b"BINARY2".to_vec()
        } else {
          b"BINARY".to_vec()
        },
        &mut reader_buff,
      )
      .map_err(|e| VOTableError::Custom(format!("Reading to BINARY or BINARY2... {:?}", e)))?;
    votable
      .read_from_data_end_to_end(&mut reader, &mut reader_buff)
      .map(|()| votable)
  }
}

impl<R: BufRead> Iterator for OwnedBinary1or2RowIterator<R> {
  type Item = Result<Vec<u8>, VOTableError>;

  fn next(&mut self) -> Option<Self::Item> {
    // TODO: ask the exact max binary size (estimated from the number of bytes of each field)?!
    if self.reader.has_data_left().unwrap_or(false) {
      let mut row = Vec::with_capacity(512);
      Some(self.reader.read_raw_row(&mut row).map(|_| {
        row.shrink_to_fit();
        row
      }))
    } else {
      None
    }
  }
}

/// Structure made to iterate on the raw rows of a "simple" VOTable.
/// By "simple", we mean a VOTable containing a single resource containing itself a single table.  
pub struct SimpleVOTableRowIterator<R: BufRead> {
  pub reader: Reader<R>,
  pub reader_buff: Vec<u8>,
  pub votable: VOTable<VoidTableDataContent>,
  pub data_type: TableOrBinOrBin2,
}

impl SimpleVOTableRowIterator<BufReader<File>> {
  /// Open file and starts parsing the VOTable till (inclusive):
  /// * `TABLEDATA` for the `TABLEDATA` tag
  /// * `STREAM` for `BINARY` and `BINARY2` tags
  pub fn from_file<P: AsRef<Path>>(path: P) -> Result<Self, VOTableError> {
    let mut reader_buff: Vec<u8> = Vec::with_capacity(1024);
    let (votable, resource, reader) =
      VOTableWrapper::<VoidTableDataContent>::manual_from_ivoa_xml_file(path, &mut reader_buff)?;
    SimpleVOTableRowIterator::<BufReader<File>>::from_votable_resource_reader(
      votable,
      resource,
      reader,
      reader_buff,
    )
  }
}

impl<R: BufRead> SimpleVOTableRowIterator<R> {
  pub fn from_reader(reader: R) -> Result<Self, VOTableError> {
    let mut reader_buff: Vec<u8> = Vec::with_capacity(1024);
    let (votable, resource, reader) =
      VOTable::from_reader_till_next_resource(reader, &mut reader_buff)?;
    Self::from_votable_resource_reader(votable, resource, reader, reader_buff)
  }

  fn from_votable_resource_reader(
    mut votable: VOTable<VoidTableDataContent>,
    mut resource: Resource<VoidTableDataContent>,
    mut reader: Reader<R>,
    mut reader_buff: Vec<u8>,
  ) -> Result<Self, VOTableError> {
    let mut sub_elem = resource
      .read_till_next_table_by_ref(&mut reader, &mut reader_buff)
      .and_then(|opt_sub_elem| {
        opt_sub_elem.ok_or_else(|| {
          VOTableError::Custom(String::from("No table found in the VOTable resource!"))
        })
      })?;
    match &mut sub_elem {
      ResourceSubElem {
        links: _,
        resource_or_table: ResourceOrTable::<_>::Table(table),
        ..
      } => {
        if let Some(mut data) = table.read_till_data_by_ref(&mut reader, &mut reader_buff)? {
          match data.read_till_table_bin_or_bin2_or_fits_by_ref(&mut reader, &mut reader_buff)? {
            Some(TableOrBinOrBin2::TableData) => {
              table.set_data_by_ref(data);
              resource.push_sub_elem_by_ref(sub_elem);
              votable.push_resource_by_ref(resource);
              Ok(SimpleVOTableRowIterator {
                reader,
                reader_buff,
                votable,
                data_type: TableOrBinOrBin2::TableData,
              })
            }
            Some(TableOrBinOrBin2::Binary) => {
              let stream = Stream::open_stream(&mut reader, &mut reader_buff)?;
              let binary = Binary::from_stream(stream);
              data.set_binary_by_ref(binary);
              table.set_data_by_ref(data);
              resource.push_sub_elem_by_ref(sub_elem);
              votable.push_resource_by_ref(resource);
              Ok(SimpleVOTableRowIterator {
                reader,
                reader_buff,
                votable,
                data_type: TableOrBinOrBin2::Binary,
              })
            }
            Some(TableOrBinOrBin2::Binary2) => {
              let stream = Stream::open_stream(&mut reader, &mut reader_buff)?;
              let binary2 = Binary2::from_stream(stream);
              data.set_binary2_by_ref(binary2);
              table.set_data_by_ref(data);
              resource.push_sub_elem_by_ref(sub_elem);
              votable.push_resource_by_ref(resource);
              Ok(SimpleVOTableRowIterator {
                reader,
                reader_buff,
                votable,
                data_type: TableOrBinOrBin2::Binary2,
              })
            }
            Some(TableOrBinOrBin2::Fits(_)) => Err(VOTableError::Custom(String::from(
              "FITS data not supported",
            ))),
            None => Err(VOTableError::Custom(String::from(
              "No data found in the first VOtable table",
            ))),
          }
        } else {
          Err(VOTableError::Custom(String::from(
            "No data found in the first VOTable table",
          )))
        }
      }
      _ => Err(VOTableError::Custom(String::from("Not a table?!"))),
    }
  }

  pub fn data_type(&self) -> &TableOrBinOrBin2 {
    &self.data_type
  }

  pub fn votable(&self) -> &VOTable<VoidTableDataContent> {
    &self.votable
  }

  /// An external code have to take charge of the parsing o the data part of the VOTable till:
  /// * `</TABLEDATA>` for `<TABLEDATA>`
  /// * `</BINARY>` for `<BINARY>`
  /// * `</BINARY2>` for `<BINARY2>`
  pub fn borrow_mut_reader_and_buff(&mut self) -> (&mut Reader<R>, &mut Vec<u8>) {
    (&mut self.reader, &mut self.reader_buff)
  }

  /// This method returns an iterator over each row in which each row is a of `Vec<VOTableValue`.
  /// It is generic and is valid for either TableData, Bianry or Binary2.
  /// WARNING: use either this method *or* one of the `to_onwed` method
  /// (since they will consume data rows).
  pub fn to_row_value_iter(&mut self) -> RowValueIterator<'_, R> {
    let table = self.votable.get_first_table_mut().unwrap();
    let schema: Vec<Schema> = table
      .elems
      .iter()
      .filter_map(|table_elem| match table_elem {
        TableElem::Field(field) => Some(field.into()),
        _ => None,
      })
      .collect();
    match &self.data_type {
      TableOrBinOrBin2::TableData => RowValueIterator::TableData(DataTableRowValueIterator::new(
        &mut self.reader,
        &mut self.reader_buff,
        table,
        schema,
      )),
      TableOrBinOrBin2::Binary => {
        RowValueIterator::BinaryTable(BinaryRowValueIterator::new(&mut self.reader, table, schema))
      }
      TableOrBinOrBin2::Binary2 => RowValueIterator::Binary2Table(Binary2RowValueIterator::new(
        &mut self.reader,
        table,
        schema,
      )),
      _ => unreachable!(),
    }
  }

  /// Before calling this method, you **must** ensure that `self.data_type()` returns `TableOrBinOrBin2::TableData`
  pub fn to_owned_tabledata_row_iterator(self) -> OwnedTabledataRowIterator<R> {
    assert!(matches!(self.data_type, TableOrBinOrBin2::TableData));
    OwnedTabledataRowIterator {
      reader: self.reader,
      reader_buff: self.reader_buff,
      votable: self.votable,
      has_next: true,
    }
  }

  /// Before calling this method, you **must** ensure that `self.data_type()` returns `TableOrBinOrBin2::TableData`.
  /// In addition to the raw row, also provide the position (byte number) of the starting `<TR>` row tag in the file.
  pub fn to_owned_tabledata_row_iterator_with_position(
    self,
  ) -> OwnedTabledataRowIteratorWithPosition<R> {
    assert!(matches!(self.data_type, TableOrBinOrBin2::TableData));
    OwnedTabledataRowIteratorWithPosition {
      reader: self.reader,
      reader_buff: self.reader_buff,
      votable: self.votable,
      has_next: true,
      n_bytes_readen_cumul: 0,
    }
  }

  /// Before calling this method, you **must** ensure that `self.data_type()` returns `TableOrBinOrBin2::Binary`
  pub fn to_owned_binary_row_iterator(self) -> OwnedBinary1or2RowIterator<R> {
    assert!(matches!(self.data_type, TableOrBinOrBin2::Binary));
    OwnedBinary1or2RowIterator::new(self.reader, self.votable, false)
  }

  /// Before calling this method, you **must** ensure that `self.data_type()` returns `TableOrBinOrBin2::Binary2`
  pub fn to_owned_binary2_row_iterator(self) -> OwnedBinary1or2RowIterator<R> {
    assert!(matches!(self.data_type, TableOrBinOrBin2::Binary2));
    OwnedBinary1or2RowIterator::new(self.reader, self.votable, true)
  }

  /// You can call this method only if you have not yet consumed:
  /// * `</TABLEDATA>` in the case of `<TABLEDATA>`
  /// * `</STREAM>` **and** `</BINARY>` in the case of `<BINARY>`
  /// * `</STREAM>` **and** `</BINARY2>` in the case of `<BINARY2>`
  pub fn skip_remaining_data(&mut self) -> Result<(), VOTableError> {
    match self.data_type {
      TableOrBinOrBin2::TableData => self
        .reader
        .read_to_end(
          TableData::<VoidTableDataContent>::TAG_BYTES,
          &mut self.reader_buff,
        )
        .map_err(VOTableError::Read),
      TableOrBinOrBin2::Binary => self
        .reader
        .read_to_end(
          Stream::<VoidTableDataContent>::TAG_BYTES,
          &mut self.reader_buff,
        )
        .map_err(VOTableError::Read)
        .and_then(|_| {
          self
            .reader
            .read_to_end(
              Binary::<VoidTableDataContent>::TAG_BYTES,
              &mut self.reader_buff,
            )
            .map_err(VOTableError::Read)
        }),
      TableOrBinOrBin2::Binary2 => self
        .reader
        .read_to_end(
          Stream::<VoidTableDataContent>::TAG_BYTES,
          &mut self.reader_buff,
        )
        .map_err(VOTableError::Read)
        .and_then(|_| {
          self
            .reader
            .read_to_end(
              Binary2::<VoidTableDataContent>::TAG_BYTES,
              &mut self.reader_buff,
            )
            .map_err(VOTableError::Read)
        }),
      _ => unreachable!(),
    }
  }

  /// You can call this method only if you have not yet consumed:
  /// * `</TABLEDATA>` in the case of `<TABLEDATA>`
  /// * `</STREAM>` **and** `</BINARY>` in the case of `<BINARY>`
  /// * `</STREAM>` **and** `</BINARY2>` in the case of `<BINARY2>`
  pub fn copy_remaining_data<W: Write>(&mut self, mut write: W) -> Result<(), VOTableError> {
    match self.data_type {
      TableOrBinOrBin2::TableData => copy_until_found(
        TABLEDATA_END_FINDER.as_ref(),
        self.reader.get_mut(),
        &mut write,
      ),
      TableOrBinOrBin2::Binary => copy_until_found(
        STREAM_END_FINDER.as_ref(),
        self.reader.get_mut(),
        &mut write,
      ),
      TableOrBinOrBin2::Binary2 => copy_until_found(
        STREAM_END_FINDER.as_ref(),
        self.reader.get_mut(),
        &mut write,
      ),
      _ => unreachable!(),
    }
    .map(|_| ())
  }

  pub fn end_of_it(self) -> VOTable<VoidTableDataContent> {
    self.votable
  }

  pub fn read_to_end(self) -> Result<VOTable<VoidTableDataContent>, VOTableError> {
    let Self {
      mut reader,
      mut reader_buff,
      mut votable,
      data_type: _,
    } = self;
    votable
      .read_from_data_end_to_end(&mut reader, &mut reader_buff)
      .map(|()| votable)
  }
}

/// Iterates over a table rows.
pub trait TableIter: Iterator<Item = Result<Vec<VOTableValue>, VOTableError>> {
  /// Returns the table metadata.
  fn table(&mut self) -> &mut Table<VoidTableDataContent>;
  /// Read to the end of the table, skipping all remaining data rows.
  fn read_to_end(self) -> Result<(), VOTableError>;
}

/// Returns an Iterator on the tables a VOTable contains.
/// For each table, an iterator on the table rows is provided.
/// The iteration on a table rows must be complete before iterating to the the new table.
/// TODO:
/// * to use this iterator like `SimpleVOTableRowIterator`, we **must** implement
///   methods starting reading again after the last table.
pub struct VOTableIterator<R: BufRead> {
  reader: Reader<R>,
  reader_buff: Vec<u8>,
  votable: VOTable<VoidTableDataContent>,
  resource_stack: Vec<Resource<VoidTableDataContent>>,
  resource_sub_elems_stack: Vec<ResourceSubElem<VoidTableDataContent>>,
}

impl VOTableIterator<BufReader<File>> {
  pub fn from_file<P: AsRef<Path>>(
    path: P,
  ) -> Result<VOTableIterator<BufReader<File>>, VOTableError> {
    let mut reader_buff: Vec<u8> = Vec::with_capacity(1024);
    let (votable, resource, reader) =
      VOTableWrapper::<VoidTableDataContent>::manual_from_ivoa_xml_file(path, &mut reader_buff)?;
    let mut resource_stack = Vec::with_capacity(4);
    resource_stack.push(resource);
    Ok(VOTableIterator::<BufReader<File>> {
      reader,
      reader_buff,
      votable,
      resource_stack,
      resource_sub_elems_stack: Vec::with_capacity(10),
    })
  }

  pub fn end_of_it(self) -> VOTable<VoidTableDataContent> {
    self.votable
  }
}

impl<R: BufRead> VOTableIterator<R> {
  pub fn from_reader(reader: R) -> Result<Self, VOTableError> {
    let mut reader_buff: Vec<u8> = Vec::with_capacity(1024);
    let (votable, resource, reader) =
      VOTable::from_reader_till_next_resource(reader, &mut reader_buff)?;
    let mut resource_stack = Vec::with_capacity(4);
    resource_stack.push(resource);
    Ok(VOTableIterator::<R> {
      reader,
      reader_buff,
      votable,
      resource_stack,
      resource_sub_elems_stack: Vec::with_capacity(10),
    })
  }

  pub fn read_all_skipping_data(mut self) -> Result<VOTable<VoidTableDataContent>, VOTableError> {
    while let Some(table_it) = self.next_table_row_value_iter()? {
      table_it.read_to_end()?;
    }
    assert!(self.resource_sub_elems_stack.is_empty());
    assert!(self.resource_stack.is_empty());
    Ok(self.votable)
  }

  pub fn next_table_row_value_iter(
    &mut self,
  ) -> Result<Option<RowValueIterator<'_, R>>, VOTableError> {
    loop {
      if let Some(mut sub_resource) = self.resource_sub_elems_stack.pop() {
        match &mut sub_resource.resource_or_table {
          ResourceOrTable::<_>::Resource(r) => {
            match r
              .read_till_next_resource_or_table_by_ref(&mut self.reader, &mut self.reader_buff)?
            {
              Some(s) => {
                self.resource_sub_elems_stack.push(sub_resource);
                self.resource_sub_elems_stack.push(s);
              }
              None => {
                if let Some(last) = self.resource_sub_elems_stack.last_mut() {
                  last.push_sub_elem_by_ref(sub_resource)?;
                } else if let Some(last) = self.resource_stack.last_mut() {
                  last.push_sub_elem_by_ref(sub_resource);
                } else {
                  return Err(VOTableError::Custom(String::from(
                    "No more RESOURCE in the stack :o/",
                  )));
                }
              }
            }
          }
          ResourceOrTable::<_>::Table(table) => {
            if let Some(mut data) =
              table.read_till_data_by_ref(&mut self.reader, &mut self.reader_buff)?
            {
              match data.read_till_table_bin_or_bin2_or_fits_by_ref(
                &mut self.reader,
                &mut self.reader_buff,
              )? {
                Some(TableOrBinOrBin2::TableData) => {
                  table.set_data_by_ref(data);

                  let schema: Vec<Schema> = table
                    .elems
                    .iter()
                    .filter_map(|table_elem| match table_elem {
                      TableElem::Field(field) => Some(field.into()),
                      _ => None,
                    })
                    .collect();

                  if let Some(last) = self.resource_sub_elems_stack.last_mut() {
                    last.push_sub_elem_by_ref(sub_resource)?;
                  } else if let Some(last) = self.resource_stack.last_mut() {
                    last.push_sub_elem_by_ref(sub_resource);
                  } else {
                    return Err(VOTableError::Custom(String::from(
                      "No more RESOURCE in the stack :o/",
                    )));
                  }

                  let row_it = DataTableRowValueIterator::new(
                    &mut self.reader,
                    &mut self.reader_buff,
                    self
                      .resource_stack
                      .last_mut()
                      .unwrap()
                      .get_last_table_mut()
                      .unwrap(),
                    schema,
                  );
                  return Ok(Some(RowValueIterator::TableData(row_it)));
                }
                Some(TableOrBinOrBin2::Binary) => {
                  let stream = Stream::open_stream(&mut self.reader, &mut self.reader_buff)?;
                  let binary = Binary::from_stream(stream);
                  data.set_binary_by_ref(binary);
                  table.set_data_by_ref(data);

                  let schema: Vec<Schema> = table
                    .elems
                    .iter()
                    .filter_map(|table_elem| match table_elem {
                      TableElem::Field(field) => Some(field.into()),
                      _ => None,
                    })
                    .collect();

                  if let Some(last) = self.resource_sub_elems_stack.last_mut() {
                    last.push_sub_elem_by_ref(sub_resource)?;
                  } else if let Some(last) = self.resource_stack.last_mut() {
                    last.push_sub_elem_by_ref(sub_resource);
                  } else {
                    return Err(VOTableError::Custom(String::from(
                      "No more RESOURCE in the stack :o/",
                    )));
                  }

                  let row_it = BinaryRowValueIterator::new(
                    &mut self.reader,
                    self
                      .resource_stack
                      .last_mut()
                      .unwrap()
                      .get_last_table_mut()
                      .unwrap(),
                    schema,
                  );
                  return Ok(Some(RowValueIterator::BinaryTable(row_it)));
                }
                Some(TableOrBinOrBin2::Binary2) => {
                  let stream = Stream::open_stream(&mut self.reader, &mut self.reader_buff)?;
                  let binary2 = Binary2::from_stream(stream);
                  data.set_binary2_by_ref(binary2);
                  table.set_data_by_ref(data);

                  let schema: Vec<Schema> = table
                    .elems
                    .iter()
                    .filter_map(|table_elem| match table_elem {
                      TableElem::Field(field) => Some(field.into()),
                      _ => None,
                    })
                    .collect();

                  if let Some(last) = self.resource_sub_elems_stack.last_mut() {
                    last.push_sub_elem_by_ref(sub_resource)?;
                  } else if let Some(last) = self.resource_stack.last_mut() {
                    last.push_sub_elem_by_ref(sub_resource);
                  } else {
                    return Err(VOTableError::Custom(String::from(
                      "No more RESOURCE in the stack :o/",
                    )));
                  }

                  let row_it = Binary2RowValueIterator::new(
                    &mut self.reader,
                    self
                      .resource_stack
                      .last_mut()
                      .unwrap()
                      .get_last_table_mut()
                      .unwrap(),
                    schema,
                  );
                  return Ok(Some(RowValueIterator::Binary2Table(row_it)));
                }
                Some(TableOrBinOrBin2::Fits(fits)) => {
                  data.set_fits_by_ref(fits);
                  table.set_data_by_ref(data);

                  if let Some(last) = self.resource_sub_elems_stack.last_mut() {
                    last.push_sub_elem_by_ref(sub_resource)?;
                  } else if let Some(last) = self.resource_stack.last_mut() {
                    last.push_sub_elem_by_ref(sub_resource);
                  } else {
                    return Err(VOTableError::Custom(String::from(
                      "No more RESOURCE in the stack :o/",
                    )));
                  }
                }
                None => {
                  return Err(VOTableError::Custom(String::from("Unexpected empty DATA")));
                }
              }
            } else {
              if let Some(last) = self.resource_sub_elems_stack.last_mut() {
                last.push_sub_elem_by_ref(sub_resource)?;
              } else if let Some(last) = self.resource_stack.last_mut() {
                last.push_sub_elem_by_ref(sub_resource);
              } else {
                return Err(VOTableError::Custom(String::from(
                  "No more RESOURCE in the stack :o/",
                )));
              }
            }
          }
        }
        // Check the kind of sub-resource
        // - if table, good, return
        // - if resource, try to read sub-resource
        //    - if no sub-resource, add to the prev- sub-resource (to the resource if no more thing in the stack)
      } else if let Some(mut resource) = self.resource_stack.pop() {
        // No more sub-resource in the stack, try to read sub-resource.
        match resource
          .read_till_next_resource_or_table_by_ref(&mut self.reader, &mut self.reader_buff)?
        {
          // If sub-resource found, add it to the stack
          Some(resource_sub_elem) => {
            self.resource_sub_elems_stack.push(resource_sub_elem);
            self.resource_stack.push(resource);
          }
          // Else no more element to read in the resource, add it to the votable
          None => self.votable.push_resource_by_ref(resource),
        }
      } else {
        // No more resource in the stack, try to read next resource.
        match self
          .votable
          .read_till_next_resource_by_ref(&mut self.reader, &mut self.reader_buff)?
        {
          Some(resource) => self.resource_stack.push(resource),
          None => return Ok(None),
        }
      }
    }
  }
}

#[cfg(test)]
mod tests {
  use std::io::Cursor;

  use serde::{de::DeserializeSeed, Deserializer};

  use crate::{
    data::TableOrBinOrBin2,
    impls::{
      b64::read::BinaryDeserializer, visitors::FixedLengthArrayVisitor, Schema, VOTableValue,
    },
    iter::{Binary1or2RowIterator, SimpleVOTableRowIterator, TabledataRowIterator},
    table::TableElem,
  };

  #[test]
  fn test_simple_votable_read_iter_tabledata() {
    println!();
    println!("-- next_table_row_value_iter dss12.vot --");
    println!();

    let mut svor = SimpleVOTableRowIterator::from_file("resources/sdss12.vot").unwrap();
    assert!(matches!(svor.data_type(), &TableOrBinOrBin2::TableData));

    // svor.skip_remaining_data().unwrap();
    let raw_row_it = TabledataRowIterator::new(&mut svor.reader, &mut svor.reader_buff);
    for raw_row_res in raw_row_it {
      eprintln!(
        "ROW: {:?}",
        std::str::from_utf8(&raw_row_res.unwrap()).unwrap()
      );
    }
    let votable = svor.read_to_end().unwrap();
    println!("VOTable: {}", votable.wrap().to_toml_string(true).unwrap());

    assert!(true)
  }

  #[test]
  fn test_simple_votable_read_iter_tabledata_owned() {
    println!();
    println!("-- next_table_row_value_iter sdss12.vot --");
    println!();

    let svor = SimpleVOTableRowIterator::from_file("resources/sdss12.vot").unwrap();
    assert!(matches!(svor.data_type(), &TableOrBinOrBin2::TableData));
    let mut raw_row_it = svor.to_owned_tabledata_row_iterator();
    let mut n_row = 0_u32;
    while let Some(raw_row_res) = raw_row_it.next() {
      eprintln!(
        "ROW: {:?}",
        std::str::from_utf8(&raw_row_res.unwrap()).unwrap()
      );
      n_row += 1;
    }
    let votable = raw_row_it.read_to_end().unwrap();
    println!("VOTable: {}", votable.wrap().to_toml_string(true).unwrap());

    assert_eq!(n_row, 50)
  }

  #[test]
  fn test_simple_votable_read_iter_binary1() {
    println!();
    println!("-- next_table_row_value_iter binary.b64 --");
    println!();

    let mut svor = SimpleVOTableRowIterator::from_file("resources/binary.b64").unwrap();
    assert!(matches!(svor.data_type(), &TableOrBinOrBin2::Binary));

    let context = svor.votable.get_first_table().unwrap().elems.as_slice();
    // svor.skip_remaining_data().unwrap();
    let raw_row_it = Binary1or2RowIterator::new(&mut svor.reader, context, false);
    let schema: Vec<Schema> = context
      .iter()
      .filter_map(|table_elem| match table_elem {
        TableElem::Field(field) => Some(field.into()),
        _ => None,
      })
      .collect();
    let schema_len = schema.len();
    for raw_row_res in raw_row_it {
      /*eprintln!(
        "ROW SIZE: {:?}",
        raw_row_res.map(|row| row.len()).unwrap_or(0)
      );*/
      eprintln!(
        "ROW: {:?}",
        raw_row_res.map(|row| {
          let mut binary_deser = BinaryDeserializer::new(Cursor::new(row));
          let mut row: Vec<VOTableValue> = Vec::with_capacity(schema_len);
          for field_schema in schema.iter() {
            let field = field_schema.deserialize(&mut binary_deser).unwrap();
            row.push(field);
          }
          row
        })
      );
    }
    let votable = svor.read_to_end().unwrap();
    println!("VOTable: {}", votable.wrap().to_toml_string(true).unwrap());
  }

  #[test]
  fn test_simple_votable_read_iter_binary2() {
    println!();
    println!("-- next_table_row_value_iter gaia_dr3.b264 --");
    println!();

    let mut svor = SimpleVOTableRowIterator::from_file("resources/gaia_dr3.b264").unwrap();
    assert!(matches!(svor.data_type(), &TableOrBinOrBin2::Binary2));

    let context = svor.votable.resources[0]
      .get_first_table()
      .unwrap()
      .elems
      .as_slice();
    // svor.skip_remaining_data().unwrap();
    let schema: Vec<Schema> = context
      .iter()
      .filter_map(|table_elem| match table_elem {
        TableElem::Field(field) => Some(field.into()),
        _ => None,
      })
      .collect();
    let schema_len = schema.len();
    let n_bytes = (schema.len() + 7) / 8;
    let raw_row_it = Binary1or2RowIterator::new(&mut svor.reader, context, true);
    for raw_row_res in raw_row_it {
      /*eprintln!(
        "ROW SIZE: {:?}",
        raw_row_res.map(|row| row.len()).unwrap_or(0)
      );*/
      eprintln!(
        "ROW: {:?}",
        raw_row_res.map(|row| {
          let mut binary_deser = BinaryDeserializer::new(Cursor::new(row));
          let mut row: Vec<VOTableValue> = Vec::with_capacity(schema_len);
          let bytes_visitor = FixedLengthArrayVisitor::new(n_bytes);
          let null_flags: Vec<u8> = (&mut binary_deser)
            .deserialize_tuple(n_bytes, bytes_visitor)
            .unwrap();
          for (i_col, field_schema) in schema.iter().enumerate() {
            let field = field_schema.deserialize(&mut binary_deser).unwrap();
            let is_null = (null_flags[i_col >> 3] & (128_u8 >> (i_col & 7))) != 0;
            if is_null {
              row.push(VOTableValue::Null)
            } else {
              row.push(field)
            };
          }
          row
        })
      );
    }
    let votable = svor.read_to_end().unwrap();
    println!("VOTable: {}", votable.wrap().to_toml_string(true).unwrap());

    assert!(true)
  }

  /*
  #[test]
  fn test_simple_votable_read_iter_tabledata_owned_local_fxp() {
    println!();
    println!("-- next_table_row_value_iter 1358_vlpv.vot --");
    println!();

    let svor = SimpleVOTableRowIterator::open_file_and_read_to_data(
      "/home/pineau/Téléchargements/1358_vlpv.vot",
    )
    .unwrap();
    assert!(matches!(svor.data_type(), &TableOrBinOrBin2::TableData));
    let mut raw_row_it = svor.to_owned_tabledata_row_iterator();
    let mut n_row = 0_u32;
    while let Some(raw_row_res) = raw_row_it.next() {
      let raw_row = raw_row_res.unwrap();
      let row = std::str::from_utf8(&raw_row).unwrap();
      if row.contains("TR") {
        eprintln!("ROW: {:?}", row);
      }
      n_row += 1;
    }
    let votable = raw_row_it.read_to_end().unwrap();
    println!("VOTable: {}", votable.wrap().to_toml_string(true).unwrap());

    assert_eq!(n_row, 1720588)
  }*/

  /*#[test]
  fn test_simple_votable_read_iter_binary1_owned_local_fxp() {
    println!();
    println!("-- next_table_row_value_iter 1358_vlpv.b64.vot --");
    println!();

    let svor = SimpleVOTableRowIterator::open_file_and_read_to_data(
      "/home/pineau/Téléchargements/1358_vlpv.b64.vot",
    )
    .unwrap();
    assert!(matches!(svor.data_type(), &TableOrBinOrBin2::Binary));
    let mut raw_row_it = svor.to_owned_binary_row_iterator();
    let mut n_row = 0_u32;
    while let Some(_raw_row_res) = raw_row_it.next() {
      n_row += 1;
    }
    let votable = raw_row_it.read_to_end().unwrap();
    println!("VOTable: {}", votable.wrap().to_toml_string(true).unwrap());

    assert_eq!(n_row, 1720588)
  }

  #[test]
  fn test_simple_votable_read_iter_binary1_owned_local_fxp_t2() {
    println!();
    println!("-- next_table_row_value_iter 1358_vlpv.b64.vot --");
    println!();

    let svor = SimpleVOTableRowIterator::open_file_and_read_to_data(
      "/home/pineau/Téléchargements/1358_vlpv.b64.vot",
    )
    .unwrap();
    assert!(matches!(svor.data_type(), &TableOrBinOrBin2::Binary));
    let mut raw_row_it = svor.to_owned_binary_row_iterator();
    let mut n_row = 0_u32;
    // Only read the first line
    if let Some(_raw_row_res) = raw_row_it.next() {
      n_row += 1;
    }
    let raw_row_it = raw_row_it.skip_remaining_data().unwrap();
    let votable = raw_row_it.read_to_end().unwrap();
    println!("VOTable: {}", votable.wrap().to_toml_string(true).unwrap());

    assert_eq!(n_row, 1)
  }*/

  /*
  #[test]
  fn test_simple_votable_read_iter_binary2_owned_local_fxp() {
    println!();
    println!("-- next_table_row_value_iter 1358_vlpv.b64v2.vot --");
    println!();

    let svor = SimpleVOTableRowIterator::open_file_and_read_to_data(
      "/home/pineau/Téléchargements/1358_vlpv.b64v2.vot",
    )
    .unwrap();
    assert!(matches!(svor.data_type(), &TableOrBinOrBin2::Binary2));
    let mut raw_row_it = svor.to_owned_binary2_row_iterator();
    let mut n_row = 0_u32;
    while let Some(_raw_row_res) = raw_row_it.next() {
      n_row += 1;
    }

    let votable = raw_row_it.read_to_end().unwrap();
    println!("VOTable: {}", votable.wrap().to_toml_string(true).unwrap());

    assert_eq!(n_row, 1720588)
  }*/

  /*
  #[test]
  fn test_simple_votable_read_iter_binary2_owned_local_fxp_2() {
    println!();
    println!("-- next_table_row_value_iter async_20190630210155.ungzip.vot --");
    println!();

    let svor = SimpleVOTableRowIterator::open_file_and_read_to_data(
      "/home/pineau/Téléchargements/async_20190630210155.ungzip.vot",
    )
    .unwrap();
    assert!(matches!(svor.data_type(), &TableOrBinOrBin2::Binary2));
    let mut raw_row_it = svor.to_owned_binary2_row_iterator();
    let mut n_row = 0_u32;
    while let Some(_raw_row_res) = raw_row_it.next() {
      n_row += 1;
    }

    let votable = raw_row_it.read_to_end().unwrap();
    println!("VOTable: {}", votable.wrap().to_toml_string(true).unwrap());

    assert_eq!(n_row, 3000000);
  }

  #[test]
  fn test_simple_votable_read_iter_binary2_owned_local_fxp_2_t2() {
    println!();
    println!("-- next_table_row_value_iter async_20190630210155.ungzip.vot --");
    println!();

    let svor = SimpleVOTableRowIterator::open_file_and_read_to_data(
      "/home/pineau/Téléchargements/async_20190630210155.ungzip.vot",
    )
    .unwrap();
    assert!(matches!(svor.data_type(), &TableOrBinOrBin2::Binary2));
    let mut raw_row_it = svor.to_owned_binary2_row_iterator();
    let mut n_row = 0_u32;
    if let Some(_raw_row_res) = raw_row_it.next() {
      n_row += 1;
    }

    let raw_row_it = raw_row_it.skip_remaining_data().unwrap();
    let votable = raw_row_it.read_to_end().unwrap();
    println!("VOTable: {}", votable.wrap().to_toml_string(true).unwrap());

    assert_eq!(n_row, 1);
  }*/
}