2020-05-04 16:00:00 +02:00
set ( JSON_TEST_DATA_URL https://github.com/nlohmann/json_test_data )
Support UBJSON-derived Binary JData (BJData) format (#3336)
* support UBJSON-derived Binary JData (BJData) format
* fix Codacy warning
* partially fix VS compilation errors
* fix additional VS errors
* fix more VS compilation errors
* fix additional warnings and errors for clang and msvc
* add more tests to cover the new bjdata types
* add tests for optimized ndarray, improve coverage, fix clang/gcc warnings
* gcc warn useless conversion but msvc gives an error
* fix ci_test errors
* complete test coverage, fix ci_test errors
* add half precision error test
* fix No newline at end of file error by clang
* simplify endian condition, format unit-bjdata
* remove broken test due to alloc limit
* full coverage, I hope
* move bjdata new markers from default to the same level as ubjson markers
* fix ci errors, add tests for new bjdata switch structure
* make is_bjdata const after using initializer list
* remove the unwanted assert
* move is_bjdata to an optional param to write_ubjson
* pass use_bjdata via output adapter
* revert order to avoid msvc 2015 unreferenced formal param error
* update BJData Spect V1 Draft-2 URL after spec release
* amalgamate code
* code polishing following @gregmarr's feedback
* make use_bjdata a non-default parameter
* fix ci error, remove unwanted param comment
* encode and decode bjdata ndarray in jdata annotations, enable roundtrip tests
* partially fix ci errors, add tests to improve coverage
* polish patch to remove ci errors
* fix a ndarray dim vector condition
* fix clang tidy error
* add sax test cases for ndarray
* add additional sax event tests
* adjust sax event numbering
* fix sax tests
* ndarray can only be used with array containers, discard if used in object
* complete test coverage
* disable [{SHTFNZ in optimized type due to security risks in #2793 and hampered readability
* fix ci error
* move OutputIsLittleEndian from tparam to param to replace use_bjdata
* fix ci clang gcc error
* fix ci static analysis error
* update json_test_data to 3.1.0, enable file-based bjdata unit tests
* fix stack overflow error on msvc 2019 and 2022
* use https link, update sax_parse_error after rebase
* make input_format const and use initializer
* return bool for write_bjdata_ndarray
* test write_bjdata_ndarray return value as boolean
* fix ci error
2022-04-29 15:17:30 -04:00
set ( JSON_TEST_DATA_VERSION 3.1.0 )
2020-05-04 16:00:00 +02:00
2025-07-31 20:10:57 +02:00
include ( ExternalProject )
2020-06-16 12:55:36 +02:00
# if variable is set, use test data from given directory rather than downloading them
if ( JSON_TestDataDirectory )
message ( STATUS "Using test data in ${JSON_TestDataDirectory}." )
add_custom_target ( download_test_data )
file ( WRITE ${ CMAKE_BINARY_DIR } /include/test_data.hpp "#define TEST_DATA_DIRECTORY \" ${ JSON_TestDataDirectory } \"\n")
else ( )
2025-07-31 20:10:57 +02:00
# create a header with the path to the downloaded test data
file ( WRITE ${ CMAKE_BINARY_DIR } /include/test_data.hpp "#define TEST_DATA_DIRECTORY \" ${ CMAKE_BINARY_DIR } /test_files\ "\n" )
# download test data from GitHub release
ExternalProject_Add ( download_test_data_project
U R L " $ { J S O N _ T E S T _ D A T A _ U R L } / a r c h i v e / r e f s / t a g s / v $ { J S O N _ T E S T _ D A T A _ V E R S I O N } . z i p "
S O U R C E _ D I R " $ { C M A K E _ B I N A R Y _ D I R } / t e s t _ f i l e s "
C O N F I G U R E _ C O M M A N D " "
B U I L D _ C O M M A N D " "
I N S T A L L _ C O M M A N D " "
L O G _ D O W N L O A D T R U E
D O W N L O A D _ E X T R A C T _ T I M E S T A M P T R U E
E X C L U D E _ F R O M _ A L L T R U E
)
2020-06-16 12:55:36 +02:00
# target to download test data
add_custom_target ( download_test_data
2025-07-31 20:10:57 +02:00
D E P E N D S d o w n l o a d _ t e s t _ d a t a _ p r o j e c t
2020-06-16 12:55:36 +02:00
)
endif ( )
2020-05-13 14:25:51 +02:00
# determine the operating system (for debug and support purposes)
find_program ( UNAME_COMMAND uname )
find_program ( VER_COMMAND ver )
2020-05-14 13:33:10 +02:00
find_program ( LSB_RELEASE_COMMAND lsb_release )
find_program ( SW_VERS_COMMAND sw_vers )
set ( OS_VERSION_STRINGS "${CMAKE_SYSTEM}" )
2020-05-13 14:25:51 +02:00
if ( VER_COMMAND )
execute_process ( COMMAND ${ VER_COMMAND } OUTPUT_VARIABLE VER_COMMAND_RESULT OUTPUT_STRIP_TRAILING_WHITESPACE )
2020-05-14 13:33:10 +02:00
set ( OS_VERSION_STRINGS "${OS_VERSION_STRINGS}; ${VER_COMMAND_RESULT}" )
endif ( )
if ( SW_VERS_COMMAND )
2020-05-14 17:53:00 +02:00
execute_process ( COMMAND ${ SW_VERS_COMMAND } OUTPUT_VARIABLE SW_VERS_COMMAND_RESULT OUTPUT_STRIP_TRAILING_WHITESPACE ERROR_QUIET )
2020-05-14 13:33:10 +02:00
string ( REGEX REPLACE "[ ]*\n" "; " SW_VERS_COMMAND_RESULT "${SW_VERS_COMMAND_RESULT}" )
set ( OS_VERSION_STRINGS "${OS_VERSION_STRINGS}; ${SW_VERS_COMMAND_RESULT}" )
endif ( )
if ( LSB_RELEASE_COMMAND )
2020-05-14 17:53:00 +02:00
execute_process ( COMMAND ${ LSB_RELEASE_COMMAND } -a OUTPUT_VARIABLE LSB_RELEASE_COMMAND_RESULT OUTPUT_STRIP_TRAILING_WHITESPACE ERROR_QUIET )
2020-05-14 13:33:10 +02:00
string ( REGEX REPLACE "[ ]*\n" "; " LSB_RELEASE_COMMAND_RESULT "${LSB_RELEASE_COMMAND_RESULT}" )
set ( OS_VERSION_STRINGS "${OS_VERSION_STRINGS}; ${LSB_RELEASE_COMMAND_RESULT}" )
endif ( )
if ( UNAME_COMMAND )
2020-05-14 17:53:00 +02:00
execute_process ( COMMAND ${ UNAME_COMMAND } -a OUTPUT_VARIABLE UNAME_COMMAND_RESULT OUTPUT_STRIP_TRAILING_WHITESPACE ERROR_QUIET )
2020-05-14 13:33:10 +02:00
set ( OS_VERSION_STRINGS "${OS_VERSION_STRINGS}; ${UNAME_COMMAND_RESULT}" )
2020-05-13 14:25:51 +02:00
endif ( )
2020-05-14 13:33:10 +02:00
message ( STATUS "Operating system: ${OS_VERSION_STRINGS}" )
# determine the compiler (for debug and support purposes)
if ( MSVC )
2020-05-14 13:37:59 +02:00
execute_process ( COMMAND ${ CMAKE_CXX_COMPILER } OUTPUT_VARIABLE CXX_VERSION_RESULT OUTPUT_STRIP_TRAILING_WHITESPACE ERROR_VARIABLE CXX_VERSION_RESULT ERROR_STRIP_TRAILING_WHITESPACE )
2020-08-07 16:08:02 +08:00
set ( CXX_VERSION_RESULT "${CXX_VERSION_RESULT}; MSVC_VERSION=${MSVC_VERSION}; MSVC_TOOLSET_VERSION=${MSVC_TOOLSET_VERSION}" )
2020-05-14 13:33:10 +02:00
else ( )
execute_process ( COMMAND ${ CMAKE_CXX_COMPILER } --version OUTPUT_VARIABLE CXX_VERSION_RESULT OUTPUT_STRIP_TRAILING_WHITESPACE )
endif ( )
string ( REGEX REPLACE "[ ]*\n" "; " CXX_VERSION_RESULT "${CXX_VERSION_RESULT}" )
message ( STATUS "Compiler: ${CXX_VERSION_RESULT}" )
2025-05-23 17:59:52 +02:00
# determine used C++ standard library (for debug and support purposes)
2025-08-02 02:23:26 +05:30
if ( CMAKE_CROSSCOMPILING )
set ( LIBCPP_VERSION_OUTPUT_CACHED "could not be detected due to cross-compiling" CACHE STRING "Detected C++ standard library version" )
endif ( )
2025-05-23 17:59:52 +02:00
if ( NOT DEFINED LIBCPP_VERSION_OUTPUT_CACHED )
try_run ( RUN_RESULT_VAR COMPILE_RESULT_VAR
" $ { C M A K E _ B I N A R Y _ D I R } " S O U R C E S " $ { C M A K E _ S O U R C E _ D I R } / c m a k e / d e t e c t _ l i b c p p _ v e r s i o n . c p p "
2025-08-02 02:23:26 +05:30
R U N _ O U T P U T _ V A R I A B L E L I B C P P _ V E R S I O N _ O U T P U T
C O M P I L E _ O U T P U T _ V A R I A B L E L I B C P P _ V E R S I O N _ C O M P I L E _ O U T P U T
2025-05-23 17:59:52 +02:00
)
if ( NOT LIBCPP_VERSION_OUTPUT )
set ( LIBCPP_VERSION_OUTPUT "Unknown" )
message ( AUTHOR_WARNING "Failed to compile cmake/detect_libcpp_version to detect the used C++ standard library. This does not affect the library or the test cases. Please still create an issue at https://github.com/nlohmann/json to investigate this.\n${LIBCPP_VERSION_COMPILE_OUTPUT}" )
endif ( )
set ( LIBCPP_VERSION_OUTPUT_CACHED "${LIBCPP_VERSION_OUTPUT}" CACHE STRING "Detected C++ standard library version" )
endif ( )
message ( STATUS "C++ standard library: ${LIBCPP_VERSION_OUTPUT_CACHED}" )