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
|
// 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_EXT_BSON_BSON_CURSOR_HPP
#define JSONCONS_EXT_BSON_BSON_CURSOR_HPP
#include <cstddef>
#include <functional>
#include <memory> // std::allocator
#include <system_error>
#include <jsoncons/config/compiler_support.hpp>
#include <jsoncons/config/jsoncons_config.hpp>
#include <jsoncons/json_exception.hpp>
#include <jsoncons/json_visitor.hpp>
#include <jsoncons/ser_context.hpp>
#include <jsoncons/source.hpp>
#include <jsoncons/staj_event.hpp>
#include <jsoncons/staj_cursor.hpp>
#include <jsoncons_ext/bson/bson_options.hpp>
#include <jsoncons_ext/bson/bson_parser.hpp>
namespace jsoncons {
namespace bson {
template <typename Source=jsoncons::binary_stream_source,typename Allocator=std::allocator<char>>
class basic_bson_cursor : public basic_staj_cursor<char>, private virtual ser_context
{
using super_type = basic_staj_cursor<char>;
public:
using source_type = Source;
using char_type = char;
using allocator_type = Allocator;
private:
basic_bson_parser<Source,Allocator> parser_;
basic_staj_visitor<char_type> cursor_visitor_;
bool eof_{false};
public:
using string_view_type = string_view;
// Noncopyable and nonmoveable
basic_bson_cursor(const basic_bson_cursor&) = delete;
basic_bson_cursor(basic_bson_cursor&&) = delete;
template <typename Sourceable>
basic_bson_cursor(Sourceable&& source,
const bson_decode_options& options = bson_decode_options(),
const Allocator& alloc = Allocator())
: parser_(std::forward<Sourceable>(source), options, alloc)
{
parser_.cursor_mode(true);
if (!done())
{
next();
}
}
// Constructors that set parse error codes
template <typename Sourceable>
basic_bson_cursor(Sourceable&& source,
std::error_code& ec)
: basic_bson_cursor(std::allocator_arg, Allocator(),
std::forward<Sourceable>(source),
bson_decode_options(),
ec)
{
}
template <typename Sourceable>
basic_bson_cursor(Sourceable&& source,
const bson_decode_options& options,
std::error_code& ec)
: basic_bson_cursor(std::allocator_arg, Allocator(),
std::forward<Sourceable>(source),
options,
ec)
{
}
template <typename Sourceable>
basic_bson_cursor(std::allocator_arg_t, const Allocator& alloc,
Sourceable&& source,
const bson_decode_options& options,
std::error_code& ec)
: parser_(std::forward<Sourceable>(source), options, alloc)
{
parser_.cursor_mode(true);
if (!done())
{
next(ec);
}
}
~basic_bson_cursor() = default;
basic_bson_cursor& operator=(const basic_bson_cursor&) = delete;
basic_bson_cursor& operator=(basic_bson_cursor&&) = delete;
void reset()
{
parser_.reset();
cursor_visitor_.reset();
eof_ = false;
if (!done())
{
next();
}
}
template <typename Sourceable>
void reset(Sourceable&& source)
{
parser_.reset(std::forward<Sourceable>(source));
cursor_visitor_.reset();
eof_ = false;
if (!done())
{
next();
}
}
void reset(std::error_code& ec)
{
parser_.reset();
cursor_visitor_.reset();
eof_ = false;
if (!done())
{
next(ec);
}
}
template <typename Sourceable>
void reset(Sourceable&& source, std::error_code& ec)
{
parser_.reset(std::forward<Sourceable>(source));
cursor_visitor_.reset();
eof_ = false;
if (!done())
{
next(ec);
}
}
bool done() const override
{
return parser_.done();
}
void array_expected(std::error_code& ec) override
{
if (cursor_visitor_.event().event_type() == staj_event_type::begin_object)
{
parser_.array_expected(cursor_visitor_, ec);
}
else
{
super_type::array_expected(ec);
}
}
const staj_event& current() const override
{
return cursor_visitor_.event();
}
void read_to(basic_json_visitor<char_type>& visitor) override
{
std::error_code ec;
read_to(visitor, ec);
if (JSONCONS_UNLIKELY(ec))
{
JSONCONS_THROW(ser_error(ec,parser_.line(),parser_.column()));
}
}
void read_to(basic_json_visitor<char_type>& visitor,
std::error_code& ec) override
{
if (is_begin_container(current().event_type()))
{
parser_.cursor_mode(false);
parser_.mark_level(parser_.level());
cursor_visitor_.event().send_json_event(visitor, *this, ec);
if (JSONCONS_UNLIKELY(ec))
{
return;
}
read_next(visitor, ec);
parser_.cursor_mode(true);
parser_.mark_level(0);
if (current().event_type() == staj_event_type::begin_object)
{
cursor_visitor_.end_object(*this);
}
else
{
cursor_visitor_.end_array(*this);
}
}
else
{
cursor_visitor_.event().send_json_event(visitor, *this, ec);
}
}
void next() override
{
std::error_code ec;
next(ec);
if (JSONCONS_UNLIKELY(ec))
{
JSONCONS_THROW(ser_error(ec,parser_.line(),parser_.column()));
}
}
void next(std::error_code& ec) override
{
read_next(ec);
}
const ser_context& context() const override
{
return *this;
}
bool eof() const
{
return eof_;
}
std::size_t line() const override
{
return parser_.line();
}
std::size_t column() const override
{
return parser_.column();
}
friend
staj_filter_view operator|(basic_bson_cursor& cursor,
std::function<bool(const staj_event&, const ser_context&)> pred)
{
return staj_filter_view(cursor, pred);
}
private:
void read_next(std::error_code& ec)
{
parser_.restart();
while (!parser_.stopped())
{
parser_.parse(cursor_visitor_, ec);
if (JSONCONS_UNLIKELY(ec)) {return;}
}
}
void read_next(basic_json_visitor<char_type>& visitor, std::error_code& ec)
{
parser_.restart();
while (!parser_.stopped())
{
parser_.parse(visitor, ec);
if (JSONCONS_UNLIKELY(ec)) {return;}
}
}
};
using bson_stream_cursor = basic_bson_cursor<jsoncons::binary_stream_source>;
using bson_bytes_cursor = basic_bson_cursor<jsoncons::bytes_source>;
} // namespace bson
} // namespace jsoncons
#endif // JSONCONS_EXT_BSON_BSON_CURSOR_HPP
|