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
21a44da8
Commit
21a44da8
authored
Jan 24, 2016
by
Niels
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #189 from twelsby/issue171
Fixed Issue #171 - added two extra template overloads of operator[] for T* arguments
parents
f8544105
bd0f3001
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
122 additions
and
8 deletions
+122
-8
json.hpp
src/json.hpp
+0
-0
json.hpp.re2c
src/json.hpp.re2c
+74
-8
unit.cpp
test/unit.cpp
+48
-0
No files found.
src/json.hpp
View file @
21a44da8
This diff is collapsed.
Click to expand it.
src/json.hpp.re2c
View file @
21a44da8
...
@@ -2675,7 +2675,9 @@ class basic_json
...
@@ -2675,7 +2675,9 @@ class basic_json
std::enable_if<
std::enable_if<
not std::is_pointer<ValueType>::value
not std::is_pointer<ValueType>::value
and not std::is_same<ValueType, typename string_t::value_type>::value
and not std::is_same<ValueType, typename string_t::value_type>::value
#ifndef _MSC_VER // Fix for issue #167 operator<< abiguity under VS2015
and not std::is_same<ValueType, std::initializer_list<typename string_t::value_type>>::value
and not std::is_same<ValueType, std::initializer_list<typename string_t::value_type>>::value
#endif
, int>::type = 0>
, int>::type = 0>
operator ValueType() const
operator ValueType() const
{
{
...
@@ -3060,8 +3062,6 @@ class basic_json
...
@@ -3060,8 +3062,6 @@ class basic_json
the object and filled with a `null` value to make `key` a valid reference.
the object and filled with a `null` value to make `key` a valid reference.
In case the value was `null` before, it is converted to an object.
In case the value was `null` before, it is converted to an object.
@note This function is required for compatibility reasons with Clang.
@param[in] key key of the element to access
@param[in] key key of the element to access
@return reference to the element at key @a key
@return reference to the element at key @a key
...
@@ -3081,7 +3081,75 @@ class basic_json
...
@@ -3081,7 +3081,75 @@ class basic_json
@since version 1.0.0
@since version 1.0.0
*/
*/
template<typename T, std::size_t n>
template<typename T, std::size_t n>
reference operator[](const T (&key)[n])
reference operator[](T* (&key)[n])
{
return operator[](static_cast<const T>(key));
}
/*!
@brief read-only access specified object element
Returns a const reference to the element at with specified key @a key. No
bounds checking is performed.
@warning If the element with key @a key does not exist, the behavior is
undefined.
@note This function is required for compatibility reasons with Clang.
@param[in] key key of the element to access
@return const reference to the element at key @a key
@throw std::domain_error if JSON is not an object; example: `"cannot use
operator[] with null"`
@complexity Logarithmic in the size of the container.
@liveexample{The example below shows how object elements can be read using
the [] operator.,operatorarray__key_type_const}
@sa @ref at(const typename object_t::key_type&) for access by reference
with range checking
@sa @ref value() for access by value with a default value
@since version 1.0.0
*/
template<typename T, std::size_t n>
const_reference operator[](T* (&key)[n]) const
{
return operator[](static_cast<const T>(key));
}
/*!
@brief access specified object element
Returns a reference to the element at with specified key @a key.
@note If @a key is not found in the object, then it is silently added to
the object and filled with a `null` value to make `key` a valid reference.
In case the value was `null` before, it is converted to an object.
@param[in] key key of the element to access
@return reference to the element at key @a key
@throw std::domain_error if JSON is not an object or null; example:
`"cannot use operator[] with null"`
@complexity Logarithmic in the size of the container.
@liveexample{The example below shows how object elements can be read and
written using the [] operator.,operatorarray__key_type}
@sa @ref at(const typename object_t::key_type&) for access by reference
with range checking
@sa @ref value() for access by value with a default value
@since version 1.0.1
*/
template<typename T>
reference operator[](T* key)
{
{
// implicitly convert null to object
// implicitly convert null to object
if (is_null())
if (is_null())
...
@@ -3111,8 +3179,6 @@ class basic_json
...
@@ -3111,8 +3179,6 @@ class basic_json
@warning If the element with key @a key does not exist, the behavior is
@warning If the element with key @a key does not exist, the behavior is
undefined.
undefined.
@note This function is required for compatibility reasons with Clang.
@param[in] key key of the element to access
@param[in] key key of the element to access
@return const reference to the element at key @a key
@return const reference to the element at key @a key
...
@@ -3129,10 +3195,10 @@ class basic_json
...
@@ -3129,10 +3195,10 @@ class basic_json
with range checking
with range checking
@sa @ref value() for access by value with a default value
@sa @ref value() for access by value with a default value
@since version 1.0.
0
@since version 1.0.
1
*/
*/
template<typename T
, std::size_t n
>
template<typename T>
const_reference operator[](
const T (&key)[n]
) const
const_reference operator[](
T* key
) const
{
{
// at only works for objects
// at only works for objects
if (is_object())
if (is_object())
...
...
test/unit.cpp
View file @
21a44da8
...
@@ -11504,4 +11504,52 @@ TEST_CASE("regression tests")
...
@@ -11504,4 +11504,52 @@ TEST_CASE("regression tests")
{
{
CHECK
(
json
::
parse
(
"
\"\\
ud80c
\\
udc60abc
\"
"
).
get
<
json
::
string_t
>
()
==
u8"\U00013060abc"
);
CHECK
(
json
::
parse
(
"
\"\\
ud80c
\\
udc60abc
\"
"
).
get
<
json
::
string_t
>
()
==
u8"\U00013060abc"
);
}
}
SECTION
(
"issue #144 - Cannot index by key of type static constexpr const char*"
)
{
json
j
;
// Non-const access with key as "char []"
char
array_key
[]
=
"Key1"
;
CHECK_NOTHROW
(
j
[
array_key
]
=
1
);
CHECK
(
j
[
array_key
]
==
json
(
1
));
// Non-const access with key as "const char[]"
const
char
const_array_key
[]
=
"Key2"
;
CHECK_NOTHROW
(
j
[
const_array_key
]
=
2
);
CHECK
(
j
[
const_array_key
]
==
json
(
2
));
// Non-const access with key as "char *"
char
_ptr_key
[]
=
"Key3"
;
char
*
ptr_key
=
&
_ptr_key
[
0
];
CHECK_NOTHROW
(
j
[
ptr_key
]
=
3
);
CHECK
(
j
[
ptr_key
]
==
json
(
3
));
// Non-const access with key as "const char *"
const
char
*
const_ptr_key
=
"Key4"
;
CHECK_NOTHROW
(
j
[
const_ptr_key
]
=
4
);
CHECK
(
j
[
const_ptr_key
]
==
json
(
4
));
// Non-const access with key as "static constexpr const char *"
static
constexpr
const
char
*
constexpr_ptr_key
=
"Key5"
;
CHECK_NOTHROW
(
j
[
constexpr_ptr_key
]
=
5
);
CHECK
(
j
[
constexpr_ptr_key
]
==
json
(
5
));
const
json
j_const
=
j
;
// Const access with key as "char []"
CHECK
(
j_const
[
array_key
]
==
json
(
1
));
// Const access with key as "const char[]"
CHECK
(
j_const
[
const_array_key
]
==
json
(
2
));
//Const access with key as "char *"
CHECK
(
j_const
[
ptr_key
]
==
json
(
3
));
// Const access with key as "const char *"
CHECK
(
j_const
[
const_ptr_key
]
==
json
(
4
));
// Const access with key as "static constexpr const char *"
CHECK
(
j_const
[
constexpr_ptr_key
]
==
json
(
5
));
}
}
}
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