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
|
// Copyright 2013-2025 Daniel Parker
// Distributed under the Boost license, Version 1.0.
// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
// See https://github.com/danielaparker/jsoncons for latest version
#ifndef JSONCONS_CSV_CSV_READER_HPP
#define JSONCONS_CSV_CSV_READER_HPP
#include <cstddef>
#include <functional>
#include <memory> // std::allocator
#include <system_error>
#include <utility> // std::move
#include <jsoncons/config/compiler_support.hpp>
#include <jsoncons/json_decoder.hpp>
#include <jsoncons/json_exception.hpp>
#include <jsoncons/json_reader.hpp>
#include <jsoncons/json_visitor.hpp>
#include <jsoncons/ser_context.hpp>
#include <jsoncons/source.hpp>
#include <jsoncons/source_adaptor.hpp>
#include <jsoncons_ext/csv/csv_error.hpp>
#include <jsoncons_ext/csv/csv_options.hpp>
#include <jsoncons_ext/csv/csv_parser.hpp>
namespace jsoncons { namespace csv {
template <typename CharT,typename Source=jsoncons::stream_source<CharT>,typename Allocator=std::allocator<char>>
class basic_csv_reader
{
struct stack_item
{
stack_item() noexcept
: array_begun_(false)
{
}
bool array_begun_;
};
using char_type = CharT;
using temp_allocator_type = Allocator;
using char_allocator_type = typename std::allocator_traits<temp_allocator_type>:: template rebind_alloc<CharT>;
basic_csv_reader(const basic_csv_reader&) = delete;
basic_csv_reader& operator = (const basic_csv_reader&) = delete;
basic_default_json_visitor<CharT> default_visitor_;
text_source_adaptor<Source> source_;
basic_json_visitor<CharT>& visitor_;
basic_csv_parser<CharT,Allocator> parser_;
public:
// Structural characters
static constexpr size_t default_max_buffer_size = 16384;
//! Parse an input stream of CSV text into a json object
/*!
\param is The input stream to read from
*/
template <typename Sourceable>
basic_csv_reader(Sourceable&& source,
basic_json_visitor<CharT>& visitor,
const Allocator& alloc = Allocator())
: basic_csv_reader(std::forward<Sourceable>(source),
visitor,
basic_csv_decode_options<CharT>(),
default_csv_parsing(),
alloc)
{
}
template <typename Sourceable>
basic_csv_reader(Sourceable&& source,
basic_json_visitor<CharT>& visitor,
const basic_csv_decode_options<CharT>& options,
const Allocator& alloc = Allocator())
: basic_csv_reader(std::forward<Sourceable>(source),
visitor,
options,
default_csv_parsing(),
alloc)
{
}
template <typename Sourceable>
basic_csv_reader(Sourceable&& source,
basic_json_visitor<CharT>& visitor,
std::function<bool(csv_errc,const ser_context&)> err_handler,
const Allocator& alloc = Allocator())
: basic_csv_reader(std::forward<Sourceable>(source),
visitor,
basic_csv_decode_options<CharT>(),
err_handler,
alloc)
{
}
template <typename Sourceable>
basic_csv_reader(Sourceable&& source,
basic_json_visitor<CharT>& visitor,
const basic_csv_decode_options<CharT>& options,
std::function<bool(csv_errc,const ser_context&)> err_handler,
const Allocator& alloc = Allocator())
: source_(std::forward<Sourceable>(source)),
visitor_(visitor),
parser_(options, err_handler, alloc)
{
}
~basic_csv_reader() noexcept = default;
void read()
{
std::error_code ec;
read(ec);
if (JSONCONS_UNLIKELY(ec))
{
JSONCONS_THROW(ser_error(ec,parser_.line(),parser_.column()));
}
}
void read(std::error_code& ec)
{
read_internal(ec);
}
std::size_t line() const
{
return parser_.line();
}
std::size_t column() const
{
return parser_.column();
}
bool eof() const
{
return parser_.source_exhausted() && source_.eof();
}
private:
void read_internal(std::error_code& ec)
{
if (source_.is_error())
{
ec = csv_errc::source_error;
return;
}
while (!parser_.stopped())
{
if (parser_.source_exhausted())
{
auto s = source_.read_buffer(ec);
if (JSONCONS_UNLIKELY(ec)) return;
if (s.size() > 0)
{
parser_.update(s.data(),s.size());
}
}
parser_.parse_some(visitor_, ec);
if (JSONCONS_UNLIKELY(ec)) return;
}
}
};
using csv_string_reader = basic_csv_reader<char,string_source<char>>;
using wcsv_string_reader = basic_csv_reader<wchar_t,string_source<wchar_t>>;
using csv_stream_reader = basic_csv_reader<char,stream_source<char>>;
using wcsv_stream_reader = basic_csv_reader<wchar_t,stream_source<wchar_t>>;
}}
#endif
|