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 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886
use std::future::Future;
use std::pin::Pin;
use std::result;
use std::task::{Context, Poll};
cfg_if::cfg_if! {
if #[cfg(feature = "tokio")] {
use tokio::io::{self, AsyncBufRead, AsyncSeekExt};
use tokio_stream::Stream;
} else {
use futures::io::{self, AsyncBufRead, AsyncSeekExt};
use futures::stream::Stream;
}}
use csv_core::{ReaderBuilder as CoreReaderBuilder};
use csv_core::{Reader as CoreReader};
#[cfg(feature = "with_serde")]
use serde::de::DeserializeOwned;
use crate::{Terminator, Trim};
use crate::byte_record::{ByteRecord, Position};
use crate::error::{Error, ErrorKind, Result, Utf8Error};
use crate::string_record::StringRecord;
cfg_if::cfg_if! {
if #[cfg(feature = "tokio")] {
pub mod ardr_tokio;
} else {
pub mod ardr_futures;
}}
#[cfg(all(feature = "with_serde", not(feature = "tokio")))]
pub mod ades_futures;
#[cfg(all(feature = "with_serde", feature = "tokio"))]
pub mod ades_tokio;
//-//////////////////////////////////////////////////////////////////////////////////////////////
//-// Builder
//-//////////////////////////////////////////////////////////////////////////////////////////////
/// Builds a CSV reader with various configuration knobs.
///
/// This builder can be used to tweak the field delimiter, record terminator
/// and more. Once a CSV reader / deserializer is built, its configuration cannot be
/// changed.
#[derive(Debug)]
pub struct AsyncReaderBuilder {
capacity: usize,
flexible: bool,
has_headers: bool,
trim: Trim,
end_on_io_error: bool,
/// The underlying CSV parser builder.
///
/// We explicitly put this on the heap because CoreReaderBuilder embeds an
/// entire DFA transition table, which along with other things, tallies up
/// to almost 500 bytes on the stack.
builder: Box<CoreReaderBuilder>,
}
impl Default for AsyncReaderBuilder {
fn default() -> AsyncReaderBuilder {
AsyncReaderBuilder {
capacity: 8 * (1 << 10),
flexible: false,
has_headers: true,
trim: Trim::default(),
end_on_io_error: true,
builder: Box::new(CoreReaderBuilder::default()),
}
}
}
impl AsyncReaderBuilder {
/// Create a new builder for configuring CSV parsing.
///
/// To convert a builder into a reader, call one of the methods starting
/// with `from_`.
///
/// # Example
///
/// ```
/// use std::error::Error;
/// use futures::stream::StreamExt;
/// use csv_async::{AsyncReaderBuilder, StringRecord};
///
/// # fn main() { async_std::task::block_on(async {example().await.unwrap()}); }
/// async fn example() -> Result<(), Box<dyn Error>> {
/// let data = "\
/// city,country,pop
/// Boston,United States,4628910
/// Concord,United States,42695
/// ";
/// let mut rdr = AsyncReaderBuilder::new().create_reader(data.as_bytes());
///
/// let records = rdr
/// .records()
/// .map(Result::unwrap)
/// .collect::<Vec<StringRecord>>().await;
/// assert_eq!(records, vec![
/// vec!["Boston", "United States", "4628910"],
/// vec!["Concord", "United States", "42695"],
/// ]);
/// Ok(())
/// }
/// ```
pub fn new() -> AsyncReaderBuilder {
AsyncReaderBuilder::default()
}
/// The field delimiter to use when parsing CSV.
///
/// The default is `b','`.
///
/// # Example
///
/// ```
/// use std::error::Error;
/// use futures::stream::StreamExt;
/// use csv_async::{AsyncReaderBuilder, StringRecord};
///
/// # fn main() { async_std::task::block_on(async {example().await}); }
/// async fn example() {
/// let data = "\
/// city;country;pop
/// Boston;United States;4628910
/// ";
/// let mut rdr = AsyncReaderBuilder::new()
/// .delimiter(b';')
/// .create_reader(data.as_bytes());
///
/// let records = rdr
/// .records()
/// .map(Result::unwrap)
/// .collect::<Vec<StringRecord>>().await;
/// assert_eq!(records, vec![
/// vec!["Boston", "United States", "4628910"],
/// ]);
/// }
/// ```
pub fn delimiter(&mut self, delimiter: u8) -> &mut AsyncReaderBuilder {
self.builder.delimiter(delimiter);
self
}
/// Whether to treat the first row as a special header row.
///
/// By default, the first row is treated as a special header row, which
/// means the header is never returned by any of the record reading methods
/// or iterators. When this is disabled (`yes` set to `false`), the first
/// row is not treated specially.
///
/// Note that the `headers` and `byte_headers` methods are unaffected by
/// whether this is set. Those methods always return the first record.
///
/// # Example
///
/// This example shows what happens when `has_headers` is disabled.
/// Namely, the first row is treated just like any other row.
///
/// ```
/// use std::error::Error;
/// use futures::stream::StreamExt;
/// use csv_async::AsyncReaderBuilder;
///
/// # fn main() { async_std::task::block_on(async {example().await.unwrap()}); }
/// async fn example() -> Result<(), Box<dyn Error>> {
/// let data = "\
/// city,country,pop
/// Boston,United States,4628910
/// ";
/// let mut rdr = AsyncReaderBuilder::new()
/// .has_headers(false)
/// .create_reader(data.as_bytes());
/// let mut iter = rdr.records();
///
/// // Read the first record.
/// assert_eq!(iter.next().await.unwrap()?, vec!["city", "country", "pop"]);
///
/// // Read the second record.
/// assert_eq!(iter.next().await.unwrap()?, vec!["Boston", "United States", "4628910"]);
///
/// assert!(iter.next().await.is_none());
/// Ok(())
/// }
/// ```
pub fn has_headers(&mut self, yes: bool) -> &mut AsyncReaderBuilder {
self.has_headers = yes;
self
}
/// Whether the number of fields in records is allowed to change or not.
///
/// When disabled (which is the default), parsing CSV data will return an
/// error if a record is found with a number of fields different from the
/// number of fields in a previous record.
///
/// When enabled, this error checking is turned off.
///
/// # Example: flexible records enabled
///
/// ```
/// use std::error::Error;
/// use futures::stream::StreamExt;
/// use csv_async::AsyncReaderBuilder;
///
/// # fn main() { async_std::task::block_on(async {example().await.unwrap()}); }
/// async fn example() -> Result<(), Box<dyn Error>> {
/// // Notice that the first row is missing the population count.
/// let data = "\
/// city,country,pop
/// Boston,United States
/// ";
/// let mut rdr = AsyncReaderBuilder::new()
/// .flexible(true)
/// .create_reader(data.as_bytes());
/// let mut records = rdr.records();
/// assert_eq!(records.next().await.unwrap()?, vec!["Boston", "United States"]);
/// Ok(())
/// }
/// ```
///
/// # Example: flexible records disabled
///
/// This shows the error that appears when records of unequal length
/// are found and flexible records have been disabled (which is the
/// default).
///
/// ```
/// use std::error::Error;
/// use futures::stream::StreamExt;
/// use csv_async::{ErrorKind, AsyncReaderBuilder};
///
/// # fn main() { async_std::task::block_on(async {example().await.unwrap()}); }
/// async fn example() -> Result<(), Box<dyn Error>> {
/// // Notice that the first row is missing the population count.
/// let data = "\
/// city,country,pop
/// Boston,United States
/// ";
/// let mut rdr = AsyncReaderBuilder::new()
/// .flexible(false)
/// .create_reader(data.as_bytes());
///
/// let mut records = rdr.records();
/// match records.next().await {
/// Some(Err(err)) => match *err.kind() {
/// ErrorKind::UnequalLengths { expected_len, len, .. } => {
/// // The header row has 3 fields...
/// assert_eq!(expected_len, 3);
/// // ... but the first row has only 2 fields.
/// assert_eq!(len, 2);
/// Ok(())
/// }
/// ref wrong => {
/// Err(From::from(format!(
/// "expected UnequalLengths error but got {:?}",
/// wrong)))
/// }
/// }
/// Some(Ok(rec)) =>
/// Err(From::from(format!(
/// "expected one errored record but got good record {:?}",
/// rec))),
/// None =>
/// Err(From::from(
/// "expected one errored record but got none"))
/// }
/// }
/// ```
pub fn flexible(&mut self, yes: bool) -> &mut AsyncReaderBuilder {
self.flexible = yes;
self
}
/// If set, CSV records' stream will end when first i/o error happens.
/// Otherwise CSV reader will continue trying to read from underlying reader.
/// For sample, please see unit test `behavior_on_io_errors` in following
/// [source file](https://github.com/gwierzchowski/csv-async/blob/master/src/async_readers/ardr_futures.rs).
///
/// By default this option is set.
pub fn end_on_io_error(&mut self, yes: bool) -> &mut AsyncReaderBuilder {
self.end_on_io_error = yes;
self
}
/// Whether fields are trimmed of leading and trailing whitespace or not.
///
/// By default, no trimming is performed. This method permits one to
/// override that behavior and choose one of the following options:
///
/// 1. `Trim::Headers` trims only header values.
/// 2. `Trim::Fields` trims only non-header or "field" values.
/// 3. `Trim::All` trims both header and non-header values.
///
/// A value is only interpreted as a header value if this CSV reader is
/// configured to read a header record (which is the default).
///
/// When reading string records, characters meeting the definition of
/// Unicode whitespace are trimmed. When reading byte records, characters
/// meeting the definition of ASCII whitespace are trimmed. ASCII
/// whitespace characters correspond to the set `[\t\n\v\f\r ]`.
///
/// # Example
///
/// This example shows what happens when all values are trimmed.
///
/// ```
/// use std::error::Error;
/// use futures::stream::StreamExt;
/// use csv_async::{AsyncReaderBuilder, StringRecord, Trim};
///
/// # fn main() { async_std::task::block_on(async {example().await.unwrap()}); }
/// async fn example() -> Result<(), Box<dyn Error>> {
/// let data = "\
/// city , country , pop
/// Boston,\"
/// United States\",4628910
/// Concord, United States ,42695
/// ";
/// let mut rdr = AsyncReaderBuilder::new()
/// .trim(Trim::All)
/// .create_reader(data.as_bytes());
/// let records = rdr
/// .records()
/// .map(Result::unwrap)
/// .collect::<Vec<StringRecord>>().await;
/// assert_eq!(records, vec![
/// vec!["Boston", "United States", "4628910"],
/// vec!["Concord", "United States", "42695"],
/// ]);
/// Ok(())
/// }
/// ```
pub fn trim(&mut self, trim: Trim) -> &mut AsyncReaderBuilder {
self.trim = trim;
self
}
/// The record terminator to use when parsing CSV.
///
/// A record terminator can be any single byte. The default is a special
/// value, `Terminator::CRLF`, which treats any occurrence of `\r`, `\n`
/// or `\r\n` as a single record terminator.
///
/// # Example: `$` as a record terminator
///
/// ```
/// use std::error::Error;
/// use futures::stream::StreamExt;
/// use csv_async::{AsyncReaderBuilder, Terminator};
///
/// # fn main() { async_std::task::block_on(async {example().await.unwrap()}); }
/// async fn example() -> Result<(), Box<dyn Error>> {
/// let data = "city,country,pop$Boston,United States,4628910";
/// let mut rdr = AsyncReaderBuilder::new()
/// .terminator(Terminator::Any(b'$'))
/// .create_reader(data.as_bytes());
/// let mut iter = rdr.records();
/// assert_eq!(iter.next().await.unwrap()?, vec!["Boston", "United States", "4628910"]);
/// assert!(iter.next().await.is_none());
/// Ok(())
/// }
/// ```
pub fn terminator(&mut self, term: Terminator) -> &mut AsyncReaderBuilder {
self.builder.terminator(term.to_core());
self
}
/// The quote character to use when parsing CSV.
///
/// The default is `b'"'`.
///
/// # Example: single quotes instead of double quotes
///
/// ```
/// use std::error::Error;
/// use futures::stream::StreamExt;
/// use csv_async::AsyncReaderBuilder;
///
/// # fn main() { async_std::task::block_on(async {example().await.unwrap()}); }
/// async fn example() -> Result<(), Box<dyn Error>> {
/// let data = "\
/// city,country,pop
/// Boston,'United States',4628910
/// ";
/// let mut rdr = AsyncReaderBuilder::new()
/// .quote(b'\'')
/// .create_reader(data.as_bytes());
/// let mut iter = rdr.records();
/// assert_eq!(iter.next().await.unwrap()?, vec!["Boston", "United States", "4628910"]);
/// assert!(iter.next().await.is_none());
/// Ok(())
/// }
/// ```
pub fn quote(&mut self, quote: u8) -> &mut AsyncReaderBuilder {
self.builder.quote(quote);
self
}
/// The escape character to use when parsing CSV.
///
/// In some variants of CSV, quotes are escaped using a special escape
/// character like `\` (instead of escaping quotes by doubling them).
///
/// By default, recognizing these idiosyncratic escapes is disabled.
///
/// # Example
///
/// ```
/// use std::error::Error;
/// use futures::stream::StreamExt;
/// use csv_async::AsyncReaderBuilder;
///
/// # fn main() { async_std::task::block_on(async {example().await.unwrap()}); }
/// async fn example() -> Result<(), Box<dyn Error>> {
/// let data = "\
/// city,country,pop
/// Boston,\"The \\\"United\\\" States\",4628910
/// ";
/// let mut rdr = AsyncReaderBuilder::new()
/// .escape(Some(b'\\'))
/// .create_reader(data.as_bytes());
/// let mut records = rdr.records();
/// assert_eq!(records.next().await.unwrap()?, vec!["Boston", "The \"United\" States", "4628910"]);
/// Ok(())
/// }
/// ```
pub fn escape(&mut self, escape: Option<u8>) -> &mut AsyncReaderBuilder {
self.builder.escape(escape);
self
}
/// Enable double quote escapes.
///
/// This is enabled by default, but it may be disabled. When disabled,
/// doubled quotes are not interpreted as escapes.
///
/// # Example
///
/// ```
/// use std::error::Error;
/// use futures::stream::StreamExt;
/// use csv_async::AsyncReaderBuilder;
///
/// # fn main() { async_std::task::block_on(async {example().await.unwrap()}); }
/// async fn example() -> Result<(), Box<dyn Error>> {
/// let data = "\
/// city,country,pop
/// Boston,\"The \"\"United\"\" States\",4628910
/// ";
/// let mut rdr = AsyncReaderBuilder::new()
/// .double_quote(false)
/// .create_reader(data.as_bytes());
/// let mut records = rdr.records();
/// assert_eq!(records.next().await.unwrap()?, vec!["Boston", "The \"United\"\" States\"", "4628910"]);
/// Ok(())
/// }
/// ```
pub fn double_quote(&mut self, yes: bool) -> &mut AsyncReaderBuilder {
self.builder.double_quote(yes);
self
}
/// Enable or disable quoting.
///
/// This is enabled by default, but it may be disabled. When disabled,
/// quotes are not treated specially.
///
/// # Example
///
/// ```
/// use std::error::Error;
/// use futures::stream::StreamExt;
/// use csv_async::AsyncReaderBuilder;
///
/// # fn main() { async_std::task::block_on(async {example().await.unwrap()}); }
/// async fn example() -> Result<(), Box<dyn Error>> {
/// let data = "\
/// city,country,pop
/// Boston,\"The United States,4628910
/// ";
/// let mut rdr = AsyncReaderBuilder::new()
/// .quoting(false)
/// .create_reader(data.as_bytes());
/// let mut records = rdr.records();
/// assert_eq!(records.next().await.unwrap()?, vec!["Boston", "\"The United States", "4628910"]);
/// Ok(())
/// }
/// ```
pub fn quoting(&mut self, yes: bool) -> &mut AsyncReaderBuilder {
self.builder.quoting(yes);
self
}
/// The comment character to use when parsing CSV.
///
/// If the start of a record begins with the byte given here, then that
/// line is ignored by the CSV parser.
///
/// This is disabled by default.
///
/// # Example
///
/// ```
/// use std::error::Error;
/// use futures::stream::StreamExt;
/// use csv_async::AsyncReaderBuilder;
///
/// # fn main() { async_std::task::block_on(async {example().await.unwrap()}); }
/// async fn example() -> Result<(), Box<dyn Error>> {
/// let data = "\
/// city,country,pop
/// #Concord,United States,42695
/// Boston,United States,4628910
/// ";
/// let mut rdr = AsyncReaderBuilder::new()
/// .comment(Some(b'#'))
/// .create_reader(data.as_bytes());
/// let mut records = rdr.records();
/// assert_eq!(records.next().await.unwrap()?, vec!["Boston", "United States", "4628910"]);
/// assert!(records.next().await.is_none());
/// Ok(())
/// }
/// ```
pub fn comment(&mut self, comment: Option<u8>) -> &mut AsyncReaderBuilder {
self.builder.comment(comment);
self
}
/// A convenience method for specifying a configuration to read ASCII
/// delimited text.
///
/// This sets the delimiter and record terminator to the ASCII unit
/// separator (`\x1F`) and record separator (`\x1E`), respectively.
///
/// # Example
///
/// ```
/// use std::error::Error;
/// use futures::stream::StreamExt;
/// use csv_async::AsyncReaderBuilder;
///
/// # fn main() { async_std::task::block_on(async {example().await.unwrap()}); }
/// async fn example() -> Result<(), Box<dyn Error>> {
/// let data = "\
/// city\x1Fcountry\x1Fpop\x1EBoston\x1FUnited States\x1F4628910";
/// let mut rdr = AsyncReaderBuilder::new()
/// .ascii()
/// .create_reader(data.as_bytes());
/// let mut records = rdr.byte_records();
/// assert_eq!(records.next().await.unwrap()?, vec!["Boston", "United States", "4628910"]);
/// assert!(records.next().await.is_none());
/// Ok(())
/// }
/// ```
pub fn ascii(&mut self) -> &mut AsyncReaderBuilder {
self.builder.ascii();
self
}
/// Set the capacity (in bytes) of the buffer used in the CSV reader.
/// This defaults to a reasonable setting.
pub fn buffer_capacity(&mut self, capacity: usize) -> &mut AsyncReaderBuilder {
self.capacity = capacity;
self
}
/// Enable or disable the NFA for parsing CSV.
///
/// This is intended to be a debug option. The NFA is always slower than
/// the DFA.
#[doc(hidden)]
pub fn nfa(&mut self, yes: bool) -> &mut AsyncReaderBuilder {
self.builder.nfa(yes);
self
}
}
//-//////////////////////////////////////////////////////////////////////////////////////////////
//-// Reader
//-//////////////////////////////////////////////////////////////////////////////////////////////
#[derive(Debug)]
pub struct ReaderState {
/// When set, this contains the first row of any parsed CSV data.
///
/// This is always populated, regardless of whether `has_headers` is set.
headers: Option<Headers>,
/// When set, the first row of parsed CSV data is excluded from things
/// that read records, like iterators and `read_record`.
has_headers: bool,
/// When set, there is no restriction on the length of records. When not
/// set, every record must have the same number of fields, or else an error
/// is reported.
flexible: bool,
trim: Trim,
/// The number of fields in the first record parsed.
first_field_count: Option<u64>,
/// The current position of the parser.
///
/// Note that this position is only observable by callers at the start
/// of a record. More granular positions are not supported.
cur_pos: Position,
/// Whether the first record has been read or not.
first: bool,
/// Whether the reader has been seek or not.
seeked: bool,
/// If set, CSV records' stream will end when first i/o error happens.
/// Otherwise it will continue trying to read from underlying reader.
end_on_io_error: bool,
/// IO errors on the underlying reader will be considered as an EOF for
/// subsequent read attempts, as it would be incorrect to keep on trying
/// to read when the underlying reader has broken.
///
/// For clarity, having the best `Debug` impl and in case they need to be
/// treated differently at some point, we store whether the `EOF` is
/// considered because an actual EOF happened, or because we encountered
/// an IO error.
/// This has no additional runtime cost.
eof: ReaderEofState,
}
/// Whether EOF of the underlying reader has been reached or not.
///
/// IO errors on the underlying reader will be considered as an EOF for
/// subsequent read attempts, as it would be incorrect to keep on trying
/// to read when the underlying reader has broken.
///
/// For clarity, having the best `Debug` impl and in case they need to be
/// treated differently at some point, we store whether the `EOF` is
/// considered because an actual EOF happened, or because we encountered
/// an IO error
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
enum ReaderEofState {
NotEof,
Eof,
IOError,
}
/// Headers encapsulates any data associated with the headers of CSV data.
///
/// The headers always correspond to the first row.
#[derive(Debug)]
struct Headers {
/// The header, as raw bytes.
byte_record: ByteRecord,
/// The header, as valid UTF-8 (or a UTF-8 error).
string_record: result::Result<StringRecord, Utf8Error>,
}
impl ReaderState {
#[inline(always)]
fn add_record(&mut self, record: &ByteRecord) -> Result<()> {
let i = self.cur_pos.record();
self.cur_pos.set_record(i.checked_add(1).unwrap());
if !self.flexible {
match self.first_field_count {
None => self.first_field_count = Some(record.len() as u64),
Some(expected) => {
if record.len() as u64 != expected {
return Err(Error::new(ErrorKind::UnequalLengths {
pos: record.position().map(Clone::clone),
expected_len: expected,
len: record.len() as u64,
}));
}
}
}
}
Ok(())
}
}
/// CSV async reader internal implementation used by both record reader and deserializer.
///
#[derive(Debug)]
pub struct AsyncReaderImpl<R> {
/// The underlying CSV parser.
///
/// We explicitly put this on the heap because CoreReader embeds an entire
/// DFA transition table, which along with other things, tallies up to
/// almost 500 bytes on the stack.
core: Box<CoreReader>,
/// The underlying reader.
rdr: io::BufReader<R>,
/// Various state tracking.
///
/// There is more state embedded in the `CoreReader`.
state: ReaderState,
}
#[must_use = "futures do nothing unless you `.await` or poll them"]
struct FillBuf<'a, R: AsyncBufRead + ?Sized> {
reader: &'a mut R,
}
impl<R: AsyncBufRead + ?Sized + Unpin> Unpin for FillBuf<'_, R> {}
impl<'a, R: AsyncBufRead + ?Sized + Unpin> FillBuf<'a, R> {
pub fn new(reader: &'a mut R) -> Self {
Self { reader }
}
}
impl<R: AsyncBufRead + ?Sized + Unpin> Future for FillBuf<'_, R> {
type Output = io::Result<usize>;
fn poll(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> {
match Pin::new(&mut *self.reader).poll_fill_buf(cx) {
Poll::Ready(res) => {
match res {
Ok(res) => Poll::Ready(Ok(res.len())),
Err(e) => Poll::Ready(Err(e))
}
},
Poll::Pending => Poll::Pending
}
}
}
impl<'r, R> AsyncReaderImpl<R>
where
R: io::AsyncRead + Unpin + 'r,
{
/// Create a new CSV reader given a builder and a source of underlying
/// bytes.
fn new(builder: &AsyncReaderBuilder, rdr: R) -> AsyncReaderImpl<R> {
AsyncReaderImpl {
core: Box::new(builder.builder.build()),
rdr: io::BufReader::with_capacity(builder.capacity, rdr),
state: ReaderState {
headers: None,
has_headers: builder.has_headers,
flexible: builder.flexible,
trim: builder.trim,
end_on_io_error: builder.end_on_io_error,
first_field_count: None,
cur_pos: Position::new(),
first: false,
seeked: false,
eof: ReaderEofState::NotEof,
},
}
}
/// Returns a reference to the first row read by this parser.
///
pub async fn headers(&mut self) -> Result<&StringRecord> {
if self.state.headers.is_none() {
let mut record = ByteRecord::new();
self.read_byte_record_impl(&mut record).await?;
self.set_headers_impl(Err(record));
}
let headers = self.state.headers.as_ref().unwrap();
match headers.string_record {
Ok(ref record) => Ok(record),
Err(ref err) => Err(Error::new(ErrorKind::Utf8 {
pos: headers.byte_record.position().map(Clone::clone),
err: err.clone(),
})),
}
}
/// Returns a reference to the first row read by this parser as raw bytes.
///
pub async fn byte_headers(&mut self) -> Result<&ByteRecord> {
if self.state.headers.is_none() {
let mut record = ByteRecord::new();
self.read_byte_record_impl(&mut record).await?;
self.set_headers_impl(Err(record));
}
Ok(&self.state.headers.as_ref().unwrap().byte_record)
}
/// Set the headers of this CSV parser manually.
///
pub fn set_headers(&mut self, headers: StringRecord) {
self.set_headers_impl(Ok(headers));
}
/// Set the headers of this CSV parser manually as raw bytes.
///
pub fn set_byte_headers(&mut self, headers: ByteRecord) {
self.set_headers_impl(Err(headers));
}
fn set_headers_impl(
&mut self,
headers: result::Result<StringRecord, ByteRecord>,
) {
// If we have string headers, then get byte headers. But if we have
// byte headers, then get the string headers (or a UTF-8 error).
let (mut str_headers, mut byte_headers) = match headers {
Ok(string) => {
let bytes = string.clone().into_byte_record();
(Ok(string), bytes)
}
Err(bytes) => {
match StringRecord::from_byte_record(bytes.clone()) {
Ok(str_headers) => (Ok(str_headers), bytes),
Err(err) => (Err(err.utf8_error().clone()), bytes),
}
}
};
if self.state.trim.should_trim_headers() {
if let Ok(ref mut str_headers) = str_headers.as_mut() {
str_headers.trim();
}
byte_headers.trim();
}
self.state.headers = Some(Headers {
byte_record: byte_headers,
string_record: str_headers,
});
}
/// Read a single row into the given record. Returns false when no more
/// records could be read.
pub async fn read_record(&mut self, record: &mut StringRecord) -> Result<bool> {
let result = record.read(self).await;
// We need to trim again because trimming string records includes
// Unicode whitespace. (ByteRecord trimming only includes ASCII
// whitespace.)
if self.state.trim.should_trim_fields() {
record.trim();
}
result
}
/// Read a single row into the given byte record. Returns false when no
/// more records could be read.
pub async fn read_byte_record(
&mut self,
record: &mut ByteRecord,
) -> Result<bool> {
if !self.state.seeked && !self.state.has_headers && !self.state.first {
// If the caller indicated "no headers" and we haven't yielded the
// first record yet, then we should yield our header row if we have
// one.
if let Some(ref headers) = self.state.headers {
self.state.first = true;
record.clone_from(&headers.byte_record);
if self.state.trim.should_trim_fields() {
record.trim();
}
return Ok(!record.is_empty());
}
}
let ok = self.read_byte_record_impl(record).await?;
self.state.first = true;
if !self.state.seeked && self.state.headers.is_none() {
self.set_headers_impl(Err(record.clone()));
// If the end user indicated that we have headers, then we should
// never return the first row. Instead, we should attempt to
// read and return the next one.
if self.state.has_headers {
let result = self.read_byte_record_impl(record).await;
if self.state.trim.should_trim_fields() {
record.trim();
}
return result;
}
} else if self.state.trim.should_trim_fields() {
record.trim();
}
Ok(ok)
}
/// Read a byte record from the underlying CSV reader, without accounting
/// for headers.
#[inline(always)]
async fn read_byte_record_impl(
&mut self,
record: &mut ByteRecord,
) -> Result<bool> {
use csv_core::ReadRecordResult::*;
record.clear();
record.set_position(Some(self.state.cur_pos.clone()));
match self.state.eof {
ReaderEofState::Eof => return Ok(false),
ReaderEofState::IOError => {
if self.state.end_on_io_error { return Ok(false) }
},
ReaderEofState::NotEof => {}
}
let (mut outlen, mut endlen) = (0, 0);
loop {
let (res, nin, nout, nend) = {
if let Err(err) = FillBuf::new(&mut self.rdr).await {
self.state.eof = ReaderEofState::IOError;
return Err(err.into());
}
let (fields, ends) = record.as_parts();
self.core.read_record(
self.rdr.buffer(),
&mut fields[outlen..],
&mut ends[endlen..],
)
};
Pin::new(&mut self.rdr).consume(nin);
let byte = self.state.cur_pos.byte();
self.state
.cur_pos
.set_byte(byte + nin as u64)
.set_line(self.core.line());
outlen += nout;
endlen += nend;
match res {
InputEmpty => continue,
OutputFull => {
record.expand_fields();
continue;
}
OutputEndsFull => {
record.expand_ends();
continue;
}
Record => {
record.set_len(endlen);
self.state.add_record(record)?;
return Ok(true);
}
End => {
self.state.eof = ReaderEofState::Eof;
return Ok(false);
}
}
}
}
/// Return the current position of this CSV reader.
///
#[inline]
pub fn position(&self) -> &Position {
&self.state.cur_pos
}
/// Returns true if and only if this reader has been exhausted.
///
pub fn is_done(&self) -> bool {
self.state.eof != ReaderEofState::NotEof
}
/// Returns true if and only if this reader has been configured to
/// interpret the first record as a header record.
pub fn has_headers(&self) -> bool {
self.state.has_headers
}
/// Returns a reference to the underlying reader.
pub fn get_ref(&self) -> &R {
self.rdr.get_ref()
}
/// Returns a mutable reference to the underlying reader.
pub fn get_mut(&mut self) -> &mut R {
self.rdr.get_mut()
}
/// Unwraps this CSV reader, returning the underlying reader.
///
/// Note that any leftover data inside this reader's internal buffer is
/// lost.
pub fn into_inner(self) -> R {
self.rdr.into_inner()
}
}
impl<R: io::AsyncRead + io::AsyncSeek + Unpin> AsyncReaderImpl<R> {
/// Seeks the underlying reader to the position given.
///
pub async fn seek(&mut self, pos: Position) -> Result<()> {
self.byte_headers().await?;
self.state.seeked = true;
if pos.byte() == self.state.cur_pos.byte() {
return Ok(());
}
self.rdr.seek(io::SeekFrom::Start(pos.byte())).await?;
self.core.reset();
self.core.set_line(pos.line());
self.state.cur_pos = pos;
self.state.eof = ReaderEofState::NotEof;
Ok(())
}
/// This is like `seek`, but provides direct control over how the seeking
/// operation is performed via `io::SeekFrom`.
pub async fn seek_raw(
&mut self,
seek_from: io::SeekFrom,
pos: Position,
) -> Result<()> {
self.byte_headers().await?;
self.state.seeked = true;
self.rdr.seek(seek_from).await?;
self.core.reset();
self.core.set_line(pos.line());
self.state.cur_pos = pos;
self.state.eof = ReaderEofState::NotEof;
Ok(())
}
/// Seeks the underlying reader to first data record.
///
#[cfg(feature = "tokio")]
pub async fn rewind(&mut self) -> Result<()> {
self.byte_headers().await?;
self.state.seeked = false;
self.state.headers = None;
self.state.first = false;
if self.state.cur_pos.byte() == 0 {
return Ok(());
}
self.rdr.rewind().await?;
self.core.reset();
self.core.set_line(1);
self.state.cur_pos.set_byte(0).set_line(1).set_record(0);
self.state.eof = ReaderEofState::NotEof;
Ok(())
}
#[cfg(not(feature = "tokio"))]
pub async fn rewind(&mut self) -> Result<()> {
self.byte_headers().await?;
self.state.seeked = false;
self.state.headers = None;
self.state.first = false;
if self.state.cur_pos.byte() == 0 {
return Ok(());
}
self.rdr.seek(io::SeekFrom::Start(0)).await?;
self.core.reset();
self.core.set_line(1);
self.state.cur_pos.set_byte(0).set_line(1).set_record(0);
self.state.eof = ReaderEofState::NotEof;
Ok(())
}
}
//-//////////////////////////////////////////////////////////////////////////////////////////////
//-//////////////////////////////////////////////////////////////////////////////////////////////
async fn read_record_borrowed<'r, R>(
rdr: &'r mut AsyncReaderImpl<R>,
mut rec: StringRecord,
) -> (Option<Result<StringRecord>>, &'r mut AsyncReaderImpl<R>, StringRecord)
where
R: io::AsyncRead + Unpin
{
let result = match rdr.read_record(&mut rec).await {
Err(err) => Some(Err(err)),
Ok(true) => Some(Ok(rec.clone())),
Ok(false) => None,
};
(result, rdr, rec)
}
/// A borrowed stream of records as strings.
///
/// The lifetime parameter `'r` refers to the lifetime of the underlying
/// CSV `Reader`.
pub struct StringRecordsStream<'r, R>
where
R: io::AsyncRead + Unpin + Send
{
fut: Option<
Pin<
Box<
dyn Future<
Output = (
Option<Result<StringRecord>>,
&'r mut AsyncReaderImpl<R>,
StringRecord,
),
> + Send + 'r,
>,
>,
>,
}
impl<'r, R> StringRecordsStream<'r, R>
where
R: io::AsyncRead + Unpin + Send
{
fn new(rdr: &'r mut AsyncReaderImpl<R>) -> Self {
Self {
fut: Some(Pin::from(Box::new(read_record_borrowed(
rdr,
StringRecord::new(),
)))),
}
}
}
impl<'r, R> Stream for StringRecordsStream<'r, R>
where
R: io::AsyncRead + Unpin + Send
{
type Item = Result<StringRecord>;
fn poll_next(
mut self: Pin<&mut Self>,
cx: &mut Context,
) -> Poll<Option<Self::Item>> {
match self.fut.as_mut().unwrap().as_mut().poll(cx) {
Poll::Ready((result, rdr, rec)) => {
if result.is_some() {
self.fut = Some(Pin::from(Box::new(
read_record_borrowed(rdr, rec),
)));
} else {
self.fut = None;
}
Poll::Ready(result)
}
Poll::Pending => Poll::Pending,
}
}
}
//-//////////////////////////////////////////////////////////////////////////////////////////////
//-//////////////////////////////////////////////////////////////////////////////////////////////
async fn read_record<R>(
mut rdr: AsyncReaderImpl<R>,
mut rec: StringRecord,
) -> (Option<Result<StringRecord>>, AsyncReaderImpl<R>, StringRecord)
where
R: io::AsyncRead + Unpin
{
let result = match rdr.read_record(&mut rec).await {
Err(err) => Some(Err(err)),
Ok(true) => Some(Ok(rec.clone())),
Ok(false) => None,
};
(result, rdr, rec)
}
/// An owned stream of records as strings.
pub struct StringRecordsIntoStream<'r, R>
where
R: io::AsyncRead + Unpin + Send
{
fut: Option<
Pin<
Box<
dyn Future<
Output = (
Option<Result<StringRecord>>,
AsyncReaderImpl<R>,
StringRecord,
),
> + Send + 'r,
>,
>,
>,
}
impl<'r, R> StringRecordsIntoStream<'r, R>
where
R: io::AsyncRead + Unpin + Send + 'r
{
fn new(rdr: AsyncReaderImpl<R>) -> Self {
Self {
fut: Some(Pin::from(Box::new(read_record(
rdr,
StringRecord::new(),
)))),
}
}
}
impl<'r, R> Stream for StringRecordsIntoStream<'r, R>
where
R: io::AsyncRead + Unpin + Send + 'r
{
type Item = Result<StringRecord>;
fn poll_next(
mut self: Pin<&mut Self>,
cx: &mut Context,
) -> Poll<Option<Self::Item>> {
match self.fut.as_mut().unwrap().as_mut().poll(cx) {
Poll::Ready((result, rdr, rec)) => {
if result.is_some() {
self.fut =
Some(Pin::from(Box::new(read_record(rdr, rec))));
} else {
self.fut = None;
}
Poll::Ready(result)
}
Poll::Pending => Poll::Pending,
}
}
}
//-//////////////////////////////////////////////////////////////////////////////////////////////
//-//////////////////////////////////////////////////////////////////////////////////////////////
async fn read_byte_record_borrowed<'r, R>(
rdr: &'r mut AsyncReaderImpl<R>,
mut rec: ByteRecord,
) -> (Option<Result<ByteRecord>>, &'r mut AsyncReaderImpl<R>, ByteRecord)
where
R: io::AsyncRead + Unpin,
{
let result = match rdr.read_byte_record(&mut rec).await {
Err(err) => Some(Err(err)),
Ok(true) => Some(Ok(rec.clone())),
Ok(false) => None,
};
(result, rdr, rec)
}
/// A borrowed stream of records as raw bytes.
///
/// The lifetime parameter `'r` refers to the lifetime of the underlying
/// CSV `Reader`.
pub struct ByteRecordsStream<'r, R>
where
R: io::AsyncRead + Unpin + Send,
{
fut: Option<
Pin<
Box<
dyn Future<
Output = (
Option<Result<ByteRecord>>,
&'r mut AsyncReaderImpl<R>,
ByteRecord,
),
> + Send + 'r,
>,
>,
>,
}
impl<'r, R> ByteRecordsStream<'r, R>
where
R: io::AsyncRead + Unpin + Send + 'r,
{
fn new(rdr: &'r mut AsyncReaderImpl<R>) -> Self {
Self {
fut: Some(Pin::from(Box::new(read_byte_record_borrowed(
rdr,
ByteRecord::new(),
)))),
}
}
}
impl<'r, R> Stream for ByteRecordsStream<'r, R>
where
R: io::AsyncRead + Send + Unpin,
{
type Item = Result<ByteRecord>;
fn poll_next(
mut self: Pin<&mut Self>,
cx: &mut Context,
) -> Poll<Option<Self::Item>> {
match self.fut.as_mut().unwrap().as_mut().poll(cx) {
Poll::Ready((result, rdr, rec)) => {
if result.is_some() {
self.fut = Some(Pin::from(Box::new(
read_byte_record_borrowed(rdr, rec),
)));
} else {
self.fut = None;
}
Poll::Ready(result)
}
Poll::Pending => Poll::Pending,
}
}
}
//-//////////////////////////////////////////////////////////////////////////////////////////////
//-//////////////////////////////////////////////////////////////////////////////////////////////
async fn read_byte_record<R>(
mut rdr: AsyncReaderImpl<R>,
mut rec: ByteRecord,
) -> (Option<Result<ByteRecord>>, AsyncReaderImpl<R>, ByteRecord)
where
R: io::AsyncRead + Unpin
{
let result = match rdr.read_byte_record(&mut rec).await {
Err(err) => Some(Err(err)),
Ok(true) => Some(Ok(rec.clone())),
Ok(false) => None,
};
(result, rdr, rec)
}
/// An owned stream of records as raw bytes.
pub struct ByteRecordsIntoStream<'r, R>
where
R: io::AsyncRead + Unpin + Send
{
fut: Option<
Pin<
Box<
dyn Future<
Output = (
Option<Result<ByteRecord>>,
AsyncReaderImpl<R>,
ByteRecord,
),
> + Send + 'r,
>,
>,
>,
}
impl<'r, R> ByteRecordsIntoStream<'r, R>
where
R: io::AsyncRead + Send + Unpin + 'r
{
fn new(rdr: AsyncReaderImpl<R>) -> Self {
Self {
fut: Some(Pin::from(Box::new(read_byte_record(
rdr,
ByteRecord::new(),
)))),
}
}
}
impl<'r, R> Stream for ByteRecordsIntoStream<'r, R>
where
R: io::AsyncRead + Send + Unpin + 'r
{
type Item = Result<ByteRecord>;
fn poll_next(
mut self: Pin<&mut Self>,
cx: &mut Context,
) -> Poll<Option<Self::Item>> {
match self.fut.as_mut().unwrap().as_mut().poll(cx) {
Poll::Ready((result, rdr, rec)) => {
if result.is_some() {
self.fut =
Some(Pin::from(Box::new(read_byte_record(rdr, rec))));
} else {
self.fut = None;
}
Poll::Ready(result)
}
Poll::Pending => Poll::Pending,
}
}
}
//-//////////////////////////////////////////////////////////////////////////////////////////////
//-//////////////////////////////////////////////////////////////////////////////////////////////
cfg_if::cfg_if! {
if #[cfg(feature = "with_serde")] {
async fn deserialize_record_borrowed<'r, R, D: DeserializeOwned>(
rdr: &'r mut AsyncReaderImpl<R>,
headers: Option<StringRecord>,
mut rec: StringRecord,
) -> (Option<Result<D>>, &'r mut AsyncReaderImpl<R>, Option<StringRecord>, StringRecord)
where
R: io::AsyncRead + Unpin
{
let result = match rdr.read_record(&mut rec).await {
Err(err) => Some(Err(err)),
Ok(true) => Some(rec.deserialize(headers.as_ref())),
Ok(false) => None,
};
(result, rdr, headers, rec)
}
/// A borrowed stream of deserialized records.
///
/// The lifetime parameter `'r` refers to the lifetime of the underlying CSV `Reader`.
/// type, and `D` refers to the type that this stream will deserialize a record into.
pub struct DeserializeRecordsStream<'r, R, D>
where
R: io::AsyncRead + Unpin + Send
{
header_fut: Option<
Pin<
Box<
dyn Future<
Output = (
Result<StringRecord>,
&'r mut AsyncReaderImpl<R>,
)
> + Send + 'r,
>,
>,
>,
rec_fut: Option<
Pin<
Box<
dyn Future<
Output = (
Option<Result<D>>,
&'r mut AsyncReaderImpl<R>,
Option<StringRecord>,
StringRecord,
)
> + Send + 'r,
>,
>,
>,
}
impl<'r, R, D: DeserializeOwned + 'r> DeserializeRecordsStream<'r, R, D>
where
R: io::AsyncRead + Unpin + Send
{
fn new(rdr: &'r mut AsyncReaderImpl<R>) -> Self {
let has_headers = rdr.has_headers();
if has_headers {
Self {
header_fut: Some(Pin::from(Box::new(
async{ (rdr.headers().await.and_then(|h| Ok(h.clone())), rdr) }
))),
rec_fut: None,
}
} else {
Self {
header_fut: None,
rec_fut: Some(Pin::from(Box::new(
deserialize_record_borrowed(rdr, None, StringRecord::new())
))),
}
}
}
}
impl<'r, R, D: DeserializeOwned + 'r> Stream for DeserializeRecordsStream<'r, R, D>
where
R: io::AsyncRead + Unpin + Send
{
type Item = Result<D>;
fn poll_next(
mut self: Pin<&mut Self>,
cx: &mut Context,
) -> Poll<Option<Self::Item>> {
if let Some(header_fut) = &mut self.header_fut {
match header_fut.as_mut().poll(cx) {
Poll::Ready((Ok(headers), rdr)) => {
self.header_fut = None;
self.rec_fut = Some(Pin::from(Box::new(
deserialize_record_borrowed(rdr, Some(headers), StringRecord::new()),
)));
cx.waker().clone().wake();
Poll::Pending
},
Poll::Ready((Err(err), rdr)) => {
self.header_fut = None;
self.rec_fut = Some(Pin::from(Box::new(
deserialize_record_borrowed(rdr, None, StringRecord::new()),
)));
Poll::Ready(Some(Err(err)))
},
Poll::Pending => Poll::Pending,
}
} else {
match self.rec_fut.as_mut().unwrap().as_mut().poll(cx) {
Poll::Ready((result, rdr, headers, rec)) => {
if result.is_some() {
self.rec_fut = Some(Pin::from(Box::new(
deserialize_record_borrowed(rdr, headers, rec),
)));
} else {
self.rec_fut = None;
}
Poll::Ready(result)
}
Poll::Pending => Poll::Pending,
}
}
}
}
//-//////////////////////////////////////////////////////////////////////////////////////////////
//-//////////////////////////////////////////////////////////////////////////////////////////////
async fn deserialize_record_with_pos_borrowed<'r, R, D: DeserializeOwned>(
rdr: &'r mut AsyncReaderImpl<R>,
headers: Option<StringRecord>,
mut rec: StringRecord,
) -> (Option<Result<D>>, Position, &'r mut AsyncReaderImpl<R>, Option<StringRecord>, StringRecord)
where
R: io::AsyncRead + Unpin
{
let pos = rdr.position().clone();
let result = match rdr.read_record(&mut rec).await {
Err(err) => Some(Err(err)),
Ok(true) => Some(rec.deserialize(headers.as_ref())),
Ok(false) => None,
};
(result, pos, rdr, headers, rec)
}
/// A borrowed stream of pairs: deserialized records and position in stream before reading record.
///
/// The lifetime parameter `'r` refers to the lifetime of the underlying CSV `Reader`.
/// type, and `D` refers to the type that this stream will deserialize a record into.
pub struct DeserializeRecordsStreamPos<'r, R, D>
where
R: io::AsyncRead + Unpin + Send
{
header_fut: Option<
Pin<
Box<
dyn Future<
Output = (
Result<StringRecord>,
&'r mut AsyncReaderImpl<R>,
)
> + Send + 'r,
>,
>,
>,
rec_fut: Option<
Pin<
Box<
dyn Future<
Output = (
Option<Result<D>>,
Position,
&'r mut AsyncReaderImpl<R>,
Option<StringRecord>,
StringRecord,
)
> + Send + 'r,
>,
>,
>,
}
impl<'r, R, D: DeserializeOwned + 'r> DeserializeRecordsStreamPos<'r, R, D>
where
R: io::AsyncRead + Unpin + Send
{
fn new(rdr: &'r mut AsyncReaderImpl<R>) -> Self {
let has_headers = rdr.has_headers();
if has_headers {
Self {
header_fut: Some(Pin::from(Box::new(
async{ (rdr.headers().await.and_then(|h| Ok(h.clone())), rdr) }
))),
rec_fut: None,
}
} else {
Self {
header_fut: None,
rec_fut: Some(Pin::from(Box::new(
deserialize_record_with_pos_borrowed(rdr, None, StringRecord::new())
))),
}
}
}
}
impl<'r, R, D: DeserializeOwned + 'r> Stream for DeserializeRecordsStreamPos<'r, R, D>
where
R: io::AsyncRead + Unpin + Send
{
type Item = (Result<D>, Position);
fn poll_next(
mut self: Pin<&mut Self>,
cx: &mut Context,
) -> Poll<Option<Self::Item>> {
if let Some(header_fut) = &mut self.header_fut {
match header_fut.as_mut().poll(cx) {
Poll::Ready((Ok(headers), rdr)) => {
self.header_fut = None;
self.rec_fut = Some(Pin::from(Box::new(
deserialize_record_with_pos_borrowed(rdr, Some(headers), StringRecord::new()),
)));
cx.waker().clone().wake();
Poll::Pending
},
Poll::Ready((Err(err), rdr)) => {
self.header_fut = None;
let pos = rdr.position().clone();
self.rec_fut = Some(Pin::from(Box::new(
deserialize_record_with_pos_borrowed(rdr, None, StringRecord::new()),
)));
Poll::Ready(Some((Err(err), pos)))
},
Poll::Pending => Poll::Pending,
}
} else {
match self.rec_fut.as_mut().unwrap().as_mut().poll(cx) {
Poll::Ready((result, pos, rdr, headers, rec)) => {
if let Some(result) = result {
self.rec_fut = Some(Pin::from(Box::new(
deserialize_record_with_pos_borrowed(rdr, headers, rec),
)));
Poll::Ready(Some((result, pos)))
} else {
self.rec_fut = None;
Poll::Ready(None)
}
}
Poll::Pending => Poll::Pending,
}
}
}
}
//-//////////////////////////////////////////////////////////////////////////////////////////////
//-//////////////////////////////////////////////////////////////////////////////////////////////
async fn deserialize_record<R, D: DeserializeOwned>(
mut rdr: AsyncReaderImpl<R>,
headers: Option<StringRecord>,
mut rec: StringRecord,
) -> (Option<Result<D>>, AsyncReaderImpl<R>, Option<StringRecord>, StringRecord)
where
R: io::AsyncRead + Unpin
{
let result = match rdr.read_record(&mut rec).await {
Err(err) => Some(Err(err)),
Ok(true) => Some(rec.deserialize(headers.as_ref())),
Ok(false) => None,
};
(result, rdr, headers, rec)
}
/// A owned stream of deserialized records.
///
/// The lifetime parameter `'r` refers to the lifetime of the underlying CSV `Reader`.
/// type, and `D` refers to the type that this stream will deserialize a record into.
pub struct DeserializeRecordsIntoStream<'r, R, D>
where
R: io::AsyncRead + Unpin + Send
{
header_fut: Option<
Pin<
Box<
dyn Future<
Output = (
Result<StringRecord>,
AsyncReaderImpl<R>,
)
> + Send + 'r,
>,
>,
>,
rec_fut: Option<
Pin<
Box<
dyn Future<
Output = (
Option<Result<D>>,
AsyncReaderImpl<R>,
Option<StringRecord>,
StringRecord,
)
> + Send + 'r,
>,
>,
>,
}
impl<'r, R, D: DeserializeOwned + 'r> DeserializeRecordsIntoStream<'r, R, D>
where
R: io::AsyncRead + Unpin + Send + 'r
{
fn new(mut rdr: AsyncReaderImpl<R>) -> Self {
let has_headers = rdr.has_headers();
if has_headers {
Self {
header_fut: Some(Pin::from(Box::new(
async{ (rdr.headers().await.and_then(|h| Ok(h.clone())), rdr) }
))),
rec_fut: None,
}
} else {
Self {
header_fut: None,
rec_fut: Some(Pin::from(Box::new(
deserialize_record(rdr, None, StringRecord::new())
))),
}
}
}
}
impl<'r, R, D: DeserializeOwned + 'r> Stream for DeserializeRecordsIntoStream<'r, R, D>
where
R: io::AsyncRead + Unpin + Send + 'r
{
type Item = Result<D>;
fn poll_next(
mut self: Pin<&mut Self>,
cx: &mut Context,
) -> Poll<Option<Self::Item>> {
if let Some(header_fut) = &mut self.header_fut {
match header_fut.as_mut().poll(cx) {
Poll::Ready((Ok(headers), rdr)) => {
self.header_fut = None;
self.rec_fut = Some(Pin::from(Box::new(
deserialize_record(rdr, Some(headers), StringRecord::new()),
)));
cx.waker().clone().wake();
Poll::Pending
},
Poll::Ready((Err(err), rdr)) => {
self.header_fut = None;
self.rec_fut = Some(Pin::from(Box::new(
deserialize_record(rdr, None, StringRecord::new()),
)));
Poll::Ready(Some(Err(err)))
},
Poll::Pending => Poll::Pending,
}
} else {
match self.rec_fut.as_mut().unwrap().as_mut().poll(cx) {
Poll::Ready((result, rdr, headers, rec)) => {
if result.is_some() {
self.rec_fut = Some(Pin::from(Box::new(
deserialize_record(rdr, headers, rec),
)));
} else {
self.rec_fut = None;
}
Poll::Ready(result)
}
Poll::Pending => Poll::Pending,
}
}
}
}
//-//////////////////////////////////////////////////////////////////////////////////////////////
//-//////////////////////////////////////////////////////////////////////////////////////////////
async fn deserialize_record_with_pos<R, D: DeserializeOwned>(
mut rdr: AsyncReaderImpl<R>,
headers: Option<StringRecord>,
mut rec: StringRecord,
) -> (Option<Result<D>>, Position, AsyncReaderImpl<R>, Option<StringRecord>, StringRecord)
where
R: io::AsyncRead + Unpin
{
let pos = rdr.position().clone();
let result = match rdr.read_record(&mut rec).await {
Err(err) => Some(Err(err)),
Ok(true) => Some(rec.deserialize(headers.as_ref())),
Ok(false) => None,
};
(result, pos, rdr, headers, rec)
}
/// A owned stream of pairs: deserialized records and position in stream before reading record.
///
/// The lifetime parameter `'r` refers to the lifetime of the underlying CSV `Reader`.
/// type, and `D` refers to the type that this stream will deserialize a record into.
pub struct DeserializeRecordsIntoStreamPos<'r, R, D>
where
R: io::AsyncRead + Unpin + Send
{
header_fut: Option<
Pin<
Box<
dyn Future<
Output = (
Result<StringRecord>,
AsyncReaderImpl<R>,
)
> + Send + 'r,
>,
>,
>,
rec_fut: Option<
Pin<
Box<
dyn Future<
Output = (
Option<Result<D>>,
Position,
AsyncReaderImpl<R>,
Option<StringRecord>,
StringRecord,
)
> + Send + 'r,
>,
>,
>,
}
impl<'r, R, D: DeserializeOwned + 'r> DeserializeRecordsIntoStreamPos<'r, R, D>
where
R: io::AsyncRead + Unpin + Send + 'r
{
fn new(mut rdr: AsyncReaderImpl<R>) -> Self {
let has_headers = rdr.has_headers();
if has_headers {
Self {
header_fut: Some(Pin::from(Box::new(
async{ (rdr.headers().await.and_then(|h| Ok(h.clone())), rdr) }
))),
rec_fut: None,
}
} else {
Self {
header_fut: None,
rec_fut: Some(Pin::from(Box::new(
deserialize_record_with_pos(rdr, None, StringRecord::new())
))),
}
}
}
}
impl<'r, R, D: DeserializeOwned + 'r> Stream for DeserializeRecordsIntoStreamPos<'r, R, D>
where
R: io::AsyncRead + Unpin + Send + 'r
{
type Item = (Result<D>, Position);
fn poll_next(
mut self: Pin<&mut Self>,
cx: &mut Context,
) -> Poll<Option<Self::Item>> {
if let Some(header_fut) = &mut self.header_fut {
match header_fut.as_mut().poll(cx) {
Poll::Ready((Ok(headers), rdr)) => {
self.header_fut = None;
self.rec_fut = Some(Pin::from(Box::new(
deserialize_record_with_pos(rdr, Some(headers), StringRecord::new()),
)));
cx.waker().clone().wake();
Poll::Pending
},
Poll::Ready((Err(err), rdr)) => {
self.header_fut = None;
let pos = rdr.position().clone();
self.rec_fut = Some(Pin::from(Box::new(
deserialize_record_with_pos(rdr, None, StringRecord::new()),
)));
Poll::Ready(Some((Err(err), pos)))
},
Poll::Pending => Poll::Pending,
}
} else {
match self.rec_fut.as_mut().unwrap().as_mut().poll(cx) {
Poll::Ready((result, pos, rdr, headers, rec)) => {
if let Some(result) = result {
self.rec_fut = Some(Pin::from(Box::new(
deserialize_record_with_pos(rdr, headers, rec),
)));
Poll::Ready(Some((result, pos)))
} else {
self.rec_fut = None;
Poll::Ready(None)
}
}
Poll::Pending => Poll::Pending,
}
}
}
}
}} // fi #[cfg(feature = "with_serde")]