Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
J
json
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Libraries
json
Commits
5b229f4c
Unverified
Commit
5b229f4c
authored
Jul 14, 2020
by
Niels Lohmann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
⚡
hash function without allocation
parent
1a521cbd
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
191 additions
and
6 deletions
+191
-6
include/nlohmann/detail/hash.hpp
include/nlohmann/detail/hash.hpp
+93
-0
include/nlohmann/json.hpp
include/nlohmann/json.hpp
+2
-3
single_include/nlohmann/json.hpp
single_include/nlohmann/json.hpp
+96
-3
No files found.
include/nlohmann/detail/hash.hpp
0 → 100644
View file @
5b229f4c
#pragma once
#include <functional> // hash
namespace
nlohmann
{
namespace
detail
{
std
::
size_t
combine
(
std
::
size_t
seed
,
std
::
size_t
h
)
{
seed
^=
h
+
0x9e3779b9
+
(
seed
<<
6U
)
+
(
seed
>>
2U
);
return
seed
;
}
template
<
typename
BasicJsonType
>
std
::
size_t
hash
(
const
BasicJsonType
&
j
)
{
switch
(
j
.
type
())
{
case
BasicJsonType
:
:
value_t
::
null
:
case
BasicJsonType
:
:
discarded
:
return
combine
(
static_cast
<
std
::
size_t
>
(
j
.
type
()),
0
);
case
BasicJsonType
:
:
value_t
::
object
:
{
auto
seed
=
combine
(
static_cast
<
std
::
size_t
>
(
j
.
type
()),
j
.
size
());
for
(
const
auto
&
element
:
j
.
items
())
{
const
auto
h
=
std
::
hash
<
typename
BasicJsonType
::
string_t
>
{}(
element
.
key
());
seed
=
combine
(
seed
,
h
);
seed
=
combine
(
seed
,
hash
(
element
.
value
()));
}
return
seed
;
}
case
BasicJsonType
:
:
value_t
::
array
:
{
auto
seed
=
combine
(
static_cast
<
std
::
size_t
>
(
j
.
type
()),
j
.
size
());
for
(
const
auto
&
element
:
j
)
{
seed
=
combine
(
seed
,
hash
(
element
));
}
return
seed
;
}
case
BasicJsonType
:
:
value_t
::
string
:
{
const
auto
h
=
std
::
hash
<
typename
BasicJsonType
::
string_t
>
{}(
j
.
template
get_ref
<
const
typename
BasicJsonType
::
string_t
&
>());
return
combine
(
static_cast
<
std
::
size_t
>
(
j
.
type
()),
h
);
}
case
BasicJsonType
:
:
value_t
::
boolean
:
{
const
auto
h
=
std
::
hash
<
bool
>
{}(
j
.
template
get
<
bool
>());
return
combine
(
static_cast
<
std
::
size_t
>
(
j
.
type
()),
h
);
}
case
BasicJsonType
:
:
value_t
::
number_integer
:
{
const
auto
h
=
std
::
hash
<
typename
BasicJsonType
::
number_integer_t
>
{}(
j
.
template
get
<
typename
BasicJsonType
::
number_integer_t
>());
return
combine
(
static_cast
<
std
::
size_t
>
(
j
.
type
()),
h
);
}
case
nlohmann
:
:
detail
::
value_t
::
number_unsigned
:
{
const
auto
h
=
std
::
hash
<
typename
BasicJsonType
::
number_unsigned_t
>
{}(
j
.
template
get
<
typename
BasicJsonType
::
number_unsigned_t
>());
return
combine
(
static_cast
<
std
::
size_t
>
(
j
.
type
()),
h
);
}
case
nlohmann
:
:
detail
::
value_t
::
number_float
:
{
const
auto
h
=
std
::
hash
<
typename
BasicJsonType
::
number_float_t
>
{}(
j
.
template
get
<
typename
BasicJsonType
::
number_float_t
>());
return
combine
(
static_cast
<
std
::
size_t
>
(
j
.
type
()),
h
);
}
case
nlohmann
:
:
detail
::
value_t
::
binary
:
{
auto
seed
=
combine
(
static_cast
<
std
::
size_t
>
(
j
.
type
()),
j
.
get_binary
().
size
());
seed
=
combine
(
seed
,
j
.
get_binary
().
subtype
());
for
(
const
auto
byte
:
j
.
get_binary
())
{
seed
=
combine
(
seed
,
std
::
hash
<
std
::
uint8_t
>
{}(
byte
));
}
return
seed
;
}
}
return
0
;
}
}
// namespace detail
}
// namespace nlohmann
include/nlohmann/json.hpp
View file @
5b229f4c
...
...
@@ -51,6 +51,7 @@ SOFTWARE.
#include <nlohmann/detail/conversions/from_json.hpp>
#include <nlohmann/detail/conversions/to_json.hpp>
#include <nlohmann/detail/exceptions.hpp>
#include <nlohmann/detail/hash.hpp>
#include <nlohmann/detail/input/binary_reader.hpp>
#include <nlohmann/detail/input/input_adapters.hpp>
#include <nlohmann/detail/input/lexer.hpp>
...
...
@@ -8698,9 +8699,7 @@ struct hash<nlohmann::json>
*/
std
::
size_t
operator
()(
const
nlohmann
::
json
&
j
)
const
{
// a naive hashing via the string representation
const
auto
&
h
=
hash
<
nlohmann
::
json
::
string_t
>
();
return
h
(
j
.
dump
());
return
nlohmann
::
detail
::
hash
(
j
);
}
};
...
...
single_include/nlohmann/json.hpp
View file @
5b229f4c
...
...
@@ -4442,6 +4442,101 @@ class byte_container_with_subtype : public BinaryType
// #include <nlohmann/detail/exceptions.hpp>
// #include <nlohmann/detail/hash.hpp>
#include <functional> // hash
namespace
nlohmann
{
namespace
detail
{
std
::
size_t
combine
(
std
::
size_t
seed
,
std
::
size_t
h
)
{
seed
^=
h
+
0x9e3779b9
+
(
seed
<<
6U
)
+
(
seed
>>
2U
);
return
seed
;
}
template
<
typename
BasicJsonType
>
std
::
size_t
hash
(
const
BasicJsonType
&
j
)
{
switch
(
j
.
type
())
{
case
BasicJsonType
:
:
value_t
::
null
:
case
BasicJsonType
:
:
discarded
:
return
combine
(
static_cast
<
std
::
size_t
>
(
j
.
type
()),
0
);
case
BasicJsonType
:
:
value_t
::
object
:
{
auto
seed
=
combine
(
static_cast
<
std
::
size_t
>
(
j
.
type
()),
j
.
size
());
for
(
const
auto
&
element
:
j
.
items
())
{
const
auto
h
=
std
::
hash
<
typename
BasicJsonType
::
string_t
>
{}(
element
.
key
());
seed
=
combine
(
seed
,
h
);
seed
=
combine
(
seed
,
hash
(
element
.
value
()));
}
return
seed
;
}
case
BasicJsonType
:
:
value_t
::
array
:
{
auto
seed
=
combine
(
static_cast
<
std
::
size_t
>
(
j
.
type
()),
j
.
size
());
for
(
const
auto
&
element
:
j
)
{
seed
=
combine
(
seed
,
hash
(
element
));
}
return
seed
;
}
case
BasicJsonType
:
:
value_t
::
string
:
{
const
auto
h
=
std
::
hash
<
typename
BasicJsonType
::
string_t
>
{}(
j
.
template
get_ref
<
const
typename
BasicJsonType
::
string_t
&
>());
return
combine
(
static_cast
<
std
::
size_t
>
(
j
.
type
()),
h
);
}
case
BasicJsonType
:
:
value_t
::
boolean
:
{
const
auto
h
=
std
::
hash
<
bool
>
{}(
j
.
template
get
<
bool
>());
return
combine
(
static_cast
<
std
::
size_t
>
(
j
.
type
()),
h
);
}
case
BasicJsonType
:
:
value_t
::
number_integer
:
{
const
auto
h
=
std
::
hash
<
typename
BasicJsonType
::
number_integer_t
>
{}(
j
.
template
get
<
typename
BasicJsonType
::
number_integer_t
>());
return
combine
(
static_cast
<
std
::
size_t
>
(
j
.
type
()),
h
);
}
case
nlohmann
:
:
detail
::
value_t
::
number_unsigned
:
{
const
auto
h
=
std
::
hash
<
typename
BasicJsonType
::
number_unsigned_t
>
{}(
j
.
template
get
<
typename
BasicJsonType
::
number_unsigned_t
>());
return
combine
(
static_cast
<
std
::
size_t
>
(
j
.
type
()),
h
);
}
case
nlohmann
:
:
detail
::
value_t
::
number_float
:
{
const
auto
h
=
std
::
hash
<
typename
BasicJsonType
::
number_float_t
>
{}(
j
.
template
get
<
typename
BasicJsonType
::
number_float_t
>());
return
combine
(
static_cast
<
std
::
size_t
>
(
j
.
type
()),
h
);
}
case
nlohmann
:
:
detail
::
value_t
::
binary
:
{
auto
seed
=
combine
(
static_cast
<
std
::
size_t
>
(
j
.
type
()),
j
.
get_binary
().
size
());
seed
=
combine
(
seed
,
j
.
get_binary
().
subtype
());
for
(
const
auto
byte
:
j
.
get_binary
())
{
seed
=
combine
(
seed
,
std
::
hash
<
std
::
uint8_t
>
{}(
byte
));
}
return
seed
;
}
}
return
0
;
}
}
// namespace detail
}
// namespace nlohmann
// #include <nlohmann/detail/input/binary_reader.hpp>
...
...
@@ -24686,9 +24781,7 @@ struct hash<nlohmann::json>
*/
std
::
size_t
operator
()(
const
nlohmann
::
json
&
j
)
const
{
// a naive hashing via the string representation
const
auto
&
h
=
hash
<
nlohmann
::
json
::
string_t
>
();
return
h
(
j
.
dump
());
return
nlohmann
::
detail
::
hash
(
j
);
}
};
...
...
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