2022-07-20 13:38:07 +03:00
// __ _____ _____ _____
// __| | __| | | | JSON for Modern C++
2023-11-29 00:36:31 +03:00
// | | |__ | | | | | | version 3.11.3
2022-07-20 13:38:07 +03:00
// |_____|_____|_____|_|___| https://github.com/nlohmann/json
//
2023-11-26 17:51:19 +03:00
// SPDX-FileCopyrightText: 2013-2023 Niels Lohmann <https://nlohmann.me>
2022-07-20 13:38:07 +03:00
// SPDX-License-Identifier: MIT
2018-01-10 12:18:31 +03:00
# pragma once
2017-08-14 18:02:40 +03:00
2023-11-29 17:02:51 +03:00
# include <cmath> // isfinite
# include <cstdint> // uint8_t
# include <functional> // function
# include <string> // string
# include <utility> // move
# include <vector> // vector
2017-08-14 18:02:40 +03:00
2018-01-29 13:21:11 +03:00
# include <nlohmann/detail/exceptions.hpp>
# include <nlohmann/detail/input/input_adapters.hpp>
2018-02-26 22:08:12 +03:00
# include <nlohmann/detail/input/json_sax.hpp>
2018-01-29 13:21:11 +03:00
# include <nlohmann/detail/input/lexer.hpp>
2019-03-17 14:01:49 +03:00
# include <nlohmann/detail/macro_scope.hpp>
# include <nlohmann/detail/meta/is_sax.hpp>
2022-04-12 15:18:16 +03:00
# include <nlohmann/detail/string_concat.hpp>
2018-01-29 13:21:11 +03:00
# include <nlohmann/detail/value_t.hpp>
2017-08-14 18:02:40 +03:00
2022-07-30 22:59:13 +03:00
NLOHMANN_JSON_NAMESPACE_BEGIN
2023-11-29 17:02:51 +03:00
namespace detail {
2017-08-14 18:02:40 +03:00
////////////
// parser //
////////////
2021-08-08 14:24:17 +03:00
enum class parse_event_t : std : : uint8_t
2020-02-19 18:32:49 +03:00
{
/// the parser read `{` and started to process a JSON object
object_start ,
/// the parser read `}` and finished processing a JSON object
object_end ,
/// the parser read `[` and started to process a JSON array
array_start ,
/// the parser read `]` and finished processing a JSON array
array_end ,
/// the parser read a key of a value in an object
key ,
/// the parser finished reading a JSON value
value
} ;
template < typename BasicJsonType >
using parser_callback_t =
2021-03-24 09:15:18 +03:00
std : : function < bool ( int /*depth*/ , parse_event_t /*event*/ , BasicJsonType & /*parsed*/ ) > ;
2020-02-19 18:32:49 +03:00
2017-08-14 18:02:40 +03:00
/*!
@ brief syntax analysis
2020-01-15 19:40:03 +03:00
This class implements a recursive descent parser .
2017-08-14 18:02:40 +03:00
*/
2020-02-19 22:59:31 +03:00
template < typename BasicJsonType , typename InputAdapterType >
2017-08-14 18:02:40 +03:00
class parser
{
using number_integer_t = typename BasicJsonType : : number_integer_t ;
using number_unsigned_t = typename BasicJsonType : : number_unsigned_t ;
using number_float_t = typename BasicJsonType : : number_float_t ;
2018-03-12 21:15:11 +03:00
using string_t = typename BasicJsonType : : string_t ;
2020-02-19 18:32:49 +03:00
using lexer_t = lexer < BasicJsonType , InputAdapterType > ;
2017-08-14 18:02:40 +03:00
using token_type = typename lexer_t : : token_type ;
public :
/// a parser reading from an input adapter
2020-02-19 22:59:31 +03:00
explicit parser ( InputAdapterType & & adapter ,
2020-02-19 18:32:49 +03:00
const parser_callback_t < BasicJsonType > cb = nullptr ,
2020-06-17 23:03:14 +03:00
const bool allow_exceptions_ = true ,
const bool skip_comments = false )
2023-11-29 17:02:51 +03:00
: callback ( cb )
, m_lexer ( std : : move ( adapter ) , skip_comments )
, allow_exceptions ( allow_exceptions_ )
2018-03-06 20:17:07 +03:00
{
// read first token
get_token ( ) ;
}
2018-02-24 20:04:07 +03:00
2017-08-14 18:02:40 +03:00
/*!
@ brief public parser interface
@ param [ in ] strict whether to expect the last token to be EOF
@ param [ in , out ] result parsed JSON value
@ throw parse_error .101 in case of an unexpected token
@ throw parse_error .102 if to_unicode fails or surrogate error
@ throw parse_error .103 if to_unicode fails
*/
void parse ( const bool strict , BasicJsonType & result )
{
2018-03-06 20:17:07 +03:00
if ( callback )
{
2018-03-18 17:13:53 +03:00
json_sax_dom_callback_parser < BasicJsonType > sdp ( result , callback , allow_exceptions ) ;
sax_parse_internal ( & sdp ) ;
// in strict mode, input must be completely read
2020-06-03 15:20:36 +03:00
if ( strict & & ( get_token ( ) ! = token_type : : end_of_input ) )
2018-03-18 17:13:53 +03:00
{
sdp . parse_error ( m_lexer . get_position ( ) ,
m_lexer . get_token_string ( ) ,
2023-11-29 17:02:51 +03:00
parse_error : : create ( 101 , m_lexer . get_position ( ) , exception_message ( token_type : : end_of_input , " value " ) , nullptr ) ) ;
2018-03-18 17:13:53 +03:00
}
// in case of an error, return discarded value
if ( sdp . is_errored ( ) )
{
result = value_t : : discarded ;
return ;
}
2017-08-14 18:02:40 +03:00
2018-03-06 20:17:07 +03:00
// set top-level value to null if it was discarded by the callback
// function
if ( result . is_discarded ( ) )
{
result = nullptr ;
}
2017-08-14 18:02:40 +03:00
}
2018-03-06 20:17:07 +03:00
else
2017-08-14 18:02:40 +03:00
{
2018-03-06 20:17:07 +03:00
json_sax_dom_parser < BasicJsonType > sdp ( result , allow_exceptions ) ;
sax_parse_internal ( & sdp ) ;
// in strict mode, input must be completely read
2020-06-03 15:20:36 +03:00
if ( strict & & ( get_token ( ) ! = token_type : : end_of_input ) )
2018-03-06 20:17:07 +03:00
{
sdp . parse_error ( m_lexer . get_position ( ) ,
m_lexer . get_token_string ( ) ,
2022-04-12 15:18:16 +03:00
parse_error : : create ( 101 , m_lexer . get_position ( ) , exception_message ( token_type : : end_of_input , " value " ) , nullptr ) ) ;
2018-03-06 20:17:07 +03:00
}
// in case of an error, return discarded value
if ( sdp . is_errored ( ) )
{
result = value_t : : discarded ;
return ;
}
2017-08-14 18:02:40 +03:00
}
2021-01-11 00:40:50 +03:00
result . assert_invariant ( ) ;
2017-08-14 18:02:40 +03:00
}
/*!
@ brief public accept interface
@ param [ in ] strict whether to expect the last token to be EOF
@ return whether the input is a proper JSON text
*/
bool accept ( const bool strict = true )
{
2018-03-08 00:40:48 +03:00
json_sax_acceptor < BasicJsonType > sax_acceptor ;
2018-03-21 00:39:08 +03:00
return sax_parse ( & sax_acceptor , strict ) ;
}
2020-06-03 15:20:36 +03:00
template < typename SAX >
2019-07-01 23:37:30 +03:00
JSON_HEDLEY_NON_NULL ( 2 )
2018-07-02 11:14:37 +03:00
bool sax_parse ( SAX * sax , const bool strict = true )
2018-03-21 00:39:08 +03:00
{
2023-11-29 17:02:51 +03:00
( void ) detail : : is_sax_static_asserts < SAX , BasicJsonType > { } ;
2018-03-21 00:39:08 +03:00
const bool result = sax_parse_internal ( sax ) ;
2018-03-08 00:40:48 +03:00
2018-03-21 00:39:08 +03:00
// strict mode: next byte must be EOF
2020-06-03 15:20:36 +03:00
if ( result & & strict & & ( get_token ( ) ! = token_type : : end_of_input ) )
2017-08-14 18:02:40 +03:00
{
2018-03-21 00:39:08 +03:00
return sax - > parse_error ( m_lexer . get_position ( ) ,
m_lexer . get_token_string ( ) ,
2022-04-12 15:18:16 +03:00
parse_error : : create ( 101 , m_lexer . get_position ( ) , exception_message ( token_type : : end_of_input , " value " ) , nullptr ) ) ;
2017-08-14 18:02:40 +03:00
}
2018-03-21 00:39:08 +03:00
return result ;
2018-02-24 20:04:07 +03:00
}
2017-08-14 18:02:40 +03:00
private :
2020-06-03 15:20:36 +03:00
template < typename SAX >
2019-07-01 23:37:30 +03:00
JSON_HEDLEY_NON_NULL ( 2 )
2018-07-02 11:14:37 +03:00
bool sax_parse_internal ( SAX * sax )
2018-02-24 20:04:07 +03:00
{
2018-10-28 16:20:20 +03:00
// stack to remember the hierarchy of structured values we are parsing
2018-03-29 19:45:43 +03:00
// true = array; false = object
std : : vector < bool > states ;
2018-03-17 16:46:50 +03:00
// value to avoid a goto (see comment where set to true)
bool skip_to_state_evaluation = false ;
while ( true )
2018-02-24 20:04:07 +03:00
{
2020-06-03 15:20:36 +03:00
if ( ! skip_to_state_evaluation )
2018-02-24 20:04:07 +03:00
{
2018-03-17 16:46:50 +03:00
// invariant: get_token() was called before each iteration
switch ( last_token )
2018-02-24 20:04:07 +03:00
{
2018-03-17 16:46:50 +03:00
case token_type : : begin_object :
{
2021-12-29 11:47:05 +03:00
if ( JSON_HEDLEY_UNLIKELY ( ! sax - > start_object ( static_cast < std : : size_t > ( - 1 ) ) ) )
2018-03-17 16:46:50 +03:00
{
return false ;
}
2018-02-24 20:04:07 +03:00
2018-03-17 16:46:50 +03:00
// closing } -> we are done
2018-03-30 01:38:18 +03:00
if ( get_token ( ) = = token_type : : end_object )
2018-03-17 16:46:50 +03:00
{
2020-06-03 15:20:36 +03:00
if ( JSON_HEDLEY_UNLIKELY ( ! sax - > end_object ( ) ) )
2018-03-17 16:46:50 +03:00
{
return false ;
}
break ;
}
2018-02-24 20:04:07 +03:00
2018-03-17 16:46:50 +03:00
// parse key
2019-07-01 23:37:30 +03:00
if ( JSON_HEDLEY_UNLIKELY ( last_token ! = token_type : : value_string ) )
2018-03-17 16:46:50 +03:00
{
return sax - > parse_error ( m_lexer . get_position ( ) ,
m_lexer . get_token_string ( ) ,
2022-04-12 15:18:16 +03:00
parse_error : : create ( 101 , m_lexer . get_position ( ) , exception_message ( token_type : : value_string , " object key " ) , nullptr ) ) ;
2018-03-17 16:46:50 +03:00
}
2020-06-03 15:20:36 +03:00
if ( JSON_HEDLEY_UNLIKELY ( ! sax - > key ( m_lexer . get_string ( ) ) ) )
2018-03-17 16:46:50 +03:00
{
2018-10-07 20:07:58 +03:00
return false ;
2018-03-17 16:46:50 +03:00
}
// parse separator (:)
2019-07-01 23:37:30 +03:00
if ( JSON_HEDLEY_UNLIKELY ( get_token ( ) ! = token_type : : name_separator ) )
2018-03-17 16:46:50 +03:00
{
return sax - > parse_error ( m_lexer . get_position ( ) ,
m_lexer . get_token_string ( ) ,
2022-04-12 15:18:16 +03:00
parse_error : : create ( 101 , m_lexer . get_position ( ) , exception_message ( token_type : : name_separator , " object separator " ) , nullptr ) ) ;
2018-03-17 16:46:50 +03:00
}
// remember we are now inside an object
2018-03-29 19:45:43 +03:00
states . push_back ( false ) ;
2018-03-17 16:46:50 +03:00
// parse values
get_token ( ) ;
continue ;
2018-02-25 19:10:30 +03:00
}
2018-03-17 16:46:50 +03:00
case token_type : : begin_array :
2018-02-24 20:04:07 +03:00
{
2021-12-29 11:47:05 +03:00
if ( JSON_HEDLEY_UNLIKELY ( ! sax - > start_array ( static_cast < std : : size_t > ( - 1 ) ) ) )
2018-02-24 20:04:07 +03:00
{
return false ;
}
2018-03-17 16:46:50 +03:00
// closing ] -> we are done
2018-03-30 01:38:18 +03:00
if ( get_token ( ) = = token_type : : end_array )
2018-03-17 16:46:50 +03:00
{
2020-06-03 15:20:36 +03:00
if ( JSON_HEDLEY_UNLIKELY ( ! sax - > end_array ( ) ) )
2018-03-17 16:46:50 +03:00
{
return false ;
}
break ;
}
// remember we are now inside an array
2018-03-29 19:45:43 +03:00
states . push_back ( true ) ;
2018-03-17 16:46:50 +03:00
// parse values (no need to call get_token)
continue ;
2018-02-24 20:04:07 +03:00
}
2018-03-17 16:46:50 +03:00
case token_type : : value_float :
2018-02-24 20:04:07 +03:00
{
2018-03-17 16:46:50 +03:00
const auto res = m_lexer . get_number_float ( ) ;
2020-06-03 15:20:36 +03:00
if ( JSON_HEDLEY_UNLIKELY ( ! std : : isfinite ( res ) ) )
2018-03-17 16:46:50 +03:00
{
return sax - > parse_error ( m_lexer . get_position ( ) ,
m_lexer . get_token_string ( ) ,
2022-04-12 15:18:16 +03:00
out_of_range : : create ( 406 , concat ( " number overflow parsing ' " , m_lexer . get_token_string ( ) , ' \' ' ) , nullptr ) ) ;
2018-03-17 16:46:50 +03:00
}
2019-03-19 11:17:14 +03:00
2020-06-03 15:20:36 +03:00
if ( JSON_HEDLEY_UNLIKELY ( ! sax - > number_float ( res , m_lexer . get_string ( ) ) ) )
2018-03-17 16:46:50 +03:00
{
2019-03-19 11:17:14 +03:00
return false ;
2018-03-17 16:46:50 +03:00
}
2019-03-19 11:17:14 +03:00
break ;
2018-02-24 20:04:07 +03:00
}
2018-03-17 16:46:50 +03:00
case token_type : : literal_false :
2018-02-24 20:04:07 +03:00
{
2020-06-03 15:20:36 +03:00
if ( JSON_HEDLEY_UNLIKELY ( ! sax - > boolean ( false ) ) )
2018-03-17 16:46:50 +03:00
{
return false ;
}
break ;
2018-02-24 20:04:07 +03:00
}
2018-03-17 16:46:50 +03:00
case token_type : : literal_null :
2018-02-24 20:04:07 +03:00
{
2020-06-03 15:20:36 +03:00
if ( JSON_HEDLEY_UNLIKELY ( ! sax - > null ( ) ) )
2018-03-17 16:46:50 +03:00
{
return false ;
}
break ;
2018-02-24 20:04:07 +03:00
}
2018-03-17 16:46:50 +03:00
case token_type : : literal_true :
2018-02-24 20:04:07 +03:00
{
2020-06-03 15:20:36 +03:00
if ( JSON_HEDLEY_UNLIKELY ( ! sax - > boolean ( true ) ) )
2018-03-17 16:46:50 +03:00
{
return false ;
}
break ;
2018-02-24 20:04:07 +03:00
}
2018-03-12 00:47:25 +03:00
2018-03-17 16:46:50 +03:00
case token_type : : value_integer :
{
2020-06-03 15:20:36 +03:00
if ( JSON_HEDLEY_UNLIKELY ( ! sax - > number_integer ( m_lexer . get_number_integer ( ) ) ) )
2018-03-17 16:46:50 +03:00
{
return false ;
}
break ;
2018-02-24 20:04:07 +03:00
}
2018-03-17 16:46:50 +03:00
case token_type : : value_string :
2018-02-24 20:04:07 +03:00
{
2020-06-03 15:20:36 +03:00
if ( JSON_HEDLEY_UNLIKELY ( ! sax - > string ( m_lexer . get_string ( ) ) ) )
2018-03-17 16:46:50 +03:00
{
return false ;
}
break ;
2018-02-24 20:04:07 +03:00
}
2018-03-17 16:46:50 +03:00
case token_type : : value_unsigned :
2018-02-24 20:04:07 +03:00
{
2020-06-03 15:20:36 +03:00
if ( JSON_HEDLEY_UNLIKELY ( ! sax - > number_unsigned ( m_lexer . get_number_unsigned ( ) ) ) )
2018-03-17 16:46:50 +03:00
{
return false ;
}
break ;
2018-02-24 20:04:07 +03:00
}
2018-03-17 16:46:50 +03:00
case token_type : : parse_error :
2018-02-24 20:04:07 +03:00
{
2018-03-17 16:46:50 +03:00
// using "uninitialized" to avoid "expected" message
return sax - > parse_error ( m_lexer . get_position ( ) ,
m_lexer . get_token_string ( ) ,
2022-04-12 15:18:16 +03:00
parse_error : : create ( 101 , m_lexer . get_position ( ) , exception_message ( token_type : : uninitialized , " value " ) , nullptr ) ) ;
2018-02-24 20:04:07 +03:00
}
2023-10-31 22:17:43 +03:00
case token_type : : end_of_input :
{
if ( JSON_HEDLEY_UNLIKELY ( m_lexer . get_position ( ) . chars_read_total = = 1 ) )
{
return sax - > parse_error ( m_lexer . get_position ( ) ,
m_lexer . get_token_string ( ) ,
2023-11-29 17:02:51 +03:00
parse_error : : create ( 101 , m_lexer . get_position ( ) , " attempting to parse an empty input; check that your input string or stream contains the expected JSON " , nullptr ) ) ;
2023-10-31 22:17:43 +03:00
}
2018-03-17 16:46:50 +03:00
2023-10-31 22:17:43 +03:00
return sax - > parse_error ( m_lexer . get_position ( ) ,
m_lexer . get_token_string ( ) ,
parse_error : : create ( 101 , m_lexer . get_position ( ) , exception_message ( token_type : : literal_or_value , " value " ) , nullptr ) ) ;
}
2021-08-12 17:33:41 +03:00
case token_type : : uninitialized :
case token_type : : end_array :
case token_type : : end_object :
case token_type : : name_separator :
case token_type : : value_separator :
case token_type : : literal_or_value :
2023-11-29 17:02:51 +03:00
default : // the last token was unexpected
2018-02-24 20:04:07 +03:00
{
2018-02-25 19:10:30 +03:00
return sax - > parse_error ( m_lexer . get_position ( ) ,
2018-03-05 18:46:35 +03:00
m_lexer . get_token_string ( ) ,
2022-04-12 15:18:16 +03:00
parse_error : : create ( 101 , m_lexer . get_position ( ) , exception_message ( token_type : : literal_or_value , " value " ) , nullptr ) ) ;
2018-02-24 20:04:07 +03:00
}
}
}
2018-03-17 16:46:50 +03:00
else
2018-02-24 20:04:07 +03:00
{
2018-03-17 16:46:50 +03:00
skip_to_state_evaluation = false ;
2018-02-24 20:04:07 +03:00
}
2018-03-17 16:46:50 +03:00
// we reached this line after we successfully parsed a value
if ( states . empty ( ) )
2018-02-24 20:04:07 +03:00
{
2018-10-28 16:20:20 +03:00
// empty stack: we reached the end of the hierarchy: done
2018-03-17 16:46:50 +03:00
return true ;
2018-02-24 20:04:07 +03:00
}
2019-03-19 11:17:14 +03:00
if ( states . back ( ) ) // array
2018-02-24 20:04:07 +03:00
{
2019-03-19 11:17:14 +03:00
// comma -> next value
if ( get_token ( ) = = token_type : : value_separator )
{
// parse a new value
get_token ( ) ;
continue ;
}
// closing ]
2019-07-01 23:37:30 +03:00
if ( JSON_HEDLEY_LIKELY ( last_token = = token_type : : end_array ) )
2018-03-17 16:46:50 +03:00
{
2020-06-03 15:20:36 +03:00
if ( JSON_HEDLEY_UNLIKELY ( ! sax - > end_array ( ) ) )
2018-03-17 16:46:50 +03:00
{
2019-03-19 11:17:14 +03:00
return false ;
2018-03-29 19:45:43 +03:00
}
2019-03-19 11:17:14 +03:00
// We are done with this array. Before we can parse a
// new value, we need to evaluate the new state first.
// By setting skip_to_state_evaluation to false, we
// are effectively jumping to the beginning of this if.
2020-07-11 15:04:40 +03:00
JSON_ASSERT ( ! states . empty ( ) ) ;
2019-03-19 11:17:14 +03:00
states . pop_back ( ) ;
skip_to_state_evaluation = true ;
continue ;
}
2018-02-24 20:04:07 +03:00
2019-03-19 11:17:14 +03:00
return sax - > parse_error ( m_lexer . get_position ( ) ,
m_lexer . get_token_string ( ) ,
2022-04-12 15:18:16 +03:00
parse_error : : create ( 101 , m_lexer . get_position ( ) , exception_message ( token_type : : end_array , " array " ) , nullptr ) ) ;
2019-03-19 11:17:14 +03:00
}
2018-02-24 20:04:07 +03:00
2021-01-27 14:54:46 +03:00
// states.back() is false -> object
2019-03-19 11:17:14 +03:00
2021-02-07 19:46:11 +03:00
// comma -> next value
if ( get_token ( ) = = token_type : : value_separator )
{
// parse key
if ( JSON_HEDLEY_UNLIKELY ( get_token ( ) ! = token_type : : value_string ) )
2019-03-19 11:17:14 +03:00
{
2021-02-07 19:46:11 +03:00
return sax - > parse_error ( m_lexer . get_position ( ) ,
m_lexer . get_token_string ( ) ,
2022-04-12 15:18:16 +03:00
parse_error : : create ( 101 , m_lexer . get_position ( ) , exception_message ( token_type : : value_string , " object key " ) , nullptr ) ) ;
2021-01-27 14:54:46 +03:00
}
2018-02-24 20:04:07 +03:00
2021-01-27 14:54:46 +03:00
if ( JSON_HEDLEY_UNLIKELY ( ! sax - > key ( m_lexer . get_string ( ) ) ) )
{
return false ;
2019-03-19 11:17:14 +03:00
}
2021-02-07 19:46:11 +03:00
// parse separator (:)
if ( JSON_HEDLEY_UNLIKELY ( get_token ( ) ! = token_type : : name_separator ) )
{
return sax - > parse_error ( m_lexer . get_position ( ) ,
m_lexer . get_token_string ( ) ,
2022-04-12 15:18:16 +03:00
parse_error : : create ( 101 , m_lexer . get_position ( ) , exception_message ( token_type : : name_separator , " object separator " ) , nullptr ) ) ;
2019-03-19 11:17:14 +03:00
}
2021-01-27 14:54:46 +03:00
// parse values
get_token ( ) ;
continue ;
}
2019-03-19 11:17:14 +03:00
2021-01-27 14:54:46 +03:00
// closing }
if ( JSON_HEDLEY_LIKELY ( last_token = = token_type : : end_object ) )
{
if ( JSON_HEDLEY_UNLIKELY ( ! sax - > end_object ( ) ) )
{
return false ;
2018-03-17 16:46:50 +03:00
}
2019-03-19 11:17:14 +03:00
2021-01-27 14:54:46 +03:00
// We are done with this object. Before we can parse a
// new value, we need to evaluate the new state first.
// By setting skip_to_state_evaluation to false, we
// are effectively jumping to the beginning of this if.
JSON_ASSERT ( ! states . empty ( ) ) ;
states . pop_back ( ) ;
skip_to_state_evaluation = true ;
continue ;
2018-02-24 20:04:07 +03:00
}
2021-01-27 14:54:46 +03:00
2021-02-07 19:46:11 +03:00
return sax - > parse_error ( m_lexer . get_position ( ) ,
m_lexer . get_token_string ( ) ,
2022-04-12 15:18:16 +03:00
parse_error : : create ( 101 , m_lexer . get_position ( ) , exception_message ( token_type : : end_object , " object " ) , nullptr ) ) ;
2018-02-24 20:04:07 +03:00
}
}
2017-08-14 18:02:40 +03:00
/// get next token from lexer
token_type get_token ( )
{
2019-03-18 15:53:48 +03:00
return last_token = m_lexer . scan ( ) ;
2017-08-14 18:02:40 +03:00
}
2018-10-07 23:39:17 +03:00
std : : string exception_message ( const token_type expected , const std : : string & context )
2017-08-14 18:02:40 +03:00
{
2018-10-07 23:39:17 +03:00
std : : string error_msg = " syntax error " ;
2020-06-03 15:20:36 +03:00
if ( ! context . empty ( ) )
2018-10-07 23:39:17 +03:00
{
2022-04-12 15:18:16 +03:00
error_msg + = concat ( " while parsing " , context , ' ' ) ;
2018-10-07 23:39:17 +03:00
}
error_msg + = " - " ;
2017-08-14 18:02:40 +03:00
if ( last_token = = token_type : : parse_error )
{
2023-11-29 17:02:51 +03:00
error_msg + = concat ( m_lexer . get_error_message ( ) , " ; last read: ' " , m_lexer . get_token_string ( ) , ' \' ' ) ;
2017-08-14 18:02:40 +03:00
}
else
{
2022-04-12 15:18:16 +03:00
error_msg + = concat ( " unexpected " , lexer_t : : token_type_name ( last_token ) ) ;
2017-08-14 18:02:40 +03:00
}
if ( expected ! = token_type : : uninitialized )
{
2022-04-12 15:18:16 +03:00
error_msg + = concat ( " ; expected " , lexer_t : : token_type_name ( expected ) ) ;
2017-08-14 18:02:40 +03:00
}
2018-03-05 18:46:35 +03:00
return error_msg ;
2017-08-14 18:02:40 +03:00
}
private :
/// callback function
2020-02-19 18:32:49 +03:00
const parser_callback_t < BasicJsonType > callback = nullptr ;
2017-08-14 18:02:40 +03:00
/// the type of the last read token
token_type last_token = token_type : : uninitialized ;
/// the lexer
lexer_t m_lexer ;
/// whether to throw exceptions in case of errors
const bool allow_exceptions = true ;
} ;
2021-03-24 09:15:18 +03:00
2018-10-07 19:39:18 +03:00
} // namespace detail
2022-07-30 22:59:13 +03:00
NLOHMANN_JSON_NAMESPACE_END