2016-01-26 21:59:57 +00:00
.PHONY : pretty clean ChangeLog .md
2015-08-21 17:05:47 +00:00
2018-01-29 10:21:11 +00:00
SRCS = include/nlohmann/json.hpp \
include/nlohmann/json_fwd.hpp \
include/nlohmann/adl_serializer.hpp \
include/nlohmann/detail/conversions/from_json.hpp \
include/nlohmann/detail/conversions/to_chars.hpp \
include/nlohmann/detail/conversions/to_json.hpp \
include/nlohmann/detail/exceptions.hpp \
include/nlohmann/detail/input/binary_reader.hpp \
include/nlohmann/detail/input/input_adapters.hpp \
2018-02-26 19:08:12 +00:00
include/nlohmann/detail/input/json_sax.hpp \
2018-01-29 10:21:11 +00:00
include/nlohmann/detail/input/lexer.hpp \
include/nlohmann/detail/input/parser.hpp \
2018-10-07 10:27:24 +00:00
include/nlohmann/detail/input/position_t.hpp \
2018-01-29 10:21:11 +00:00
include/nlohmann/detail/iterators/internal_iterator.hpp \
include/nlohmann/detail/iterators/iter_impl.hpp \
include/nlohmann/detail/iterators/iteration_proxy.hpp \
include/nlohmann/detail/iterators/json_reverse_iterator.hpp \
include/nlohmann/detail/iterators/primitive_iterator.hpp \
include/nlohmann/detail/json_pointer.hpp \
include/nlohmann/detail/json_ref.hpp \
include/nlohmann/detail/macro_scope.hpp \
include/nlohmann/detail/macro_unscope.hpp \
2018-07-24 11:22:44 +00:00
include/nlohmann/detail/meta/cpp_future.hpp \
include/nlohmann/detail/meta/detected.hpp \
include/nlohmann/detail/meta/type_traits.hpp \
include/nlohmann/detail/meta/void_t.hpp \
2018-01-29 10:21:11 +00:00
include/nlohmann/detail/output/binary_writer.hpp \
include/nlohmann/detail/output/output_adapters.hpp \
include/nlohmann/detail/output/serializer.hpp \
include/nlohmann/detail/value_t.hpp
2017-08-14 18:45:33 +00:00
UNAME = $( shell uname)
CXX = clang++
2017-08-14 12:41:01 +00:00
2018-01-29 10:21:11 +00:00
AMALGAMATED_FILE = single_include/nlohmann/json.hpp
2017-08-14 12:41:01 +00:00
# main target
2016-11-27 15:19:26 +00:00
all :
2018-01-29 10:21:11 +00:00
@echo "amalgamate - amalgamate file single_include/nlohmann/json.hpp from the include/nlohmann sources"
2017-10-04 17:27:35 +00:00
@echo "ChangeLog.md - generate ChangeLog file"
@echo "check - compile and execute test suite"
2018-01-14 12:08:28 +00:00
@echo "check-amalgamation - check whether sources have been amalgamated"
2017-10-04 17:27:35 +00:00
@echo "check-fast - compile and execute test suite (skip long-running tests)"
@echo "clean - remove built files"
2017-10-04 22:17:09 +00:00
@echo "coverage - create coverage information with lcov"
2017-10-04 17:27:35 +00:00
@echo "cppcheck - analyze code with cppcheck"
@echo "doctest - compile example files and check their output"
@echo "fuzz_testing - prepare fuzz testing of the JSON parser"
2018-10-24 13:43:37 +00:00
@echo "fuzz_testing_bson - prepare fuzz testing of the BSON parser"
2017-10-04 17:27:35 +00:00
@echo "fuzz_testing_cbor - prepare fuzz testing of the CBOR parser"
@echo "fuzz_testing_msgpack - prepare fuzz testing of the MessagePack parser"
2018-01-27 17:38:11 +00:00
@echo "fuzz_testing_ubjson - prepare fuzz testing of the UBJSON parser"
2017-10-04 17:27:35 +00:00
@echo "json_unit - create single-file test executable"
@echo "pedantic_clang - run Clang with maximal warning flags"
@echo "pedantic_gcc - run GCC with maximal warning flags"
@echo "pretty - beautify code with Artistic Style"
2018-02-10 13:46:39 +00:00
@echo "run_benchmarks - build and run benchmarks"
2015-02-13 21:12:27 +00:00
2015-06-21 19:24:03 +00:00
##########################################################################
# unit tests
##########################################################################
2016-08-04 05:24:46 +00:00
# build unit tests
json_unit :
2016-11-27 15:19:26 +00:00
@$( MAKE) json_unit -C test
2015-06-21 19:24:03 +00:00
2016-08-04 05:24:46 +00:00
# run unit tests
2016-11-27 15:19:26 +00:00
check :
$( MAKE) check -C test
2015-02-13 21:12:27 +00:00
2016-11-27 15:19:26 +00:00
check-fast :
$( MAKE) check -C test TEST_PATTERN = ""
2016-08-04 20:05:16 +00:00
2017-10-04 17:27:35 +00:00
# clean up
clean :
rm -fr json_unit json_benchmarks fuzz fuzz-testing *.dSYM test/*.dSYM
rm -fr benchmarks/files/numbers/*.json
2018-02-10 13:46:39 +00:00
rm -fr build_coverage build_benchmarks
2017-10-04 17:27:35 +00:00
$( MAKE) clean -Cdoc
$( MAKE) clean -Ctest
2015-06-21 10:45:46 +00:00
2017-10-04 22:17:09 +00:00
##########################################################################
# coverage
##########################################################################
coverage :
mkdir build_coverage
2018-08-18 10:00:14 +00:00
cd build_coverage ; CXX = g++-7 cmake .. -GNinja -DJSON_Coverage= ON -DJSON_MultipleHeaders= ON
2017-10-04 22:17:09 +00:00
cd build_coverage ; ninja
2018-03-20 17:49:10 +00:00
cd build_coverage ; ctest -E '.*_default' -j10
2017-10-04 22:17:09 +00:00
cd build_coverage ; ninja lcov_html
open build_coverage/test/html/index.html
2016-02-14 15:42:48 +00:00
##########################################################################
# documentation tests
##########################################################################
# compile example files and check output
doctest :
2016-05-29 12:06:43 +00:00
$( MAKE) check_output -C doc
2017-02-22 17:14:29 +00:00
##########################################################################
# warning detector
##########################################################################
# calling Clang with all warnings, except:
# -Wno-documentation-unknown-command: code uses user-defined commands like @complexity
# -Wno-exit-time-destructors: warning in Catch code
# -Wno-keyword-macro: unit-tests use "#define private public"
2017-03-28 22:39:47 +00:00
# -Wno-deprecated-declarations: the library deprecated some functions
2017-03-06 20:00:13 +00:00
# -Wno-weak-vtables: exception class is defined inline, but has virtual method
2018-01-23 15:33:08 +00:00
# -Wno-range-loop-analysis: items tests "for(const auto i...)"
2017-04-02 16:46:21 +00:00
# -Wno-float-equal: not all comparisons in the tests can be replaced by Approx
2017-10-04 17:27:35 +00:00
# -Wno-switch-enum -Wno-covered-switch-default: pedantic/contradicting warnings about switches
2018-12-23 12:56:18 +00:00
# -Wno-c++2a-compat: u8 literals will behave differently in C++20...
2017-10-04 17:27:35 +00:00
# -Wno-padded: padding is nothing to warn about
2017-03-16 17:35:45 +00:00
pedantic_clang :
2017-02-22 17:14:29 +00:00
$( MAKE) json_unit CXXFLAGS = " \
2017-06-20 21:05:37 +00:00
-std= c++11 -Wno-c++98-compat -Wno-c++98-compat-pedantic \
2017-02-22 17:14:29 +00:00
-Werror \
-Weverything \
-Wno-documentation-unknown-command \
-Wno-exit-time-destructors \
-Wno-keyword-macro \
2017-03-28 22:39:47 +00:00
-Wno-deprecated-declarations \
2017-03-06 20:00:13 +00:00
-Wno-weak-vtables \
2017-04-02 16:46:21 +00:00
-Wno-range-loop-analysis \
2017-06-20 21:05:37 +00:00
-Wno-float-equal \
-Wno-switch-enum -Wno-covered-switch-default \
2018-12-23 12:56:18 +00:00
-Wno-c++2a-compat \
2017-06-20 21:05:37 +00:00
-Wno-padded"
2017-02-22 17:14:29 +00:00
2017-03-16 17:35:45 +00:00
# calling GCC with most warnings
pedantic_gcc :
2017-12-16 21:19:30 +00:00
$( MAKE) json_unit CXXFLAGS = " \
2017-03-16 17:35:45 +00:00
-std= c++11 \
2017-03-28 22:39:47 +00:00
-Wno-deprecated-declarations \
2017-03-16 17:35:45 +00:00
-Werror \
-Wall -Wpedantic -Wextra \
-Walloca \
-Warray-bounds= 2 \
-Wcast-qual -Wcast-align \
-Wchar-subscripts \
-Wconditionally-supported \
-Wconversion \
-Wdate-time \
-Wdeprecated \
-Wdisabled-optimization \
-Wdouble-promotion \
-Wduplicated-branches \
-Wduplicated-cond \
-Wformat-overflow= 2 \
-Wformat-signedness \
-Wformat-truncation= 2 \
-Wformat= 2 \
2017-07-07 20:41:22 +00:00
-Wno-ignored-qualifiers \
2017-03-16 17:35:45 +00:00
-Wimplicit-fallthrough= 5 \
-Wlogical-op \
-Wmissing-declarations \
-Wmissing-format-attribute \
-Wmissing-include-dirs \
-Wnoexcept \
-Wnonnull \
-Wnull-dereference \
-Wold-style-cast \
-Woverloaded-virtual \
-Wparentheses \
-Wplacement-new= 2 \
-Wredundant-decls \
-Wreorder \
-Wrestrict \
-Wshadow= global \
-Wshift-overflow= 2 \
-Wsign-conversion \
-Wsign-promo \
-Wsized-deallocation \
-Wstrict-overflow= 5 \
-Wsuggest-attribute= const \
-Wsuggest-attribute= format \
-Wsuggest-attribute= noreturn \
-Wsuggest-attribute= pure \
-Wsuggest-final-methods \
-Wsuggest-final-types \
-Wsuggest-override \
-Wtrigraphs \
-Wundef \
-Wuninitialized -Wunknown-pragmas \
-Wunused \
-Wunused-const-variable= 2 \
-Wunused-macros \
-Wunused-parameter \
-Wuseless-cast \
2018-09-06 05:25:19 +00:00
-Wvariadic-macros \
-Wctor-dtor-privacy \
-Winit-self \
-Wstrict-null-sentinel"
2017-02-22 17:14:29 +00:00
2018-02-10 13:46:39 +00:00
##########################################################################
# benchmarks
##########################################################################
run_benchmarks :
mkdir build_benchmarks
cd build_benchmarks ; cmake ../benchmarks
cd build_benchmarks ; make
cd build_benchmarks ; ./json_benchmarks
2016-02-12 09:35:08 +00:00
##########################################################################
# fuzzing
##########################################################################
2016-02-14 17:38:29 +00:00
# the overall fuzz testing target
fuzz_testing :
rm -fr fuzz-testing
mkdir -p fuzz-testing fuzz-testing/testcases fuzz-testing/out
2016-12-22 10:09:26 +00:00
$( MAKE) parse_afl_fuzzer -C test CXX = afl-clang++
2016-12-22 11:08:36 +00:00
mv test/parse_afl_fuzzer fuzz-testing/fuzzer
2016-05-11 00:25:54 +00:00
find test/data/json_tests -size -5k -name *json | xargs -I{ } cp "{}" fuzz-testing/testcases
2016-12-22 10:09:26 +00:00
@echo "Execute: afl-fuzz -i fuzz-testing/testcases -o fuzz-testing/out fuzz-testing/fuzzer"
2016-02-14 17:38:29 +00:00
2018-10-24 13:43:37 +00:00
fuzz_testing_bson :
rm -fr fuzz-testing
mkdir -p fuzz-testing fuzz-testing/testcases fuzz-testing/out
$( MAKE) parse_bson_fuzzer -C test CXX = afl-clang++
mv test/parse_bson_fuzzer fuzz-testing/fuzzer
find test/data -size -5k -name *.bson | xargs -I{ } cp "{}" fuzz-testing/testcases
@echo "Execute: afl-fuzz -i fuzz-testing/testcases -o fuzz-testing/out fuzz-testing/fuzzer"
2016-12-22 11:08:36 +00:00
fuzz_testing_cbor :
rm -fr fuzz-testing
mkdir -p fuzz-testing fuzz-testing/testcases fuzz-testing/out
$( MAKE) parse_cbor_fuzzer -C test CXX = afl-clang++
mv test/parse_cbor_fuzzer fuzz-testing/fuzzer
2016-12-25 15:07:10 +00:00
find test/data -size -5k -name *.cbor | xargs -I{ } cp "{}" fuzz-testing/testcases
2016-12-22 11:08:36 +00:00
@echo "Execute: afl-fuzz -i fuzz-testing/testcases -o fuzz-testing/out fuzz-testing/fuzzer"
2016-12-25 15:18:56 +00:00
fuzz_testing_msgpack :
rm -fr fuzz-testing
mkdir -p fuzz-testing fuzz-testing/testcases fuzz-testing/out
$( MAKE) parse_msgpack_fuzzer -C test CXX = afl-clang++
mv test/parse_msgpack_fuzzer fuzz-testing/fuzzer
find test/data -size -5k -name *.msgpack | xargs -I{ } cp "{}" fuzz-testing/testcases
@echo "Execute: afl-fuzz -i fuzz-testing/testcases -o fuzz-testing/out fuzz-testing/fuzzer"
2018-01-27 17:38:11 +00:00
fuzz_testing_ubjson :
rm -fr fuzz-testing
mkdir -p fuzz-testing fuzz-testing/testcases fuzz-testing/out
$( MAKE) parse_ubjson_fuzzer -C test CXX = afl-clang++
mv test/parse_ubjson_fuzzer fuzz-testing/fuzzer
find test/data -size -5k -name *.ubjson | xargs -I{ } cp "{}" fuzz-testing/testcases
@echo "Execute: afl-fuzz -i fuzz-testing/testcases -o fuzz-testing/out fuzz-testing/fuzzer"
2016-12-25 15:36:43 +00:00
fuzzing-start :
afl-fuzz -S fuzzer1 -i fuzz-testing/testcases -o fuzz-testing/out fuzz-testing/fuzzer > /dev/null &
afl-fuzz -S fuzzer2 -i fuzz-testing/testcases -o fuzz-testing/out fuzz-testing/fuzzer > /dev/null &
afl-fuzz -S fuzzer3 -i fuzz-testing/testcases -o fuzz-testing/out fuzz-testing/fuzzer > /dev/null &
afl-fuzz -S fuzzer4 -i fuzz-testing/testcases -o fuzz-testing/out fuzz-testing/fuzzer > /dev/null &
afl-fuzz -S fuzzer5 -i fuzz-testing/testcases -o fuzz-testing/out fuzz-testing/fuzzer > /dev/null &
afl-fuzz -S fuzzer6 -i fuzz-testing/testcases -o fuzz-testing/out fuzz-testing/fuzzer > /dev/null &
afl-fuzz -S fuzzer7 -i fuzz-testing/testcases -o fuzz-testing/out fuzz-testing/fuzzer > /dev/null &
afl-fuzz -M fuzzer0 -i fuzz-testing/testcases -o fuzz-testing/out fuzz-testing/fuzzer
fuzzing-stop :
-killall fuzzer
-killall afl-fuzz
2016-02-12 09:35:08 +00:00
2015-06-21 19:24:03 +00:00
##########################################################################
# static analyzer
##########################################################################
2015-02-13 21:12:27 +00:00
2015-06-21 19:24:03 +00:00
# call cppcheck on the main header file
2015-02-13 21:12:27 +00:00
cppcheck :
2018-01-29 10:21:11 +00:00
cppcheck --enable= warning --inconclusive --force --std= c++11 $( AMALGAMATED_FILE) --error-exitcode= 1
2015-06-21 19:24:03 +00:00
2018-02-28 18:59:54 +00:00
# compile and check with Clang Static Analyzer
clang_analyze :
rm -fr clang_analyze_build
mkdir clang_analyze_build
cd clang_analyze_build ; CCC_CXX = /Users/niels/Documents/projects/llvm-clang/local/bin/clang++ /Users/niels/Documents/projects/llvm-clang/local/bin/scan-build cmake ..
/Users/niels/Documents/projects/llvm-clang/local/bin/scan-build -enable-checker alpha.core.DynamicTypeChecker,alpha.core.PointerArithm,alpha.core.PointerSub,alpha.cplusplus.DeleteWithNonVirtualDtor,alpha.cplusplus.IteratorRange,alpha.cplusplus.MisusedMovedObject,alpha.security.ArrayBoundV2,alpha.core.Conversion --use-c++= /Users/niels/Documents/projects/llvm-clang/local/bin/clang++ --view -analyze-headers -o clang_analyze_build/report.html make -j10 -C clang_analyze_build
2016-11-27 15:19:26 +00:00
2015-06-21 19:24:03 +00:00
##########################################################################
# maintainer targets
##########################################################################
2015-02-13 21:12:27 +00:00
# pretty printer
pretty :
astyle --style= allman --indent= spaces = 4 --indent-modifiers \
--indent-switches --indent-preproc-block --indent-preproc-define \
--indent-col1-comments --pad-oper --pad-header --align-pointer= type \
--align-reference= type --add-brackets --convert-tabs --close-templates \
2016-04-16 10:19:10 +00:00
--lineend= linux --preserve-date --suffix= none --formatted \
2018-01-29 10:21:11 +00:00
$( SRCS) $( AMALGAMATED_FILE) test/src/*.cpp \
2017-10-04 17:27:35 +00:00
benchmarks/src/benchmarks.cpp doc/examples/*.cpp
2016-01-26 21:59:57 +00:00
2018-01-09 22:15:06 +00:00
# create single header file
2018-01-29 10:21:11 +00:00
amalgamate : $( AMALGAMATED_FILE )
2018-01-09 22:15:06 +00:00
2018-01-29 10:21:11 +00:00
$(AMALGAMATED_FILE) : $( SRCS )
third_party/amalgamate/amalgamate.py -c third_party/amalgamate/config.json -s . --verbose= yes
2018-01-09 22:15:06 +00:00
$( MAKE) pretty
2018-01-29 10:21:11 +00:00
# check if single_include/nlohmann/json.hpp has been amalgamated from the nlohmann sources
2018-01-14 12:08:28 +00:00
check-amalgamation :
2018-01-29 10:21:11 +00:00
@mv $( AMALGAMATED_FILE) $( AMALGAMATED_FILE) ~
2018-01-14 09:10:23 +00:00
@$( MAKE) amalgamate
2018-01-29 10:21:11 +00:00
@diff $( AMALGAMATED_FILE) $( AMALGAMATED_FILE) ~ || ( echo "===================================================================\n Amalgamation required! Please read the contribution guidelines\n in file .github/CONTRIBUTING.md.\n===================================================================" ; mv $( AMALGAMATED_FILE) ~ $( AMALGAMATED_FILE) ; false )
@mv $( AMALGAMATED_FILE) ~ $( AMALGAMATED_FILE)
2018-01-14 09:10:23 +00:00
2018-01-29 10:21:11 +00:00
# check if every header in nlohmann includes sufficient headers to be compiled
2018-01-28 14:36:56 +00:00
# individually
check-single-includes :
for x in $( SRCS) ; do \
2018-01-29 10:21:11 +00:00
echo " #include < $$ x>\nint main() {}\n " | sed 's|include/||' > single_include_test.cpp; \
$( CXX) $( CXXFLAGS) -Iinclude -std= c++11 single_include_test.cpp -o single_include_test; \
2018-01-28 14:36:56 +00:00
rm single_include_test.cpp single_include_test; \
done
2017-08-14 18:45:33 +00:00
2016-01-26 21:59:57 +00:00
##########################################################################
# changelog
##########################################################################
2016-07-31 11:37:04 +00:00
NEXT_VERSION ?= "unreleased"
2016-01-26 21:59:57 +00:00
ChangeLog.md :
2016-07-31 11:37:04 +00:00
github_changelog_generator -o ChangeLog.md --simple-list --release-url https://github.com/nlohmann/json/releases/tag/%s --future-release $( NEXT_VERSION)
2016-01-26 22:10:52 +00:00
gsed -i 's|https://github.com/nlohmann/json/releases/tag/HEAD|https://github.com/nlohmann/json/tree/HEAD|' ChangeLog.md
2016-01-26 22:27:07 +00:00
gsed -i '2i All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/).' ChangeLog.md
2018-02-04 12:29:23 +00:00
##########################################################################
# release
##########################################################################
release :
2018-02-11 15:50:01 +00:00
mkdir release_files
2018-02-04 12:29:23 +00:00
zip -9 -r include.zip include/*
gpg --armor --detach-sig include.zip
2018-02-11 15:50:01 +00:00
mv include.zip include.zip.asc release_files
gpg --armor --detach-sig single_include/nlohmann/json.hpp
cp single_include/nlohmann/json.hpp release_files
mv single_include/nlohmann/json.hpp.asc release_files
cd release_files ; shasum -a 256 json.hpp > hashes.txt
cd release_files ; shasum -a 256 include.zip >> hashes.txt