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 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624
use std::{
fs::File,
io::{self, BufRead, Seek},
marker::PhantomData,
path::Path,
result,
};
use {
csv_core::{Reader as CoreReader, ReaderBuilder as CoreReaderBuilder},
serde::de::DeserializeOwned,
};
use crate::{
byte_record::{ByteRecord, Position},
error::{Error, ErrorKind, Result, Utf8Error},
string_record::StringRecord,
{Terminator, Trim},
};
/// 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` is built, its configuration cannot be
/// changed.
#[derive(Debug)]
pub struct ReaderBuilder {
capacity: usize,
flexible: bool,
has_headers: bool,
trim: Trim,
/// 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 ReaderBuilder {
fn default() -> ReaderBuilder {
ReaderBuilder {
capacity: 8 * (1 << 10),
flexible: false,
has_headers: true,
trim: Trim::default(),
builder: Box::new(CoreReaderBuilder::default()),
}
}
}
impl ReaderBuilder {
/// 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 csv::{ReaderBuilder, StringRecord};
///
/// # fn main() { example().unwrap(); }
/// fn example() -> Result<(), Box<dyn Error>> {
/// let data = "\
/// city,country,pop
/// Boston,United States,4628910
/// Concord,United States,42695
/// ";
/// let mut rdr = ReaderBuilder::new().from_reader(data.as_bytes());
///
/// let records = rdr
/// .records()
/// .collect::<Result<Vec<StringRecord>, csv::Error>>()?;
/// assert_eq!(records, vec![
/// vec!["Boston", "United States", "4628910"],
/// vec!["Concord", "United States", "42695"],
/// ]);
/// Ok(())
/// }
/// ```
pub fn new() -> ReaderBuilder {
ReaderBuilder::default()
}
/// Build a CSV parser from this configuration that reads data from the
/// given file path.
///
/// If there was a problem opening the file at the given path, then this
/// returns the corresponding error.
///
/// # Example
///
/// ```no_run
/// use std::error::Error;
/// use csv::ReaderBuilder;
///
/// # fn main() { example().unwrap(); }
/// fn example() -> Result<(), Box<dyn Error>> {
/// let mut rdr = ReaderBuilder::new().from_path("foo.csv")?;
/// for result in rdr.records() {
/// let record = result?;
/// println!("{:?}", record);
/// }
/// Ok(())
/// }
/// ```
pub fn from_path<P: AsRef<Path>>(&self, path: P) -> Result<Reader<File>> {
Ok(Reader::new(self, File::open(path)?))
}
/// Build a CSV parser from this configuration that reads data from `rdr`.
///
/// Note that the CSV reader is buffered automatically, so you should not
/// wrap `rdr` in a buffered reader like `io::BufReader`.
///
/// # Example
///
/// ```
/// use std::error::Error;
/// use csv::ReaderBuilder;
///
/// # fn main() { example().unwrap(); }
/// fn example() -> Result<(), Box<dyn Error>> {
/// let data = "\
/// city,country,pop
/// Boston,United States,4628910
/// Concord,United States,42695
/// ";
/// let mut rdr = ReaderBuilder::new().from_reader(data.as_bytes());
/// for result in rdr.records() {
/// let record = result?;
/// println!("{:?}", record);
/// }
/// Ok(())
/// }
/// ```
pub fn from_reader<R: io::Read>(&self, rdr: R) -> Reader<R> {
Reader::new(self, rdr)
}
/// The field delimiter to use when parsing CSV.
///
/// The default is `b','`.
///
/// # Example
///
/// ```
/// use std::error::Error;
/// use csv::ReaderBuilder;
///
/// # fn main() { example().unwrap(); }
/// fn example() -> Result<(), Box<dyn Error>> {
/// let data = "\
/// city;country;pop
/// Boston;United States;4628910
/// ";
/// let mut rdr = ReaderBuilder::new()
/// .delimiter(b';')
/// .from_reader(data.as_bytes());
///
/// if let Some(result) = rdr.records().next() {
/// let record = result?;
/// assert_eq!(record, vec!["Boston", "United States", "4628910"]);
/// Ok(())
/// } else {
/// Err(From::from("expected at least one record but got none"))
/// }
/// }
/// ```
pub fn delimiter(&mut self, delimiter: u8) -> &mut ReaderBuilder {
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 csv::ReaderBuilder;
///
/// # fn main() { example().unwrap(); }
/// fn example() -> Result<(), Box<dyn Error>> {
/// let data = "\
/// city,country,pop
/// Boston,United States,4628910
/// ";
/// let mut rdr = ReaderBuilder::new()
/// .has_headers(false)
/// .from_reader(data.as_bytes());
/// let mut iter = rdr.records();
///
/// // Read the first record.
/// if let Some(result) = iter.next() {
/// let record = result?;
/// assert_eq!(record, vec!["city", "country", "pop"]);
/// } else {
/// return Err(From::from(
/// "expected at least two records but got none"));
/// }
///
/// // Read the second record.
/// if let Some(result) = iter.next() {
/// let record = result?;
/// assert_eq!(record, vec!["Boston", "United States", "4628910"]);
/// } else {
/// return Err(From::from(
/// "expected at least two records but got one"))
/// }
/// Ok(())
/// }
/// ```
pub fn has_headers(&mut self, yes: bool) -> &mut ReaderBuilder {
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 csv::ReaderBuilder;
///
/// # fn main() { example().unwrap(); }
/// 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 = ReaderBuilder::new()
/// .flexible(true)
/// .from_reader(data.as_bytes());
///
/// if let Some(result) = rdr.records().next() {
/// let record = result?;
/// assert_eq!(record, vec!["Boston", "United States"]);
/// Ok(())
/// } else {
/// Err(From::from("expected at least one record but got none"))
/// }
/// }
/// ```
///
/// # 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 csv::{ErrorKind, ReaderBuilder};
///
/// # fn main() { example().unwrap(); }
/// 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 = ReaderBuilder::new()
/// .flexible(false)
/// .from_reader(data.as_bytes());
///
/// if let Some(Err(err)) = rdr.records().next() {
/// 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)))
/// }
/// }
/// } else {
/// Err(From::from(
/// "expected at least one errored record but got none"))
/// }
/// }
/// ```
pub fn flexible(&mut self, yes: bool) -> &mut ReaderBuilder {
self.flexible = 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 csv::{ReaderBuilder, StringRecord, Trim};
///
/// # fn main() { example().unwrap(); }
/// fn example() -> Result<(), Box<dyn Error>> {
/// let data = "\
/// city , country , pop
/// Boston,\"
/// United States\",4628910
/// Concord, United States ,42695
/// ";
/// let mut rdr = ReaderBuilder::new()
/// .trim(Trim::All)
/// .from_reader(data.as_bytes());
/// let records = rdr
/// .records()
/// .collect::<Result<Vec<StringRecord>, csv::Error>>()?;
/// assert_eq!(records, vec![
/// vec!["Boston", "United States", "4628910"],
/// vec!["Concord", "United States", "42695"],
/// ]);
/// Ok(())
/// }
/// ```
pub fn trim(&mut self, trim: Trim) -> &mut ReaderBuilder {
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 csv::{ReaderBuilder, Terminator};
///
/// # fn main() { example().unwrap(); }
/// fn example() -> Result<(), Box<dyn Error>> {
/// let data = "city,country,pop$Boston,United States,4628910";
/// let mut rdr = ReaderBuilder::new()
/// .terminator(Terminator::Any(b'$'))
/// .from_reader(data.as_bytes());
///
/// if let Some(result) = rdr.records().next() {
/// let record = result?;
/// assert_eq!(record, vec!["Boston", "United States", "4628910"]);
/// Ok(())
/// } else {
/// Err(From::from("expected at least one record but got none"))
/// }
/// }
/// ```
pub fn terminator(&mut self, term: Terminator) -> &mut ReaderBuilder {
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 csv::ReaderBuilder;
///
/// # fn main() { example().unwrap(); }
/// fn example() -> Result<(), Box<dyn Error>> {
/// let data = "\
/// city,country,pop
/// Boston,'United States',4628910
/// ";
/// let mut rdr = ReaderBuilder::new()
/// .quote(b'\'')
/// .from_reader(data.as_bytes());
///
/// if let Some(result) = rdr.records().next() {
/// let record = result?;
/// assert_eq!(record, vec!["Boston", "United States", "4628910"]);
/// Ok(())
/// } else {
/// Err(From::from("expected at least one record but got none"))
/// }
/// }
/// ```
pub fn quote(&mut self, quote: u8) -> &mut ReaderBuilder {
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 csv::ReaderBuilder;
///
/// # fn main() { example().unwrap(); }
/// fn example() -> Result<(), Box<dyn Error>> {
/// let data = "\
/// city,country,pop
/// Boston,\"The \\\"United\\\" States\",4628910
/// ";
/// let mut rdr = ReaderBuilder::new()
/// .escape(Some(b'\\'))
/// .from_reader(data.as_bytes());
///
/// if let Some(result) = rdr.records().next() {
/// let record = result?;
/// assert_eq!(record, vec![
/// "Boston", "The \"United\" States", "4628910",
/// ]);
/// Ok(())
/// } else {
/// Err(From::from("expected at least one record but got none"))
/// }
/// }
/// ```
pub fn escape(&mut self, escape: Option<u8>) -> &mut ReaderBuilder {
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 csv::ReaderBuilder;
///
/// # fn main() { example().unwrap(); }
/// fn example() -> Result<(), Box<dyn Error>> {
/// let data = "\
/// city,country,pop
/// Boston,\"The \"\"United\"\" States\",4628910
/// ";
/// let mut rdr = ReaderBuilder::new()
/// .double_quote(false)
/// .from_reader(data.as_bytes());
///
/// if let Some(result) = rdr.records().next() {
/// let record = result?;
/// assert_eq!(record, vec![
/// "Boston", "The \"United\"\" States\"", "4628910",
/// ]);
/// Ok(())
/// } else {
/// Err(From::from("expected at least one record but got none"))
/// }
/// }
/// ```
pub fn double_quote(&mut self, yes: bool) -> &mut ReaderBuilder {
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 csv::ReaderBuilder;
///
/// # fn main() { example().unwrap(); }
/// fn example() -> Result<(), Box<dyn Error>> {
/// let data = "\
/// city,country,pop
/// Boston,\"The United States,4628910
/// ";
/// let mut rdr = ReaderBuilder::new()
/// .quoting(false)
/// .from_reader(data.as_bytes());
///
/// if let Some(result) = rdr.records().next() {
/// let record = result?;
/// assert_eq!(record, vec![
/// "Boston", "\"The United States", "4628910",
/// ]);
/// Ok(())
/// } else {
/// Err(From::from("expected at least one record but got none"))
/// }
/// }
/// ```
pub fn quoting(&mut self, yes: bool) -> &mut ReaderBuilder {
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 csv::ReaderBuilder;
///
/// # fn main() { example().unwrap(); }
/// fn example() -> Result<(), Box<dyn Error>> {
/// let data = "\
/// city,country,pop
/// #Concord,United States,42695
/// Boston,United States,4628910
/// ";
/// let mut rdr = ReaderBuilder::new()
/// .comment(Some(b'#'))
/// .from_reader(data.as_bytes());
///
/// if let Some(result) = rdr.records().next() {
/// let record = result?;
/// assert_eq!(record, vec!["Boston", "United States", "4628910"]);
/// Ok(())
/// } else {
/// Err(From::from("expected at least one record but got none"))
/// }
/// }
/// ```
pub fn comment(&mut self, comment: Option<u8>) -> &mut ReaderBuilder {
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 csv::ReaderBuilder;
///
/// # fn main() { example().unwrap(); }
/// fn example() -> Result<(), Box<dyn Error>> {
/// let data = "\
/// city\x1Fcountry\x1Fpop\x1EBoston\x1FUnited States\x1F4628910";
/// let mut rdr = ReaderBuilder::new()
/// .ascii()
/// .from_reader(data.as_bytes());
///
/// if let Some(result) = rdr.records().next() {
/// let record = result?;
/// assert_eq!(record, vec!["Boston", "United States", "4628910"]);
/// Ok(())
/// } else {
/// Err(From::from("expected at least one record but got none"))
/// }
/// }
/// ```
pub fn ascii(&mut self) -> &mut ReaderBuilder {
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 ReaderBuilder {
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 ReaderBuilder {
self.builder.nfa(yes);
self
}
}
/// A already configured CSV reader.
///
/// A CSV reader takes as input CSV data and transforms that into standard Rust
/// values. The most flexible way to read CSV data is as a sequence of records,
/// where a record is a sequence of fields and each field is a string. However,
/// a reader can also deserialize CSV data into Rust types like `i64` or
/// `(String, f64, f64, f64)` or even a custom struct automatically using
/// Serde.
///
/// # Configuration
///
/// A CSV reader has a couple convenient constructor methods like `from_path`
/// and `from_reader`. However, if you want to configure the CSV reader to use
/// a different delimiter or quote character (among many other things), then
/// you should use a [`ReaderBuilder`](struct.ReaderBuilder.html) to construct
/// a `Reader`. For example, to change the field delimiter:
///
/// ```
/// use std::error::Error;
/// use csv::ReaderBuilder;
///
/// # fn main() { example().unwrap(); }
/// fn example() -> Result<(), Box<dyn Error>> {
/// let data = "\
/// city;country;pop
/// Boston;United States;4628910
/// ";
/// let mut rdr = ReaderBuilder::new()
/// .delimiter(b';')
/// .from_reader(data.as_bytes());
///
/// if let Some(result) = rdr.records().next() {
/// let record = result?;
/// assert_eq!(record, vec!["Boston", "United States", "4628910"]);
/// Ok(())
/// } else {
/// Err(From::from("expected at least one record but got none"))
/// }
/// }
/// ```
///
/// # Error handling
///
/// In general, CSV *parsing* does not ever return an error. That is, there is
/// no such thing as malformed CSV data. Instead, this reader will prioritize
/// finding a parse over rejecting CSV data that it does not understand. This
/// choice was inspired by other popular CSV parsers, but also because it is
/// pragmatic. CSV data varies wildly, so even if the CSV data is malformed,
/// it might still be possible to work with the data. In the land of CSV, there
/// is no "right" or "wrong," only "right" and "less right."
///
/// With that said, a number of errors can occur while reading CSV data:
///
/// * By default, all records in CSV data must have the same number of fields.
/// If a record is found with a different number of fields than a prior
/// record, then an error is returned. This behavior can be disabled by
/// enabling flexible parsing via the `flexible` method on
/// [`ReaderBuilder`](struct.ReaderBuilder.html).
/// * When reading CSV data from a resource (like a file), it is possible for
/// reading from the underlying resource to fail. This will return an error.
/// For subsequent calls to the `Reader` after encountering a such error
/// (unless `seek` is used), it will behave as if end of file had been
/// reached, in order to avoid running into infinite loops when still
/// attempting to read the next record when one has errored.
/// * When reading CSV data into `String` or `&str` fields (e.g., via a
/// [`StringRecord`](struct.StringRecord.html)), UTF-8 is strictly
/// enforced. If CSV data is invalid UTF-8, then an error is returned. If
/// you want to read invalid UTF-8, then you should use the byte oriented
/// APIs such as [`ByteRecord`](struct.ByteRecord.html). If you need explicit
/// support for another encoding entirely, then you'll need to use another
/// crate to transcode your CSV data to UTF-8 before parsing it.
/// * When using Serde to deserialize CSV data into Rust types, it is possible
/// for a number of additional errors to occur. For example, deserializing
/// a field `xyz` into an `i32` field will result in an error.
///
/// For more details on the precise semantics of errors, see the
/// [`Error`](enum.Error.html) type.
#[derive(Debug)]
pub struct Reader<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,
}
#[derive(Debug)]
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 seeked or not.
seeked: bool,
/// 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 encoundered
/// 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 encoundered
/// 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 Reader<Reader<File>> {
/// Create a new CSV parser with a default configuration for the given
/// file path.
///
/// To customize CSV parsing, use a `ReaderBuilder`.
///
/// # Example
///
/// ```no_run
/// use std::error::Error;
/// use csv::Reader;
///
/// # fn main() { example().unwrap(); }
/// fn example() -> Result<(), Box<dyn Error>> {
/// let mut rdr = Reader::from_path("foo.csv")?;
/// for result in rdr.records() {
/// let record = result?;
/// println!("{:?}", record);
/// }
/// Ok(())
/// }
/// ```
pub fn from_path<P: AsRef<Path>>(path: P) -> Result<Reader<File>> {
ReaderBuilder::new().from_path(path)
}
}
impl<R: io::Read> Reader<R> {
/// Create a new CSV reader given a builder and a source of underlying
/// bytes.
fn new(builder: &ReaderBuilder, rdr: R) -> Reader<R> {
Reader {
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,
first_field_count: None,
cur_pos: Position::new(),
first: false,
seeked: false,
eof: ReaderEofState::NotEof,
},
}
}
/// Create a new CSV parser with a default configuration for the given
/// reader.
///
/// To customize CSV parsing, use a `ReaderBuilder`.
///
/// # Example
///
/// ```
/// use std::error::Error;
/// use csv::Reader;
///
/// # fn main() { example().unwrap(); }
/// fn example() -> Result<(), Box<dyn Error>> {
/// let data = "\
/// city,country,pop
/// Boston,United States,4628910
/// Concord,United States,42695
/// ";
/// let mut rdr = Reader::from_reader(data.as_bytes());
/// for result in rdr.records() {
/// let record = result?;
/// println!("{:?}", record);
/// }
/// Ok(())
/// }
/// ```
pub fn from_reader(rdr: R) -> Reader<R> {
ReaderBuilder::new().from_reader(rdr)
}
/// Returns a borrowed iterator over deserialized records.
///
/// Each item yielded by this iterator is a `Result<D, Error>`.
/// Therefore, in order to access the record, callers must handle the
/// possibility of error (typically with `try!` or `?`).
///
/// If `has_headers` was enabled via a `ReaderBuilder` (which is the
/// default), then this does not include the first record. Additionally,
/// if `has_headers` is enabled, then deserializing into a struct will
/// automatically align the values in each row to the fields of a struct
/// based on the header row.
///
/// # Example
///
/// This shows how to deserialize CSV data into normal Rust structs. The
/// fields of the header row are used to match up the values in each row
/// to the fields of the struct.
///
/// ```
/// use std::error::Error;
///
/// #[derive(Debug, serde::Deserialize, Eq, PartialEq)]
/// struct Row {
/// city: String,
/// country: String,
/// #[serde(rename = "popcount")]
/// population: u64,
/// }
///
/// # fn main() { example().unwrap(); }
/// fn example() -> Result<(), Box<dyn Error>> {
/// let data = "\
/// city,country,popcount
/// Boston,United States,4628910
/// ";
/// let mut rdr = csv::Reader::from_reader(data.as_bytes());
/// let mut iter = rdr.deserialize();
///
/// if let Some(result) = iter.next() {
/// let record: Row = result?;
/// assert_eq!(record, Row {
/// city: "Boston".to_string(),
/// country: "United States".to_string(),
/// population: 4628910,
/// });
/// Ok(())
/// } else {
/// Err(From::from("expected at least one record but got none"))
/// }
/// }
/// ```
///
/// # Rules
///
/// For the most part, any Rust type that maps straight-forwardly to a CSV
/// record is supported. This includes maps, structs, tuples and tuple
/// structs. Other Rust types, such as `Vec`s, arrays, and enums have
/// a more complicated story. In general, when working with CSV data, one
/// should avoid *nested sequences* as much as possible.
///
/// Maps, structs, tuples and tuple structs map to CSV records in a simple
/// way. Tuples and tuple structs decode their fields in the order that
/// they are defined. Structs will do the same only if `has_headers` has
/// been disabled using [`ReaderBuilder`](struct.ReaderBuilder.html),
/// otherwise, structs and maps are deserialized based on the fields
/// defined in the header row. (If there is no header row, then
/// deserializing into a map will result in an error.)
///
/// Nested sequences are supported in a limited capacity. Namely, they
/// are flattened. As a result, it's often useful to use a `Vec` to capture
/// a "tail" of fields in a record:
///
/// ```
/// use std::error::Error;
///
/// #[derive(Debug, serde::Deserialize, Eq, PartialEq)]
/// struct Row {
/// label: String,
/// values: Vec<i32>,
/// }
///
/// # fn main() { example().unwrap(); }
/// fn example() -> Result<(), Box<dyn Error>> {
/// let data = "foo,1,2,3";
/// let mut rdr = csv::ReaderBuilder::new()
/// .has_headers(false)
/// .from_reader(data.as_bytes());
/// let mut iter = rdr.deserialize();
///
/// if let Some(result) = iter.next() {
/// let record: Row = result?;
/// assert_eq!(record, Row {
/// label: "foo".to_string(),
/// values: vec![1, 2, 3],
/// });
/// Ok(())
/// } else {
/// Err(From::from("expected at least one record but got none"))
/// }
/// }
/// ```
///
/// In the above example, adding another field to the `Row` struct after
/// the `values` field will result in a deserialization error. This is
/// because the deserializer doesn't know when to stop reading fields
/// into the `values` vector, so it will consume the rest of the fields in
/// the record leaving none left over for the additional field.
///
/// Finally, simple enums in Rust can be deserialized as well. Namely,
/// enums must either be variants with no arguments or variants with a
/// single argument. Variants with no arguments are deserialized based on
/// which variant name the field matches. Variants with a single argument
/// are deserialized based on which variant can store the data. The latter
/// is only supported when using "untagged" enum deserialization. The
/// following example shows both forms in action:
///
/// ```
/// use std::error::Error;
///
/// #[derive(Debug, serde::Deserialize, PartialEq)]
/// struct Row {
/// label: Label,
/// value: Number,
/// }
///
/// #[derive(Debug, serde::Deserialize, PartialEq)]
/// #[serde(rename_all = "lowercase")]
/// enum Label {
/// Celsius,
/// Fahrenheit,
/// }
///
/// #[derive(Debug, serde::Deserialize, PartialEq)]
/// #[serde(untagged)]
/// enum Number {
/// Integer(i64),
/// Float(f64),
/// }
///
/// # fn main() { example().unwrap(); }
/// fn example() -> Result<(), Box<dyn Error>> {
/// let data = "\
/// label,value
/// celsius,22.2222
/// fahrenheit,72
/// ";
/// let mut rdr = csv::Reader::from_reader(data.as_bytes());
/// let mut iter = rdr.deserialize();
///
/// // Read the first record.
/// if let Some(result) = iter.next() {
/// let record: Row = result?;
/// assert_eq!(record, Row {
/// label: Label::Celsius,
/// value: Number::Float(22.2222),
/// });
/// } else {
/// return Err(From::from(
/// "expected at least two records but got none"));
/// }
///
/// // Read the second record.
/// if let Some(result) = iter.next() {
/// let record: Row = result?;
/// assert_eq!(record, Row {
/// label: Label::Fahrenheit,
/// value: Number::Integer(72),
/// });
/// Ok(())
/// } else {
/// Err(From::from(
/// "expected at least two records but got only one"))
/// }
/// }
/// ```
pub fn deserialize<D>(&mut self) -> DeserializeRecordsIter<R, D>
where
D: DeserializeOwned,
{
DeserializeRecordsIter::new(self)
}
/// Returns an owned iterator over deserialized records.
///
/// Each item yielded by this iterator is a `Result<D, Error>`.
/// Therefore, in order to access the record, callers must handle the
/// possibility of error (typically with `try!` or `?`).
///
/// This is mostly useful when you want to return a CSV iterator or store
/// it somewhere.
///
/// If `has_headers` was enabled via a `ReaderBuilder` (which is the
/// default), then this does not include the first record. Additionally,
/// if `has_headers` is enabled, then deserializing into a struct will
/// automatically align the values in each row to the fields of a struct
/// based on the header row.
///
/// For more detailed deserialization rules, see the documentation on the
/// `deserialize` method.
///
/// # Example
///
/// ```
/// use std::error::Error;
///
/// #[derive(Debug, serde::Deserialize, Eq, PartialEq)]
/// struct Row {
/// city: String,
/// country: String,
/// #[serde(rename = "popcount")]
/// population: u64,
/// }
///
/// # fn main() { example().unwrap(); }
/// fn example() -> Result<(), Box<dyn Error>> {
/// let data = "\
/// city,country,popcount
/// Boston,United States,4628910
/// ";
/// let rdr = csv::Reader::from_reader(data.as_bytes());
/// let mut iter = rdr.into_deserialize();
///
/// if let Some(result) = iter.next() {
/// let record: Row = result?;
/// assert_eq!(record, Row {
/// city: "Boston".to_string(),
/// country: "United States".to_string(),
/// population: 4628910,
/// });
/// Ok(())
/// } else {
/// Err(From::from("expected at least one record but got none"))
/// }
/// }
/// ```
pub fn into_deserialize<D>(self) -> DeserializeRecordsIntoIter<R, D>
where
D: DeserializeOwned,
{
DeserializeRecordsIntoIter::new(self)
}
/// Returns a borrowed iterator over all records as strings.
///
/// Each item yielded by this iterator is a `Result<StringRecord, Error>`.
/// Therefore, in order to access the record, callers must handle the
/// possibility of error (typically with `try!` or `?`).
///
/// If `has_headers` was enabled via a `ReaderBuilder` (which is the
/// default), then this does not include the first record.
///
/// # Example
///
/// ```
/// use std::error::Error;
/// use csv::Reader;
///
/// # fn main() { example().unwrap(); }
/// fn example() -> Result<(), Box<dyn Error>> {
/// let data = "\
/// city,country,pop
/// Boston,United States,4628910
/// ";
/// let mut rdr = Reader::from_reader(data.as_bytes());
/// let mut iter = rdr.records();
///
/// if let Some(result) = iter.next() {
/// let record = result?;
/// assert_eq!(record, vec!["Boston", "United States", "4628910"]);
/// Ok(())
/// } else {
/// Err(From::from("expected at least one record but got none"))
/// }
/// }
/// ```
pub fn records(&mut self) -> StringRecordsIter<R> {
StringRecordsIter::new(self)
}
/// Returns an owned iterator over all records as strings.
///
/// Each item yielded by this iterator is a `Result<StringRecord, Error>`.
/// Therefore, in order to access the record, callers must handle the
/// possibility of error (typically with `try!` or `?`).
///
/// This is mostly useful when you want to return a CSV iterator or store
/// it somewhere.
///
/// If `has_headers` was enabled via a `ReaderBuilder` (which is the
/// default), then this does not include the first record.
///
/// # Example
///
/// ```
/// use std::error::Error;
/// use csv::Reader;
///
/// # fn main() { example().unwrap(); }
/// fn example() -> Result<(), Box<dyn Error>> {
/// let data = "\
/// city,country,pop
/// Boston,United States,4628910
/// ";
/// let rdr = Reader::from_reader(data.as_bytes());
/// let mut iter = rdr.into_records();
///
/// if let Some(result) = iter.next() {
/// let record = result?;
/// assert_eq!(record, vec!["Boston", "United States", "4628910"]);
/// Ok(())
/// } else {
/// Err(From::from("expected at least one record but got none"))
/// }
/// }
/// ```
pub fn into_records(self) -> StringRecordsIntoIter<R> {
StringRecordsIntoIter::new(self)
}
/// Returns a borrowed iterator over all records as raw bytes.
///
/// Each item yielded by this iterator is a `Result<ByteRecord, Error>`.
/// Therefore, in order to access the record, callers must handle the
/// possibility of error (typically with `try!` or `?`).
///
/// If `has_headers` was enabled via a `ReaderBuilder` (which is the
/// default), then this does not include the first record.
///
/// # Example
///
/// ```
/// use std::error::Error;
/// use csv::Reader;
///
/// # fn main() { example().unwrap(); }
/// fn example() -> Result<(), Box<dyn Error>> {
/// let data = "\
/// city,country,pop
/// Boston,United States,4628910
/// ";
/// let mut rdr = Reader::from_reader(data.as_bytes());
/// let mut iter = rdr.byte_records();
///
/// if let Some(result) = iter.next() {
/// let record = result?;
/// assert_eq!(record, vec!["Boston", "United States", "4628910"]);
/// Ok(())
/// } else {
/// Err(From::from("expected at least one record but got none"))
/// }
/// }
/// ```
pub fn byte_records(&mut self) -> ByteRecordsIter<R> {
ByteRecordsIter::new(self)
}
/// Returns an owned iterator over all records as raw bytes.
///
/// Each item yielded by this iterator is a `Result<ByteRecord, Error>`.
/// Therefore, in order to access the record, callers must handle the
/// possibility of error (typically with `try!` or `?`).
///
/// This is mostly useful when you want to return a CSV iterator or store
/// it somewhere.
///
/// If `has_headers` was enabled via a `ReaderBuilder` (which is the
/// default), then this does not include the first record.
///
/// # Example
///
/// ```
/// use std::error::Error;
/// use csv::Reader;
///
/// # fn main() { example().unwrap(); }
/// fn example() -> Result<(), Box<dyn Error>> {
/// let data = "\
/// city,country,pop
/// Boston,United States,4628910
/// ";
/// let rdr = Reader::from_reader(data.as_bytes());
/// let mut iter = rdr.into_byte_records();
///
/// if let Some(result) = iter.next() {
/// let record = result?;
/// assert_eq!(record, vec!["Boston", "United States", "4628910"]);
/// Ok(())
/// } else {
/// Err(From::from("expected at least one record but got none"))
/// }
/// }
/// ```
pub fn into_byte_records(self) -> ByteRecordsIntoIter<R> {
ByteRecordsIntoIter::new(self)
}
/// Returns a reference to the first row read by this parser.
///
/// If no row has been read yet, then this will force parsing of the first
/// row.
///
/// If there was a problem parsing the row or if it wasn't valid UTF-8,
/// then this returns an error.
///
/// If the underlying reader emits EOF before any data, then this returns
/// an empty record.
///
/// Note that this method may be used regardless of whether `has_headers`
/// was enabled (but it is enabled by default).
///
/// # Example
///
/// This example shows how to get the header row of CSV data. Notice that
/// the header row does not appear as a record in the iterator!
///
/// ```
/// use std::error::Error;
/// use csv::Reader;
///
/// # fn main() { example().unwrap(); }
/// fn example() -> Result<(), Box<dyn Error>> {
/// let data = "\
/// city,country,pop
/// Boston,United States,4628910
/// ";
/// let mut rdr = Reader::from_reader(data.as_bytes());
///
/// // We can read the headers before iterating.
/// {
/// // `headers` borrows from the reader, so we put this in its
/// // own scope. That way, the borrow ends before we try iterating
/// // below. Alternatively, we could clone the headers.
/// let headers = rdr.headers()?;
/// assert_eq!(headers, vec!["city", "country", "pop"]);
/// }
///
/// if let Some(result) = rdr.records().next() {
/// let record = result?;
/// assert_eq!(record, vec!["Boston", "United States", "4628910"]);
/// } else {
/// return Err(From::from(
/// "expected at least one record but got none"))
/// }
///
/// // We can also read the headers after iterating.
/// let headers = rdr.headers()?;
/// assert_eq!(headers, vec!["city", "country", "pop"]);
/// Ok(())
/// }
/// ```
pub fn headers(&mut self) -> Result<&StringRecord> {
if self.state.headers.is_none() {
let mut record = ByteRecord::new();
self.read_byte_record_impl(&mut record)?;
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.
///
/// If no row has been read yet, then this will force parsing of the first
/// row.
///
/// If there was a problem parsing the row then this returns an error.
///
/// If the underlying reader emits EOF before any data, then this returns
/// an empty record.
///
/// Note that this method may be used regardless of whether `has_headers`
/// was enabled (but it is enabled by default).
///
/// # Example
///
/// This example shows how to get the header row of CSV data. Notice that
/// the header row does not appear as a record in the iterator!
///
/// ```
/// use std::error::Error;
/// use csv::Reader;
///
/// # fn main() { example().unwrap(); }
/// fn example() -> Result<(), Box<dyn Error>> {
/// let data = "\
/// city,country,pop
/// Boston,United States,4628910
/// ";
/// let mut rdr = Reader::from_reader(data.as_bytes());
///
/// // We can read the headers before iterating.
/// {
/// // `headers` borrows from the reader, so we put this in its
/// // own scope. That way, the borrow ends before we try iterating
/// // below. Alternatively, we could clone the headers.
/// let headers = rdr.byte_headers()?;
/// assert_eq!(headers, vec!["city", "country", "pop"]);
/// }
///
/// if let Some(result) = rdr.byte_records().next() {
/// let record = result?;
/// assert_eq!(record, vec!["Boston", "United States", "4628910"]);
/// } else {
/// return Err(From::from(
/// "expected at least one record but got none"))
/// }
///
/// // We can also read the headers after iterating.
/// let headers = rdr.byte_headers()?;
/// assert_eq!(headers, vec!["city", "country", "pop"]);
/// Ok(())
/// }
/// ```
pub 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)?;
self.set_headers_impl(Err(record));
}
Ok(&self.state.headers.as_ref().unwrap().byte_record)
}
/// Set the headers of this CSV parser manually.
///
/// This overrides any other setting (including `set_byte_headers`). Any
/// automatic detection of headers is disabled. This may be called at any
/// time.
///
/// # Example
///
/// ```
/// use std::error::Error;
/// use csv::{Reader, StringRecord};
///
/// # fn main() { example().unwrap(); }
/// fn example() -> Result<(), Box<dyn Error>> {
/// let data = "\
/// city,country,pop
/// Boston,United States,4628910
/// ";
/// let mut rdr = Reader::from_reader(data.as_bytes());
///
/// assert_eq!(rdr.headers()?, vec!["city", "country", "pop"]);
/// rdr.set_headers(StringRecord::from(vec!["a", "b", "c"]));
/// assert_eq!(rdr.headers()?, vec!["a", "b", "c"]);
///
/// Ok(())
/// }
/// ```
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.
///
/// This overrides any other setting (including `set_headers`). Any
/// automatic detection of headers is disabled. This may be called at any
/// time.
///
/// # Example
///
/// ```
/// use std::error::Error;
/// use csv::{Reader, ByteRecord};
///
/// # fn main() { example().unwrap(); }
/// fn example() -> Result<(), Box<dyn Error>> {
/// let data = "\
/// city,country,pop
/// Boston,United States,4628910
/// ";
/// let mut rdr = Reader::from_reader(data.as_bytes());
///
/// assert_eq!(rdr.byte_headers()?, vec!["city", "country", "pop"]);
/// rdr.set_byte_headers(ByteRecord::from(vec!["a", "b", "c"]));
/// assert_eq!(rdr.byte_headers()?, vec!["a", "b", "c"]);
///
/// Ok(())
/// }
/// ```
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.
///
/// If `has_headers` was enabled via a `ReaderBuilder` (which is the
/// default), then this will never read the first record.
///
/// This method is useful when you want to read records as fast as
/// as possible. It's less ergonomic than an iterator, but it permits the
/// caller to reuse the `StringRecord` allocation, which usually results
/// in higher throughput.
///
/// Records read via this method are guaranteed to have a position set
/// on them, even if the reader is at EOF or if an error is returned.
///
/// # Example
///
/// ```
/// use std::error::Error;
/// use csv::{Reader, StringRecord};
///
/// # fn main() { example().unwrap(); }
/// fn example() -> Result<(), Box<dyn Error>> {
/// let data = "\
/// city,country,pop
/// Boston,United States,4628910
/// ";
/// let mut rdr = Reader::from_reader(data.as_bytes());
/// let mut record = StringRecord::new();
///
/// if rdr.read_record(&mut record)? {
/// assert_eq!(record, vec!["Boston", "United States", "4628910"]);
/// Ok(())
/// } else {
/// Err(From::from("expected at least one record but got none"))
/// }
/// }
/// ```
pub fn read_record(&mut self, record: &mut StringRecord) -> Result<bool> {
let result = record.read(self);
// 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.
///
/// If `has_headers` was enabled via a `ReaderBuilder` (which is the
/// default), then this will never read the first record.
///
/// This method is useful when you want to read records as fast as
/// as possible. It's less ergonomic than an iterator, but it permits the
/// caller to reuse the `ByteRecord` allocation, which usually results
/// in higher throughput.
///
/// Records read via this method are guaranteed to have a position set
/// on them, even if the reader is at EOF or if an error is returned.
///
/// # Example
///
/// ```
/// use std::error::Error;
/// use csv::{ByteRecord, Reader};
///
/// # fn main() { example().unwrap(); }
/// fn example() -> Result<(), Box<dyn Error>> {
/// let data = "\
/// city,country,pop
/// Boston,United States,4628910
/// ";
/// let mut rdr = Reader::from_reader(data.as_bytes());
/// let mut record = ByteRecord::new();
///
/// if rdr.read_byte_record(&mut record)? {
/// assert_eq!(record, vec!["Boston", "United States", "4628910"]);
/// Ok(())
/// } else {
/// Err(From::from("expected at least one record but got none"))
/// }
/// }
/// ```
pub 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)?;
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);
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)]
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()));
if self.state.eof != ReaderEofState::NotEof {
return Ok(false);
}
let (mut outlen, mut endlen) = (0, 0);
loop {
let (res, nin, nout, nend) = {
let input_res = self.rdr.fill_buf();
if input_res.is_err() {
self.state.eof = ReaderEofState::IOError;
}
let input = input_res?;
let (fields, ends) = record.as_parts();
self.core.read_record(
input,
&mut fields[outlen..],
&mut ends[endlen..],
)
};
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.
///
/// The byte offset in the position returned can be used to `seek` this
/// reader. In particular, seeking to a position returned here on the same
/// data will result in parsing the same subsequent record.
///
/// # Example: reading the position
///
/// ```
/// use std::{error::Error, io};
/// use csv::{Reader, Position};
///
/// # fn main() { example().unwrap(); }
/// fn example() -> Result<(), Box<dyn Error>> {
/// let data = "\
/// city,country,popcount
/// Boston,United States,4628910
/// Concord,United States,42695
/// ";
/// let rdr = Reader::from_reader(io::Cursor::new(data));
/// let mut iter = rdr.into_records();
/// let mut pos = Position::new();
/// loop {
/// // Read the position immediately before each record.
/// let next_pos = iter.reader().position().clone();
/// if iter.next().is_none() {
/// break;
/// }
/// pos = next_pos;
/// }
///
/// // `pos` should now be the position immediately before the last
/// // record.
/// assert_eq!(pos.byte(), 51);
/// assert_eq!(pos.line(), 3);
/// assert_eq!(pos.record(), 2);
/// Ok(())
/// }
/// ```
pub fn position(&self) -> &Position {
&self.state.cur_pos
}
/// Returns true if and only if this reader has been exhausted.
///
/// When this returns true, no more records can be read from this reader
/// (unless it has been seeked to another position).
///
/// # Example
///
/// ```
/// use std::{error::Error, io};
/// use csv::{Reader, Position};
///
/// # fn main() { example().unwrap(); }
/// fn example() -> Result<(), Box<dyn Error>> {
/// let data = "\
/// city,country,popcount
/// Boston,United States,4628910
/// Concord,United States,42695
/// ";
/// let mut rdr = Reader::from_reader(io::Cursor::new(data));
/// assert!(!rdr.is_done());
/// for result in rdr.records() {
/// let _ = result?;
/// }
/// assert!(rdr.is_done());
/// Ok(())
/// }
/// ```
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::Read + io::Seek> Reader<R> {
/// Seeks the underlying reader to the position given.
///
/// This comes with a few caveats:
///
/// * Any internal buffer associated with this reader is cleared.
/// * If the given position does not correspond to a position immediately
/// before the start of a record, then the behavior of this reader is
/// unspecified.
/// * Any special logic that skips the first record in the CSV reader
/// when reading or iterating over records is disabled.
///
/// If the given position has a byte offset equivalent to the current
/// position, then no seeking is performed.
///
/// If the header row has not already been read, then this will attempt
/// to read the header row before seeking. Therefore, it is possible that
/// this returns an error associated with reading CSV data.
///
/// Note that seeking is performed based only on the byte offset in the
/// given position. Namely, the record or line numbers in the position may
/// be incorrect, but this will cause any future position generated by
/// this CSV reader to be similarly incorrect.
///
/// # Example: seek to parse a record twice
///
/// ```
/// use std::{error::Error, io};
/// use csv::{Reader, Position};
///
/// # fn main() { example().unwrap(); }
/// fn example() -> Result<(), Box<dyn Error>> {
/// let data = "\
/// city,country,popcount
/// Boston,United States,4628910
/// Concord,United States,42695
/// ";
/// let rdr = Reader::from_reader(io::Cursor::new(data));
/// let mut iter = rdr.into_records();
/// let mut pos = Position::new();
/// loop {
/// // Read the position immediately before each record.
/// let next_pos = iter.reader().position().clone();
/// if iter.next().is_none() {
/// break;
/// }
/// pos = next_pos;
/// }
///
/// // Now seek the reader back to `pos`. This will let us read the
/// // last record again.
/// iter.reader_mut().seek(pos)?;
/// let mut iter = iter.into_reader().into_records();
/// if let Some(result) = iter.next() {
/// let record = result?;
/// assert_eq!(record, vec!["Concord", "United States", "42695"]);
/// Ok(())
/// } else {
/// Err(From::from("expected at least one record but got none"))
/// }
/// }
/// ```
pub fn seek(&mut self, pos: Position) -> Result<()> {
self.byte_headers()?;
self.state.seeked = true;
if pos.byte() == self.state.cur_pos.byte() {
return Ok(());
}
self.rdr.seek(io::SeekFrom::Start(pos.byte()))?;
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`.
///
/// The `pos` position given *should* correspond the position indicated
/// by `seek_from`, but there is no requirement. If the `pos` position
/// given is incorrect, then the position information returned by this
/// reader will be similarly incorrect.
///
/// If the header row has not already been read, then this will attempt
/// to read the header row before seeking. Therefore, it is possible that
/// this returns an error associated with reading CSV data.
///
/// Unlike `seek`, this will always cause an actual seek to be performed.
pub fn seek_raw(
&mut self,
seek_from: io::SeekFrom,
pos: Position,
) -> Result<()> {
self.byte_headers()?;
self.state.seeked = true;
self.rdr.seek(seek_from)?;
self.core.reset();
self.core.set_line(pos.line());
self.state.cur_pos = pos;
self.state.eof = ReaderEofState::NotEof;
Ok(())
}
}
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(())
}
}
/// An owned iterator over deserialized records.
///
/// The type parameter `R` refers to the underlying `io::Read` type, and `D`
/// refers to the type that this iterator will deserialize a record into.
pub struct DeserializeRecordsIntoIter<R, D> {
rdr: Reader<R>,
rec: StringRecord,
headers: Option<StringRecord>,
_priv: PhantomData<D>,
}
impl<R: io::Read, D: DeserializeOwned> DeserializeRecordsIntoIter<R, D> {
fn new(mut rdr: Reader<R>) -> DeserializeRecordsIntoIter<R, D> {
let headers = if !rdr.state.has_headers {
None
} else {
rdr.headers().ok().map(Clone::clone)
};
DeserializeRecordsIntoIter {
rdr,
rec: StringRecord::new(),
headers,
_priv: PhantomData,
}
}
/// Return a reference to the underlying CSV reader.
pub fn reader(&self) -> &Reader<R> {
&self.rdr
}
/// Return a mutable reference to the underlying CSV reader.
pub fn reader_mut(&mut self) -> &mut Reader<R> {
&mut self.rdr
}
/// Drop this iterator and return the underlying CSV reader.
pub fn into_reader(self) -> Reader<R> {
self.rdr
}
}
impl<R: io::Read, D: DeserializeOwned> Iterator
for DeserializeRecordsIntoIter<R, D>
{
type Item = Result<D>;
fn next(&mut self) -> Option<Result<D>> {
match self.rdr.read_record(&mut self.rec) {
Err(err) => Some(Err(err)),
Ok(false) => None,
Ok(true) => Some(self.rec.deserialize(self.headers.as_ref())),
}
}
}
/// A borrowed iterator over deserialized records.
///
/// The lifetime parameter `'r` refers to the lifetime of the underlying
/// CSV `Reader`. The type parameter `R` refers to the underlying `io::Read`
/// type, and `D` refers to the type that this iterator will deserialize a
/// record into.
pub struct DeserializeRecordsIter<'r, R: 'r, D> {
rdr: &'r mut Reader<R>,
rec: StringRecord,
headers: Option<StringRecord>,
_priv: PhantomData<D>,
}
impl<'r, R: io::Read, D: DeserializeOwned> DeserializeRecordsIter<'r, R, D> {
fn new(rdr: &'r mut Reader<R>) -> DeserializeRecordsIter<'r, R, D> {
let headers = if !rdr.state.has_headers {
None
} else {
rdr.headers().ok().map(Clone::clone)
};
DeserializeRecordsIter {
rdr,
rec: StringRecord::new(),
headers,
_priv: PhantomData,
}
}
/// Return a reference to the underlying CSV reader.
pub fn reader(&self) -> &Reader<R> {
&self.rdr
}
/// Return a mutable reference to the underlying CSV reader.
pub fn reader_mut(&mut self) -> &mut Reader<R> {
&mut self.rdr
}
}
impl<'r, R: io::Read, D: DeserializeOwned> Iterator
for DeserializeRecordsIter<'r, R, D>
{
type Item = Result<D>;
fn next(&mut self) -> Option<Result<D>> {
match self.rdr.read_record(&mut self.rec) {
Err(err) => Some(Err(err)),
Ok(false) => None,
Ok(true) => Some(self.rec.deserialize(self.headers.as_ref())),
}
}
}
/// An owned iterator over records as strings.
pub struct StringRecordsIntoIter<R> {
rdr: Reader<R>,
rec: StringRecord,
}
impl<R: io::Read> StringRecordsIntoIter<R> {
fn new(rdr: Reader<R>) -> StringRecordsIntoIter<R> {
StringRecordsIntoIter { rdr, rec: StringRecord::new() }
}
/// Return a reference to the underlying CSV reader.
pub fn reader(&self) -> &Reader<R> {
&self.rdr
}
/// Return a mutable reference to the underlying CSV reader.
pub fn reader_mut(&mut self) -> &mut Reader<R> {
&mut self.rdr
}
/// Drop this iterator and return the underlying CSV reader.
pub fn into_reader(self) -> Reader<R> {
self.rdr
}
}
impl<R: io::Read> Iterator for StringRecordsIntoIter<R> {
type Item = Result<StringRecord>;
fn next(&mut self) -> Option<Result<StringRecord>> {
match self.rdr.read_record(&mut self.rec) {
Err(err) => Some(Err(err)),
Ok(true) => Some(Ok(self.rec.clone_truncated())),
Ok(false) => None,
}
}
}
/// A borrowed iterator over records as strings.
///
/// The lifetime parameter `'r` refers to the lifetime of the underlying
/// CSV `Reader`.
pub struct StringRecordsIter<'r, R: 'r> {
rdr: &'r mut Reader<R>,
rec: StringRecord,
}
impl<'r, R: io::Read> StringRecordsIter<'r, R> {
fn new(rdr: &'r mut Reader<R>) -> StringRecordsIter<'r, R> {
StringRecordsIter { rdr, rec: StringRecord::new() }
}
/// Return a reference to the underlying CSV reader.
pub fn reader(&self) -> &Reader<R> {
&self.rdr
}
/// Return a mutable reference to the underlying CSV reader.
pub fn reader_mut(&mut self) -> &mut Reader<R> {
&mut self.rdr
}
}
impl<'r, R: io::Read> Iterator for StringRecordsIter<'r, R> {
type Item = Result<StringRecord>;
fn next(&mut self) -> Option<Result<StringRecord>> {
match self.rdr.read_record(&mut self.rec) {
Err(err) => Some(Err(err)),
Ok(true) => Some(Ok(self.rec.clone_truncated())),
Ok(false) => None,
}
}
}
/// An owned iterator over records as raw bytes.
pub struct ByteRecordsIntoIter<R> {
rdr: Reader<R>,
rec: ByteRecord,
}
impl<R: io::Read> ByteRecordsIntoIter<R> {
fn new(rdr: Reader<R>) -> ByteRecordsIntoIter<R> {
ByteRecordsIntoIter { rdr, rec: ByteRecord::new() }
}
/// Return a reference to the underlying CSV reader.
pub fn reader(&self) -> &Reader<R> {
&self.rdr
}
/// Return a mutable reference to the underlying CSV reader.
pub fn reader_mut(&mut self) -> &mut Reader<R> {
&mut self.rdr
}
/// Drop this iterator and return the underlying CSV reader.
pub fn into_reader(self) -> Reader<R> {
self.rdr
}
}
impl<R: io::Read> Iterator for ByteRecordsIntoIter<R> {
type Item = Result<ByteRecord>;
fn next(&mut self) -> Option<Result<ByteRecord>> {
match self.rdr.read_byte_record(&mut self.rec) {
Err(err) => Some(Err(err)),
Ok(true) => Some(Ok(self.rec.clone_truncated())),
Ok(false) => None,
}
}
}
/// A borrowed iterator over records as raw bytes.
///
/// The lifetime parameter `'r` refers to the lifetime of the underlying
/// CSV `Reader`.
pub struct ByteRecordsIter<'r, R: 'r> {
rdr: &'r mut Reader<R>,
rec: ByteRecord,
}
impl<'r, R: io::Read> ByteRecordsIter<'r, R> {
fn new(rdr: &'r mut Reader<R>) -> ByteRecordsIter<'r, R> {
ByteRecordsIter { rdr, rec: ByteRecord::new() }
}
/// Return a reference to the underlying CSV reader.
pub fn reader(&self) -> &Reader<R> {
&self.rdr
}
/// Return a mutable reference to the underlying CSV reader.
pub fn reader_mut(&mut self) -> &mut Reader<R> {
&mut self.rdr
}
}
impl<'r, R: io::Read> Iterator for ByteRecordsIter<'r, R> {
type Item = Result<ByteRecord>;
fn next(&mut self) -> Option<Result<ByteRecord>> {
match self.rdr.read_byte_record(&mut self.rec) {
Err(err) => Some(Err(err)),
Ok(true) => Some(Ok(self.rec.clone_truncated())),
Ok(false) => None,
}
}
}
#[cfg(test)]
mod tests {
use std::io;
use crate::{
byte_record::ByteRecord, error::ErrorKind, string_record::StringRecord,
};
use super::{Position, ReaderBuilder, Trim};
fn b(s: &str) -> &[u8] {
s.as_bytes()
}
fn s(b: &[u8]) -> &str {
::std::str::from_utf8(b).unwrap()
}
fn newpos(byte: u64, line: u64, record: u64) -> Position {
let mut p = Position::new();
p.set_byte(byte).set_line(line).set_record(record);
p
}
#[test]
fn read_byte_record() {
let data = b("foo,\"b,ar\",baz\nabc,mno,xyz");
let mut rdr =
ReaderBuilder::new().has_headers(false).from_reader(data);
let mut rec = ByteRecord::new();
assert!(rdr.read_byte_record(&mut rec).unwrap());
assert_eq!(3, rec.len());
assert_eq!("foo", s(&rec[0]));
assert_eq!("b,ar", s(&rec[1]));
assert_eq!("baz", s(&rec[2]));
assert!(rdr.read_byte_record(&mut rec).unwrap());
assert_eq!(3, rec.len());
assert_eq!("abc", s(&rec[0]));
assert_eq!("mno", s(&rec[1]));
assert_eq!("xyz", s(&rec[2]));
assert!(!rdr.read_byte_record(&mut rec).unwrap());
}
#[test]
fn read_trimmed_records_and_headers() {
let data = b("foo, bar,\tbaz\n 1, 2, 3\n1\t,\t,3\t\t");
let mut rdr = ReaderBuilder::new()
.has_headers(true)
.trim(Trim::All)
.from_reader(data);
let mut rec = ByteRecord::new();
assert!(rdr.read_byte_record(&mut rec).unwrap());
assert_eq!("1", s(&rec[0]));
assert_eq!("2", s(&rec[1]));
assert_eq!("3", s(&rec[2]));
let mut rec = StringRecord::new();
assert!(rdr.read_record(&mut rec).unwrap());
assert_eq!("1", &rec[0]);
assert_eq!("", &rec[1]);
assert_eq!("3", &rec[2]);
{
let headers = rdr.headers().unwrap();
assert_eq!(3, headers.len());
assert_eq!("foo", &headers[0]);
assert_eq!("bar", &headers[1]);
assert_eq!("baz", &headers[2]);
}
}
#[test]
fn read_trimmed_header() {
let data = b("foo, bar,\tbaz\n 1, 2, 3\n1\t,\t,3\t\t");
let mut rdr = ReaderBuilder::new()
.has_headers(true)
.trim(Trim::Headers)
.from_reader(data);
let mut rec = ByteRecord::new();
assert!(rdr.read_byte_record(&mut rec).unwrap());
assert_eq!(" 1", s(&rec[0]));
assert_eq!(" 2", s(&rec[1]));
assert_eq!(" 3", s(&rec[2]));
{
let headers = rdr.headers().unwrap();
assert_eq!(3, headers.len());
assert_eq!("foo", &headers[0]);
assert_eq!("bar", &headers[1]);
assert_eq!("baz", &headers[2]);
}
}
#[test]
fn read_trimed_header_invalid_utf8() {
let data = &b"foo, b\xFFar,\tbaz\na,b,c\nd,e,f"[..];
let mut rdr = ReaderBuilder::new()
.has_headers(true)
.trim(Trim::Headers)
.from_reader(data);
let mut rec = StringRecord::new();
// force the headers to be read
let _ = rdr.read_record(&mut rec);
// Check the byte headers are trimmed
{
let headers = rdr.byte_headers().unwrap();
assert_eq!(3, headers.len());
assert_eq!(b"foo", &headers[0]);
assert_eq!(b"b\xFFar", &headers[1]);
assert_eq!(b"baz", &headers[2]);
}
match *rdr.headers().unwrap_err().kind() {
ErrorKind::Utf8 { pos: Some(ref pos), ref err } => {
assert_eq!(pos, &newpos(0, 1, 0));
assert_eq!(err.field(), 1);
assert_eq!(err.valid_up_to(), 3);
}
ref err => panic!("match failed, got {:?}", err),
}
}
#[test]
fn read_trimmed_records() {
let data = b("foo, bar,\tbaz\n 1, 2, 3\n1\t,\t,3\t\t");
let mut rdr = ReaderBuilder::new()
.has_headers(true)
.trim(Trim::Fields)
.from_reader(data);
let mut rec = ByteRecord::new();
assert!(rdr.read_byte_record(&mut rec).unwrap());
assert_eq!("1", s(&rec[0]));
assert_eq!("2", s(&rec[1]));
assert_eq!("3", s(&rec[2]));
{
let headers = rdr.headers().unwrap();
assert_eq!(3, headers.len());
assert_eq!("foo", &headers[0]);
assert_eq!(" bar", &headers[1]);
assert_eq!("\tbaz", &headers[2]);
}
}
#[test]
fn read_record_unequal_fails() {
let data = b("foo\nbar,baz");
let mut rdr =
ReaderBuilder::new().has_headers(false).from_reader(data);
let mut rec = ByteRecord::new();
assert!(rdr.read_byte_record(&mut rec).unwrap());
assert_eq!(1, rec.len());
assert_eq!("foo", s(&rec[0]));
match rdr.read_byte_record(&mut rec) {
Err(err) => match *err.kind() {
ErrorKind::UnequalLengths {
expected_len: 1,
ref pos,
len: 2,
} => {
assert_eq!(pos, &Some(newpos(4, 2, 1)));
}
ref wrong => panic!("match failed, got {:?}", wrong),
},
wrong => panic!("match failed, got {:?}", wrong),
}
}
#[test]
fn read_record_unequal_ok() {
let data = b("foo\nbar,baz");
let mut rdr = ReaderBuilder::new()
.has_headers(false)
.flexible(true)
.from_reader(data);
let mut rec = ByteRecord::new();
assert!(rdr.read_byte_record(&mut rec).unwrap());
assert_eq!(1, rec.len());
assert_eq!("foo", s(&rec[0]));
assert!(rdr.read_byte_record(&mut rec).unwrap());
assert_eq!(2, rec.len());
assert_eq!("bar", s(&rec[0]));
assert_eq!("baz", s(&rec[1]));
assert!(!rdr.read_byte_record(&mut rec).unwrap());
}
// This tests that even if we get a CSV error, we can continue reading
// if we want.
#[test]
fn read_record_unequal_continue() {
let data = b("foo\nbar,baz\nquux");
let mut rdr =
ReaderBuilder::new().has_headers(false).from_reader(data);
let mut rec = ByteRecord::new();
assert!(rdr.read_byte_record(&mut rec).unwrap());
assert_eq!(1, rec.len());
assert_eq!("foo", s(&rec[0]));
match rdr.read_byte_record(&mut rec) {
Err(err) => match err.kind() {
&ErrorKind::UnequalLengths {
expected_len: 1,
ref pos,
len: 2,
} => {
assert_eq!(pos, &Some(newpos(4, 2, 1)));
}
wrong => panic!("match failed, got {:?}", wrong),
},
wrong => panic!("match failed, got {:?}", wrong),
}
assert!(rdr.read_byte_record(&mut rec).unwrap());
assert_eq!(1, rec.len());
assert_eq!("quux", s(&rec[0]));
assert!(!rdr.read_byte_record(&mut rec).unwrap());
}
#[test]
fn read_record_headers() {
let data = b("foo,bar,baz\na,b,c\nd,e,f");
let mut rdr = ReaderBuilder::new().has_headers(true).from_reader(data);
let mut rec = StringRecord::new();
assert!(rdr.read_record(&mut rec).unwrap());
assert_eq!(3, rec.len());
assert_eq!("a", &rec[0]);
assert!(rdr.read_record(&mut rec).unwrap());
assert_eq!(3, rec.len());
assert_eq!("d", &rec[0]);
assert!(!rdr.read_record(&mut rec).unwrap());
{
let headers = rdr.byte_headers().unwrap();
assert_eq!(3, headers.len());
assert_eq!(b"foo", &headers[0]);
assert_eq!(b"bar", &headers[1]);
assert_eq!(b"baz", &headers[2]);
}
{
let headers = rdr.headers().unwrap();
assert_eq!(3, headers.len());
assert_eq!("foo", &headers[0]);
assert_eq!("bar", &headers[1]);
assert_eq!("baz", &headers[2]);
}
}
#[test]
fn read_record_headers_invalid_utf8() {
let data = &b"foo,b\xFFar,baz\na,b,c\nd,e,f"[..];
let mut rdr = ReaderBuilder::new().has_headers(true).from_reader(data);
let mut rec = StringRecord::new();
assert!(rdr.read_record(&mut rec).unwrap());
assert_eq!(3, rec.len());
assert_eq!("a", &rec[0]);
assert!(rdr.read_record(&mut rec).unwrap());
assert_eq!(3, rec.len());
assert_eq!("d", &rec[0]);
assert!(!rdr.read_record(&mut rec).unwrap());
// Check that we can read the headers as raw bytes, but that
// if we read them as strings, we get an appropriate UTF-8 error.
{
let headers = rdr.byte_headers().unwrap();
assert_eq!(3, headers.len());
assert_eq!(b"foo", &headers[0]);
assert_eq!(b"b\xFFar", &headers[1]);
assert_eq!(b"baz", &headers[2]);
}
match *rdr.headers().unwrap_err().kind() {
ErrorKind::Utf8 { pos: Some(ref pos), ref err } => {
assert_eq!(pos, &newpos(0, 1, 0));
assert_eq!(err.field(), 1);
assert_eq!(err.valid_up_to(), 1);
}
ref err => panic!("match failed, got {:?}", err),
}
}
#[test]
fn read_record_no_headers_before() {
let data = b("foo,bar,baz\na,b,c\nd,e,f");
let mut rdr =
ReaderBuilder::new().has_headers(false).from_reader(data);
let mut rec = StringRecord::new();
{
let headers = rdr.headers().unwrap();
assert_eq!(3, headers.len());
assert_eq!("foo", &headers[0]);
assert_eq!("bar", &headers[1]);
assert_eq!("baz", &headers[2]);
}
assert!(rdr.read_record(&mut rec).unwrap());
assert_eq!(3, rec.len());
assert_eq!("foo", &rec[0]);
assert!(rdr.read_record(&mut rec).unwrap());
assert_eq!(3, rec.len());
assert_eq!("a", &rec[0]);
assert!(rdr.read_record(&mut rec).unwrap());
assert_eq!(3, rec.len());
assert_eq!("d", &rec[0]);
assert!(!rdr.read_record(&mut rec).unwrap());
}
#[test]
fn read_record_no_headers_after() {
let data = b("foo,bar,baz\na,b,c\nd,e,f");
let mut rdr =
ReaderBuilder::new().has_headers(false).from_reader(data);
let mut rec = StringRecord::new();
assert!(rdr.read_record(&mut rec).unwrap());
assert_eq!(3, rec.len());
assert_eq!("foo", &rec[0]);
assert!(rdr.read_record(&mut rec).unwrap());
assert_eq!(3, rec.len());
assert_eq!("a", &rec[0]);
assert!(rdr.read_record(&mut rec).unwrap());
assert_eq!(3, rec.len());
assert_eq!("d", &rec[0]);
assert!(!rdr.read_record(&mut rec).unwrap());
let headers = rdr.headers().unwrap();
assert_eq!(3, headers.len());
assert_eq!("foo", &headers[0]);
assert_eq!("bar", &headers[1]);
assert_eq!("baz", &headers[2]);
}
#[test]
fn seek() {
let data = b("foo,bar,baz\na,b,c\nd,e,f\ng,h,i");
let mut rdr = ReaderBuilder::new().from_reader(io::Cursor::new(data));
rdr.seek(newpos(18, 3, 2)).unwrap();
let mut rec = StringRecord::new();
assert_eq!(18, rdr.position().byte());
assert!(rdr.read_record(&mut rec).unwrap());
assert_eq!(3, rec.len());
assert_eq!("d", &rec[0]);
assert_eq!(24, rdr.position().byte());
assert_eq!(4, rdr.position().line());
assert_eq!(3, rdr.position().record());
assert!(rdr.read_record(&mut rec).unwrap());
assert_eq!(3, rec.len());
assert_eq!("g", &rec[0]);
assert!(!rdr.read_record(&mut rec).unwrap());
}
// Test that we can read headers after seeking even if the headers weren't
// explicit read before seeking.
#[test]
fn seek_headers_after() {
let data = b("foo,bar,baz\na,b,c\nd,e,f\ng,h,i");
let mut rdr = ReaderBuilder::new().from_reader(io::Cursor::new(data));
rdr.seek(newpos(18, 3, 2)).unwrap();
assert_eq!(rdr.headers().unwrap(), vec!["foo", "bar", "baz"]);
}
// Test that we can read headers after seeking if the headers were read
// before seeking.
#[test]
fn seek_headers_before_after() {
let data = b("foo,bar,baz\na,b,c\nd,e,f\ng,h,i");
let mut rdr = ReaderBuilder::new().from_reader(io::Cursor::new(data));
let headers = rdr.headers().unwrap().clone();
rdr.seek(newpos(18, 3, 2)).unwrap();
assert_eq!(&headers, rdr.headers().unwrap());
}
// Test that even if we didn't read headers before seeking, if we seek to
// the current byte offset, then no seeking is done and therefore we can
// still read headers after seeking.
#[test]
fn seek_headers_no_actual_seek() {
let data = b("foo,bar,baz\na,b,c\nd,e,f\ng,h,i");
let mut rdr = ReaderBuilder::new().from_reader(io::Cursor::new(data));
rdr.seek(Position::new()).unwrap();
assert_eq!("foo", &rdr.headers().unwrap()[0]);
}
// Test that position info is reported correctly in absence of headers.
#[test]
fn positions_no_headers() {
let mut rdr = ReaderBuilder::new()
.has_headers(false)
.from_reader("a,b,c\nx,y,z".as_bytes())
.into_records();
let pos = rdr.next().unwrap().unwrap().position().unwrap().clone();
assert_eq!(pos.byte(), 0);
assert_eq!(pos.line(), 1);
assert_eq!(pos.record(), 0);
let pos = rdr.next().unwrap().unwrap().position().unwrap().clone();
assert_eq!(pos.byte(), 6);
assert_eq!(pos.line(), 2);
assert_eq!(pos.record(), 1);
}
// Test that position info is reported correctly with headers.
#[test]
fn positions_headers() {
let mut rdr = ReaderBuilder::new()
.has_headers(true)
.from_reader("a,b,c\nx,y,z".as_bytes())
.into_records();
let pos = rdr.next().unwrap().unwrap().position().unwrap().clone();
assert_eq!(pos.byte(), 6);
assert_eq!(pos.line(), 2);
assert_eq!(pos.record(), 1);
}
// Test that reading headers on empty data yields an empty record.
#[test]
fn headers_on_empty_data() {
let mut rdr = ReaderBuilder::new().from_reader("".as_bytes());
let r = rdr.byte_headers().unwrap();
assert_eq!(r.len(), 0);
}
// Test that reading the first record on empty data works.
#[test]
fn no_headers_on_empty_data() {
let mut rdr =
ReaderBuilder::new().has_headers(false).from_reader("".as_bytes());
assert_eq!(rdr.records().count(), 0);
}
// Test that reading the first record on empty data works, even if
// we've tried to read headers before hand.
#[test]
fn no_headers_on_empty_data_after_headers() {
let mut rdr =
ReaderBuilder::new().has_headers(false).from_reader("".as_bytes());
assert_eq!(rdr.headers().unwrap().len(), 0);
assert_eq!(rdr.records().count(), 0);
}
}