|
| GenericDocument (Allocator *allocator=0, size_t stackCapacity=kDefaultStackCapacity, StackAllocator *stackAllocator=0) |
| Constructor. More...
|
|
| GenericDocument (Type type, Allocator *allocator=0, size_t stackCapacity=kDefaultStackCapacity, StackAllocator *stackAllocator=0) |
| Constructor. More...
|
|
Allocator & | GetAllocator () |
| Get the allocator of this document. More...
|
|
size_t | GetStackCapacity () const |
| Get the capacity of stack in bytes. More...
|
|
GenericDocument & | Swap (GenericDocument &rhs) RAPIDJSON_NOEXCEPT |
| Exchange the contents of this document with those of another. More...
|
|
| ~GenericDocument () |
|
|
template<unsigned parseFlags, typename SourceEncoding , typename InputStream > |
GenericDocument & | ParseStream (InputStream &is) |
| Parse JSON text from an input stream (with Encoding conversion) More...
|
|
template<unsigned parseFlags, typename InputStream > |
GenericDocument & | ParseStream (InputStream &is) |
| Parse JSON text from an input stream. More...
|
|
template<typename InputStream > |
GenericDocument & | ParseStream (InputStream &is) |
| Parse JSON text from an input stream (with kParseDefaultFlags) More...
|
|
|
template<unsigned parseFlags> |
GenericDocument & | ParseInsitu (Ch *str) |
| Parse JSON text from a mutable string. More...
|
|
GenericDocument & | ParseInsitu (Ch *str) |
| Parse JSON text from a mutable string (with kParseDefaultFlags) More...
|
|
|
template<unsigned parseFlags, typename SourceEncoding > |
GenericDocument & | Parse (const Ch *str) |
| Parse JSON text from a read-only string (with Encoding conversion) More...
|
|
template<unsigned parseFlags> |
GenericDocument & | Parse (const Ch *str) |
| Parse JSON text from a read-only string. More...
|
|
GenericDocument & | Parse (const Ch *str) |
| Parse JSON text from a read-only string (with kParseDefaultFlags) More...
|
|
|
bool | HasParseError () const |
| Whether a parse error has occured in the last parsing. More...
|
|
ParseErrorCode | GetParseError () const |
| Get the ParseErrorCode of last parsing. More...
|
|
size_t | GetErrorOffset () const |
| Get the position of last parsing error in input, 0 otherwise. More...
|
|
GenericValue & | operator= (GenericValue &rhs) RAPIDJSON_NOEXCEPT |
| Assignment with move semantics. More...
|
|
GenericValue & | operator= (StringRefType str) RAPIDJSON_NOEXCEPT |
| Assignment of constant string reference (no copy) More...
|
|
| RAPIDJSON_DISABLEIF_RETURN ((internal::IsPointer< T >),(GenericValue &)) operator |
| Assignment with primitive types. More...
|
|
void | SetArrayRaw (GenericValue *values, SizeType count, MemoryPoolAllocator<> &allocator) |
|
void | SetObjectRaw (Member *members, SizeType count, MemoryPoolAllocator<> &allocator) |
| Initialize this value as object with initial data, without calling destructor. More...
|
|
void | SetStringRaw (StringRefType s) RAPIDJSON_NOEXCEPT |
| Initialize this value as constant string, without calling destructor. More...
|
|
void | SetStringRaw (StringRefType s, MemoryPoolAllocator<> &allocator) |
| Initialize this value as copy string with initial data, without calling destructor. More...
|
|
void | RawAssign (GenericValue &rhs) RAPIDJSON_NOEXCEPT |
| Assignment without calling destructor. More...
|
|
bool | StringEqual (const GenericValue< Encoding, SourceAllocator > &rhs) const |
|
| GenericValue () RAPIDJSON_NOEXCEPT |
| Default constructor creates a null value. More...
|
|
| GenericValue (Type type) RAPIDJSON_NOEXCEPT |
| Constructor with JSON value type. More...
|
|
| GenericValue (const GenericValue< Encoding, SourceAllocator > &rhs, MemoryPoolAllocator<> &allocator) |
| Explicit copy constructor (with allocator) More...
|
|
| GenericValue (T b, RAPIDJSON_ENABLEIF((internal::IsSame< T, bool >))) RAPIDJSON_NOEXCEPT |
| Constructor for boolean value. More...
|
|
| GenericValue (int i) RAPIDJSON_NOEXCEPT |
| Constructor for int value. More...
|
|
| GenericValue (unsigned u) RAPIDJSON_NOEXCEPT |
| Constructor for unsigned value. More...
|
|
| GenericValue (int64_t i64) RAPIDJSON_NOEXCEPT |
| Constructor for int64_t value. More...
|
|
| GenericValue (uint64_t u64) RAPIDJSON_NOEXCEPT |
| Constructor for uint64_t value. More...
|
|
| GenericValue (double d) RAPIDJSON_NOEXCEPT |
| Constructor for double value. More...
|
|
| GenericValue (const Ch *s, SizeType length) RAPIDJSON_NOEXCEPT |
| Constructor for constant string (i.e. do not make a copy of string) More...
|
|
| GenericValue (StringRefType s) RAPIDJSON_NOEXCEPT |
| Constructor for constant string (i.e. do not make a copy of string) More...
|
|
| GenericValue (const Ch *s, SizeType length, MemoryPoolAllocator<> &allocator) |
| Constructor for copy-string (i.e. do make a copy of string) More...
|
|
| GenericValue (const Ch *s, MemoryPoolAllocator<> &allocator) |
| Constructor for copy-string (i.e. do make a copy of string) More...
|
|
| ~GenericValue () |
| Destructor. More...
|
|
template<typename Encoding, typename Allocator = MemoryPoolAllocator<>, typename StackAllocator = CrtAllocator>
class GenericDocument< Encoding, Allocator, StackAllocator >
A document for parsing JSON text as DOM.
- Note
- implements Handler concept
- Template Parameters
-
Encoding | Encoding for both parsing and string storage. |
Allocator | Allocator for allocating memory for the DOM |
StackAllocator | Allocator for allocating memory for stack during parsing. |
- Warning
- Although GenericDocument inherits from GenericValue, the API does not provide any virtual functions, especially no virtual destructor. To avoid memory leaks, do not
delete
a GenericDocument object via a pointer to a GenericValue.