1#ifndef SIMDJSON_DOCUMENT_STREAM_H
2#define SIMDJSON_DOCUMENT_STREAM_H
4#include "simdjson/dom/base.h"
5#include "simdjson/dom/parser.h"
7#ifdef SIMDJSON_THREADS_ENABLED
10#include <condition_variable>
16#ifdef SIMDJSON_THREADS_ENABLED
33 void run(document_stream *
ds, dom::parser * stage1,
size_t next_batch_start);
50 document_stream *
owner{};
120 using difference_type = std::ptrdiff_t;
122 using iterator_category = std::input_iterator_tag;
127 simdjson_inline
iterator()
noexcept;
131 simdjson_inline
reference operator*()
noexcept;
135 inline iterator& operator++()
noexcept;
140 simdjson_inline
bool operator!=(
const iterator &
other)
const noexcept;
156 simdjson_inline
size_t current_index()
const noexcept;
176 simdjson_inline std::string_view source()
const noexcept;
266 size_t batch_start{0};
268#ifdef SIMDJSON_THREADS_ENABLED
272 inline void load_from_stage1_thread() noexcept;
275 inline
void start_stage1_thread() noexcept;
278 inline
void finish_stage1_thread() noexcept;
283 friend struct stage1_worker;
284 std::unique_ptr<stage1_worker> worker{
new(std::nothrow) stage1_worker()};
289 dom::parser stage1_thread_parser{};
292 friend class dom::parser;
294 friend struct internal::simdjson_result_base<dom::document_stream>;
301struct
simdjson_result<dom::document_stream> :
public internal::simdjson_result_base<dom::document_stream> {
307#if SIMDJSON_EXCEPTIONS
311#ifndef SIMDJSON_DISABLE_DEPRECATED_API
312 [[deprecated(
"parse_many() and load_many() may return errors. Use document_stream stream; error = parser.parse_many().get(doc); instead.")]]
314 [[deprecated(
"parse_many() and load_many() may return errors. Use document_stream stream; error = parser.parse_many().get(doc); instead.")]]
simdjson_inline array() noexcept
Create a new, invalid array.
An iterator through a forward-only stream of documents.
A forward-only stream of documents.
size_t size_in_bytes() const noexcept
Returns the input size in bytes.
size_t truncated_bytes() const noexcept
After iterating through the stream, this method returns the number of bytes that were not parsed at t...
simdjson_inline iterator begin() noexcept
Start iterating the documents in the stream.
simdjson_inline document_stream(document_stream &&other) noexcept=default
Move one document_stream to another.
simdjson_inline document_stream & operator=(document_stream &&other) noexcept=default
Move one document_stream to another.
simdjson_inline iterator end() noexcept
The end of the stream, for iterator comparison purposes.
simdjson_inline document_stream() noexcept
Construct an uninitialized document_stream.
A persistent document parser.
The top level simdjson namespace, containing everything the library provides.
error_code
All possible errors returned by simdjson.
@ UNINITIALIZED
unknown error, or uninitialized document
The result of a simdjson operation that could fail.