rapidjson
A fast JSON parser/generator for C++ with both SAX/DOM style API
|
SAX-style JSON parser. Use Reader for UTF8 encoding and default allocator. More...
#include <reader.h>
Public Types | |
typedef Encoding::Ch | Ch |
Public Member Functions | |
GenericReader (Allocator *allocator=0, size_t stackCapacity=kDefaultStackCapacity) | |
Constructor. | |
template<unsigned parseFlags, typename Stream , typename Handler > | |
bool | Parse (Stream &stream, Handler &handler) |
Parse JSON text. | |
bool | HasParseError () const |
const char * | GetParseError () const |
size_t | GetErrorOffset () const |
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.
|
inline |
Constructor.
allocator | 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) |
|
inline |