mirror of
https://github.com/DaveGamble/cJSON.git
synced 2023-08-10 21:13:26 +03:00
Compare commits
44 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
f0e93c9118 | ||
|
|
bf0bc22a11 | ||
|
|
5baa77f86c | ||
|
|
b26e71f960 | ||
|
|
7a2615c231 | ||
|
|
e174831819 | ||
|
|
ac368e9dfb | ||
|
|
d1c2e2df4a | ||
|
|
04e27dc8c5 | ||
|
|
0d675cb048 | ||
|
|
45e1278acb | ||
|
|
217ab02612 | ||
|
|
e872d40223 | ||
|
|
21733eb02e | ||
|
|
a9ce4e6bbc | ||
|
|
eb8c0baa3b | ||
|
|
4e0c119391 | ||
|
|
38b2f40a9a | ||
|
|
d3bc571a38 | ||
|
|
48eaecd172 | ||
|
|
18ad8a8770 | ||
|
|
93227319f0 | ||
|
|
f0c1b896ba | ||
|
|
2d252ae595 | ||
|
|
c46c4d1559 | ||
|
|
1af74c8cc1 | ||
|
|
9bdf19fde1 | ||
|
|
bdd5ff7ad6 | ||
|
|
24ea388dcf | ||
|
|
39745c9c75 | ||
|
|
9585c38d5a | ||
|
|
c268e77b21 | ||
|
|
9f745a2251 | ||
|
|
010e31f2f2 | ||
|
|
8ea37fce01 | ||
|
|
b2fe02712d | ||
|
|
c179509b31 | ||
|
|
46c4f55c94 | ||
|
|
90ff72c8bb | ||
|
|
e9d1de24cf | ||
|
|
56f2bc6f3e | ||
|
|
cdc35ebf88 | ||
|
|
90a46eaccd | ||
|
|
2a3a313f83 |
@@ -23,6 +23,6 @@ addons:
|
|||||||
script:
|
script:
|
||||||
- mkdir build
|
- mkdir build
|
||||||
- cd build
|
- cd build
|
||||||
- cmake .. -DENABLE_CJSON_UTILS=On -DENABLE_VALGRIND="${VALGRIND}" -DENABLE_SANITIZERS="${SANITIZERS}"
|
- cmake .. -DENABLE_CJSON_UTILS=On -DENABLE_VALGRIND="${VALGRIND}" -DENABLE_SAFE_STACK="${VALGRIND}" -DENABLE_SANITIZERS="${SANITIZERS}"
|
||||||
- make
|
- make
|
||||||
- make test CTEST_OUTPUT_ON_FAILURE=On
|
- make test CTEST_OUTPUT_ON_FAILURE=On
|
||||||
|
|||||||
@@ -1,3 +1,9 @@
|
|||||||
|
1.5.6
|
||||||
|
=====
|
||||||
|
Fixes:
|
||||||
|
------
|
||||||
|
* Make cJSON a lot more tolerant about passing NULL pointers to its functions, it should now fail safely instead of dereferencing the pointer. (#183) Thanks @msichal for reporting #182
|
||||||
|
|
||||||
1.5.5
|
1.5.5
|
||||||
=====
|
=====
|
||||||
Fixes:
|
Fixes:
|
||||||
|
|||||||
106
CMakeLists.txt
106
CMakeLists.txt
@@ -7,7 +7,7 @@ project(cJSON C)
|
|||||||
|
|
||||||
set(PROJECT_VERSION_MAJOR 1)
|
set(PROJECT_VERSION_MAJOR 1)
|
||||||
set(PROJECT_VERSION_MINOR 5)
|
set(PROJECT_VERSION_MINOR 5)
|
||||||
set(PROJECT_VERSION_PATCH 5)
|
set(PROJECT_VERSION_PATCH 6)
|
||||||
set(CJSON_VERSION_SO 1)
|
set(CJSON_VERSION_SO 1)
|
||||||
set(CJSON_UTILS_VERSION_SO 1)
|
set(CJSON_UTILS_VERSION_SO 1)
|
||||||
set(PROJECT_VERSION "${PROJECT_VERSION_MAJOR}.${PROJECT_VERSION_MINOR}.${PROJECT_VERSION_PATCH}")
|
set(PROJECT_VERSION "${PROJECT_VERSION_MAJOR}.${PROJECT_VERSION_MINOR}.${PROJECT_VERSION_PATCH}")
|
||||||
@@ -16,33 +16,46 @@ set(PROJECT_VERSION "${PROJECT_VERSION_MAJOR}.${PROJECT_VERSION_MINOR}.${PROJECT
|
|||||||
set(custom_compiler_flags)
|
set(custom_compiler_flags)
|
||||||
|
|
||||||
include(CheckCCompilerFlag)
|
include(CheckCCompilerFlag)
|
||||||
option(ENABLE_CUSTOM_COMPILER_FLAGS "Enables custom compiler flags for Clang and GCC" ON)
|
option(ENABLE_CUSTOM_COMPILER_FLAGS "Enables custom compiler flags" ON)
|
||||||
if (ENABLE_CUSTOM_COMPILER_FLAGS)
|
if (ENABLE_CUSTOM_COMPILER_FLAGS)
|
||||||
list(APPEND custom_compiler_flags
|
if (("${CMAKE_C_COMPILER_ID}" STREQUAL "Clang") OR ("${CMAKE_C_COMPILER_ID}" STREQUAL "GNU"))
|
||||||
-std=c89
|
list(APPEND custom_compiler_flags
|
||||||
-pedantic
|
-std=c89
|
||||||
-Wall
|
-pedantic
|
||||||
-Wextra
|
-Wall
|
||||||
-Werror
|
-Wextra
|
||||||
-Wstrict-prototypes
|
-Werror
|
||||||
-Wwrite-strings
|
-Wstrict-prototypes
|
||||||
-Wshadow
|
-Wwrite-strings
|
||||||
-Winit-self
|
-Wshadow
|
||||||
-Wcast-align
|
-Winit-self
|
||||||
-Wformat=2
|
-Wcast-align
|
||||||
-Wmissing-prototypes
|
-Wformat=2
|
||||||
-Wstrict-overflow=2
|
-Wmissing-prototypes
|
||||||
-Wcast-qual
|
-Wstrict-overflow=2
|
||||||
-Wundef
|
-Wcast-qual
|
||||||
-Wswitch-default
|
-Wundef
|
||||||
-Wconversion
|
-Wswitch-default
|
||||||
-Wc++-compat
|
-Wconversion
|
||||||
-fstack-protector-strong
|
-Wc++-compat
|
||||||
-Wcomma
|
-fstack-protector-strong
|
||||||
-Wdouble-promotion
|
-Wcomma
|
||||||
-Wparentheses
|
-Wdouble-promotion
|
||||||
-Wformat-overflow
|
-Wparentheses
|
||||||
|
-Wformat-overflow
|
||||||
|
-Wunused-macros
|
||||||
|
-Wmissing-variable-declarations
|
||||||
|
-Wused-but-marked-unused
|
||||||
|
-Wswitch-enum
|
||||||
)
|
)
|
||||||
|
elseif("${CMAKE_C_COMPILER_ID}" STREQUAL "MSVC")
|
||||||
|
list(APPEND custom_compiler_flags
|
||||||
|
/GS
|
||||||
|
/Za
|
||||||
|
/sdl
|
||||||
|
/W4
|
||||||
|
)
|
||||||
|
endif()
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
option(ENABLE_SANITIZERS "Enables AddressSanitizer and UndefinedBehaviorSanitizer." OFF)
|
option(ENABLE_SANITIZERS "Enables AddressSanitizer and UndefinedBehaviorSanitizer." OFF)
|
||||||
@@ -60,6 +73,16 @@ if (ENABLE_SANITIZERS)
|
|||||||
)
|
)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
|
option(ENABLE_SAFE_STACK "Enables the SafeStack instrumentation pass by the Code Pointer Integrity Project" OFF)
|
||||||
|
if (ENABLE_SAFE_STACK)
|
||||||
|
if (ENABLE_SANITIZERS)
|
||||||
|
message(FATAL_ERROR "ENABLE_SAFE_STACK cannot be used in combination with ENABLE_SANITIZERS")
|
||||||
|
endif()
|
||||||
|
list(APPEND custom_compiler_flags
|
||||||
|
-fsanitize=safe-stack
|
||||||
|
)
|
||||||
|
endif()
|
||||||
|
|
||||||
option(ENABLE_PUBLIC_SYMBOLS "Export library symbols." On)
|
option(ENABLE_PUBLIC_SYMBOLS "Export library symbols." On)
|
||||||
if (ENABLE_PUBLIC_SYMBOLS)
|
if (ENABLE_PUBLIC_SYMBOLS)
|
||||||
list(APPEND custom_compiler_flags -fvisibility=hidden)
|
list(APPEND custom_compiler_flags -fvisibility=hidden)
|
||||||
@@ -99,7 +122,17 @@ set(CJSON_LIB cjson)
|
|||||||
file(GLOB HEADERS cJSON.h)
|
file(GLOB HEADERS cJSON.h)
|
||||||
set(SOURCES cJSON.c)
|
set(SOURCES cJSON.c)
|
||||||
|
|
||||||
add_library("${CJSON_LIB}" "${HEADERS}" "${SOURCES}")
|
option(BUILD_SHARED_AND_STATIC_LIBS "Build both shared and static libraries" Off)
|
||||||
|
|
||||||
|
if (NOT BUILD_SHARED_AND_STATIC_LIBS)
|
||||||
|
add_library("${CJSON_LIB}" "${HEADERS}" "${SOURCES}")
|
||||||
|
else()
|
||||||
|
# See https://cmake.org/Wiki/CMake_FAQ#How_do_I_make_my_shared_and_static_libraries_have_the_same_root_name.2C_but_different_suffixes.3F
|
||||||
|
add_library("${CJSON_LIB}" SHARED "${HEADERS}" "${SOURCES}")
|
||||||
|
add_library("${CJSON_LIB}-static" STATIC "${HEADERS}" "${SOURCES}")
|
||||||
|
set_target_properties("${CJSON_LIB}-static" PROPERTIES OUTPUT_NAME "${CJSON_LIB}")
|
||||||
|
set_target_properties("${CJSON_LIB}-static" PROPERTIES PREFIX "lib")
|
||||||
|
endif()
|
||||||
if (NOT WIN32)
|
if (NOT WIN32)
|
||||||
target_link_libraries("${CJSON_LIB}" m)
|
target_link_libraries("${CJSON_LIB}" m)
|
||||||
endif()
|
endif()
|
||||||
@@ -110,6 +143,9 @@ configure_file("${CMAKE_CURRENT_SOURCE_DIR}/library_config/libcjson.pc.in"
|
|||||||
install(FILES cJSON.h DESTINATION "${CMAKE_INSTALL_INCLUDEDIR}/cjson")
|
install(FILES cJSON.h DESTINATION "${CMAKE_INSTALL_INCLUDEDIR}/cjson")
|
||||||
install (FILES "${CMAKE_CURRENT_BINARY_DIR}/libcjson.pc" DESTINATION "${CMAKE_INSTALL_LIBDIR}/pkgconfig")
|
install (FILES "${CMAKE_CURRENT_BINARY_DIR}/libcjson.pc" DESTINATION "${CMAKE_INSTALL_LIBDIR}/pkgconfig")
|
||||||
install(TARGETS "${CJSON_LIB}" DESTINATION "${CMAKE_INSTALL_LIBDIR}" EXPORT "${CJSON_LIB}")
|
install(TARGETS "${CJSON_LIB}" DESTINATION "${CMAKE_INSTALL_LIBDIR}" EXPORT "${CJSON_LIB}")
|
||||||
|
if (BUILD_SHARED_AND_STATIC_LIBS)
|
||||||
|
install(TARGETS "${CJSON_LIB}-static" DESTINATION "${CMAKE_INSTALL_LIBDIR}")
|
||||||
|
endif()
|
||||||
if(ENABLE_TARGET_EXPORT)
|
if(ENABLE_TARGET_EXPORT)
|
||||||
# export library information for CMake projects
|
# export library information for CMake projects
|
||||||
install(EXPORT "${CJSON_LIB}" DESTINATION "${CMAKE_INSTALL_LIBDIR}/cmake/cJSON")
|
install(EXPORT "${CJSON_LIB}" DESTINATION "${CMAKE_INSTALL_LIBDIR}/cmake/cJSON")
|
||||||
@@ -128,13 +164,25 @@ if(ENABLE_CJSON_UTILS)
|
|||||||
file(GLOB HEADERS_UTILS cJSON_Utils.h)
|
file(GLOB HEADERS_UTILS cJSON_Utils.h)
|
||||||
set(SOURCES_UTILS cJSON_Utils.c)
|
set(SOURCES_UTILS cJSON_Utils.c)
|
||||||
|
|
||||||
add_library("${CJSON_UTILS_LIB}" "${HEADERS_UTILS}" "${SOURCES_UTILS}")
|
if (NOT BUILD_SHARED_AND_STATIC_LIBS)
|
||||||
target_link_libraries("${CJSON_UTILS_LIB}" "${CJSON_LIB}")
|
add_library("${CJSON_UTILS_LIB}" "${HEADERS_UTILS}" "${SOURCES_UTILS}")
|
||||||
|
target_link_libraries("${CJSON_UTILS_LIB}" "${CJSON_LIB}")
|
||||||
|
else()
|
||||||
|
add_library("${CJSON_UTILS_LIB}" SHARED "${HEADERS_UTILS}" "${SOURCES_UTILS}")
|
||||||
|
target_link_libraries("${CJSON_UTILS_LIB}" "${CJSON_LIB}")
|
||||||
|
add_library("${CJSON_UTILS_LIB}-static" STATIC "${HEADERS_UTILS}" "${SOURCES_UTILS}")
|
||||||
|
target_link_libraries("${CJSON_UTILS_LIB}-static" "${CJSON_LIB}-static")
|
||||||
|
set_target_properties("${CJSON_UTILS_LIB}-static" PROPERTIES OUTPUT_NAME "${CJSON_UTILS_LIB}")
|
||||||
|
set_target_properties("${CJSON_UTILS_LIB}-static" PROPERTIES PREFIX "lib")
|
||||||
|
endif()
|
||||||
|
|
||||||
configure_file("${CMAKE_CURRENT_SOURCE_DIR}/library_config/libcjson_utils.pc.in"
|
configure_file("${CMAKE_CURRENT_SOURCE_DIR}/library_config/libcjson_utils.pc.in"
|
||||||
"${CMAKE_CURRENT_BINARY_DIR}/libcjson_utils.pc" @ONLY)
|
"${CMAKE_CURRENT_BINARY_DIR}/libcjson_utils.pc" @ONLY)
|
||||||
|
|
||||||
install(TARGETS "${CJSON_UTILS_LIB}" DESTINATION "${CMAKE_INSTALL_LIBDIR}" EXPORT "${CJSON_UTILS_LIB}")
|
install(TARGETS "${CJSON_UTILS_LIB}" DESTINATION "${CMAKE_INSTALL_LIBDIR}" EXPORT "${CJSON_UTILS_LIB}")
|
||||||
|
if (BUILD_SHARED_AND_STATIC_LIBS)
|
||||||
|
install(TARGETS "${CJSON_UTILS_LIB}-static" DESTINATION "${CMAKE_INSTALL_LIBDIR}")
|
||||||
|
endif()
|
||||||
install(FILES cJSON_Utils.h DESTINATION "${CMAKE_INSTALL_INCLUDEDIR}/cjson")
|
install(FILES cJSON_Utils.h DESTINATION "${CMAKE_INSTALL_INCLUDEDIR}/cjson")
|
||||||
install (FILES "${CMAKE_CURRENT_BINARY_DIR}/libcjson_utils.pc" DESTINATION "${CMAKE_INSTALL_LIBDIR}/pkgconfig")
|
install (FILES "${CMAKE_CURRENT_BINARY_DIR}/libcjson_utils.pc" DESTINATION "${CMAKE_INSTALL_LIBDIR}/pkgconfig")
|
||||||
if(ENABLE_TARGET_EXPORT)
|
if(ENABLE_TARGET_EXPORT)
|
||||||
|
|||||||
2
Makefile
2
Makefile
@@ -8,7 +8,7 @@ CJSON_TEST_SRC = cJSON.c test.c
|
|||||||
|
|
||||||
LDLIBS = -lm
|
LDLIBS = -lm
|
||||||
|
|
||||||
LIBVERSION = 1.5.5
|
LIBVERSION = 1.5.6
|
||||||
CJSON_SOVERSION = 1
|
CJSON_SOVERSION = 1
|
||||||
UTILS_SOVERSION = 1
|
UTILS_SOVERSION = 1
|
||||||
|
|
||||||
|
|||||||
@@ -85,10 +85,12 @@ You can change the build process with a list of different options that you can p
|
|||||||
* `-DENABLE_CJSON_TEST=On`: Enable building the tests. (on by default)
|
* `-DENABLE_CJSON_TEST=On`: Enable building the tests. (on by default)
|
||||||
* `-DENABLE_CJSON_UTILS=On`: Enable building cJSON_Utils. (off by default)
|
* `-DENABLE_CJSON_UTILS=On`: Enable building cJSON_Utils. (off by default)
|
||||||
* `-DENABLE_TARGET_EXPORT=On`: Enable the export of CMake targets. Turn off if it makes problems. (on by default)
|
* `-DENABLE_TARGET_EXPORT=On`: Enable the export of CMake targets. Turn off if it makes problems. (on by default)
|
||||||
* `-DENABLE_CUSTOM_COMPILER_FLAGS=On`: Enable custom compiler flags (currently for Clang and GCC). Turn off if it makes problems. (on by default)
|
* `-DENABLE_CUSTOM_COMPILER_FLAGS=On`: Enable custom compiler flags (currently for Clang, GCC and MSVC). Turn off if it makes problems. (on by default)
|
||||||
* `-DENABLE_VALGRIND=On`: Run tests with [valgrind](http://valgrind.org). (off by default)
|
* `-DENABLE_VALGRIND=On`: Run tests with [valgrind](http://valgrind.org). (off by default)
|
||||||
* `-DENABLE_SANITIZERS=On`: Compile cJSON with [AddressSanitizer](https://github.com/google/sanitizers/wiki/AddressSanitizer) and [UndefinedBehaviorSanitizer](https://clang.llvm.org/docs/UndefinedBehaviorSanitizer.html) enabled (if possible). (off by default)
|
* `-DENABLE_SANITIZERS=On`: Compile cJSON with [AddressSanitizer](https://github.com/google/sanitizers/wiki/AddressSanitizer) and [UndefinedBehaviorSanitizer](https://clang.llvm.org/docs/UndefinedBehaviorSanitizer.html) enabled (if possible). (off by default)
|
||||||
|
* `-DENABLE_SAFE_STACK`: Enable the [SafeStack](https://clang.llvm.org/docs/SafeStack.html) instrumentation pass. Currently only works with the Clang compiler. (off by default)
|
||||||
* `-DBUILD_SHARED_LIBS=On`: Build the shared libraries. (on by default)
|
* `-DBUILD_SHARED_LIBS=On`: Build the shared libraries. (on by default)
|
||||||
|
* `-DBUILD_SHARED_AND_STATIC_LIBS=On`: Build both shared and static libraries. (off by default)
|
||||||
* `-DCMAKE_INSTALL_PREFIX=/usr`: Set a prefix for the installation.
|
* `-DCMAKE_INSTALL_PREFIX=/usr`: Set a prefix for the installation.
|
||||||
|
|
||||||
If you are packaging cJSON for a distribution of Linux, you would probably take these steps for example:
|
If you are packaging cJSON for a distribution of Linux, you would probably take these steps for example:
|
||||||
|
|||||||
82
appveyor.yml
Normal file
82
appveyor.yml
Normal file
@@ -0,0 +1,82 @@
|
|||||||
|
os: Visual Studio 2015
|
||||||
|
|
||||||
|
# ENABLE_CUSTOM_COMPILER_FLAGS - on by default
|
||||||
|
# ENABLE_SANITIZERS - off by default
|
||||||
|
# ENABLE_PUBLIC_SYMBOLS - on by default
|
||||||
|
# BUILD_SHARED_LIBS - on by default
|
||||||
|
# ENABLE_TARGET_EXPORT - on by default
|
||||||
|
# ENABLE_CJSON_UTILS - off by default
|
||||||
|
# ENABLE_CJSON_TEST -on by default
|
||||||
|
# ENABLE_VALGRIND - off by default
|
||||||
|
# ENABLE_FUZZING - off by default
|
||||||
|
|
||||||
|
environment:
|
||||||
|
matrix:
|
||||||
|
- GENERATOR: "Visual Studio 14 2015"
|
||||||
|
BUILD_SHARED_LIBS: ON
|
||||||
|
ENABLE_CJSON_TEST: OFF
|
||||||
|
ENABLE_CJSON_UTILS: ON
|
||||||
|
|
||||||
|
- GENERATOR: "Visual Studio 14 2015"
|
||||||
|
BUILD_SHARED_LIBS: OFF
|
||||||
|
ENABLE_CJSON_TEST: OFF
|
||||||
|
ENABLE_CJSON_UTILS: ON
|
||||||
|
|
||||||
|
- GENERATOR: "Visual Studio 12 2013"
|
||||||
|
BUILD_SHARED_LIBS: ON
|
||||||
|
ENABLE_CJSON_TEST: OFF
|
||||||
|
ENABLE_CJSON_UTILS: ON
|
||||||
|
|
||||||
|
- GENERATOR: "Visual Studio 12 2013"
|
||||||
|
BUILD_SHARED_LIBS: OFF
|
||||||
|
ENABLE_CJSON_TEST: OFF
|
||||||
|
ENABLE_CJSON_UTILS: ON
|
||||||
|
|
||||||
|
- GENERATOR: "Visual Studio 11 2012"
|
||||||
|
BUILD_SHARED_LIBS: ON
|
||||||
|
ENABLE_CJSON_TEST: OFF
|
||||||
|
ENABLE_CJSON_UTILS: ON
|
||||||
|
|
||||||
|
- GENERATOR: "Visual Studio 11 2012"
|
||||||
|
BUILD_SHARED_LIBS: OFF
|
||||||
|
ENABLE_CJSON_TEST: OFF
|
||||||
|
ENABLE_CJSON_UTILS: ON
|
||||||
|
|
||||||
|
- GENERATOR: "Visual Studio 10 2010"
|
||||||
|
BUILD_SHARED_LIBS: ON
|
||||||
|
ENABLE_CJSON_TEST: OFF
|
||||||
|
ENABLE_CJSON_UTILS: ON
|
||||||
|
|
||||||
|
- GENERATOR: "Visual Studio 10 2010"
|
||||||
|
BUILD_SHARED_LIBS: OFF
|
||||||
|
ENABLE_CJSON_TEST: OFF
|
||||||
|
ENABLE_CJSON_UTILS: ON
|
||||||
|
|
||||||
|
- GENERATOR: "Visual Studio 9 2008"
|
||||||
|
BUILD_SHARED_LIBS: ON
|
||||||
|
ENABLE_CJSON_TEST: OFF
|
||||||
|
ENABLE_CJSON_UTILS: ON
|
||||||
|
|
||||||
|
- GENERATOR: "Visual Studio 9 2008"
|
||||||
|
BUILD_SHARED_LIBS: OFF
|
||||||
|
ENABLE_CJSON_TEST: OFF
|
||||||
|
ENABLE_CJSON_UTILS: ON
|
||||||
|
|
||||||
|
|
||||||
|
platform:
|
||||||
|
- x86
|
||||||
|
- x64
|
||||||
|
|
||||||
|
configuration:
|
||||||
|
- Release
|
||||||
|
|
||||||
|
|
||||||
|
build_script:
|
||||||
|
- ps: if($env:PLATFORM -eq "x64") { $env:CMAKE_GEN_SUFFIX=" Win64" }
|
||||||
|
- cmake "-G%GENERATOR%%CMAKE_GEN_SUFFIX%" -DBUILD_SHARED_LIBS=%BUILD_SHARED_LIBS% -DENABLE_CJSON_TEST=%ENABLE_CJSON_TEST% -H. -Bbuild
|
||||||
|
- cmake --build build --config "%CONFIGURATION%"
|
||||||
|
|
||||||
|
|
||||||
|
on_failure:
|
||||||
|
- ps: if(Test-Path builds/CMakeFiles/CMakeOutput.log) { cat builds/CMakeFiles/CMakeOutput.log }
|
||||||
|
- ps: if(Test-Path builds/CMakeFiles/CMakeError.log) { cat builds/CMakeFiles/CMakeError.log }
|
||||||
143
cJSON.c
143
cJSON.c
@@ -23,9 +23,19 @@
|
|||||||
/* cJSON */
|
/* cJSON */
|
||||||
/* JSON parser in C. */
|
/* JSON parser in C. */
|
||||||
|
|
||||||
|
/* disable warnings about old C89 functions in MSVC */
|
||||||
|
#if !defined(_CRT_SECURE_NO_DEPRECATE) && defined(_MSC_VER)
|
||||||
|
#define _CRT_SECURE_NO_DEPRECATE
|
||||||
|
#endif
|
||||||
|
|
||||||
#ifdef __GNUC__
|
#ifdef __GNUC__
|
||||||
#pragma GCC visibility push(default)
|
#pragma GCC visibility push(default)
|
||||||
#endif
|
#endif
|
||||||
|
#if defined(_MSC_VER)
|
||||||
|
#pragma warning (push)
|
||||||
|
/* disable warning about single line comments in system headers */
|
||||||
|
#pragma warning (disable : 4001)
|
||||||
|
#endif
|
||||||
|
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
@@ -36,6 +46,9 @@
|
|||||||
#include <ctype.h>
|
#include <ctype.h>
|
||||||
#include <locale.h>
|
#include <locale.h>
|
||||||
|
|
||||||
|
#if defined(_MSC_VER)
|
||||||
|
#pragma warning (pop)
|
||||||
|
#endif
|
||||||
#ifdef __GNUC__
|
#ifdef __GNUC__
|
||||||
#pragma GCC visibility pop
|
#pragma GCC visibility pop
|
||||||
#endif
|
#endif
|
||||||
@@ -58,7 +71,7 @@ CJSON_PUBLIC(const char *) cJSON_GetErrorPtr(void)
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* This is a safeguard to prevent copy-pasters from using incompatible C and header files */
|
/* This is a safeguard to prevent copy-pasters from using incompatible C and header files */
|
||||||
#if (CJSON_VERSION_MAJOR != 1) || (CJSON_VERSION_MINOR != 5) || (CJSON_VERSION_PATCH != 5)
|
#if (CJSON_VERSION_MAJOR != 1) || (CJSON_VERSION_MINOR != 5) || (CJSON_VERSION_PATCH != 6)
|
||||||
#error cJSON.h and cJSON.c have different versions. Make sure that both have the same.
|
#error cJSON.h and cJSON.c have different versions. Make sure that both have the same.
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
@@ -101,7 +114,27 @@ typedef struct internal_hooks
|
|||||||
void *(*reallocate)(void *pointer, size_t size);
|
void *(*reallocate)(void *pointer, size_t size);
|
||||||
} internal_hooks;
|
} internal_hooks;
|
||||||
|
|
||||||
static internal_hooks global_hooks = { malloc, free, realloc };
|
#if defined(_MSC_VER)
|
||||||
|
/* work around MSVC error C2322: '...' address of dillimport '...' is not static */
|
||||||
|
static void *internal_malloc(size_t size)
|
||||||
|
{
|
||||||
|
return malloc(size);
|
||||||
|
}
|
||||||
|
static void internal_free(void *pointer)
|
||||||
|
{
|
||||||
|
free(pointer);
|
||||||
|
}
|
||||||
|
static void *internal_realloc(void *pointer, size_t size)
|
||||||
|
{
|
||||||
|
return realloc(pointer, size);
|
||||||
|
}
|
||||||
|
#else
|
||||||
|
#define internal_malloc malloc
|
||||||
|
#define internal_free free
|
||||||
|
#define internal_realloc realloc
|
||||||
|
#endif
|
||||||
|
|
||||||
|
static internal_hooks global_hooks = { internal_malloc, internal_free, internal_realloc };
|
||||||
|
|
||||||
static unsigned char* cJSON_strdup(const unsigned char* string, const internal_hooks * const hooks)
|
static unsigned char* cJSON_strdup(const unsigned char* string, const internal_hooks * const hooks)
|
||||||
{
|
{
|
||||||
@@ -114,7 +147,8 @@ static unsigned char* cJSON_strdup(const unsigned char* string, const internal_h
|
|||||||
}
|
}
|
||||||
|
|
||||||
length = strlen((const char*)string) + sizeof("");
|
length = strlen((const char*)string) + sizeof("");
|
||||||
if (!(copy = (unsigned char*)hooks->allocate(length)))
|
copy = (unsigned char*)hooks->allocate(length);
|
||||||
|
if (copy == NULL)
|
||||||
{
|
{
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
@@ -208,7 +242,6 @@ typedef struct
|
|||||||
|
|
||||||
/* check if the given size is left to read in a given parse buffer (starting with 1) */
|
/* check if the given size is left to read in a given parse buffer (starting with 1) */
|
||||||
#define can_read(buffer, size) ((buffer != NULL) && (((buffer)->offset + size) <= (buffer)->length))
|
#define can_read(buffer, size) ((buffer != NULL) && (((buffer)->offset + size) <= (buffer)->length))
|
||||||
#define cannot_read(buffer, size) (!can_read(buffer, size))
|
|
||||||
/* check if the buffer can be accessed at the given index (starting with 0) */
|
/* check if the buffer can be accessed at the given index (starting with 0) */
|
||||||
#define can_access_at_index(buffer, index) ((buffer != NULL) && (((buffer)->offset + index) < (buffer)->length))
|
#define can_access_at_index(buffer, index) ((buffer != NULL) && (((buffer)->offset + index) < (buffer)->length))
|
||||||
#define cannot_access_at_index(buffer, index) (!can_access_at_index(buffer, index))
|
#define cannot_access_at_index(buffer, index) (!can_access_at_index(buffer, index))
|
||||||
@@ -925,6 +958,22 @@ static parse_buffer *buffer_skip_whitespace(parse_buffer * const buffer)
|
|||||||
return buffer;
|
return buffer;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* skip the UTF-8 BOM (byte order mark) if it is at the beginning of a buffer */
|
||||||
|
static parse_buffer *skip_utf8_bom(parse_buffer * const buffer)
|
||||||
|
{
|
||||||
|
if ((buffer == NULL) || (buffer->content == NULL) || (buffer->offset != 0))
|
||||||
|
{
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (can_access_at_index(buffer, 4) && (strncmp((const char*)buffer_at_offset(buffer), "\xEF\xBB\xBF", 3) == 0))
|
||||||
|
{
|
||||||
|
buffer->offset += 3;
|
||||||
|
}
|
||||||
|
|
||||||
|
return buffer;
|
||||||
|
}
|
||||||
|
|
||||||
/* Parse an object - create a new root, and populate. */
|
/* Parse an object - create a new root, and populate. */
|
||||||
CJSON_PUBLIC(cJSON *) cJSON_ParseWithOpts(const char *value, const char **return_parse_end, cJSON_bool require_null_terminated)
|
CJSON_PUBLIC(cJSON *) cJSON_ParseWithOpts(const char *value, const char **return_parse_end, cJSON_bool require_null_terminated)
|
||||||
{
|
{
|
||||||
@@ -951,7 +1000,7 @@ CJSON_PUBLIC(cJSON *) cJSON_ParseWithOpts(const char *value, const char **return
|
|||||||
goto fail;
|
goto fail;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!parse_value(item, buffer_skip_whitespace(&buffer)))
|
if (!parse_value(item, buffer_skip_whitespace(skip_utf8_bom(&buffer))))
|
||||||
{
|
{
|
||||||
/* parse failure. ep is set. */
|
/* parse failure. ep is set. */
|
||||||
goto fail;
|
goto fail;
|
||||||
@@ -1111,6 +1160,7 @@ CJSON_PUBLIC(char *) cJSON_PrintBuffered(const cJSON *item, int prebuffer, cJSON
|
|||||||
|
|
||||||
if (!print_value(item, &p))
|
if (!print_value(item, &p))
|
||||||
{
|
{
|
||||||
|
global_hooks.deallocate(p.buffer);
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -1121,7 +1171,7 @@ CJSON_PUBLIC(cJSON_bool) cJSON_PrintPreallocated(cJSON *item, char *buf, const i
|
|||||||
{
|
{
|
||||||
printbuffer p = { 0, 0, 0, 0, 0, 0, { 0, 0, 0 } };
|
printbuffer p = { 0, 0, 0, 0, 0, 0, { 0, 0, 0 } };
|
||||||
|
|
||||||
if (len < 0)
|
if ((len < 0) || (buf == NULL))
|
||||||
{
|
{
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
@@ -1188,7 +1238,6 @@ static cJSON_bool parse_value(cJSON * const item, parse_buffer * const input_buf
|
|||||||
return parse_object(item, input_buffer);
|
return parse_object(item, input_buffer);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -1652,17 +1701,25 @@ static cJSON_bool print_object(const cJSON * const item, printbuffer * const out
|
|||||||
/* Get Array size/item / object item. */
|
/* Get Array size/item / object item. */
|
||||||
CJSON_PUBLIC(int) cJSON_GetArraySize(const cJSON *array)
|
CJSON_PUBLIC(int) cJSON_GetArraySize(const cJSON *array)
|
||||||
{
|
{
|
||||||
cJSON *c = array->child;
|
cJSON *child = NULL;
|
||||||
size_t i = 0;
|
size_t size = 0;
|
||||||
while(c)
|
|
||||||
|
if (array == NULL)
|
||||||
{
|
{
|
||||||
i++;
|
return 0;
|
||||||
c = c->next;
|
}
|
||||||
|
|
||||||
|
child = array->child;
|
||||||
|
|
||||||
|
while(child != NULL)
|
||||||
|
{
|
||||||
|
size++;
|
||||||
|
child = child->next;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* FIXME: Can overflow here. Cannot be fixed without breaking the API */
|
/* FIXME: Can overflow here. Cannot be fixed without breaking the API */
|
||||||
|
|
||||||
return (int)i;
|
return (int)size;
|
||||||
}
|
}
|
||||||
|
|
||||||
static cJSON* get_array_item(const cJSON *array, size_t index)
|
static cJSON* get_array_item(const cJSON *array, size_t index)
|
||||||
@@ -1747,16 +1804,23 @@ static void suffix_object(cJSON *prev, cJSON *item)
|
|||||||
/* Utility for handling references. */
|
/* Utility for handling references. */
|
||||||
static cJSON *create_reference(const cJSON *item, const internal_hooks * const hooks)
|
static cJSON *create_reference(const cJSON *item, const internal_hooks * const hooks)
|
||||||
{
|
{
|
||||||
cJSON *ref = cJSON_New_Item(hooks);
|
cJSON *reference = NULL;
|
||||||
if (!ref)
|
if (item == NULL)
|
||||||
{
|
{
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
memcpy(ref, item, sizeof(cJSON));
|
|
||||||
ref->string = NULL;
|
reference = cJSON_New_Item(hooks);
|
||||||
ref->type |= cJSON_IsReference;
|
if (reference == NULL)
|
||||||
ref->next = ref->prev = NULL;
|
{
|
||||||
return ref;
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
|
memcpy(reference, item, sizeof(cJSON));
|
||||||
|
reference->string = NULL;
|
||||||
|
reference->type |= cJSON_IsReference;
|
||||||
|
reference->next = reference->prev = NULL;
|
||||||
|
return reference;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Add item to array/object. */
|
/* Add item to array/object. */
|
||||||
@@ -1789,13 +1853,18 @@ CJSON_PUBLIC(void) cJSON_AddItemToArray(cJSON *array, cJSON *item)
|
|||||||
|
|
||||||
CJSON_PUBLIC(void) cJSON_AddItemToObject(cJSON *object, const char *string, cJSON *item)
|
CJSON_PUBLIC(void) cJSON_AddItemToObject(cJSON *object, const char *string, cJSON *item)
|
||||||
{
|
{
|
||||||
|
if (item == NULL)
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
/* call cJSON_AddItemToObjectCS for code reuse */
|
/* call cJSON_AddItemToObjectCS for code reuse */
|
||||||
cJSON_AddItemToObjectCS(object, (char*)cJSON_strdup((const unsigned char*)string, &global_hooks), item);
|
cJSON_AddItemToObjectCS(object, (char*)cJSON_strdup((const unsigned char*)string, &global_hooks), item);
|
||||||
/* remove cJSON_StringIsConst flag */
|
/* remove cJSON_StringIsConst flag */
|
||||||
item->type &= ~cJSON_StringIsConst;
|
item->type &= ~cJSON_StringIsConst;
|
||||||
}
|
}
|
||||||
|
|
||||||
#if defined (__clang__) || ((__GNUC__) && ((__GNUC__ > 4) || ((__GNUC__ == 4) && (__GNUC_MINOR__ > 5))))
|
#if defined(__clang__) || (defined(__GNUC__) && ((__GNUC__ > 4) || ((__GNUC__ == 4) && (__GNUC_MINOR__ > 5))))
|
||||||
#pragma GCC diagnostic push
|
#pragma GCC diagnostic push
|
||||||
#endif
|
#endif
|
||||||
#ifdef __GNUC__
|
#ifdef __GNUC__
|
||||||
@@ -1805,7 +1874,7 @@ CJSON_PUBLIC(void) cJSON_AddItemToObject(cJSON *object, const char *string, cJSO
|
|||||||
/* Add an item to an object with constant string as key */
|
/* Add an item to an object with constant string as key */
|
||||||
CJSON_PUBLIC(void) cJSON_AddItemToObjectCS(cJSON *object, const char *string, cJSON *item)
|
CJSON_PUBLIC(void) cJSON_AddItemToObjectCS(cJSON *object, const char *string, cJSON *item)
|
||||||
{
|
{
|
||||||
if (!item)
|
if ((item == NULL) || (string == NULL))
|
||||||
{
|
{
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@@ -1817,17 +1886,27 @@ CJSON_PUBLIC(void) cJSON_AddItemToObjectCS(cJSON *object, const char *string, cJ
|
|||||||
item->type |= cJSON_StringIsConst;
|
item->type |= cJSON_StringIsConst;
|
||||||
cJSON_AddItemToArray(object, item);
|
cJSON_AddItemToArray(object, item);
|
||||||
}
|
}
|
||||||
#if defined (__clang__) || ((__GNUC__) && ((__GNUC__ > 4) || ((__GNUC__ == 4) && (__GNUC_MINOR__ > 5))))
|
#if defined(__clang__) || (defined(__GNUC__) && ((__GNUC__ > 4) || ((__GNUC__ == 4) && (__GNUC_MINOR__ > 5))))
|
||||||
#pragma GCC diagnostic pop
|
#pragma GCC diagnostic pop
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
CJSON_PUBLIC(void) cJSON_AddItemReferenceToArray(cJSON *array, cJSON *item)
|
CJSON_PUBLIC(void) cJSON_AddItemReferenceToArray(cJSON *array, cJSON *item)
|
||||||
{
|
{
|
||||||
|
if (array == NULL)
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
cJSON_AddItemToArray(array, create_reference(item, &global_hooks));
|
cJSON_AddItemToArray(array, create_reference(item, &global_hooks));
|
||||||
}
|
}
|
||||||
|
|
||||||
CJSON_PUBLIC(void) cJSON_AddItemReferenceToObject(cJSON *object, const char *string, cJSON *item)
|
CJSON_PUBLIC(void) cJSON_AddItemReferenceToObject(cJSON *object, const char *string, cJSON *item)
|
||||||
{
|
{
|
||||||
|
if ((object == NULL) || (string == NULL))
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
cJSON_AddItemToObject(object, string, create_reference(item, &global_hooks));
|
cJSON_AddItemToObject(object, string, create_reference(item, &global_hooks));
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -1932,7 +2011,7 @@ CJSON_PUBLIC(void) cJSON_InsertItemInArray(cJSON *array, int which, cJSON *newit
|
|||||||
|
|
||||||
CJSON_PUBLIC(cJSON_bool) cJSON_ReplaceItemViaPointer(cJSON * const parent, cJSON * const item, cJSON * replacement)
|
CJSON_PUBLIC(cJSON_bool) cJSON_ReplaceItemViaPointer(cJSON * const parent, cJSON * const item, cJSON * replacement)
|
||||||
{
|
{
|
||||||
if ((parent == NULL) || (replacement == NULL))
|
if ((parent == NULL) || (replacement == NULL) || (item == NULL))
|
||||||
{
|
{
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
@@ -1977,7 +2056,7 @@ CJSON_PUBLIC(void) cJSON_ReplaceItemInArray(cJSON *array, int which, cJSON *newi
|
|||||||
|
|
||||||
static cJSON_bool replace_item_in_object(cJSON *object, const char *string, cJSON *replacement, cJSON_bool case_sensitive)
|
static cJSON_bool replace_item_in_object(cJSON *object, const char *string, cJSON *replacement, cJSON_bool case_sensitive)
|
||||||
{
|
{
|
||||||
if (replacement == NULL)
|
if ((replacement == NULL) || (string == NULL))
|
||||||
{
|
{
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
@@ -2140,7 +2219,7 @@ CJSON_PUBLIC(cJSON *) cJSON_CreateIntArray(const int *numbers, int count)
|
|||||||
cJSON *p = NULL;
|
cJSON *p = NULL;
|
||||||
cJSON *a = NULL;
|
cJSON *a = NULL;
|
||||||
|
|
||||||
if (count < 0)
|
if ((count < 0) || (numbers == NULL))
|
||||||
{
|
{
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
@@ -2175,7 +2254,7 @@ CJSON_PUBLIC(cJSON *) cJSON_CreateFloatArray(const float *numbers, int count)
|
|||||||
cJSON *p = NULL;
|
cJSON *p = NULL;
|
||||||
cJSON *a = NULL;
|
cJSON *a = NULL;
|
||||||
|
|
||||||
if (count < 0)
|
if ((count < 0) || (numbers == NULL))
|
||||||
{
|
{
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
@@ -2211,7 +2290,7 @@ CJSON_PUBLIC(cJSON *) cJSON_CreateDoubleArray(const double *numbers, int count)
|
|||||||
cJSON *p = NULL;
|
cJSON *p = NULL;
|
||||||
cJSON *a = NULL;
|
cJSON *a = NULL;
|
||||||
|
|
||||||
if (count < 0)
|
if ((count < 0) || (numbers == NULL))
|
||||||
{
|
{
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
@@ -2247,7 +2326,7 @@ CJSON_PUBLIC(cJSON *) cJSON_CreateStringArray(const char **strings, int count)
|
|||||||
cJSON *p = NULL;
|
cJSON *p = NULL;
|
||||||
cJSON *a = NULL;
|
cJSON *a = NULL;
|
||||||
|
|
||||||
if (count < 0)
|
if ((count < 0) || (strings == NULL))
|
||||||
{
|
{
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
@@ -2359,6 +2438,12 @@ fail:
|
|||||||
CJSON_PUBLIC(void) cJSON_Minify(char *json)
|
CJSON_PUBLIC(void) cJSON_Minify(char *json)
|
||||||
{
|
{
|
||||||
unsigned char *into = (unsigned char*)json;
|
unsigned char *into = (unsigned char*)json;
|
||||||
|
|
||||||
|
if (json == NULL)
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
while (*json)
|
while (*json)
|
||||||
{
|
{
|
||||||
if (*json == ' ')
|
if (*json == ' ')
|
||||||
|
|||||||
10
cJSON.h
10
cJSON.h
@@ -31,7 +31,7 @@ extern "C"
|
|||||||
/* project version */
|
/* project version */
|
||||||
#define CJSON_VERSION_MAJOR 1
|
#define CJSON_VERSION_MAJOR 1
|
||||||
#define CJSON_VERSION_MINOR 5
|
#define CJSON_VERSION_MINOR 5
|
||||||
#define CJSON_VERSION_PATCH 5
|
#define CJSON_VERSION_PATCH 6
|
||||||
|
|
||||||
#include <stddef.h>
|
#include <stddef.h>
|
||||||
|
|
||||||
@@ -138,6 +138,10 @@ CJSON_PUBLIC(void) cJSON_InitHooks(cJSON_Hooks* hooks);
|
|||||||
/* Memory Management: the caller is always responsible to free the results from all variants of cJSON_Parse (with cJSON_Delete) and cJSON_Print (with stdlib free, cJSON_Hooks.free_fn, or cJSON_free as appropriate). The exception is cJSON_PrintPreallocated, where the caller has full responsibility of the buffer. */
|
/* Memory Management: the caller is always responsible to free the results from all variants of cJSON_Parse (with cJSON_Delete) and cJSON_Print (with stdlib free, cJSON_Hooks.free_fn, or cJSON_free as appropriate). The exception is cJSON_PrintPreallocated, where the caller has full responsibility of the buffer. */
|
||||||
/* Supply a block of JSON, and this returns a cJSON object you can interrogate. */
|
/* Supply a block of JSON, and this returns a cJSON object you can interrogate. */
|
||||||
CJSON_PUBLIC(cJSON *) cJSON_Parse(const char *value);
|
CJSON_PUBLIC(cJSON *) cJSON_Parse(const char *value);
|
||||||
|
/* ParseWithOpts allows you to require (and check) that the JSON is null terminated, and to retrieve the pointer to the final byte parsed. */
|
||||||
|
/* If you supply a ptr in return_parse_end and parsing fails, then return_parse_end will contain a pointer to the error. If not, then cJSON_GetErrorPtr() does the job. */
|
||||||
|
CJSON_PUBLIC(cJSON *) cJSON_ParseWithOpts(const char *value, const char **return_parse_end, cJSON_bool require_null_terminated);
|
||||||
|
|
||||||
/* Render a cJSON entity to text for transfer/storage. */
|
/* Render a cJSON entity to text for transfer/storage. */
|
||||||
CJSON_PUBLIC(char *) cJSON_Print(const cJSON *item);
|
CJSON_PUBLIC(char *) cJSON_Print(const cJSON *item);
|
||||||
/* Render a cJSON entity to text for transfer/storage without any formatting. */
|
/* Render a cJSON entity to text for transfer/storage without any formatting. */
|
||||||
@@ -228,10 +232,6 @@ The item->next and ->prev pointers are always zero on return from Duplicate. */
|
|||||||
CJSON_PUBLIC(cJSON_bool) cJSON_Compare(const cJSON * const a, const cJSON * const b, const cJSON_bool case_sensitive);
|
CJSON_PUBLIC(cJSON_bool) cJSON_Compare(const cJSON * const a, const cJSON * const b, const cJSON_bool case_sensitive);
|
||||||
|
|
||||||
|
|
||||||
/* ParseWithOpts allows you to require (and check) that the JSON is null terminated, and to retrieve the pointer to the final byte parsed. */
|
|
||||||
/* If you supply a ptr in return_parse_end and parsing fails, then return_parse_end will contain a pointer to the error. If not, then cJSON_GetErrorPtr() does the job. */
|
|
||||||
CJSON_PUBLIC(cJSON *) cJSON_ParseWithOpts(const char *value, const char **return_parse_end, cJSON_bool require_null_terminated);
|
|
||||||
|
|
||||||
CJSON_PUBLIC(void) cJSON_Minify(char *json);
|
CJSON_PUBLIC(void) cJSON_Minify(char *json);
|
||||||
|
|
||||||
/* Macros for creating things quickly. */
|
/* Macros for creating things quickly. */
|
||||||
|
|||||||
@@ -20,13 +20,32 @@
|
|||||||
THE SOFTWARE.
|
THE SOFTWARE.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
/* disable warnings about old C89 functions in MSVC */
|
||||||
|
#if !defined(_CRT_SECURE_NO_DEPRECATE) && defined(_MSC_VER)
|
||||||
|
#define _CRT_SECURE_NO_DEPRECATE
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#ifdef __GNUCC__
|
||||||
#pragma GCC visibility push(default)
|
#pragma GCC visibility push(default)
|
||||||
|
#endif
|
||||||
|
#if defined(_MSC_VER)
|
||||||
|
#pragma warning (push)
|
||||||
|
/* disable warning about single line comments in system headers */
|
||||||
|
#pragma warning (disable : 4001)
|
||||||
|
#endif
|
||||||
|
|
||||||
#include <ctype.h>
|
#include <ctype.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <limits.h>
|
#include <limits.h>
|
||||||
|
|
||||||
|
#if defined(_MSC_VER)
|
||||||
|
#pragma warning (pop)
|
||||||
|
#endif
|
||||||
|
#ifdef __GNUCC__
|
||||||
#pragma GCC visibility pop
|
#pragma GCC visibility pop
|
||||||
|
#endif
|
||||||
|
|
||||||
#include "cJSON_Utils.h"
|
#include "cJSON_Utils.h"
|
||||||
|
|
||||||
@@ -162,6 +181,11 @@ CJSON_PUBLIC(char *) cJSONUtils_FindPointerFromObjectTo(const cJSON * const obje
|
|||||||
size_t child_index = 0;
|
size_t child_index = 0;
|
||||||
cJSON *current_child = 0;
|
cJSON *current_child = 0;
|
||||||
|
|
||||||
|
if ((object == NULL) || (target == NULL))
|
||||||
|
{
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
if (object == target)
|
if (object == target)
|
||||||
{
|
{
|
||||||
/* found */
|
/* found */
|
||||||
@@ -257,6 +281,12 @@ static cJSON_bool decode_array_index_from_pointer(const unsigned char * const po
|
|||||||
static cJSON *get_item_from_pointer(cJSON * const object, const char * pointer, const cJSON_bool case_sensitive)
|
static cJSON *get_item_from_pointer(cJSON * const object, const char * pointer, const cJSON_bool case_sensitive)
|
||||||
{
|
{
|
||||||
cJSON *current_element = object;
|
cJSON *current_element = object;
|
||||||
|
|
||||||
|
if (pointer == NULL)
|
||||||
|
{
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
/* follow path of the pointer */
|
/* follow path of the pointer */
|
||||||
while ((pointer[0] == '/') && (current_element != NULL))
|
while ((pointer[0] == '/') && (current_element != NULL))
|
||||||
{
|
{
|
||||||
@@ -539,6 +569,10 @@ static cJSON *sort_list(cJSON *list, const cJSON_bool case_sensitive)
|
|||||||
|
|
||||||
static void sort_object(cJSON * const object, const cJSON_bool case_sensitive)
|
static void sort_object(cJSON * const object, const cJSON_bool case_sensitive)
|
||||||
{
|
{
|
||||||
|
if (object == NULL)
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
object->child = sort_list(object->child, case_sensitive);
|
object->child = sort_list(object->child, case_sensitive);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -1028,7 +1062,14 @@ CJSON_PUBLIC(int) cJSONUtils_ApplyPatchesCaseSensitive(cJSON * const object, con
|
|||||||
|
|
||||||
static void compose_patch(cJSON * const patches, const unsigned char * const operation, const unsigned char * const path, const unsigned char *suffix, const cJSON * const value)
|
static void compose_patch(cJSON * const patches, const unsigned char * const operation, const unsigned char * const path, const unsigned char *suffix, const cJSON * const value)
|
||||||
{
|
{
|
||||||
cJSON *patch = cJSON_CreateObject();
|
cJSON *patch = NULL;
|
||||||
|
|
||||||
|
if ((patches == NULL) || (operation == NULL) || (path == NULL))
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
patch = cJSON_CreateObject();
|
||||||
if (patch == NULL)
|
if (patch == NULL)
|
||||||
{
|
{
|
||||||
return;
|
return;
|
||||||
@@ -1206,7 +1247,14 @@ static void create_patches(cJSON * const patches, const unsigned char * const pa
|
|||||||
|
|
||||||
CJSON_PUBLIC(cJSON *) cJSONUtils_GeneratePatches(cJSON * const from, cJSON * const to)
|
CJSON_PUBLIC(cJSON *) cJSONUtils_GeneratePatches(cJSON * const from, cJSON * const to)
|
||||||
{
|
{
|
||||||
cJSON *patches = cJSON_CreateArray();
|
cJSON *patches = NULL;
|
||||||
|
|
||||||
|
if ((from == NULL) || (to == NULL))
|
||||||
|
{
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
|
patches = cJSON_CreateArray();
|
||||||
create_patches(patches, (const unsigned char*)"", from, to, false);
|
create_patches(patches, (const unsigned char*)"", from, to, false);
|
||||||
|
|
||||||
return patches;
|
return patches;
|
||||||
@@ -1214,7 +1262,14 @@ CJSON_PUBLIC(cJSON *) cJSONUtils_GeneratePatches(cJSON * const from, cJSON * con
|
|||||||
|
|
||||||
CJSON_PUBLIC(cJSON *) cJSONUtils_GeneratePatchesCaseSensitive(cJSON * const from, cJSON * const to)
|
CJSON_PUBLIC(cJSON *) cJSONUtils_GeneratePatchesCaseSensitive(cJSON * const from, cJSON * const to)
|
||||||
{
|
{
|
||||||
cJSON *patches = cJSON_CreateArray();
|
cJSON *patches = NULL;
|
||||||
|
|
||||||
|
if ((from == NULL) || (to == NULL))
|
||||||
|
{
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
|
patches = cJSON_CreateArray();
|
||||||
create_patches(patches, (const unsigned char*)"", from, to, true);
|
create_patches(patches, (const unsigned char*)"", from, to, true);
|
||||||
|
|
||||||
return patches;
|
return patches;
|
||||||
|
|||||||
@@ -25,6 +25,14 @@ if(ENABLE_CJSON_TEST)
|
|||||||
target_compile_options(unity PRIVATE "-fno-sanitize=float-divide-by-zero")
|
target_compile_options(unity PRIVATE "-fno-sanitize=float-divide-by-zero")
|
||||||
endif()
|
endif()
|
||||||
endif()
|
endif()
|
||||||
|
# Disable -Wswitch-enum for Unity
|
||||||
|
if (FLAG_SUPPORTED_Wswitchenum)
|
||||||
|
if ("${CMAKE_VERSION}" VERSION_LESS "2.8.12")
|
||||||
|
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wno-switch-enum")
|
||||||
|
else()
|
||||||
|
target_compile_options(unity PRIVATE "-Wno-switch-enum")
|
||||||
|
endif()
|
||||||
|
endif()
|
||||||
|
|
||||||
#copy test files
|
#copy test files
|
||||||
file(MAKE_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}/inputs")
|
file(MAKE_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}/inputs")
|
||||||
@@ -84,7 +92,8 @@ if(ENABLE_CJSON_TEST)
|
|||||||
|
|
||||||
set (cjson_utils_tests
|
set (cjson_utils_tests
|
||||||
json_patch_tests
|
json_patch_tests
|
||||||
old_utils_tests)
|
old_utils_tests
|
||||||
|
misc_utils_tests)
|
||||||
|
|
||||||
foreach (cjson_utils_test ${cjson_utils_tests})
|
foreach (cjson_utils_test ${cjson_utils_tests})
|
||||||
add_executable("${cjson_utils_test}" "${cjson_utils_test}.c")
|
add_executable("${cjson_utils_test}" "${cjson_utils_test}.c")
|
||||||
|
|||||||
@@ -119,7 +119,7 @@ static cJSON_bool test_apply_patch(const cJSON * const test)
|
|||||||
return successful;
|
return successful;
|
||||||
}
|
}
|
||||||
|
|
||||||
static cJSON_bool test_generate_test(cJSON *test __attribute__((unused)))
|
static cJSON_bool test_generate_test(cJSON *test)
|
||||||
{
|
{
|
||||||
cJSON *doc = NULL;
|
cJSON *doc = NULL;
|
||||||
cJSON *patch = NULL;
|
cJSON *patch = NULL;
|
||||||
|
|||||||
@@ -324,6 +324,116 @@ static void cjson_replace_item_in_object_should_preserve_name(void)
|
|||||||
cJSON_Delete(replacement);
|
cJSON_Delete(replacement);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static void cjson_functions_shouldnt_crash_with_null_pointers(void)
|
||||||
|
{
|
||||||
|
char buffer[10];
|
||||||
|
cJSON *item = cJSON_CreateString("item");
|
||||||
|
|
||||||
|
cJSON_InitHooks(NULL);
|
||||||
|
TEST_ASSERT_NULL(cJSON_Parse(NULL));
|
||||||
|
TEST_ASSERT_NULL(cJSON_ParseWithOpts(NULL, NULL, true));
|
||||||
|
TEST_ASSERT_NULL(cJSON_Print(NULL));
|
||||||
|
TEST_ASSERT_NULL(cJSON_PrintUnformatted(NULL));
|
||||||
|
TEST_ASSERT_NULL(cJSON_PrintBuffered(NULL, 10, true));
|
||||||
|
TEST_ASSERT_FALSE(cJSON_PrintPreallocated(NULL, buffer, sizeof(buffer), true));
|
||||||
|
TEST_ASSERT_FALSE(cJSON_PrintPreallocated(item, NULL, 1, true));
|
||||||
|
cJSON_Delete(NULL);
|
||||||
|
cJSON_GetArraySize(NULL);
|
||||||
|
TEST_ASSERT_NULL(cJSON_GetArrayItem(NULL, 0));
|
||||||
|
TEST_ASSERT_NULL(cJSON_GetObjectItem(NULL, "item"));
|
||||||
|
TEST_ASSERT_NULL(cJSON_GetObjectItem(item, NULL));
|
||||||
|
TEST_ASSERT_NULL(cJSON_GetObjectItemCaseSensitive(NULL, "item"));
|
||||||
|
TEST_ASSERT_NULL(cJSON_GetObjectItemCaseSensitive(item, NULL));
|
||||||
|
TEST_ASSERT_FALSE(cJSON_HasObjectItem(NULL, "item"));
|
||||||
|
TEST_ASSERT_FALSE(cJSON_HasObjectItem(item, NULL));
|
||||||
|
TEST_ASSERT_FALSE(cJSON_IsInvalid(NULL));
|
||||||
|
TEST_ASSERT_FALSE(cJSON_IsFalse(NULL));
|
||||||
|
TEST_ASSERT_FALSE(cJSON_IsTrue(NULL));
|
||||||
|
TEST_ASSERT_FALSE(cJSON_IsBool(NULL));
|
||||||
|
TEST_ASSERT_FALSE(cJSON_IsNull(NULL));
|
||||||
|
TEST_ASSERT_FALSE(cJSON_IsNumber(NULL));
|
||||||
|
TEST_ASSERT_FALSE(cJSON_IsString(NULL));
|
||||||
|
TEST_ASSERT_FALSE(cJSON_IsArray(NULL));
|
||||||
|
TEST_ASSERT_FALSE(cJSON_IsObject(NULL));
|
||||||
|
TEST_ASSERT_FALSE(cJSON_IsRaw(NULL));
|
||||||
|
TEST_ASSERT_NULL(cJSON_CreateString(NULL));
|
||||||
|
TEST_ASSERT_NULL(cJSON_CreateRaw(NULL));
|
||||||
|
TEST_ASSERT_NULL(cJSON_CreateIntArray(NULL, 10));
|
||||||
|
TEST_ASSERT_NULL(cJSON_CreateFloatArray(NULL, 10));
|
||||||
|
TEST_ASSERT_NULL(cJSON_CreateDoubleArray(NULL, 10));
|
||||||
|
TEST_ASSERT_NULL(cJSON_CreateStringArray(NULL, 10));
|
||||||
|
cJSON_AddItemToArray(NULL, item);
|
||||||
|
cJSON_AddItemToArray(item, NULL);
|
||||||
|
cJSON_AddItemToObject(item, "item", NULL);
|
||||||
|
cJSON_AddItemToObject(item, NULL, item);
|
||||||
|
cJSON_AddItemToObject(NULL, "item", item);
|
||||||
|
cJSON_AddItemToObjectCS(item, "item", NULL);
|
||||||
|
cJSON_AddItemToObjectCS(item, NULL, item);
|
||||||
|
cJSON_AddItemToObjectCS(NULL, "item", item);
|
||||||
|
cJSON_AddItemReferenceToArray(NULL, item);
|
||||||
|
cJSON_AddItemReferenceToArray(item, NULL);
|
||||||
|
cJSON_AddItemReferenceToObject(item, "item", NULL);
|
||||||
|
cJSON_AddItemReferenceToObject(item, NULL, item);
|
||||||
|
cJSON_AddItemReferenceToObject(NULL, "item", item);
|
||||||
|
TEST_ASSERT_NULL(cJSON_DetachItemViaPointer(NULL, item));
|
||||||
|
TEST_ASSERT_NULL(cJSON_DetachItemViaPointer(item, NULL));
|
||||||
|
TEST_ASSERT_NULL(cJSON_DetachItemFromArray(NULL, 0));
|
||||||
|
cJSON_DeleteItemFromArray(NULL, 0);
|
||||||
|
TEST_ASSERT_NULL(cJSON_DetachItemFromObject(NULL, "item"));
|
||||||
|
TEST_ASSERT_NULL(cJSON_DetachItemFromObject(item, NULL));
|
||||||
|
TEST_ASSERT_NULL(cJSON_DetachItemFromObjectCaseSensitive(NULL, "item"));
|
||||||
|
TEST_ASSERT_NULL(cJSON_DetachItemFromObjectCaseSensitive(item, NULL));
|
||||||
|
cJSON_DeleteItemFromObject(NULL, "item");
|
||||||
|
cJSON_DeleteItemFromObject(item, NULL);
|
||||||
|
cJSON_DeleteItemFromObjectCaseSensitive(NULL, "item");
|
||||||
|
cJSON_DeleteItemFromObjectCaseSensitive(item, NULL);
|
||||||
|
cJSON_InsertItemInArray(NULL, 0, item);
|
||||||
|
cJSON_InsertItemInArray(item, 0, NULL);
|
||||||
|
TEST_ASSERT_FALSE(cJSON_ReplaceItemViaPointer(NULL, item, item));
|
||||||
|
TEST_ASSERT_FALSE(cJSON_ReplaceItemViaPointer(item, NULL, item));
|
||||||
|
TEST_ASSERT_FALSE(cJSON_ReplaceItemViaPointer(item, item, NULL));
|
||||||
|
cJSON_ReplaceItemInArray(item, 0, NULL);
|
||||||
|
cJSON_ReplaceItemInArray(NULL, 0, item);
|
||||||
|
cJSON_ReplaceItemInObject(NULL, "item", item);
|
||||||
|
cJSON_ReplaceItemInObject(item, NULL, item);
|
||||||
|
cJSON_ReplaceItemInObject(item, "item", NULL);
|
||||||
|
cJSON_ReplaceItemInObjectCaseSensitive(NULL, "item", item);
|
||||||
|
cJSON_ReplaceItemInObjectCaseSensitive(item, NULL, item);
|
||||||
|
cJSON_ReplaceItemInObjectCaseSensitive(item, "item", NULL);
|
||||||
|
TEST_ASSERT_NULL(cJSON_Duplicate(NULL, true));
|
||||||
|
TEST_ASSERT_FALSE(cJSON_Compare(item, NULL, false));
|
||||||
|
TEST_ASSERT_FALSE(cJSON_Compare(NULL, item, false));
|
||||||
|
cJSON_Minify(NULL);
|
||||||
|
/* skipped because it is only used via a macro that checks for NULL */
|
||||||
|
/* cJSON_SetNumberHelper(NULL, 0); */
|
||||||
|
|
||||||
|
cJSON_Delete(item);
|
||||||
|
}
|
||||||
|
|
||||||
|
static void skip_utf8_bom_should_skip_bom(void)
|
||||||
|
{
|
||||||
|
const unsigned char string[] = "\xEF\xBB\xBF{}";
|
||||||
|
parse_buffer buffer = { 0, 0, 0, 0, { 0, 0, 0 } };
|
||||||
|
buffer.content = string;
|
||||||
|
buffer.length = sizeof(string);
|
||||||
|
buffer.hooks = global_hooks;
|
||||||
|
|
||||||
|
TEST_ASSERT_TRUE(skip_utf8_bom(&buffer) == &buffer);
|
||||||
|
TEST_ASSERT_EQUAL_UINT(3U, (unsigned int)buffer.offset);
|
||||||
|
}
|
||||||
|
|
||||||
|
static void skip_utf8_bom_should_not_skip_bom_if_not_at_beginning(void)
|
||||||
|
{
|
||||||
|
const unsigned char string[] = " \xEF\xBB\xBF{}";
|
||||||
|
parse_buffer buffer = { 0, 0, 0, 0, { 0, 0, 0 } };
|
||||||
|
buffer.content = string;
|
||||||
|
buffer.length = sizeof(string);
|
||||||
|
buffer.hooks = global_hooks;
|
||||||
|
buffer.offset = 1;
|
||||||
|
|
||||||
|
TEST_ASSERT_NULL(skip_utf8_bom(&buffer));
|
||||||
|
}
|
||||||
|
|
||||||
int main(void)
|
int main(void)
|
||||||
{
|
{
|
||||||
UNITY_BEGIN();
|
UNITY_BEGIN();
|
||||||
@@ -338,6 +448,9 @@ int main(void)
|
|||||||
RUN_TEST(cjson_detach_item_via_pointer_should_detach_items);
|
RUN_TEST(cjson_detach_item_via_pointer_should_detach_items);
|
||||||
RUN_TEST(cjson_replace_item_via_pointer_should_replace_items);
|
RUN_TEST(cjson_replace_item_via_pointer_should_replace_items);
|
||||||
RUN_TEST(cjson_replace_item_in_object_should_preserve_name);
|
RUN_TEST(cjson_replace_item_in_object_should_preserve_name);
|
||||||
|
RUN_TEST(cjson_functions_shouldnt_crash_with_null_pointers);
|
||||||
|
RUN_TEST(skip_utf8_bom_should_skip_bom);
|
||||||
|
RUN_TEST(skip_utf8_bom_should_not_skip_bom_if_not_at_beginning);
|
||||||
|
|
||||||
return UNITY_END();
|
return UNITY_END();
|
||||||
}
|
}
|
||||||
|
|||||||
80
tests/misc_utils_tests.c
Normal file
80
tests/misc_utils_tests.c
Normal file
@@ -0,0 +1,80 @@
|
|||||||
|
/*
|
||||||
|
Copyright (c) 2009-2017 Dave Gamble and cJSON contributors
|
||||||
|
|
||||||
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
of this software and associated documentation files (the "Software"), to deal
|
||||||
|
in the Software without restriction, including without limitation the rights
|
||||||
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
copies of the Software, and to permit persons to whom the Software is
|
||||||
|
furnished to do so, subject to the following conditions:
|
||||||
|
|
||||||
|
The above copyright notice and this permission notice shall be included in
|
||||||
|
all copies or substantial portions of the Software.
|
||||||
|
|
||||||
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||||
|
THE SOFTWARE.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include <stdio.h>
|
||||||
|
#include <stdlib.h>
|
||||||
|
#include <string.h>
|
||||||
|
|
||||||
|
#include "unity/examples/unity_config.h"
|
||||||
|
#include "unity/src/unity.h"
|
||||||
|
#include "common.h"
|
||||||
|
#include "../cJSON_Utils.h"
|
||||||
|
|
||||||
|
static void cjson_utils_functions_shouldnt_crash_with_null_pointers(void)
|
||||||
|
{
|
||||||
|
cJSON *item = cJSON_CreateString("item");
|
||||||
|
TEST_ASSERT_NOT_NULL(item);
|
||||||
|
|
||||||
|
TEST_ASSERT_NULL(cJSONUtils_GetPointer(item, NULL));
|
||||||
|
TEST_ASSERT_NULL(cJSONUtils_GetPointer(NULL, "pointer"));
|
||||||
|
TEST_ASSERT_NULL(cJSONUtils_GetPointerCaseSensitive(NULL, "pointer"));
|
||||||
|
TEST_ASSERT_NULL(cJSONUtils_GetPointerCaseSensitive(item, NULL));
|
||||||
|
TEST_ASSERT_NULL(cJSONUtils_GeneratePatches(item, NULL));
|
||||||
|
TEST_ASSERT_NULL(cJSONUtils_GeneratePatches(NULL, item));
|
||||||
|
TEST_ASSERT_NULL(cJSONUtils_GeneratePatchesCaseSensitive(item, NULL));
|
||||||
|
TEST_ASSERT_NULL(cJSONUtils_GeneratePatchesCaseSensitive(NULL, item));
|
||||||
|
cJSONUtils_AddPatchToArray(item, "path", "add", NULL);
|
||||||
|
cJSONUtils_AddPatchToArray(item, "path", NULL, item);
|
||||||
|
cJSONUtils_AddPatchToArray(item, NULL, "add", item);
|
||||||
|
cJSONUtils_AddPatchToArray(NULL, "path", "add", item);
|
||||||
|
cJSONUtils_ApplyPatches(item, NULL);
|
||||||
|
cJSONUtils_ApplyPatches(NULL, item);
|
||||||
|
cJSONUtils_ApplyPatchesCaseSensitive(item, NULL);
|
||||||
|
cJSONUtils_ApplyPatchesCaseSensitive(NULL, item);
|
||||||
|
TEST_ASSERT_NULL(cJSONUtils_MergePatch(item, NULL));
|
||||||
|
item = cJSON_CreateString("item");
|
||||||
|
TEST_ASSERT_NULL(cJSONUtils_MergePatchCaseSensitive(item, NULL));
|
||||||
|
item = cJSON_CreateString("item");
|
||||||
|
/* these calls are actually valid */
|
||||||
|
/* cJSONUtils_MergePatch(NULL, item); */
|
||||||
|
/* cJSONUtils_MergePatchCaseSensitive(NULL, item);*/
|
||||||
|
/* cJSONUtils_GenerateMergePatch(item, NULL); */
|
||||||
|
/* cJSONUtils_GenerateMergePatch(NULL, item); */
|
||||||
|
/* cJSONUtils_GenerateMergePatchCaseSensitive(item, NULL); */
|
||||||
|
/* cJSONUtils_GenerateMergePatchCaseSensitive(NULL, item); */
|
||||||
|
|
||||||
|
TEST_ASSERT_NULL(cJSONUtils_FindPointerFromObjectTo(item, NULL));
|
||||||
|
TEST_ASSERT_NULL(cJSONUtils_FindPointerFromObjectTo(NULL, item));
|
||||||
|
cJSONUtils_SortObject(NULL);
|
||||||
|
cJSONUtils_SortObjectCaseSensitive(NULL);
|
||||||
|
|
||||||
|
cJSON_Delete(item);
|
||||||
|
}
|
||||||
|
|
||||||
|
int main(void)
|
||||||
|
{
|
||||||
|
UNITY_BEGIN();
|
||||||
|
|
||||||
|
RUN_TEST(cjson_utils_functions_shouldnt_crash_with_null_pointers);
|
||||||
|
|
||||||
|
return UNITY_END();
|
||||||
|
}
|
||||||
@@ -69,6 +69,22 @@ static void parse_with_opts_should_return_parse_end(void)
|
|||||||
cJSON_Delete(item);
|
cJSON_Delete(item);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static void parse_with_opts_should_parse_utf8_bom(void)
|
||||||
|
{
|
||||||
|
cJSON *with_bom = NULL;
|
||||||
|
cJSON *without_bom = NULL;
|
||||||
|
|
||||||
|
with_bom = cJSON_ParseWithOpts("\xEF\xBB\xBF{}", NULL, true);
|
||||||
|
TEST_ASSERT_NOT_NULL(with_bom);
|
||||||
|
without_bom = cJSON_ParseWithOpts("{}", NULL, true);
|
||||||
|
TEST_ASSERT_NOT_NULL(with_bom);
|
||||||
|
|
||||||
|
TEST_ASSERT_TRUE(cJSON_Compare(with_bom, without_bom, true));
|
||||||
|
|
||||||
|
cJSON_Delete(with_bom);
|
||||||
|
cJSON_Delete(without_bom);
|
||||||
|
}
|
||||||
|
|
||||||
int main(void)
|
int main(void)
|
||||||
{
|
{
|
||||||
UNITY_BEGIN();
|
UNITY_BEGIN();
|
||||||
@@ -77,6 +93,7 @@ int main(void)
|
|||||||
RUN_TEST(parse_with_opts_should_handle_empty_strings);
|
RUN_TEST(parse_with_opts_should_handle_empty_strings);
|
||||||
RUN_TEST(parse_with_opts_should_require_null_if_requested);
|
RUN_TEST(parse_with_opts_should_require_null_if_requested);
|
||||||
RUN_TEST(parse_with_opts_should_return_parse_end);
|
RUN_TEST(parse_with_opts_should_return_parse_end);
|
||||||
|
RUN_TEST(parse_with_opts_should_parse_utf8_bom);
|
||||||
|
|
||||||
return UNITY_END();
|
return UNITY_END();
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -49,16 +49,16 @@ static void print_number_should_print_zero(void)
|
|||||||
|
|
||||||
static void print_number_should_print_negative_integers(void)
|
static void print_number_should_print_negative_integers(void)
|
||||||
{
|
{
|
||||||
assert_print_number("-1", -1);
|
assert_print_number("-1", -1.0);
|
||||||
assert_print_number("-32768", -32768);
|
assert_print_number("-32768", -32768.0);
|
||||||
assert_print_number("-2147483648", -2147483648.0);
|
assert_print_number("-2147483648", -2147483648.0);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void print_number_should_print_positive_integers(void)
|
static void print_number_should_print_positive_integers(void)
|
||||||
{
|
{
|
||||||
assert_print_number("1", 1);
|
assert_print_number("1", 1.0);
|
||||||
assert_print_number("32767", 32767);
|
assert_print_number("32767", 32767.0);
|
||||||
assert_print_number("2147483647", 2147483647);
|
assert_print_number("2147483647", 2147483647.0);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void print_number_should_print_positive_reals(void)
|
static void print_number_should_print_positive_reals(void)
|
||||||
@@ -68,6 +68,7 @@ static void print_number_should_print_positive_reals(void)
|
|||||||
assert_print_number("1000000000000", 10e11);
|
assert_print_number("1000000000000", 10e11);
|
||||||
assert_print_number("1.23e+129", 123e+127);
|
assert_print_number("1.23e+129", 123e+127);
|
||||||
assert_print_number("1.23e-126", 123e-128);
|
assert_print_number("1.23e-126", 123e-128);
|
||||||
|
assert_print_number("3.1415926535897931", 3.1415926535897931);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void print_number_should_print_negative_reals(void)
|
static void print_number_should_print_negative_reals(void)
|
||||||
|
|||||||
Reference in New Issue
Block a user