Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
J
json
Project
Overview
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
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Chen Yisong
json
Commits
fb91aa81
Commit
fb91aa81
authored
Jun 05, 2017
by
HenryLee
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'develop' into iterator_arithmetic
parents
c4ab8f82
1a9d7667
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
26 additions
and
3 deletions
+26
-3
json.hpp
src/json.hpp
+9
-3
unit-regression.cpp
test/src/unit-regression.cpp
+8
-0
unit-unicode.cpp
test/src/unit-unicode.cpp
+9
-0
No files found.
src/json.hpp
View file @
fb91aa81
...
@@ -6381,7 +6381,7 @@ class basic_json
...
@@ -6381,7 +6381,7 @@ class basic_json
{
{
case
value_t
:
:
array
:
case
value_t
:
:
array
:
{
{
return
*
lhs
.
m_value
.
array
<
*
rhs
.
m_value
.
array
;
return
(
*
lhs
.
m_value
.
array
)
<
(
*
rhs
.
m_value
.
array
)
;
}
}
case
value_t
:
:
object
:
case
value_t
:
:
object
:
{
{
...
@@ -8818,7 +8818,7 @@ class basic_json
...
@@ -8818,7 +8818,7 @@ class basic_json
// store number of bytes in the buffer
// store number of bytes in the buffer
fill_size
=
static_cast
<
size_t
>
(
is
.
gcount
());
fill_size
=
static_cast
<
size_t
>
(
is
.
gcount
());
// skip byte
-
order mark
// skip byte
order mark
if
(
fill_size
>=
3
and
buffer
[
0
]
==
'\xEF'
and
buffer
[
1
]
==
'\xBB'
and
buffer
[
2
]
==
'\xBF'
)
if
(
fill_size
>=
3
and
buffer
[
0
]
==
'\xEF'
and
buffer
[
1
]
==
'\xBB'
and
buffer
[
2
]
==
'\xBF'
)
{
{
buffer_pos
+=
3
;
buffer_pos
+=
3
;
...
@@ -8915,7 +8915,13 @@ class basic_json
...
@@ -8915,7 +8915,13 @@ class basic_json
public
:
public
:
input_buffer_adapter
(
const
char
*
b
,
size_t
l
)
input_buffer_adapter
(
const
char
*
b
,
size_t
l
)
:
input_adapter
(),
cursor
(
b
),
limit
(
b
+
l
),
start
(
b
)
:
input_adapter
(),
cursor
(
b
),
limit
(
b
+
l
),
start
(
b
)
{}
{
// skip byte order mark
if
(
l
>=
3
and
b
[
0
]
==
'\xEF'
and
b
[
1
]
==
'\xBB'
and
b
[
2
]
==
'\xBF'
)
{
cursor
+=
3
;
}
}
// delete because of pointer members
// delete because of pointer members
input_buffer_adapter
(
const
input_buffer_adapter
&
)
=
delete
;
input_buffer_adapter
(
const
input_buffer_adapter
&
)
=
delete
;
...
...
test/src/unit-regression.cpp
View file @
fb91aa81
...
@@ -711,6 +711,7 @@ TEST_CASE("regression tests")
...
@@ -711,6 +711,7 @@ TEST_CASE("regression tests")
"[json.exception.parse_error.101] parse error at 1: syntax error - unexpected end of input"
);
"[json.exception.parse_error.101] parse error at 1: syntax error - unexpected end of input"
);
}
}
/*
SECTION("second example from #529")
SECTION("second example from #529")
{
{
std::string str = "{\n\"one\" : 1,\n\"two\" : 2\n}\n{\n\"three\" : 3\n}";
std::string str = "{\n\"one\" : 1,\n\"two\" : 2\n}\n{\n\"three\" : 3\n}";
...
@@ -748,6 +749,7 @@ TEST_CASE("regression tests")
...
@@ -748,6 +749,7 @@ TEST_CASE("regression tests")
std::remove("test.json");
std::remove("test.json");
}
}
*/
}
}
SECTION
(
"issue #389 - Integer-overflow (OSS-Fuzz issue 267)"
)
SECTION
(
"issue #389 - Integer-overflow (OSS-Fuzz issue 267)"
)
...
@@ -1167,4 +1169,10 @@ TEST_CASE("regression tests")
...
@@ -1167,4 +1169,10 @@ TEST_CASE("regression tests")
std
::
vector
<
uint8_t
>
vec
=
{
'"'
,
'\\'
,
'"'
,
'X'
,
'"'
,
'"'
};
std
::
vector
<
uint8_t
>
vec
=
{
'"'
,
'\\'
,
'"'
,
'X'
,
'"'
,
'"'
};
CHECK_THROWS_AS
(
json
::
parse
(
vec
),
json
::
parse_error
);
CHECK_THROWS_AS
(
json
::
parse
(
vec
),
json
::
parse_error
);
}
}
SECTION
(
"issue #602 - BOM not skipped when using json:parse(iterator)"
)
{
std
::
string
i
=
"
\xef\xbb\xbf
{
\n
\"
foo
\"
: true
\n
}"
;
CHECK_NOTHROW
(
json
::
parse
(
i
.
begin
(),
i
.
end
()));
}
}
}
test/src/unit-unicode.cpp
View file @
fb91aa81
...
@@ -1012,12 +1012,21 @@ TEST_CASE("Unicode", "[hide]")
...
@@ -1012,12 +1012,21 @@ TEST_CASE("Unicode", "[hide]")
SECTION
(
"ignore byte-order-mark"
)
SECTION
(
"ignore byte-order-mark"
)
{
{
SECTION
(
"in a stream"
)
{
// read a file with a UTF-8 BOM
// read a file with a UTF-8 BOM
std
::
ifstream
f
(
"test/data/json_nlohmann_tests/bom.json"
);
std
::
ifstream
f
(
"test/data/json_nlohmann_tests/bom.json"
);
json
j
;
json
j
;
CHECK_NOTHROW
(
f
>>
j
);
CHECK_NOTHROW
(
f
>>
j
);
}
}
SECTION
(
"with an iterator"
)
{
std
::
string
i
=
"
\xef\xbb\xbf
{
\n
\"
foo
\"
: true
\n
}"
;
CHECK_NOTHROW
(
json
::
parse
(
i
.
begin
(),
i
.
end
()));
}
}
SECTION
(
"error for incomplete/wrong BOM"
)
SECTION
(
"error for incomplete/wrong BOM"
)
{
{
CHECK_THROWS_AS
(
json
::
parse
(
"
\xef\xbb
"
),
json
::
parse_error
);
CHECK_THROWS_AS
(
json
::
parse
(
"
\xef\xbb
"
),
json
::
parse_error
);
...
...
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