1
1
#pragma once
2
2
/*
3
- CSV for C++, version 2.2.3
3
+ CSV for C++, version 2.3.0
4
4
https://github.com/vincentlaucsb/csv-parser
5
5
6
6
MIT License
@@ -5051,6 +5051,7 @@ namespace csv {
5051
5051
*/
5052
5052
5053
5053
#include < cmath>
5054
+ #include < deque>
5054
5055
#include < iterator>
5055
5056
#include < memory> // For CSVField
5056
5057
#include < limits> // For CSVField
@@ -5468,16 +5469,15 @@ namespace csv {
5468
5469
// CSVFieldArrays may be moved
5469
5470
CSVFieldList (CSVFieldList&& other) :
5470
5471
_single_buffer_capacity (other._single_buffer_capacity) {
5471
- buffers = std::move (other.buffers );
5472
+
5473
+ for (auto && buffer : other.buffers ) {
5474
+ this ->buffers .emplace_back (std::move (buffer));
5475
+ }
5476
+
5472
5477
_current_buffer_size = other._current_buffer_size ;
5473
5478
_back = other._back ;
5474
5479
}
5475
5480
5476
- ~CSVFieldList () {
5477
- for (auto & buffer : buffers)
5478
- delete[] buffer;
5479
- }
5480
-
5481
5481
template <class ... Args>
5482
5482
void emplace_back (Args&&... args) {
5483
5483
if (this ->_current_buffer_size == this ->_single_buffer_capacity ) {
@@ -5497,7 +5497,14 @@ namespace csv {
5497
5497
private:
5498
5498
const size_t _single_buffer_capacity;
5499
5499
5500
- std::vector<RawCSVField*> buffers = {};
5500
+ /* *
5501
+ * Prefer std::deque over std::vector because it does not
5502
+ * reallocate upon expansion, allowing pointers to its members
5503
+ * to remain valid & avoiding potential race conditions when
5504
+ * CSVFieldList is accesssed simulatenously by a reading thread and
5505
+ * a writing thread
5506
+ */
5507
+ std::deque<std::unique_ptr<RawCSVField[]>> buffers = {};
5501
5508
5502
5509
/* * Number of items in the current buffer */
5503
5510
size_t _current_buffer_size = 0 ;
@@ -5509,7 +5516,6 @@ namespace csv {
5509
5516
void allocate ();
5510
5517
};
5511
5518
5512
-
5513
5519
/* * A class for storing raw CSV data and associated metadata */
5514
5520
struct RawCSVData {
5515
5521
std::shared_ptr<void > _data = nullptr ;
@@ -7708,10 +7714,10 @@ namespace csv {
7708
7714
}
7709
7715
7710
7716
CSV_INLINE void CSVFieldList::allocate () {
7711
- RawCSVField * buffer = new RawCSVField[_single_buffer_capacity];
7712
- buffers. push_back (buffer);
7717
+ buffers. push_back (std::unique_ptr< RawCSVField[]>( new RawCSVField[_single_buffer_capacity])) ;
7718
+
7713
7719
_current_buffer_size = 0 ;
7714
- _back = &( buffers.back ()[ 0 ] );
7720
+ _back = buffers.back (). get ( );
7715
7721
}
7716
7722
}
7717
7723
0 commit comments