12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031 |
- //
- // Copyright (c) 2019 Vinnie Falco (vinnie.falco@gmail.com)
- //
- // Distributed under the Boost Software License, Version 1.0. (See accompanying
- // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
- //
- // Official repository: https://github.com/boostorg/json
- //
- #ifndef BOOST_JSON_STREAM_PARSER_HPP
- #define BOOST_JSON_STREAM_PARSER_HPP
- #include <boost/json/detail/config.hpp>
- #include <boost/json/basic_parser.hpp>
- #include <boost/json/parse_options.hpp>
- #include <boost/json/storage_ptr.hpp>
- #include <boost/json/value.hpp>
- #include <boost/json/detail/handler.hpp>
- #include <type_traits>
- #include <cstddef>
- namespace boost {
- namespace json {
- //----------------------------------------------------------
- /** A DOM parser for JSON text contained in multiple buffers.
- This class is used to parse a JSON text contained in a
- series of one or more character buffers, into a
- @ref value container. It implements a
- <a href="https://en.wikipedia.org/wiki/Streaming_algorithm">
- <em>streaming algorithm</em></a>, allowing these
- parsing strategies:
- @li Parse a JSON file a piece at a time.
- @li Parse incoming JSON text as it arrives,
- one buffer at a time.
- @li Parse with bounded resource consumption
- per cycle.
- @par Usage
- To use the parser first construct it, then optionally
- call @ref reset to specify a @ref storage_ptr to use
- for the resulting @ref value. Then call @ref write
- one or more times to parse a single, complete JSON text.
- Call @ref done to determine if the parse has completed.
- To indicate there are no more buffers, call @ref finish.
- If the parse is successful, call @ref release to take
- ownership of the value:
- @code
- stream_parser p; // construct a parser
- p.write( "[1,2" ); // parse some of a JSON text
- p.write( ",3,4]" ); // parse the rest of the JSON text
- assert( p.done() ); // we have a complete JSON text
- value jv = p.release(); // take ownership of the value
- @endcode
- @par Extra Data
- When the character buffer provided as input contains
- additional data that is not part of the complete
- JSON text, an error is returned. The @ref write_some
- function is an alternative which allows the parse
- to finish early, without consuming all the characters
- in the buffer. This allows parsing of a buffer
- containing multiple individual JSON texts or containing
- different protocol data:
- @code
- stream_parser p; // construct a parser
- std::size_t n; // number of characters used
- n = p.write_some( "[1,2" ); // parse some of a JSON text
- assert( n == 4 ); // all characters consumed
- n = p.write_some( ",3,4] null" ); // parse the remainder of the JSON text
- assert( n == 6 ); // only some characters consumed
- assert( p.done() ); // we have a complete JSON text
- value jv = p.release(); // take ownership of the value
- @endcode
- @par Temporary Storage
- The parser may dynamically allocate temporary
- storage as needed to accommodate the nesting level
- of the JSON text being parsed. Temporary storage is
- first obtained from an optional, caller-owned
- buffer specified upon construction. When that
- is exhausted, the next allocation uses the
- `boost::container::pmr::memory_resource` passed to the constructor; if
- no such argument is specified, the default memory
- resource is used. Temporary storage is freed only
- when the parser is destroyed; The performance of
- parsing multiple JSON texts may be improved by reusing
- the same parser instance.
- \n
- It is important to note that the `boost::container::pmr::memory_resource`
- supplied upon construction is used for temporary storage only, and not for
- allocating the elements which make up the parsed value. That other memory
- resource is optionally supplied in each call to @ref reset.
- @par Duplicate Keys
- If there are object elements with duplicate keys;
- that is, if multiple elements in an object have
- keys that compare equal, only the last equivalent
- element will be inserted.
- @par Non-Standard JSON
- The @ref parse_options structure optionally
- provided upon construction is used to customize
- some parameters of the parser, including which
- non-standard JSON extensions should be allowed.
- A default-constructed parse options allows only
- standard JSON.
- @par Thread Safety
- Distinct instances may be accessed concurrently.
- Non-const member functions of a shared instance
- may not be called concurrently with any other
- member functions of that instance.
- @see
- @ref parse,
- @ref parser,
- @ref parse_options,
- */
- class stream_parser
- {
- basic_parser<detail::handler> p_;
- public:
- /// Copy constructor (deleted)
- stream_parser(
- stream_parser const&) = delete;
- /// Copy assignment (deleted)
- stream_parser& operator=(
- stream_parser const&) = delete;
- /** Destructor.
- All dynamically allocated memory, including
- any incomplete parsing results, is freed.
- @par Complexity
- Linear in the size of partial results
- @par Exception Safety
- No-throw guarantee.
- */
- ~stream_parser() = default;
- /** Constructor.
- This constructs a new parser which first uses
- the caller-owned storage pointed to by `buffer`
- for temporary storage, falling back to the memory
- resource `sp` if needed. The parser will use the
- specified parsing options.
- \n
- The parsed value will use the default memory
- resource for storage. To use a different resource,
- call @ref reset after construction.
- @par Complexity
- Constant.
- @par Exception Safety
- No-throw guarantee.
- @param sp The memory resource to use for
- temporary storage after `buffer` is exhausted.
- @param opt The parsing options to use.
- @param buffer A pointer to valid memory of at least
- `size` bytes for the parser to use for temporary storage.
- Ownership is not transferred, the caller is responsible
- for ensuring the lifetime of the memory pointed to by
- `buffer` extends until the parser is destroyed.
- @param size The number of valid bytes in `buffer`.
- */
- BOOST_JSON_DECL
- stream_parser(
- storage_ptr sp,
- parse_options const& opt,
- unsigned char* buffer,
- std::size_t size) noexcept;
- /** Constructor.
- This constructs a new parser which uses the default
- memory resource for temporary storage, and accepts
- only strict JSON.
- \n
- The parsed value will use the default memory
- resource for storage. To use a different resource,
- call @ref reset after construction.
- @par Complexity
- Constant.
- @par Exception Safety
- No-throw guarantee.
- */
- stream_parser() noexcept
- : stream_parser({}, {})
- {
- }
- /** Constructor.
- This constructs a new parser which uses the
- specified memory resource for temporary storage,
- and is configured to use the specified parsing
- options.
- \n
- The parsed value will use the default memory
- resource for storage. To use a different resource,
- call @ref reset after construction.
- @par Complexity
- Constant.
- @par Exception Safety
- No-throw guarantee.
- @param sp The memory resource to use for temporary storage.
- @param opt The parsing options to use.
- */
- BOOST_JSON_DECL
- stream_parser(
- storage_ptr sp,
- parse_options const& opt) noexcept;
- /** Constructor.
- This constructs a new parser which uses the
- specified memory resource for temporary storage,
- and accepts only strict JSON.
- \n
- The parsed value will use the default memory
- resource for storage. To use a different resource,
- call @ref reset after construction.
- @par Complexity
- Constant.
- @par Exception Safety
- No-throw guarantee.
- @param sp The memory resource to use for temporary storage.
- */
- explicit
- stream_parser(storage_ptr sp) noexcept
- : stream_parser(std::move(sp), {})
- {
- }
- /** Constructor.
- This constructs a new parser which first uses the
- caller-owned storage `buffer` for temporary storage,
- falling back to the memory resource `sp` if needed.
- The parser will use the specified parsing options.
- \n
- The parsed value will use the default memory
- resource for storage. To use a different resource,
- call @ref reset after construction.
- @par Complexity
- Constant.
- @par Exception Safety
- No-throw guarantee.
- @param sp The memory resource to use for
- temporary storage after `buffer` is exhausted.
- @param opt The parsing options to use.
- @param buffer A buffer for the parser to use for
- temporary storage. Ownership is not transferred,
- the caller is responsible for ensuring the lifetime
- of `buffer` extends until the parser is destroyed.
- */
- template<std::size_t N>
- stream_parser(
- storage_ptr sp,
- parse_options const& opt,
- unsigned char(&buffer)[N]) noexcept
- : stream_parser(std::move(sp),
- opt, &buffer[0], N)
- {
- }
- #if defined(__cpp_lib_byte) || defined(BOOST_JSON_DOCS)
- /** Constructor.
- This constructs a new parser which first uses
- the caller-owned storage pointed to by `buffer`
- for temporary storage, falling back to the memory
- resource `sp` if needed. The parser will use the
- specified parsing options.
- \n
- The parsed value will use the default memory
- resource for storage. To use a different resource,
- call @ref reset after construction.
- @par Complexity
- Constant.
- @par Exception Safety
- No-throw guarantee.
- @param sp The memory resource to use for
- temporary storage after `buffer` is exhausted.
- @param opt The parsing options to use.
- @param buffer A pointer to valid memory of at least
- `size` bytes for the parser to use for temporary storage.
- Ownership is not transferred, the caller is responsible
- for ensuring the lifetime of the memory pointed to by
- `buffer` extends until the parser is destroyed.
- @param size The number of valid bytes in `buffer`.
- */
- stream_parser(
- storage_ptr sp,
- parse_options const& opt,
- std::byte* buffer,
- std::size_t size) noexcept
- : stream_parser(sp, opt, reinterpret_cast<
- unsigned char*>(buffer), size)
- {
- }
- /** Constructor.
- This constructs a new parser which first uses the
- caller-owned storage `buffer` for temporary storage,
- falling back to the memory resource `sp` if needed.
- The parser will use the specified parsing options.
- \n
- The parsed value will use the default memory
- resource for storage. To use a different resource,
- call @ref reset after construction.
- @par Complexity
- Constant.
- @par Exception Safety
- No-throw guarantee.
- @param sp The memory resource to use for
- temporary storage after `buffer` is exhausted.
- @param opt The parsing options to use.
- @param buffer A buffer for the parser to use for
- temporary storage. Ownership is not transferred,
- the caller is responsible for ensuring the lifetime
- of `buffer` extends until the parser is destroyed.
- */
- template<std::size_t N>
- stream_parser(
- storage_ptr sp,
- parse_options const& opt,
- std::byte(&buffer)[N]) noexcept
- : stream_parser(std::move(sp),
- opt, &buffer[0], N)
- {
- }
- #endif
- #ifndef BOOST_JSON_DOCS
- // Safety net for accidental buffer overflows
- template<std::size_t N>
- stream_parser(
- storage_ptr sp,
- parse_options const& opt,
- unsigned char(&buffer)[N],
- std::size_t n) noexcept
- : stream_parser(std::move(sp),
- opt, &buffer[0], n)
- {
- // If this goes off, check your parameters
- // closely, chances are you passed an array
- // thinking it was a pointer.
- BOOST_ASSERT(n <= N);
- }
- #ifdef __cpp_lib_byte
- // Safety net for accidental buffer overflows
- template<std::size_t N>
- stream_parser(
- storage_ptr sp,
- parse_options const& opt,
- std::byte(&buffer)[N], std::size_t n) noexcept
- : stream_parser(std::move(sp),
- opt, &buffer[0], n)
- {
- // If this goes off, check your parameters
- // closely, chances are you passed an array
- // thinking it was a pointer.
- BOOST_ASSERT(n <= N);
- }
- #endif
- #endif
- /** Reset the parser for a new JSON text.
- This function is used to reset the parser to
- prepare it for parsing a new complete JSON text.
- Any previous partial results are destroyed.
- @par Complexity
- Constant or linear in the size of any previous
- partial parsing results.
- @par Exception Safety
- No-throw guarantee.
- @param sp A pointer to the `boost::container::pmr::memory_resource` to
- use for the resulting @ref value. The parser will acquire shared
- ownership.
- */
- BOOST_JSON_DECL
- void
- reset(storage_ptr sp = {}) noexcept;
- /** Return true if a complete JSON text has been parsed.
- This function returns `true` when all of these
- conditions are met:
- @li A complete serialized JSON text has been
- presented to the parser, and
- @li No error has occurred since the parser
- was constructed, or since the last call
- to @ref reset,
- @par Complexity
- Constant.
- @par Exception Safety
- No-throw guarantee.
- */
- bool
- done() const noexcept
- {
- return p_.done();
- }
- /** Parse a buffer containing all or part of a complete JSON text.
- This function parses JSON text contained in the
- specified character buffer. If parsing completes,
- any additional characters past the end of the
- complete JSON text are ignored. The function returns the
- actual number of characters parsed, which may be
- less than the size of the input. This allows parsing
- of a buffer containing multiple individual JSON texts or
- containing different protocol data.
- @par Example
- @code
- stream_parser p; // construct a parser
- std::size_t n; // number of characters used
- n = p.write_some( "[1,2" ); // parse the first part of the JSON text
- assert( n == 4 ); // all characters consumed
- n = p.write_some( "3,4] null" ); // parse the rest of the JSON text
- assert( n == 5 ); // only some characters consumed
- value jv = p.release(); // take ownership of the value
- @endcode
- @note
- To indicate there are no more character buffers,
- such as when @ref done returns `false` after
- writing, call @ref finish.
- @par Complexity
- Linear in `size`.
- @par Exception Safety
- Basic guarantee.
- Calls to `memory_resource::allocate` may throw.
- Upon error or exception, subsequent calls will
- fail until @ref reset is called to parse a new JSON text.
- @return The number of characters consumed from
- the buffer.
- @param data A pointer to a buffer of `size`
- characters to parse.
- @param size The number of characters pointed to
- by `data`.
- @param ec Set to the error, if any occurred.
- */
- /** @{ */
- BOOST_JSON_DECL
- std::size_t
- write_some(
- char const* data,
- std::size_t size,
- system::error_code& ec);
- BOOST_JSON_DECL
- std::size_t
- write_some(
- char const* data,
- std::size_t size,
- std::error_code& ec);
- /** @} */
- /** Parse a buffer containing all or part of a complete JSON text.
- This function parses JSON text contained in the
- specified character buffer. If parsing completes,
- any additional characters past the end of the
- complete JSON text are ignored. The function returns the
- actual number of characters parsed, which may be
- less than the size of the input. This allows parsing
- of a buffer containing multiple individual JSON texts or
- containing different protocol data.
- @par Example
- @code
- stream_parser p; // construct a parser
- std::size_t n; // number of characters used
- n = p.write_some( "[1,2" ); // parse the first part of the JSON text
- assert( n == 4 ); // all characters consumed
- n = p.write_some( "3,4] null" ); // parse the rest of the JSON text
- assert( n == 5 ); // only some characters consumed
- value jv = p.release(); // take ownership of the value
- @endcode
- @note
- To indicate there are no more character buffers,
- such as when @ref done returns `false` after
- writing, call @ref finish.
- @par Complexity
- Linear in `size`.
- @par Exception Safety
- Basic guarantee.
- Calls to `memory_resource::allocate` may throw.
- Upon error or exception, subsequent calls will
- fail until @ref reset is called to parse a new JSON text.
- @return The number of characters consumed from
- the buffer.
- @param data A pointer to a buffer of `size`
- characters to parse.
- @param size The number of characters pointed to
- by `data`.
- @throw `boost::system::system_error` Thrown on error.
- */
- BOOST_JSON_DECL
- std::size_t
- write_some(
- char const* data,
- std::size_t size);
- /** Parse a buffer containing all or part of a complete JSON text.
- This function parses JSON text contained in the
- specified character buffer. If parsing completes,
- any additional characters past the end of the
- complete JSON text are ignored. The function returns the
- actual number of characters parsed, which may be
- less than the size of the input. This allows parsing
- of a buffer containing multiple individual JSON texts or
- containing different protocol data.
- @par Example
- @code
- stream_parser p; // construct a parser
- std::size_t n; // number of characters used
- n = p.write_some( "[1,2" ); // parse the first part of the JSON text
- assert( n == 4 ); // all characters consumed
- n = p.write_some( "3,4] null" ); // parse the rest of the JSON text
- assert( n == 5 ); // only some characters consumed
- value jv = p.release(); // take ownership of the value
- @endcode
- @note
- To indicate there are no more character buffers,
- such as when @ref done returns `false` after
- writing, call @ref finish.
- @par Complexity
- Linear in `size`.
- @par Exception Safety
- Basic guarantee.
- Calls to `memory_resource::allocate` may throw.
- Upon error or exception, subsequent calls will
- fail until @ref reset is called to parse a new JSON text.
- @return The number of characters consumed from
- the buffer.
- @param s The character string to parse.
- @param ec Set to the error, if any occurred.
- */
- /** @{ */
- std::size_t
- write_some(
- string_view s,
- system::error_code& ec)
- {
- return write_some(
- s.data(), s.size(), ec);
- }
- std::size_t
- write_some(
- string_view s,
- std::error_code& ec)
- {
- return write_some(
- s.data(), s.size(), ec);
- }
- /** @} */
- /** Parse a buffer containing all or part of a complete JSON text.
- This function parses JSON text contained in the
- specified character buffer. If parsing completes,
- any additional characters past the end of the
- complete JSON text are ignored. The function returns the
- actual number of characters parsed, which may be
- less than the size of the input. This allows parsing
- of a buffer containing multiple individual JSON texts or
- containing different protocol data.
- @par Example
- @code
- stream_parser p; // construct a parser
- std::size_t n; // number of characters used
- n = p.write_some( "[1,2" ); // parse the first part of the JSON text
- assert( n == 4 ); // all characters consumed
- n = p.write_some( "3,4] null" ); // parse the rest of the JSON text
- assert( n == 5 ); // only some characters consumed
- value jv = p.release(); // take ownership of the value
- @endcode
- @note
- To indicate there are no more character buffers,
- such as when @ref done returns `false` after
- writing, call @ref finish.
- @par Complexity
- Linear in `size`.
- @par Exception Safety
- Basic guarantee.
- Calls to `memory_resource::allocate` may throw.
- Upon error or exception, subsequent calls will
- fail until @ref reset is called to parse a new JSON text.
- @return The number of characters consumed from
- the buffer.
- @param s The character string to parse.
- @throw `boost::system::system_error` Thrown on error.
- */
- std::size_t
- write_some(
- string_view s)
- {
- return write_some(
- s.data(), s.size());
- }
- /** Parse a buffer containing all or part of a complete JSON text.
- This function parses a all or part of a JSON text
- contained in the specified character buffer. The
- entire buffer must be consumed; if there are
- additional characters past the end of the complete
- JSON text, the parse fails and an error is returned.
- @par Example
- @code
- stream_parser p; // construct a parser
- std::size_t n; // number of characters used
- n = p.write( "[1,2" ); // parse some of the JSON text
- assert( n == 4 ); // all characters consumed
- n = p.write( "3,4]" ); // parse the rest of the JSON text
- assert( n == 4 ); // all characters consumed
- value jv = p.release(); // take ownership of the value
- @endcode
- @note
- To indicate there are no more character buffers,
- such as when @ref done returns `false` after
- writing, call @ref finish.
- @par Complexity
- Linear in `size`.
- @par Exception Safety
- Basic guarantee.
- Calls to `memory_resource::allocate` may throw.
- Upon error or exception, subsequent calls will
- fail until @ref reset is called to parse a new JSON text.
- @return The number of characters consumed from
- the buffer.
- @param data A pointer to a buffer of `size`
- characters to parse.
- @param size The number of characters pointed to
- by `data`.
- @param ec Set to the error, if any occurred.
- */
- /** @{ */
- BOOST_JSON_DECL
- std::size_t
- write(
- char const* data,
- std::size_t size,
- system::error_code& ec);
- BOOST_JSON_DECL
- std::size_t
- write(
- char const* data,
- std::size_t size,
- std::error_code& ec);
- /** @} */
- /** Parse a buffer containing all or part of a complete JSON text.
- This function parses a all or part of a JSON text
- contained in the specified character buffer. The
- entire buffer must be consumed; if there are
- additional characters past the end of the complete
- JSON text, the parse fails and an error is returned.
- @par Example
- @code
- stream_parser p; // construct a parser
- std::size_t n; // number of characters used
- n = p.write( "[1,2" ); // parse some of the JSON text
- assert( n == 4 ); // all characters consumed
- n = p.write( "3,4]" ); // parse the rest of the JSON text
- assert( n == 4 ); // all characters consumed
- value jv = p.release(); // take ownership of the value
- @endcode
- @note
- To indicate there are no more character buffers,
- such as when @ref done returns `false` after
- writing, call @ref finish.
- @par Complexity
- Linear in `size`.
- @par Exception Safety
- Basic guarantee.
- Calls to `memory_resource::allocate` may throw.
- Upon error or exception, subsequent calls will
- fail until @ref reset is called to parse a new JSON text.
- @return The number of characters consumed from
- the buffer.
- @param data A pointer to a buffer of `size`
- characters to parse.
- @param size The number of characters pointed to
- by `data`.
- @throw `boost::system::system_error` Thrown on error.
- */
- BOOST_JSON_DECL
- std::size_t
- write(
- char const* data,
- std::size_t size);
- /** Parse a buffer containing all or part of a complete JSON text.
- This function parses a all or part of a JSON text
- contained in the specified character buffer. The
- entire buffer must be consumed; if there are
- additional characters past the end of the complete
- JSON text, the parse fails and an error is returned.
- @par Example
- @code
- stream_parser p; // construct a parser
- std::size_t n; // number of characters used
- n = p.write( "[1,2" ); // parse some of the JSON text
- assert( n == 4 ); // all characters consumed
- n = p.write( "3,4]" ); // parse the rest of the JSON text
- assert( n == 4 ); // all characters consumed
- value jv = p.release(); // take ownership of the value
- @endcode
- @note
- To indicate there are no more character buffers,
- such as when @ref done returns `false` after
- writing, call @ref finish.
- @par Complexity
- Linear in `size`.
- @par Exception Safety
- Basic guarantee.
- Calls to `memory_resource::allocate` may throw.
- Upon error or exception, subsequent calls will
- fail until @ref reset is called to parse a new JSON text.
- @return The number of characters consumed from
- the buffer.
- @param s The character string to parse.
- @param ec Set to the error, if any occurred.
- */
- /** @{ */
- std::size_t
- write(
- string_view s,
- system::error_code& ec)
- {
- return write(
- s.data(), s.size(), ec);
- }
- std::size_t
- write(
- string_view s,
- std::error_code& ec)
- {
- return write(
- s.data(), s.size(), ec);
- }
- /** @} */
- /** Parse a buffer containing all or part of a complete JSON text.
- This function parses a all or part of a JSON text
- contained in the specified character buffer. The
- entire buffer must be consumed; if there are
- additional characters past the end of the complete
- JSON text, the parse fails and an error is returned.
- @par Example
- @code
- stream_parser p; // construct a parser
- std::size_t n; // number of characters used
- n = p.write( "[1,2" ); // parse some of the JSON text
- assert( n == 4 ); // all characters consumed
- n = p.write( "3,4]" ); // parse the rest of the JSON text
- assert( n == 4 ); // all characters consumed
- value jv = p.release(); // take ownership of the value
- @endcode
- @note
- To indicate there are no more character buffers,
- such as when @ref done returns `false` after
- writing, call @ref finish.
- @par Complexity
- Linear in `size`.
- @par Exception Safety
- Basic guarantee.
- Calls to `memory_resource::allocate` may throw.
- Upon error or exception, subsequent calls will
- fail until @ref reset is called to parse a new JSON text.
- @return The number of characters consumed from
- the buffer.
- @param s The character string to parse.
- @throw `boost::system::system_error` Thrown on error.
- */
- std::size_t
- write(
- string_view s)
- {
- return write(
- s.data(), s.size());
- }
- /** Indicate the end of JSON input.
- This function is used to indicate that there
- are no more character buffers in the current
- JSON text being parsed. If the resulting JSON text is
- incomplete, the error is set to indicate a
- parsing failure.
- @par Example
- In the code below, @ref finish is called to
- indicate there are no more digits in the
- resulting number:
- @code
- stream_parser p; // construct a parser
- p.write( "3." ); // write the first part of the number
- p.write( "14" ); // write the second part of the number
- assert( ! p.done() ); // there could be more digits
- p.finish(); // indicate the end of the JSON input
- assert( p.done() ); // now we are finished
- value jv = p.release(); // take ownership of the value
- @endcode
- @par Complexity
- Constant.
- @par Exception Safety
- Basic guarantee.
- Calls to `memory_resource::allocate` may throw.
- Upon error or exception, subsequent calls will
- fail until @ref reset is called to parse a new JSON text.
- @param ec Set to the error, if any occurred.
- */
- /** @{ */
- BOOST_JSON_DECL
- void
- finish(system::error_code& ec);
- BOOST_JSON_DECL
- void
- finish(std::error_code& ec);
- /** @} */
- /** Indicate the end of JSON input.
- This function is used to indicate that there
- are no more character buffers in the current
- JSON text being parsed. If the resulting JSON text is
- incomplete, the error is set to indicate a
- parsing failure.
- @par Example
- In the code below, @ref finish is called to
- indicate there are no more digits in the
- resulting number:
- @code
- stream_parser p; // construct a parser
- p.write( "3." ); // write the first part of the number
- p.write( "14" ); // write the second part of the number
- assert( ! p.done() ); // there could be more digits
- p.finish(); // indicate the end of the JSON input
- assert( p.done() ); // now we are finished
- value jv = p.release(); // take ownership of the value
- @endcode
- @par Complexity
- Constant.
- @par Exception Safety
- Basic guarantee.
- Calls to `memory_resource::allocate` may throw.
- Upon error or exception, subsequent calls will
- fail until @ref reset is called to parse a new JSON text.
- @throw `boost::system::system_error` Thrown on error.
- */
- BOOST_JSON_DECL
- void
- finish();
- /** Return the parsed JSON as a @ref value.
- This returns the parsed value, or throws
- an exception if the parsing is incomplete or
- failed. It is necessary to call @ref reset
- after calling this function in order to parse
- another JSON text.
- @par Effects
- @code
- if( ! this->done() )
- this->finish();
- @endcode
- @note
- @par Complexity
- Constant.
- @return The parsed value. Ownership of this
- value is transferred to the caller.
- @throw `boost::system::system_error` Thrown on failure.
- */
- BOOST_JSON_DECL
- value
- release();
- };
- } // namespace json
- } // namespace boost
- #endif
|