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
4bd3b1b0
Commit
4bd3b1b0
authored
Nov 24, 2016
by
Niels Lohmann
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'develop' into feature/issue365
parents
5f4becb0
e3450cac
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
85 additions
and
114 deletions
+85
-114
.gitignore
.gitignore
+4
-0
.travis.yml
.travis.yml
+4
-4
benchmarks.cpp
benchmarks/benchmarks.cpp
+77
-110
No files found.
.gitignore
View file @
4bd3b1b0
...
@@ -14,3 +14,7 @@ doc/html
...
@@ -14,3 +14,7 @@ doc/html
me.nlohmann.json.docset
me.nlohmann.json.docset
benchmarks/files/numbers/*.json
benchmarks/files/numbers/*.json
.idea
cmake-build-debug
.travis.yml
View file @
4bd3b1b0
...
@@ -84,22 +84,22 @@ matrix:
...
@@ -84,22 +84,22 @@ matrix:
# Coverity (only for branch coverity_scan)
# Coverity (only for branch coverity_scan)
-
os
:
linux
-
os
:
linux
compiler
:
gcc
compiler
:
clang
before_install
:
echo -n | openssl s_client -connect scan.coverity.com:443 | sed -ne '/-BEGIN CERTIFICATE-/,/-END CERTIFICATE-/p' | sudo tee -a /etc/ssl/certs/ca-certificates.crt
before_install
:
echo -n | openssl s_client -connect scan.coverity.com:443 | sed -ne '/-BEGIN CERTIFICATE-/,/-END CERTIFICATE-/p' | sudo tee -a /etc/ssl/certs/ca-certificates.crt
addons
:
addons
:
apt
:
apt
:
sources
:
[
'
ubuntu-toolchain-r-test'
]
sources
:
[
'
ubuntu-toolchain-r-test'
]
packages
:
[
'
g++-5'
,
'
valgrind'
]
packages
:
[
'
valgrind'
]
coverity_scan
:
coverity_scan
:
project
:
project
:
name
:
"
nlohmann/json"
name
:
"
nlohmann/json"
description
:
"
Build
submitted
via
Travis
CI"
description
:
"
Build
submitted
via
Travis
CI"
notification_email
:
niels.lohmann@gmail.com
notification_email
:
niels.lohmann@gmail.com
build_command_prepend
:
"
make
clean
;
sudo
cp
$(which
g++-5)
$(which
g++)
"
build_command_prepend
:
"
make
clean"
build_command
:
"
make"
build_command
:
"
make"
branch_pattern
:
coverity_scan
branch_pattern
:
coverity_scan
env
:
env
:
-
COMPILER=g++-5
-
LLVM_VERSION=3.6.0
-
SPECIAL=coverity
-
SPECIAL=coverity
# OSX / Clang
# OSX / Clang
...
...
benchmarks/benchmarks.cpp
View file @
4bd3b1b0
#define BENCHPRESS_CONFIG_MAIN
#define BENCHPRESS_CONFIG_MAIN
#include <fstream>
#include <fstream>
#include <sstream>
#include <benchpress.hpp>
#include <benchpress.hpp>
#include <json.hpp>
#include <json.hpp>
#include <pthread.h>
#include <pthread.h>
#include <thread>
#include <thread>
using
json
=
nlohmann
::
json
;
struct
StartUp
struct
StartUp
{
{
StartUp
()
StartUp
()
...
@@ -23,129 +26,93 @@ struct StartUp
...
@@ -23,129 +26,93 @@ struct StartUp
};
};
StartUp
startup
;
StartUp
startup
;
BENCHMARK
(
"parse jeopardy.json"
,
[](
benchpress
::
context
*
ctx
)
enum
class
EMode
{
input
,
output_no_indent
,
output_with_indent
};
{
for
(
size_t
i
=
0
;
i
<
ctx
->
num_iterations
();
++
i
)
{
ctx
->
stop_timer
();
std
::
ifstream
input_file
(
"benchmarks/files/jeopardy/jeopardy.json"
);
nlohmann
::
json
j
;
ctx
->
start_timer
();
j
<<
input_file
;
ctx
->
stop_timer
();
}
})
BENCHMARK
(
"parse canada.json"
,
[](
benchpress
::
context
*
ctx
)
static
void
bench
(
benchpress
::
context
&
ctx
,
const
std
::
string
&
in_path
,
const
EMode
mode
)
{
{
for
(
size_t
i
=
0
;
i
<
ctx
->
num_iterations
();
++
i
)
// using string streams for benchmarking to factor-out cold-cache disk
// access.
std
::
stringstream
istr
;
{
{
ctx
->
stop_timer
();
// read file into string stream
std
::
ifstream
input_file
(
"benchmarks/files/nativejson-benchmark/canada.json"
);
std
::
ifstream
input_file
(
in_path
);
nlohmann
::
json
j
;
istr
<<
input_file
.
rdbuf
();
ctx
->
start_timer
();
input_file
.
close
();
j
<<
input_file
;
ctx
->
stop_timer
();
}
})
BENCHMARK
(
"parse citm_catalog.json"
,
[](
benchpress
::
context
*
ctx
)
// read the stream once
{
json
j
;
for
(
size_t
i
=
0
;
i
<
ctx
->
num_iterations
();
++
i
)
j
<<
istr
;
{
// clear flags and rewind
ctx
->
stop_timer
();
istr
.
clear
();
std
::
ifstream
input_file
(
"benchmarks/files/nativejson-benchmark/citm_catalog.json"
);
istr
.
seekg
(
0
);
nlohmann
::
json
j
;
ctx
->
start_timer
();
j
<<
input_file
;
ctx
->
stop_timer
();
}
}
})
BENCHMARK
(
"parse twitter.json"
,
[](
benchpress
::
context
*
ctx
)
switch
(
mode
)
{
for
(
size_t
i
=
0
;
i
<
ctx
->
num_iterations
();
++
i
)
{
{
ctx
->
stop_timer
();
// benchmarking input
std
::
ifstream
input_file
(
"benchmarks/files/nativejson-benchmark/twitter.json"
);
case
EMode
:
:
input
:
nlohmann
::
json
j
;
{
ctx
->
start_timer
();
ctx
.
reset_timer
();
j
<<
input_file
;
ctx
->
stop_timer
();
}
})
BENCHMARK
(
"parse numbers/floats.json"
,
[](
benchpress
::
context
*
ctx
)
for
(
size_t
i
=
0
;
i
<
ctx
.
num_iterations
();
++
i
)
{
{
for
(
size_t
i
=
0
;
i
<
ctx
->
num_iterations
();
++
i
)
// clear flags and rewind
{
istr
.
clear
();
ctx
->
stop_timer
();
istr
.
seekg
(
0
);
std
::
ifstream
input_file
(
"benchmarks/files/numbers/floats.json"
);
json
j
;
nlohmann
::
json
j
;
j
<<
istr
;
ctx
->
start_timer
();
}
j
<<
input_file
;
ctx
->
stop_timer
();
}
})
BENCHMARK
(
"parse numbers/signed_ints.json"
,
[](
benchpress
::
context
*
ctx
)
break
;
{
}
for
(
size_t
i
=
0
;
i
<
ctx
->
num_iterations
();
++
i
)
{
ctx
->
stop_timer
();
std
::
ifstream
input_file
(
"benchmarks/files/numbers/signed_ints.json"
);
nlohmann
::
json
j
;
ctx
->
start_timer
();
j
<<
input_file
;
ctx
->
stop_timer
();
}
})
BENCHMARK
(
"parse numbers/unsigned_ints.json"
,
[](
benchpress
::
context
*
ctx
)
// benchmarking output
{
case
EMode
:
:
output_no_indent
:
for
(
size_t
i
=
0
;
i
<
ctx
->
num_iterations
();
++
i
)
case
EMode
:
:
output_with_indent
:
{
{
ctx
->
stop_timer
();
// create JSON value from input
std
::
ifstream
input_file
(
"benchmarks/files/numbers/unsigned_ints.json"
);
json
j
;
nlohmann
::
json
j
;
j
<<
istr
;
ctx
->
start_timer
();
std
::
stringstream
ostr
;
j
<<
input_file
;
ctx
->
stop_timer
();
}
})
BENCHMARK
(
"dump jeopardy.json"
,
[](
benchpress
::
context
*
ctx
)
ctx
.
reset_timer
();
{
for
(
size_t
i
=
0
;
i
<
ctx
.
num_iterations
();
++
i
)
std
::
ifstream
input_file
(
"benchmarks/files/jeopardy/jeopardy.json"
);
{
nlohmann
::
json
j
;
if
(
mode
==
EMode
::
output_no_indent
)
j
<<
input_file
;
{
std
::
ofstream
output_file
(
"jeopardy.dump.json"
);
ostr
<<
j
;
}
else
{
ostr
<<
std
::
setw
(
4
)
<<
j
;
}
ctx
->
reset_timer
();
// reset data
for
(
size_t
i
=
0
;
i
<
ctx
->
num_iterations
();
++
i
)
ostr
.
str
(
std
::
string
());
{
}
ctx
->
start_timer
();
output_file
<<
j
;
ctx
->
stop_timer
();
}
std
::
remove
(
"jeopardy.dump.json"
);
break
;
})
}
}
}
BENCHMARK
(
"dump jeopardy.json with indent"
,
[](
benchpress
::
context
*
ctx
)
#define BENCHMARK_I(mode, title, in_path) \
{
BENCHMARK((title), [](benchpress::context* ctx) \
std
::
ifstream
input_file
(
"benchmarks/files/jeopardy/jeopardy.json"
);
{ \
nlohmann
::
json
j
;
bench(*ctx, (in_path), (mode)); \
j
<<
input_file
;
})
std
::
ofstream
output_file
(
"jeopardy.dump.json"
);
ctx
->
reset_timer
(
);
BENCHMARK_I
(
EMode
::
input
,
"parse jeopardy.json"
,
"benchmarks/files/jeopardy/jeopardy.json"
);
for
(
size_t
i
=
0
;
i
<
ctx
->
num_iterations
();
++
i
)
BENCHMARK_I
(
EMode
::
input
,
"parse canada.json"
,
"benchmarks/files/nativejson-benchmark/canada.json"
);
{
BENCHMARK_I
(
EMode
::
input
,
"parse citm_catalog.json"
,
"benchmarks/files/nativejson-benchmark/citm_catalog.json"
);
ctx
->
start_timer
(
);
BENCHMARK_I
(
EMode
::
input
,
"parse twitter.json"
,
"benchmarks/files/nativejson-benchmark/twitter.json"
);
output_file
<<
std
::
setw
(
4
)
<<
j
;
BENCHMARK_I
(
EMode
::
input
,
"parse numbers/floats.json"
,
"benchmarks/files/numbers/floats.json"
)
;
ctx
->
stop_timer
(
);
BENCHMARK_I
(
EMode
::
input
,
"parse numbers/signed_ints.json"
,
"benchmarks/files/numbers/signed_ints.json"
);
}
BENCHMARK_I
(
EMode
::
input
,
"parse numbers/unsigned_ints.json"
,
"benchmarks/files/numbers/unsigned_ints.json"
);
std
::
remove
(
"jeopardy.dump.json"
);
BENCHMARK_I
(
EMode
::
output_no_indent
,
"dump jeopardy.json"
,
"benchmarks/files/jeopardy/jeopardy.json"
);
})
BENCHMARK_I
(
EMode
::
output_with_indent
,
"dump jeopardy.json with indent"
,
"benchmarks/files/jeopardy/jeopardy.json"
);
BENCHMARK_I
(
EMode
::
output_no_indent
,
"dump numbers/floats.json"
,
"benchmarks/files/numbers/floats.json"
);
BENCHMARK_I
(
EMode
::
output_no_indent
,
"dump numbers/signed_ints.json"
,
"benchmarks/files/numbers/signed_ints.json"
);
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