Skip to content

Commit ade1e98

Browse files
committed
CSV Parser 2.2.3
Fix off-by-one issue in tests and update README
1 parent d51f9e4 commit ade1e98

File tree

5 files changed

+16
-15
lines changed

5 files changed

+16
-15
lines changed

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ However, in reality we know that RFC 4180 is just a suggestion, and there's many
4343
* Automatic delimiter guessing
4444
* Ability to ignore comments in leading rows and elsewhere
4545
* Ability to handle rows of different lengths
46+
* Ability to handle arbitrary line endings (as long as they are some combination of carriage return and newline)
4647

4748
By default, rows of variable length are silently ignored, although you may elect to keep them or throw an error.
4849

include/csv.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
CSV for C++, version 2.2.2
2+
CSV for C++, version 2.2.3
33
https://github.com/vincentlaucsb/csv-parser
44
55
MIT License

single_include/csv.hpp

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#pragma once
22
/*
3-
CSV for C++, version 2.2.2
3+
CSV for C++, version 2.2.3
44
https://github.com/vincentlaucsb/csv-parser
55
66
MIT License
@@ -6627,7 +6627,7 @@ namespace csv {
66276627
return std::to_string(value);
66286628
#else
66296629
// TODO: Figure out why the below code doesn't work on clang
6630-
std::string result;
6630+
std::string result = "";
66316631

66326632
T integral_part;
66336633
T fractional_part = std::abs(std::modf(value, &integral_part));
@@ -6637,8 +6637,7 @@ namespace csv {
66376637
if (value < 0) result = "-";
66386638

66396639
if (integral_part == 0) {
6640-
6641-
result = "0";
6640+
result += "0";
66426641
}
66436642
else {
66446643
for (int n_digits = num_digits(integral_part); n_digits > 0; n_digits --) {
@@ -7065,8 +7064,8 @@ namespace csv {
70657064
case ParseFlags::NEWLINE:
70667065
this->data_pos++;
70677066

7068-
// Catches CRLF (or LFLF)
7069-
if (this->data_pos < in.size() && parse_flag(in[this->data_pos]) == ParseFlags::NEWLINE)
7067+
// Catches CRLF (or LFLF, CRCRLF, or any other non-sensical combination of newlines)
7068+
while (this->data_pos < in.size() && parse_flag(in[this->data_pos]) == ParseFlags::NEWLINE)
70707069
this->data_pos++;
70717070

70727071
// End of record -> Write record
@@ -7636,6 +7635,7 @@ namespace csv {
76367635
if (this->records->empty()) return this->end();
76377636
}
76387637

7638+
this->_n_rows++;
76397639
CSVReader::iterator ret(this, this->records->pop_front());
76407640
return ret;
76417641
}

single_include_test/csv.hpp

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#pragma once
22
/*
3-
CSV for C++, version 2.2.2
3+
CSV for C++, version 2.2.3
44
https://github.com/vincentlaucsb/csv-parser
55
66
MIT License
@@ -6627,7 +6627,7 @@ namespace csv {
66276627
return std::to_string(value);
66286628
#else
66296629
// TODO: Figure out why the below code doesn't work on clang
6630-
std::string result;
6630+
std::string result = "";
66316631

66326632
T integral_part;
66336633
T fractional_part = std::abs(std::modf(value, &integral_part));
@@ -6637,8 +6637,7 @@ namespace csv {
66376637
if (value < 0) result = "-";
66386638

66396639
if (integral_part == 0) {
6640-
6641-
result = "0";
6640+
result += "0";
66426641
}
66436642
else {
66446643
for (int n_digits = num_digits(integral_part); n_digits > 0; n_digits --) {
@@ -7065,8 +7064,8 @@ namespace csv {
70657064
case ParseFlags::NEWLINE:
70667065
this->data_pos++;
70677066

7068-
// Catches CRLF (or LFLF)
7069-
if (this->data_pos < in.size() && parse_flag(in[this->data_pos]) == ParseFlags::NEWLINE)
7067+
// Catches CRLF (or LFLF, CRCRLF, or any other non-sensical combination of newlines)
7068+
while (this->data_pos < in.size() && parse_flag(in[this->data_pos]) == ParseFlags::NEWLINE)
70707069
this->data_pos++;
70717070

70727071
// End of record -> Write record
@@ -7636,6 +7635,7 @@ namespace csv {
76367635
if (this->records->empty()) return this->end();
76377636
}
76387637

7638+
this->_n_rows++;
76397639
CSVReader::iterator ret(this, this->records->pop_front());
76407640
return ret;
76417641
}

tests/test_round_trip.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ TEST_CASE("Simple Buffered Integer Round Trip Test", "[test_roundtrip_int]") {
1818

1919
const size_t n_rows = 1000000;
2020

21-
for (size_t i = 0; i <= n_rows; i++) {
21+
for (size_t i = 0; i < n_rows; i++) {
2222
auto str = internals::to_string(i);
2323
writer << std::array<csv::string_view, 5>({str, str, str, str, str});
2424
}
@@ -49,7 +49,7 @@ TEST_CASE("Simple Integer Round Trip Test", "[test_roundtrip_int]") {
4949

5050
const size_t n_rows = 1000000;
5151

52-
for (size_t i = 0; i <= n_rows; i++) {
52+
for (size_t i = 0; i < n_rows; i++) {
5353
auto str = internals::to_string(i);
5454
writer << std::array<csv::string_view, 5>({ str, str, str, str, str });
5555
}

0 commit comments

Comments
 (0)