|
| | PrettyWriter (OutputStream &os, StackAllocator *allocator=0, size_t levelDepth=Base::kDefaultLevelDepth) |
| | Constructor.
|
| |
| | PrettyWriter (StackAllocator *allocator=0, size_t levelDepth=Base::kDefaultLevelDepth) |
| |
| PrettyWriter & | SetIndent (Ch indentChar, unsigned indentCharCount) |
| | Set custom indentation.
|
| |
| PrettyWriter & | SetFormatOptions (PrettyFormatOptions options) |
| | Set pretty writer formatting options.
|
| |
|
|
| bool | Null () |
| |
| bool | Bool (bool b) |
| |
| bool | Int (int i) |
| |
| bool | Uint (unsigned u) |
| |
| bool | Int64 (int64_t i64) |
| |
| bool | Uint64 (uint64_t u64) |
| |
| bool | Double (double d) |
| |
| bool | RawNumber (const Ch *str, SizeType length, bool copy=false) |
| |
| bool | String (const Ch *str, SizeType length, bool copy=false) |
| |
| bool | StartObject () |
| |
| bool | Key (const Ch *str, SizeType length, bool copy=false) |
| |
| bool | EndObject (SizeType memberCount=0) |
| |
| bool | StartArray () |
| |
| bool | EndArray (SizeType memberCount=0) |
| |
| | Writer (OutputStream &os, CrtAllocator *stackAllocator=0, size_t levelDepth=kDefaultLevelDepth) |
| | Constructor.
|
| |
| | Writer (CrtAllocator *allocator=0, size_t levelDepth=kDefaultLevelDepth) |
| |
| void | Reset (OutputStream &os) |
| | Reset the writer with a new stream.
|
| |
| bool | IsComplete () const |
| | Checks whether the output is a complete JSON.
|
| |
| int | GetMaxDecimalPlaces () const |
| |
| void | SetMaxDecimalPlaces (int maxDecimalPlaces) |
| | Sets the maximum number of decimal places for double output.
|
| |
| bool | Null () |
| |
| bool | Bool (bool b) |
| |
| bool | Int (int i) |
| |
| bool | Uint (unsigned u) |
| |
| bool | Int64 (int64_t i64) |
| |
| bool | Uint64 (uint64_t u64) |
| |
| bool | Double (double d) |
| | Writes the given double value to the stream.
|
| |
| bool | RawNumber (const Ch *str, SizeType length, bool copy=false) |
| |
| bool | String (const Ch *str, SizeType length, bool copy=false) |
| |
| bool | StartObject () |
| |
| bool | Key (const Ch *str, SizeType length, bool copy=false) |
| |
| bool | EndObject (SizeType memberCount=0) |
| |
| bool | StartArray () |
| |
| bool | EndArray (SizeType elementCount=0) |
| |
| bool | String (const Ch *const &str) |
| | Simpler but slower overload.
|
| |
| bool | Key (const Ch *const &str) |
| |
| bool | RawValue (const Ch *json, size_t length, Type type) |
| | Write a raw JSON value.
|
| |
| void | Flush () |
| | Flush the output stream.
|
| |
template<typename OutputStream, typename SourceEncoding = UTF8<>, typename TargetEncoding = UTF8<>, typename StackAllocator = CrtAllocator, unsigned writeFlags = kWriteDefaultFlags>
class PrettyWriter< OutputStream, SourceEncoding, TargetEncoding, StackAllocator, writeFlags >
Writer with indentation and spacing.
- Paramètres du template
-
| OutputStream | Type of output os. |
| SourceEncoding | Encoding of source string. |
| TargetEncoding | Encoding of output stream. |
| StackAllocator | Type of allocator for allocating memory of stack. |
Définition à la ligne 49 du fichier prettywriter.h.
template<typename OutputStream, typename SourceEncoding = UTF8<>, typename TargetEncoding = UTF8<>, typename StackAllocator = CrtAllocator, unsigned writeFlags = kWriteDefaultFlags>
| PrettyWriter< OutputStream, SourceEncoding, TargetEncoding, StackAllocator, writeFlags >::PrettyWriter |
( |
OutputStream & | os, |
|
|
StackAllocator * | allocator = 0, |
|
|
size_t | levelDepth = Base::kDefaultLevelDepth ) |
|
inlineexplicit |
Constructor.
- Paramètres
-
| os | Output stream. |
| allocator | User supplied allocator. If it is null, it will create a private one. |
| levelDepth | Initial capacity of stack. |
Définition à la ligne 59 du fichier prettywriter.h.
Référencé par SetFormatOptions(), et SetIndent().
template<typename OutputStream, typename SourceEncoding = UTF8<>, typename TargetEncoding = UTF8<>, typename StackAllocator = CrtAllocator, unsigned writeFlags = kWriteDefaultFlags>
| bool PrettyWriter< OutputStream, SourceEncoding, TargetEncoding, StackAllocator, writeFlags >::RawValue |
( |
const Ch * | json, |
|
|
size_t | length, |
|
|
Type | type ) |
|
inline |
Write a raw JSON value.
For user to write a stringified JSON as a value.
- Paramètres
-
| json | A well-formed JSON value. It should not contain null character within [0, length - 1] range. |
| length | Length of the json. |
| type | Type of the root of json. |
- Note
- When using PrettyWriter::RawValue(), the result json may not be indented correctly.
Définition à la ligne 202 du fichier prettywriter.h.
Références RAPIDJSON_ASSERT.
template<typename OutputStream, typename SourceEncoding = UTF8<>, typename TargetEncoding = UTF8<>, typename StackAllocator = CrtAllocator, unsigned writeFlags = kWriteDefaultFlags>
| PrettyWriter & PrettyWriter< OutputStream, SourceEncoding, TargetEncoding, StackAllocator, writeFlags >::SetFormatOptions |
( |
PrettyFormatOptions | options | ) |
|
|
inline |
Set pretty writer formatting options.
- Paramètres
-
| options | Formatting options. |
Définition à la ligne 86 du fichier prettywriter.h.
Références PrettyWriter().
template<typename OutputStream, typename SourceEncoding = UTF8<>, typename TargetEncoding = UTF8<>, typename StackAllocator = CrtAllocator, unsigned writeFlags = kWriteDefaultFlags>
| PrettyWriter & PrettyWriter< OutputStream, SourceEncoding, TargetEncoding, StackAllocator, writeFlags >::SetIndent |
( |
Ch | indentChar, |
|
|
unsigned | indentCharCount ) |
|
inline |
Set custom indentation.
- Paramètres
-
| indentChar | Character for indentation. Must be whitespace character (' ', '\t', '\n', '\r'). |
| indentCharCount | Number of indent characters for each indentation level. |
- Note
- The default indentation is 4 spaces.
Définition à la ligne 76 du fichier prettywriter.h.
Références PrettyWriter(), et RAPIDJSON_ASSERT.
template<typename OutputStream, typename SourceEncoding = UTF8<>, typename TargetEncoding = UTF8<>, typename StackAllocator = CrtAllocator, unsigned writeFlags = kWriteDefaultFlags>
| bool PrettyWriter< OutputStream, SourceEncoding, TargetEncoding, StackAllocator, writeFlags >::String |
( |
const Ch * | str | ) |
|
|
inline |