2016-01-26 21:59:57 +00:00
.PHONY : pretty clean ChangeLog .md
2015-08-21 17:05:47 +00:00
2015-02-13 21:12:27 +00:00
# used programs
2017-03-20 04:07:01 +00:00
RE2C := $( shell command -v re2c 2> /dev/null)
2015-04-26 11:37:01 +00:00
SED = sed
2015-02-13 21:12:27 +00:00
2015-06-21 19:24:03 +00:00
# main target
2016-11-27 15:19:26 +00:00
all :
$( MAKE) -C test
2015-02-13 21:12:27 +00:00
# clean up
clean :
2016-12-22 11:10:52 +00:00
rm -fr json_unit json_benchmarks fuzz fuzz-testing *.dSYM test/*.dSYM
2016-07-20 21:06:45 +00:00
rm -fr benchmarks/files/numbers/*.json
2016-05-29 12:06:43 +00:00
$( MAKE) clean -Cdoc
2016-08-04 05:24:46 +00:00
$( MAKE) clean -Ctest
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
2015-06-21 10:45:46 +00:00
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
2017-02-22 17:14:29 +00:00
# -Wno-range-loop-analysis: iterator_wrapper tests tests "for(const auto i...)"
2017-03-16 17:35:45 +00:00
pedantic_clang :
2017-02-22 17:14:29 +00:00
$( MAKE) json_unit CXXFLAGS = " \
-std= c++11 \
-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-02-22 17:14:29 +00:00
-Wno-range-loop-analysis"
2017-03-16 17:35:45 +00:00
# calling GCC with most warnings
pedantic_gcc :
$( MAKE) json_unit CXX = g++ CXXFLAGS = " \
-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 \
-Weffc++ \
-Wformat-overflow= 2 \
-Wformat-signedness \
-Wformat-truncation= 2 \
-Wformat= 2 \
-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 \
-Wvariadic-macros"
2017-02-22 17:14:29 +00:00
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
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"
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 :
2016-08-18 16:29:19 +00:00
cppcheck --enable= warning --inconclusive --force --std= c++11 src/json.hpp --error-exitcode= 1
2015-06-21 19:24:03 +00:00
2016-12-25 12:04:04 +00:00
# run clang sanitize (we are overrding the CXXFLAGS provided by travis in order to use gcc's libstdc++)
2016-08-29 20:36:33 +00:00
clang_sanitize : clean
2017-02-12 17:50:17 +00:00
CXX = clang++ CXXFLAGS = "-g -O2 -fsanitize=address -fsanitize=undefined -fno-omit-frame-pointer" $( MAKE) check
2016-08-29 20:36:33 +00:00
2016-11-27 15:19:26 +00:00
2015-06-21 19:24:03 +00:00
##########################################################################
# maintainer targets
##########################################################################
# create scanner with re2c
re2c : src /json .hpp .re 2c
2017-03-20 04:07:01 +00:00
i f n d e f R E 2 C
$( error "re2c is not available, please install re2c" )
e n d i f
2016-10-29 17:35:17 +00:00
$( RE2C) -W --utf-8 --encoding-policy fail --bit-vectors --nested-ifs --no-debug-info $< | $( SED) '1d' > src/json.hpp
2015-06-21 19:24:03 +00:00
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 \
2016-08-04 19:55:47 +00:00
src/json.hpp src/json.hpp.re2c test/src/*.cpp \
benchmarks/benchmarks.cpp doc/examples/*.cpp
2015-06-20 22:59:33 +00:00
2015-06-21 19:24:03 +00:00
##########################################################################
# benchmarks
##########################################################################
2015-06-02 21:57:45 +00:00
# benchmarks
2015-06-03 21:34:10 +00:00
json_benchmarks : benchmarks /benchmarks .cpp benchmarks /benchpress .hpp benchmarks /cxxopts .hpp src /json .hpp
2016-07-20 21:06:45 +00:00
cd benchmarks/files/numbers ; python generate.py
2016-11-23 07:47:40 +00:00
$( CXX) -std= c++11 -pthread $( CXXFLAGS) -DNDEBUG -O3 -flto -I src -I benchmarks $< $( LDFLAGS) -o $@
2015-06-02 21:57:45 +00:00
./json_benchmarks
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