Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
R
rapidjson
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
rapidjson
Commits
73063f50
Unverified
Commit
73063f50
authored
Aug 05, 2018
by
Milo Yip
Committed by
GitHub
Aug 05, 2018
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1340 from lelit/issue1336
Wrap all WriteXxx() calls within EndValue()
parents
6a905f93
c9eabf9e
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
41 additions
and
12 deletions
+41
-12
prettywriter.h
include/rapidjson/prettywriter.h
+12
-12
prettywritertest.cpp
test/unittest/prettywritertest.cpp
+29
-0
No files found.
include/rapidjson/prettywriter.h
View file @
73063f50
...
...
@@ -92,26 +92,26 @@ public:
*/
//@{
bool
Null
()
{
PrettyPrefix
(
kNullType
);
return
Base
::
WriteNull
(
);
}
bool
Bool
(
bool
b
)
{
PrettyPrefix
(
b
?
kTrueType
:
kFalseType
);
return
Base
::
WriteBool
(
b
);
}
bool
Int
(
int
i
)
{
PrettyPrefix
(
kNumberType
);
return
Base
::
WriteInt
(
i
);
}
bool
Uint
(
unsigned
u
)
{
PrettyPrefix
(
kNumberType
);
return
Base
::
WriteUint
(
u
);
}
bool
Int64
(
int64_t
i64
)
{
PrettyPrefix
(
kNumberType
);
return
Base
::
WriteInt64
(
i64
);
}
bool
Uint64
(
uint64_t
u64
)
{
PrettyPrefix
(
kNumberType
);
return
Base
::
WriteUint64
(
u64
);
}
bool
Double
(
double
d
)
{
PrettyPrefix
(
kNumberType
);
return
Base
::
WriteDouble
(
d
);
}
bool
Null
()
{
PrettyPrefix
(
kNullType
);
return
Base
::
EndValue
(
Base
::
WriteNull
()
);
}
bool
Bool
(
bool
b
)
{
PrettyPrefix
(
b
?
kTrueType
:
kFalseType
);
return
Base
::
EndValue
(
Base
::
WriteBool
(
b
)
);
}
bool
Int
(
int
i
)
{
PrettyPrefix
(
kNumberType
);
return
Base
::
EndValue
(
Base
::
WriteInt
(
i
)
);
}
bool
Uint
(
unsigned
u
)
{
PrettyPrefix
(
kNumberType
);
return
Base
::
EndValue
(
Base
::
WriteUint
(
u
)
);
}
bool
Int64
(
int64_t
i64
)
{
PrettyPrefix
(
kNumberType
);
return
Base
::
EndValue
(
Base
::
WriteInt64
(
i64
)
);
}
bool
Uint64
(
uint64_t
u64
)
{
PrettyPrefix
(
kNumberType
);
return
Base
::
EndValue
(
Base
::
WriteUint64
(
u64
)
);
}
bool
Double
(
double
d
)
{
PrettyPrefix
(
kNumberType
);
return
Base
::
EndValue
(
Base
::
WriteDouble
(
d
)
);
}
bool
RawNumber
(
const
Ch
*
str
,
SizeType
length
,
bool
copy
=
false
)
{
RAPIDJSON_ASSERT
(
str
!=
0
);
(
void
)
copy
;
PrettyPrefix
(
kNumberType
);
return
Base
::
WriteString
(
str
,
length
);
return
Base
::
EndValue
(
Base
::
WriteString
(
str
,
length
)
);
}
bool
String
(
const
Ch
*
str
,
SizeType
length
,
bool
copy
=
false
)
{
RAPIDJSON_ASSERT
(
str
!=
0
);
(
void
)
copy
;
PrettyPrefix
(
kStringType
);
return
Base
::
WriteString
(
str
,
length
);
return
Base
::
EndValue
(
Base
::
WriteString
(
str
,
length
)
);
}
#if RAPIDJSON_HAS_STDSTRING
...
...
@@ -146,7 +146,7 @@ public:
Base
::
os_
->
Put
(
'\n'
);
WriteIndent
();
}
bool
ret
=
Base
::
WriteEndObject
(
);
bool
ret
=
Base
::
EndValue
(
Base
::
WriteEndObject
()
);
(
void
)
ret
;
RAPIDJSON_ASSERT
(
ret
==
true
);
if
(
Base
::
level_stack_
.
Empty
())
// end of json text
...
...
@@ -170,7 +170,7 @@ public:
Base
::
os_
->
Put
(
'\n'
);
WriteIndent
();
}
bool
ret
=
Base
::
WriteEndArray
(
);
bool
ret
=
Base
::
EndValue
(
Base
::
WriteEndArray
()
);
(
void
)
ret
;
RAPIDJSON_ASSERT
(
ret
==
true
);
if
(
Base
::
level_stack_
.
Empty
())
// end of json text
...
...
@@ -201,7 +201,7 @@ public:
bool
RawValue
(
const
Ch
*
json
,
size_t
length
,
Type
type
)
{
RAPIDJSON_ASSERT
(
json
!=
0
);
PrettyPrefix
(
type
);
return
Base
::
WriteRawValue
(
json
,
length
);
return
Base
::
EndValue
(
Base
::
WriteRawValue
(
json
,
length
)
);
}
protected
:
...
...
test/unittest/prettywritertest.cpp
View file @
73063f50
...
...
@@ -339,6 +339,35 @@ TEST(PrettyWriter, MoveCtor) {
}
#endif
TEST
(
PrettyWriter
,
Issue_1336
)
{
#define T(meth, val, expected) \
{ \
StringBuffer buffer; \
PrettyWriter<StringBuffer> writer(buffer); \
writer.meth(val); \
\
EXPECT_STREQ(expected, buffer.GetString()); \
EXPECT_TRUE(writer.IsComplete()); \
}
T
(
Bool
,
false
,
"false"
);
T
(
Bool
,
true
,
"true"
);
T
(
Int
,
0
,
"0"
);
T
(
Uint
,
0
,
"0"
);
T
(
Int64
,
0
,
"0"
);
T
(
Uint64
,
0
,
"0"
);
T
(
Double
,
0
,
"0.0"
);
T
(
String
,
"Hello"
,
"
\"
Hello
\"
"
);
#undef T
StringBuffer
buffer
;
PrettyWriter
<
StringBuffer
>
writer
(
buffer
);
writer
.
Null
();
EXPECT_STREQ
(
"null"
,
buffer
.
GetString
());
EXPECT_TRUE
(
writer
.
IsComplete
());
}
#ifdef __clang__
RAPIDJSON_DIAG_POP
#endif
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment