SAX-style JSON parser. Use Reader for UTF8 encoding and default allocator. More...
#include <fwd.h>
Classes | |
struct | ClearStackOnExit |
class | NumberStream |
class | NumberStream< InputStream, false, false > |
class | NumberStream< InputStream, true, false > |
class | NumberStream< InputStream, true, true > |
class | StackStream |
Public Types | |
typedef SourceEncoding::Ch | Ch |
SourceEncoding character type. More... | |
Public Member Functions | |
GenericReader (StackAllocator *stackAllocator=0, size_t stackCapacity=kDefaultStackCapacity) | |
Constructor. More... | |
template<unsigned parseFlags, typename InputStream , typename Handler > | |
ParseResult | Parse (InputStream &is, Handler &handler) |
Parse JSON text. More... | |
template<typename InputStream , typename Handler > | |
ParseResult | Parse (InputStream &is, Handler &handler) |
Parse JSON text (with kParseDefaultFlags) More... | |
void | IterativeParseInit () |
Initialize JSON text token-by-token parsing. More... | |
template<unsigned parseFlags, typename InputStream , typename Handler > | |
bool | IterativeParseNext (InputStream &is, Handler &handler) |
Parse one token from JSON text. More... | |
RAPIDJSON_FORCEINLINE bool | IterativeParseComplete () const |
Check if token-by-token parsing JSON text is complete. More... | |
bool | HasParseError () const |
Whether a parse error has occurred in the last parsing. More... | |
ParseErrorCode | GetParseErrorCode () const |
Get the ParseErrorCode of last parsing. More... | |
size_t | GetErrorOffset () const |
Get the position of last parsing error in input, 0 otherwise. More... | |
Protected Member Functions | |
void | SetParseError (ParseErrorCode code, size_t offset) |
Private Member Functions | |
GenericReader (const GenericReader &) | |
GenericReader & | operator= (const GenericReader &) |
void | ClearStack () |
template<unsigned parseFlags, typename InputStream > | |
void | SkipWhitespaceAndComments (InputStream &is) |
template<unsigned parseFlags, typename InputStream , typename Handler > | |
void | ParseObject (InputStream &is, Handler &handler) |
template<unsigned parseFlags, typename InputStream , typename Handler > | |
void | ParseArray (InputStream &is, Handler &handler) |
template<unsigned parseFlags, typename InputStream , typename Handler > | |
void | ParseNull (InputStream &is, Handler &handler) |
template<unsigned parseFlags, typename InputStream , typename Handler > | |
void | ParseTrue (InputStream &is, Handler &handler) |
template<unsigned parseFlags, typename InputStream , typename Handler > | |
void | ParseFalse (InputStream &is, Handler &handler) |
template<typename InputStream > | |
unsigned | ParseHex4 (InputStream &is, size_t escapeOffset) |
template<unsigned parseFlags, typename InputStream , typename Handler > | |
void | ParseString (InputStream &is, Handler &handler, bool isKey=false) |
template<unsigned parseFlags, typename SEncoding , typename TEncoding , typename InputStream , typename OutputStream > | |
RAPIDJSON_FORCEINLINE void | ParseStringToStream (InputStream &is, OutputStream &os) |
template<unsigned parseFlags, typename InputStream , typename Handler > | |
void | ParseNumber (InputStream &is, Handler &handler) |
template<unsigned parseFlags, typename InputStream , typename Handler > | |
void | ParseValue (InputStream &is, Handler &handler) |
RAPIDJSON_FORCEINLINE Token | Tokenize (Ch c) const |
RAPIDJSON_FORCEINLINE IterativeParsingState | Predict (IterativeParsingState state, Token token) const |
template<unsigned parseFlags, typename InputStream , typename Handler > | |
RAPIDJSON_FORCEINLINE IterativeParsingState | Transit (IterativeParsingState src, Token token, IterativeParsingState dst, InputStream &is, Handler &handler) |
template<typename InputStream > | |
void | HandleError (IterativeParsingState src, InputStream &is) |
RAPIDJSON_FORCEINLINE bool | IsIterativeParsingDelimiterState (IterativeParsingState s) const |
RAPIDJSON_FORCEINLINE bool | IsIterativeParsingCompleteState (IterativeParsingState s) const |
template<unsigned parseFlags, typename InputStream , typename Handler > | |
ParseResult | IterativeParse (InputStream &is, Handler &handler) |
Static Private Member Functions | |
template<typename InputStream > | |
static RAPIDJSON_FORCEINLINE bool | Consume (InputStream &is, typename InputStream::Ch expect) |
template<typename InputStream , typename OutputStream > | |
static RAPIDJSON_FORCEINLINE void | ScanCopyUnescapedString (InputStream &, OutputStream &) |
Private Attributes | |
internal::Stack< StackAllocator > | stack_ |
A stack for storing decoded string temporarily during non-destructive parsing. More... | |
ParseResult | parseResult_ |
IterativeParsingState | state_ |
Static Private Attributes | |
static const size_t | kDefaultStackCapacity = 256 |
Default stack capacity in bytes for storing a single decoded string. More... | |
SAX-style JSON parser. Use Reader for UTF8 encoding and default allocator.
GenericReader parses JSON text from a stream, and send events synchronously to an object implementing Handler concept.
It needs to allocate a stack for storing a single decoded string during non-destructive parsing.
For in-situ parsing, the decoded string is directly written to the source text string, no temporary buffer is required.
A GenericReader object can be reused for parsing multiple JSON text.
SourceEncoding | Encoding of the input stream. |
TargetEncoding | Encoding of the parse output. |
StackAllocator | Allocator type for stack. |
typedef SourceEncoding::Ch GenericReader< SourceEncoding, TargetEncoding, StackAllocator >::Ch |
|
private |
Definition at line 1754 of file reader.h.
|
private |
Enumerator | |
---|---|
LeftBracketToken | |
RightBracketToken | |
LeftCurlyBracketToken | |
RightCurlyBracketToken | |
CommaToken | |
ColonToken | |
StringToken | |
FalseToken | |
TrueToken | |
NullToken | |
NumberToken | |
kTokenCount |
Definition at line 1782 of file reader.h.
|
inline |
Constructor.
stackAllocator | Optional allocator for allocating stack memory. (Only use for non-destructive parsing) |
stackCapacity | stack capacity in bytes for storing a single decoded string. (Only use for non-destructive parsing) |
Definition at line 545 of file reader.h.
|
private |
|
inlineprivate |
Definition at line 696 of file reader.h.
|
inlinestaticprivate |
Definition at line 893 of file reader.h.
|
inline |
Get the position of last parsing error in input, 0 otherwise.
Definition at line 686 of file reader.h.
|
inline |
|
inlineprivate |
Definition at line 2147 of file reader.h.
|
inline |
|
inlineprivate |
|
inlineprivate |
|
inlineprivate |
Definition at line 2176 of file reader.h.
|
inline |
Check if token-by-token parsing JSON text is complete.
Definition at line 675 of file reader.h.
|
inline |
|
inline |
Parse one token from JSON text.
InputStream | Type of input stream, implementing Stream concept |
Handler | Type of handler, implementing Handler concept. |
is | Input stream to be parsed. |
handler | The handler to receive events. |
Definition at line 618 of file reader.h.
|
private |
|
inline |
Parse JSON text.
parseFlags | Combination of ParseFlag. |
InputStream | Type of input stream, implementing Stream concept. |
Handler | Type of handler, implementing Handler concept. |
is | Input stream to be parsed. |
handler | The handler to receive events. |
Definition at line 557 of file reader.h.
|
inline |
Parse JSON text (with kParseDefaultFlags)
InputStream | Type of input stream, implementing Stream concept |
Handler | Type of handler, implementing Handler concept. |
is | Input stream to be parsed. |
handler | The handler to receive events. |
Definition at line 598 of file reader.h.
|
inlineprivate |
Definition at line 806 of file reader.h.
|
inlineprivate |
Definition at line 880 of file reader.h.
|
inlineprivate |
Definition at line 904 of file reader.h.
|
inlineprivate |
Definition at line 854 of file reader.h.
|
inlineprivate |
Definition at line 1454 of file reader.h.
|
inlineprivate |
Definition at line 738 of file reader.h.
|
inlineprivate |
Definition at line 957 of file reader.h.
|
inlineprivate |
Definition at line 989 of file reader.h.
|
inlineprivate |
Definition at line 867 of file reader.h.
|
inlineprivate |
|
inlineprivate |
Definition at line 1828 of file reader.h.
|
inlinestaticprivate |
|
inlineprotected |
Definition at line 689 of file reader.h.
|
inlineprivate |
Definition at line 709 of file reader.h.
|
inlineprivate |
Definition at line 1801 of file reader.h.
|
inlineprivate |
Definition at line 1995 of file reader.h.
|
staticprivate |
|
private |
|
private |
|
private |