Represents a JSON value. Use Value for UTF8 encoding and default allocator. More...
#include <document.h>
Classes | |
| struct | Array |
| union | Data |
| union | Number |
| struct | Object |
| struct | ShortString |
| struct | String |
Public Types | |
| enum | { kBoolFlag = 0x100, kNumberFlag = 0x200, kIntFlag = 0x400, kUintFlag = 0x800, kInt64Flag = 0x1000, kUint64Flag = 0x2000, kDoubleFlag = 0x4000, kStringFlag = 0x100000, kCopyFlag = 0x200000, kInlineStrFlag = 0x400000, kNullFlag = kNullType, kTrueFlag = kTrueType | kBoolFlag, kFalseFlag = kFalseType | kBoolFlag, kNumberIntFlag = kNumberType | kNumberFlag | kIntFlag | kInt64Flag, kNumberUintFlag = kNumberType | kNumberFlag | kUintFlag | kUint64Flag | kInt64Flag, kNumberInt64Flag = kNumberType | kNumberFlag | kInt64Flag, kNumberUint64Flag = kNumberType | kNumberFlag | kUint64Flag, kNumberDoubleFlag = kNumberType | kNumberFlag | kDoubleFlag, kNumberAnyFlag = kNumberType | kNumberFlag | kIntFlag | kInt64Flag | kUintFlag | kUint64Flag | kDoubleFlag, kConstStringFlag = kStringType | kStringFlag, kCopyStringFlag = kStringType | kStringFlag | kCopyFlag, kShortStringFlag = kStringType | kStringFlag | kCopyFlag | kInlineStrFlag, kObjectFlag = kObjectType, kArrayFlag = kArrayType, kTypeMask = 0xFF } |
| typedef GenericMember< Encoding, Allocator > | Member |
| Name-value pair in an object. More... | |
| typedef Encoding | EncodingType |
| Encoding type from template parameter. More... | |
| typedef Allocator | AllocatorType |
| Allocator type from template parameter. More... | |
| typedef Encoding::Ch | Ch |
| Character type derived from Encoding. More... | |
| typedef GenericStringRef< Ch > | StringRefType |
| Reference to a constant string. More... | |
| typedef GenericMemberIterator< false, Encoding, Allocator >::Iterator | MemberIterator |
| Member iterator for iterating in object. More... | |
| typedef GenericMemberIterator< true, Encoding, Allocator >::Iterator | ConstMemberIterator |
| Constant member iterator for iterating in object. More... | |
| typedef GenericValue * | ValueIterator |
| Value iterator for iterating in array. More... | |
| typedef const GenericValue * | ConstValueIterator |
| Constant value iterator for iterating in array. More... | |
Public Member Functions | |
| template<typename T > | |
| RAPIDJSON_DISABLEIF_RETURN ((internal::IsPointer< T >),(GenericValue &)) operator | |
| Assignment with primitive types. More... | |
| void | SetArrayRaw (GenericValue *values, SizeType count, Allocator &allocator) |
| void | SetObjectRaw (Member *members, SizeType count, Allocator &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, Allocator &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... | |
| template<typename SourceAllocator > | |
| bool | StringEqual (const GenericValue< Encoding, SourceAllocator > &rhs) const |
Assignment operators | |
| 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... | |
Public Attributes | |
| Data | data_ |
| unsigned | flags_ |
Static Public Attributes | |
| static const SizeType | kDefaultArrayCapacity = 16 |
| static const SizeType | kDefaultObjectCapacity = 16 |
Friends | |
| template<typename , typename , typename > | |
| class | GenericDocument |
Constructors and destructor. | |
| GenericValue () RAPIDJSON_NOEXCEPT | |
| Default constructor creates a null value. More... | |
| GenericValue (Type type) RAPIDJSON_NOEXCEPT | |
| Constructor with JSON value type. More... | |
| template<typename SourceAllocator > | |
| GenericValue (const GenericValue< Encoding, SourceAllocator > &rhs, Allocator &allocator) | |
| Explicit copy constructor (with allocator) More... | |
| template<typename T > | |
| 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, Allocator &allocator) | |
| Constructor for copy-string (i.e. do make a copy of string) More... | |
| GenericValue (const Ch *s, Allocator &allocator) | |
| Constructor for copy-string (i.e. do make a copy of string) More... | |
| ~GenericValue () | |
| Destructor. More... | |
| GenericValue (const GenericValue &rhs) | |
| Copy constructor is not permitted. More... | |
Represents a JSON value. Use Value for UTF8 encoding and default allocator.
A JSON value can be one of 7 types. This class is a variant type supporting these types.
Use the Value if UTF8 and default allocator
| Encoding | Encoding of the value. (Even non-string values need to have the same encoding in a document) |
| Allocator | Allocator type for allocating memory of object, array and string. |
Definition at line 73 of file document.h.
| typedef Allocator rapidjson::GenericValue< Encoding, Allocator >::AllocatorType |
Allocator type from template parameter.
Definition at line 426 of file document.h.
| typedef Encoding::Ch rapidjson::GenericValue< Encoding, Allocator >::Ch |
Character type derived from Encoding.
Definition at line 427 of file document.h.
| typedef GenericMemberIterator<true,Encoding,Allocator>::Iterator rapidjson::GenericValue< Encoding, Allocator >::ConstMemberIterator |
Constant member iterator for iterating in object.
Definition at line 430 of file document.h.
| typedef const GenericValue* rapidjson::GenericValue< Encoding, Allocator >::ConstValueIterator |
Constant value iterator for iterating in array.
Definition at line 432 of file document.h.
| typedef Encoding rapidjson::GenericValue< Encoding, Allocator >::EncodingType |
Encoding type from template parameter.
Definition at line 425 of file document.h.
| typedef GenericMember<Encoding, Allocator> rapidjson::GenericValue< Encoding, Allocator >::Member |
Name-value pair in an object.
Definition at line 424 of file document.h.
| typedef GenericMemberIterator<false,Encoding,Allocator>::Iterator rapidjson::GenericValue< Encoding, Allocator >::MemberIterator |
Member iterator for iterating in object.
Definition at line 429 of file document.h.
| typedef GenericStringRef<Ch> rapidjson::GenericValue< Encoding, Allocator >::StringRefType |
Reference to a constant string.
Definition at line 428 of file document.h.
| typedef GenericValue* rapidjson::GenericValue< Encoding, Allocator >::ValueIterator |
Value iterator for iterating in array.
Definition at line 431 of file document.h.
| anonymous enum |
Definition at line 1437 of file document.h.
|
inline |
|
private |
Copy constructor is not permitted.
|
inlineexplicit |
Constructor with JSON value type.
This creates a Value of specified type with default content.
| type | Type of the value. |
Definition at line 458 of file document.h.
|
inline |
Explicit copy constructor (with allocator)
Creates a copy of a Value by using the given Allocator
| SourceAllocator | allocator of rhs |
| rhs | Value to copy from (read-only) |
| allocator | Allocator for allocating copied elements and buffers. Commonly use GenericDocument::GetAllocator(). |
Definition at line 1895 of file document.h.
|
inlineexplicit |
Constructor for boolean value.
| b | Boolean value |
bool, if you want to construct a boolean JSON value in such cases. Definition at line 485 of file document.h.
|
inlineexplicit |
|
inlineexplicit |
Constructor for unsigned value.
Definition at line 502 of file document.h.
|
inlineexplicit |
Constructor for int64_t value.
Definition at line 509 of file document.h.
|
inlineexplicit |
Constructor for uint64_t value.
Definition at line 523 of file document.h.
|
inlineexplicit |
|
inline |
Constructor for constant string (i.e. do not make a copy of string)
Definition at line 537 of file document.h.
|
inlineexplicit |
Constructor for constant string (i.e. do not make a copy of string)
Definition at line 540 of file document.h.
|
inline |
Constructor for copy-string (i.e. do make a copy of string)
Definition at line 543 of file document.h.
|
inline |
Constructor for copy-string (i.e. do make a copy of string)
Definition at line 546 of file document.h.
|
inline |
Destructor.
Need to destruct elements of array, members of object, or copy-string.
Definition at line 558 of file document.h.
|
inline |
Assignment with move semantics.
| rhs | Source of the assignment. It will become a null value after assignment. |
Definition at line 591 of file document.h.
|
inline |
Assignment of constant string reference (no copy)
| str | Constant string reference to be assigned |
Definition at line 610 of file document.h.
| rapidjson::GenericValue< Encoding, Allocator >::RAPIDJSON_DISABLEIF_RETURN | ( | (internal::IsPointer< T >) | , |
| (GenericValue< Encoding, Allocator > &) | |||
| ) |
Assignment with primitive types.
| T | Either Type, int, unsigned, int64_t, uint64_t |
| value | The value to be assigned. |
T explicitly disallows all pointer types, especially (const) Ch*. This helps avoiding implicitly referencing character strings with insufficient lifetime, use SetString(const Ch*, Allocator&) (for copying) or StringRef() (to explicitly mark the pointer as constant) instead. All other pointer types would implicitly convert to bool, use SetBool() instead.Set boolean value
|
inline |
|
inline |
Definition at line 1541 of file document.h.
|
inline |
Initialize this value as object with initial data, without calling destructor.
Definition at line 1549 of file document.h.
|
inline |
Initialize this value as constant string, without calling destructor.
Definition at line 1557 of file document.h.
|
inline |
Initialize this value as copy string with initial data, without calling destructor.
Definition at line 1564 of file document.h.
|
inline |
Definition at line 1588 of file document.h.
|
friend |
Definition at line 1435 of file document.h.
| Data rapidjson::GenericValue< Encoding, Allocator >::data_ |
Definition at line 1603 of file document.h.
| unsigned rapidjson::GenericValue< Encoding, Allocator >::flags_ |
Definition at line 1604 of file document.h.
|
static |
Definition at line 1468 of file document.h.
|
static |
Definition at line 1469 of file document.h.
1.8.11