|
| | GenericDocument (Type type, Allocator *allocator=0, size_t stackCapacity=kDefaultStackCapacity, StackAllocator *stackAllocator=0) |
| | Constructor.
|
| |
| | GenericDocument (Allocator *allocator=0, size_t stackCapacity=kDefaultStackCapacity, StackAllocator *stackAllocator=0) |
| | Constructor.
|
| |
| GenericDocument & | Swap (GenericDocument &rhs) RAPIDJSON_NOEXCEPT |
| | Exchange the contents of this document with those of another.
|
| |
| template<typename Generator > |
| GenericDocument & | Populate (Generator &g) |
| | Populate this document by a generator which produces SAX events.
|
| |
|
Allocator & | GetAllocator () |
| | Get the allocator of this document.
|
| |
|
size_t | GetStackCapacity () const |
| | Get the capacity of stack in bytes.
|
| |
|
bool | Null () |
| |
|
bool | Bool (bool b) |
| |
|
bool | Int (int i) |
| |
|
bool | Uint (unsigned i) |
| |
|
bool | Int64 (int64_t i) |
| |
|
bool | Uint64 (uint64_t i) |
| |
|
bool | Double (double d) |
| |
|
bool | RawNumber (const Ch *str, SizeType length, bool copy) |
| |
|
bool | String (const Ch *str, SizeType length, bool copy) |
| |
|
bool | StartObject () |
| |
|
bool | Key (const Ch *str, SizeType length, bool copy) |
| |
|
bool | EndObject (SizeType memberCount) |
| |
|
bool | StartArray () |
| |
|
bool | EndArray (SizeType elementCount) |
| |
|
| template<unsigned parseFlags, typename SourceEncoding , typename InputStream > |
| GenericDocument & | ParseStream (InputStream &is) |
| | Parse JSON text from an input stream (with Encoding conversion)
|
| |
| template<unsigned parseFlags, typename InputStream > |
| GenericDocument & | ParseStream (InputStream &is) |
| | Parse JSON text from an input stream.
|
| |
| template<typename InputStream > |
| GenericDocument & | ParseStream (InputStream &is) |
| | Parse JSON text from an input stream (with kParseDefaultFlags)
|
| |
|
| template<unsigned parseFlags> |
| GenericDocument & | ParseInsitu (Ch *str) |
| | Parse JSON text from a mutable string.
|
| |
| GenericDocument & | ParseInsitu (Ch *str) |
| | Parse JSON text from a mutable string (with kParseDefaultFlags)
|
| |
|
| template<unsigned parseFlags, typename SourceEncoding > |
| GenericDocument & | Parse (const typename SourceEncoding::Ch *str) |
| | Parse JSON text from a read-only string (with Encoding conversion)
|
| |
| template<unsigned parseFlags> |
| GenericDocument & | Parse (const Ch *str) |
| | Parse JSON text from a read-only string.
|
| |
| GenericDocument & | Parse (const Ch *str) |
| | Parse JSON text from a read-only string (with kParseDefaultFlags)
|
| |
|
template<unsigned parseFlags, typename SourceEncoding > |
| GenericDocument & | Parse (const typename SourceEncoding::Ch *str, size_t length) |
| |
|
template<unsigned parseFlags> |
| GenericDocument & | Parse (const Ch *str, size_t length) |
| |
|
GenericDocument & | Parse (const Ch *str, size_t length) |
| |
|
|
bool | HasParseError () const |
| | Whether a parse error has occured in the last parsing.
|
| |
|
ParseErrorCode | GetParseError () const |
| | Get the ParseErrorCode of last parsing.
|
| |
|
size_t | GetErrorOffset () const |
| | Get the position of last parsing error in input, 0 otherwise.
|
| |
| | operator ParseResult () const |
| | Implicit conversion to get the last parse result.
|
| |
|
Type | GetType () const |
| |
|
bool | IsNull () const |
| |
|
bool | IsFalse () const |
| |
|
bool | IsTrue () const |
| |
|
bool | IsBool () const |
| |
|
bool | IsObject () const |
| |
|
bool | IsArray () const |
| |
|
bool | IsNumber () const |
| |
|
bool | IsInt () const |
| |
|
bool | IsUint () const |
| |
|
bool | IsInt64 () const |
| |
|
bool | IsUint64 () const |
| |
|
bool | IsDouble () const |
| |
|
bool | IsString () const |
| |
|
bool | IsLosslessDouble () const |
| |
|
bool | IsFloat () const |
| |
|
bool | IsLosslessFloat () const |
| |
|
GenericValue & | SetNull () |
| |
|
bool | GetBool () const |
| | Set boolean value.
|
| |
| GenericValue & | SetBool (bool b) |
| |
| GenericValue & | SetObject () |
| | Set this value as an empty object.
|
| |
|
SizeType | MemberCount () const |
| | Get the number of members in the object.
|
| |
|
bool | ObjectEmpty () const |
| | Check whether the object is empty.
|
| |
| template<typename T > |
| GenericValue & | operator[] (T *name) |
| | Get a value from an object associated with the name.
|
| |
|
template<typename T > |
| const GenericValue & | operator[] (T *name) const |
| |
| template<typename SourceAllocator > |
| GenericValue & | operator[] (const GenericValue< Encoding, SourceAllocator > &name) |
| | Get a value from an object associated with the name.
|
| |
|
template<typename SourceAllocator > |
| const GenericValue & | operator[] (const GenericValue< Encoding, SourceAllocator > &name) const |
| |
| ConstMemberIterator | MemberBegin () const |
| | Const member iterator.
|
| |
| ConstMemberIterator | MemberEnd () const |
| | Const past-the-end member iterator.
|
| |
| MemberIterator | MemberBegin () |
| | Member iterator.
|
| |
| MemberIterator | MemberEnd () |
| | Past-the-end member iterator
|
| |
| bool | HasMember (const Ch *name) const |
| | Check whether a member exists in the object.
|
| |
| template<typename SourceAllocator > |
| bool | HasMember (const GenericValue< Encoding, SourceAllocator > &name) const |
| | Check whether a member exists in the object with GenericValue name.
|
| |
| MemberIterator | FindMember (const Ch *name) |
| | Find member by name.
|
| |
|
ConstMemberIterator | FindMember (const Ch *name) const |
| |
| template<typename SourceAllocator > |
| MemberIterator | FindMember (const GenericValue< Encoding, SourceAllocator > &name) |
| | Find member by name.
|
| |
|
template<typename SourceAllocator > |
| ConstMemberIterator | FindMember (const GenericValue< Encoding, SourceAllocator > &name) const |
| |
| GenericValue & | AddMember (GenericValue &name, GenericValue &value, Allocator &allocator) |
| | Add a member (name-value pair) to the object.
|
| |
| GenericValue & | AddMember (GenericValue &name, StringRefType value, Allocator &allocator) |
| | Add a constant string value as member (name-value pair) to the object.
|
| |
| template<typename T > |
| GenericValue & | AddMember (GenericValue &name, T value, Allocator &allocator) |
| | Add any primitive value as member (name-value pair) to the object.
|
| |
| GenericValue & | AddMember (StringRefType name, GenericValue &value, Allocator &allocator) |
| | Add a member (name-value pair) to the object.
|
| |
| GenericValue & | AddMember (StringRefType name, StringRefType value, Allocator &allocator) |
| | Add a constant string value as member (name-value pair) to the object.
|
| |
| template<typename T > |
| GenericValue & | AddMember (StringRefType name, T value, Allocator &allocator) |
| | Add any primitive value as member (name-value pair) to the object.
|
| |
| void | RemoveAllMembers () |
| | Remove all members in the object.
|
| |
| bool | RemoveMember (const Ch *name) |
| | Remove a member in object by its name.
|
| |
|
template<typename SourceAllocator > |
| bool | RemoveMember (const GenericValue< Encoding, SourceAllocator > &name) |
| |
| MemberIterator | RemoveMember (MemberIterator m) |
| | Remove a member in object by iterator.
|
| |
| MemberIterator | EraseMember (ConstMemberIterator pos) |
| | Remove a member from an object by iterator.
|
| |
| MemberIterator | EraseMember (ConstMemberIterator first, ConstMemberIterator last) |
| | Remove members in the range [first, last) from an object.
|
| |
| bool | EraseMember (const Ch *name) |
| | Erase a member in object by its name.
|
| |
|
template<typename SourceAllocator > |
| bool | EraseMember (const GenericValue< Encoding, SourceAllocator > &name) |
| |
|
Object | GetObject () |
| |
|
ConstObject | GetObject () const |
| |
|
int | GetInt () const |
| |
|
unsigned | GetUint () const |
| |
|
int64_t | GetInt64 () const |
| |
|
uint64_t | GetUint64 () const |
| |
| double | GetDouble () const |
| | Get the value as double type.
|
| |
| float | GetFloat () const |
| | Get the value as float type.
|
| |
|
GenericValue & | SetInt (int i) |
| |
|
GenericValue & | SetUint (unsigned u) |
| |
|
GenericValue & | SetInt64 (int64_t i64) |
| |
|
GenericValue & | SetUint64 (uint64_t u64) |
| |
|
GenericValue & | SetDouble (double d) |
| |
|
GenericValue & | SetFloat (float f) |
| |
|
const Ch * | GetString () const |
| |
| SizeType | GetStringLength () const |
| | Get the length of string.
|
| |
| GenericValue & | SetString (const Ch *s, SizeType length) |
| | Set this value as a string without copying source string.
|
| |
| GenericValue & | SetString (StringRefType s) |
| | Set this value as a string without copying source string.
|
| |
| GenericValue & | SetString (const Ch *s, SizeType length, Allocator &allocator) |
| | Set this value as a string by copying from source string.
|
| |
| GenericValue & | SetString (const Ch *s, Allocator &allocator) |
| | Set this value as a string by copying from source string.
|
| |
| GenericValue & | SetArray () |
| | Set this value as an empty array.
|
| |
|
SizeType | Size () const |
| | Get the number of elements in array.
|
| |
|
SizeType | Capacity () const |
| | Get the capacity of array.
|
| |
|
bool | Empty () const |
| | Check whether the array is empty.
|
| |
| void | Clear () |
| | Remove all elements in the array.
|
| |
| GenericValue & | operator[] (SizeType index) |
| | Get an element from array by index.
|
| |
|
const GenericValue & | operator[] (SizeType index) const |
| |
| ValueIterator | Begin () |
| | Element iterator.
|
| |
| ValueIterator | End () |
| | Past-the-end element iterator
|
| |
| ConstValueIterator | Begin () const |
| | Constant element iterator.
|
| |
| ConstValueIterator | End () const |
| | Constant past-the-end element iterator.
|
| |
| GenericValue & | Reserve (SizeType newCapacity, Allocator &allocator) |
| | Request the array to have enough capacity to store elements.
|
| |
| GenericValue & | PushBack (GenericValue &value, Allocator &allocator) |
| | Append a GenericValue at the end of the array.
|
| |
| GenericValue & | PushBack (StringRefType value, Allocator &allocator) |
| | Append a constant string reference at the end of the array.
|
| |
| template<typename T > |
| GenericValue & | PushBack (T value, Allocator &allocator) |
| | Append a primitive value at the end of the array.
|
| |
| GenericValue & | PopBack () |
| | Remove the last element in the array.
|
| |
| ValueIterator | Erase (ConstValueIterator pos) |
| | Remove an element of array by iterator.
|
| |
| ValueIterator | Erase (ConstValueIterator first, ConstValueIterator last) |
| | Remove elements in the range [first, last) of the array.
|
| |
|
Array | GetArray () |
| |
|
ConstArray | GetArray () const |
| |
| template<typename T > |
| bool | Is () const |
| | Templated version for checking whether this value is type T.
|
| |
|
template<typename T > |
| T | Get () const |
| |
|
template<typename T > |
| T | Get () |
| |
|
template<typename T > |
| ValueType & | Set (const T &data) |
| |
|
template<typename T > |
| ValueType & | Set (const T &data, AllocatorType &allocator) |
| |
| template<typename Handler > |
| bool | Accept (Handler &handler) const |
| | Generate events of this value to a Handler.
|
| |
| GenericValue & | operator= (GenericValue &rhs) RAPIDJSON_NOEXCEPT |
| | Assignment with move semantics.
|
| |
| GenericValue & | operator= (StringRefType str) RAPIDJSON_NOEXCEPT |
| | Assignment of constant string reference (no copy)
|
| |
| template<typename T > |
| GenericValue & | operator= (T value) |
| | Assignment with primitive types.
|
| |
| template<typename SourceAllocator > |
| GenericValue & | CopyFrom (const GenericValue< Encoding, SourceAllocator > &rhs, Allocator &allocator) |
| | Deep-copy assignment from Value.
|
| |
| GenericValue & | Swap (GenericValue &other) RAPIDJSON_NOEXCEPT |
| | Exchange the contents of this value with those of other.
|
| |
| GenericValue & | Move () RAPIDJSON_NOEXCEPT |
| | Prepare Value for move semantics.
|
| |
| template<typename SourceAllocator > |
| bool | operator== (const GenericValue< Encoding, SourceAllocator > &rhs) const |
| | Equal-to operator.
|
| |
|
bool | operator== (const Ch *rhs) const |
| | Equal-to operator with const C-string pointer.
|
| |
| template<typename T > |
| bool | operator== (const T &rhs) const |
| | Equal-to operator with primitive types.
|
| |
| template<typename SourceAllocator > |
| bool | operator!= (const GenericValue< Encoding, SourceAllocator > &rhs) const |
| | Not-equal-to operator.
|
| |
|
bool | operator!= (const Ch *rhs) const |
| | Not-equal-to operator with const C-string pointer.
|
| |
| template<typename T > |
| bool | operator!= (const T &rhs) const |
| | Not-equal-to operator with arbitrary types.
|
| |
|
| GenericValue () RAPIDJSON_NOEXCEPT |
| | Default constructor creates a null value.
|
| |
| | GenericValue (Type type) RAPIDJSON_NOEXCEPT |
| | Constructor with JSON value type.
|
| |
| template<typename SourceAllocator > |
| | GenericValue (const GenericValue< Encoding, SourceAllocator > &rhs, Allocator &allocator) |
| | Explicit copy constructor (with allocator)
|
| |
| | GenericValue (bool b) RAPIDJSON_NOEXCEPT |
| | Constructor for boolean value.
|
| |
|
| GenericValue (int i) RAPIDJSON_NOEXCEPT |
| | Constructor for int value.
|
| |
|
| GenericValue (unsigned u) RAPIDJSON_NOEXCEPT |
| | Constructor for unsigned value.
|
| |
|
| GenericValue (int64_t i64) RAPIDJSON_NOEXCEPT |
| | Constructor for int64_t value.
|
| |
|
| GenericValue (uint64_t u64) RAPIDJSON_NOEXCEPT |
| | Constructor for uint64_t value.
|
| |
|
| GenericValue (double d) RAPIDJSON_NOEXCEPT |
| | Constructor for double value.
|
| |
|
| GenericValue (const Ch *s, SizeType length) RAPIDJSON_NOEXCEPT |
| | Constructor for constant string (i.e. do not make a copy of string)
|
| |
|
| GenericValue (StringRefType s) RAPIDJSON_NOEXCEPT |
| | Constructor for constant string (i.e. do not make a copy of string)
|
| |
|
| GenericValue (const Ch *s, SizeType length, Allocator &allocator) |
| | Constructor for copy-string (i.e. do make a copy of string)
|
| |
|
| GenericValue (const Ch *s, Allocator &allocator) |
| | Constructor for copy-string (i.e. do make a copy of string)
|
| |
| | GenericValue (Array a) RAPIDJSON_NOEXCEPT |
| | Constructor for Array.
|
| |
| | GenericValue (Object o) RAPIDJSON_NOEXCEPT |
| | Constructor for Object.
|
| |
| | ~GenericValue () |
| | Destructor.
|
| |