mirror of
https://github.com/open-source-parsers/jsoncpp.git
synced 2025-10-15 07:14:45 +02:00
Compare commits
9 Commits
Author | SHA1 | Date | |
---|---|---|---|
![]() |
1e5ebffce6 | ||
![]() |
e753cc5693 | ||
![]() |
7b304c22f0 | ||
![]() |
dbee5f968c | ||
![]() |
c27b2794fd | ||
![]() |
335aed7208 | ||
![]() |
c74784621e | ||
![]() |
44fb853041 | ||
![]() |
b0403282a7 |
11
.gitattributes
vendored
11
.gitattributes
vendored
@@ -1,11 +0,0 @@
|
|||||||
* text=auto
|
|
||||||
*.h text
|
|
||||||
*.cpp text
|
|
||||||
*.json text
|
|
||||||
*.in text
|
|
||||||
*.sh eol=lf
|
|
||||||
*.bat eol=crlf
|
|
||||||
*.vcproj eol=crlf
|
|
||||||
*.vcxproj eol=crlf
|
|
||||||
*.sln eol=crlf
|
|
||||||
devtools/agent_vm* eol=crlf
|
|
20
.gitignore
vendored
20
.gitignore
vendored
@@ -30,23 +30,7 @@
|
|||||||
|
|
||||||
# CMake-generated files:
|
# CMake-generated files:
|
||||||
CMakeFiles/
|
CMakeFiles/
|
||||||
*.cmake
|
CTestTestFile.cmake
|
||||||
|
cmake_install.cmake
|
||||||
pkg-config/jsoncpp.pc
|
pkg-config/jsoncpp.pc
|
||||||
jsoncpp_lib_static.dir/
|
jsoncpp_lib_static.dir/
|
||||||
|
|
||||||
# In case someone runs cmake in the root-dir:
|
|
||||||
/CMakeCache.txt
|
|
||||||
/Makefile
|
|
||||||
/include/Makefile
|
|
||||||
/src/Makefile
|
|
||||||
/src/jsontestrunner/Makefile
|
|
||||||
/src/jsontestrunner/jsontestrunner_exe
|
|
||||||
/src/lib_json/Makefile
|
|
||||||
/src/test_lib_json/Makefile
|
|
||||||
/src/test_lib_json/jsoncpp_test
|
|
||||||
*.a
|
|
||||||
|
|
||||||
# eclipse project files
|
|
||||||
.project
|
|
||||||
.cproject
|
|
||||||
/.settings/
|
|
||||||
|
50
.travis.yml
50
.travis.yml
@@ -2,54 +2,16 @@
|
|||||||
# http://about.travis-ci.org/docs/user/build-configuration/
|
# http://about.travis-ci.org/docs/user/build-configuration/
|
||||||
# This file can be validated on:
|
# This file can be validated on:
|
||||||
# http://lint.travis-ci.org/
|
# http://lint.travis-ci.org/
|
||||||
# See also
|
before_install: sudo apt-get install cmake
|
||||||
# http://stackoverflow.com/questions/22111549/travis-ci-with-clang-3-4-and-c11/30925448#30925448
|
|
||||||
# to allow C++11, though we are not yet building with -std=c++11
|
|
||||||
|
|
||||||
install:
|
|
||||||
- if [[ $TRAVIS_OS_NAME == osx ]]; then
|
|
||||||
brew update;
|
|
||||||
brew install python3 ninja;
|
|
||||||
python3 -m venv venv;
|
|
||||||
source venv/bin/activate;
|
|
||||||
elif [[ $TRAVIS_OS_NAME == linux ]]; then
|
|
||||||
wget https://github.com/ninja-build/ninja/releases/download/v1.7.2/ninja-linux.zip;
|
|
||||||
unzip -q ninja-linux.zip -d build;
|
|
||||||
fi
|
|
||||||
- pip3 install meson
|
|
||||||
# /usr/bin/gcc is 4.6 always, but gcc-X.Y is available.
|
|
||||||
- if [[ $CXX = g++ ]]; then export CXX="g++-4.9" CC="gcc-4.9"; fi
|
|
||||||
# /usr/bin/clang has a conflict with gcc, so use clang-X.Y.
|
|
||||||
- if [[ $CXX = clang++ ]]; then export CXX="clang++-3.5" CC="clang-3.5"; fi
|
|
||||||
- echo ${PATH}
|
|
||||||
- ls /usr/local
|
|
||||||
- ls /usr/local/bin
|
|
||||||
- export PATH="${PWD}"/build:/usr/local/bin:/usr/bin:${PATH}
|
|
||||||
- echo ${CXX}
|
|
||||||
- ${CXX} --version
|
|
||||||
- which valgrind
|
|
||||||
addons:
|
|
||||||
apt:
|
|
||||||
sources:
|
|
||||||
- ubuntu-toolchain-r-test
|
|
||||||
- llvm-toolchain-precise-3.5
|
|
||||||
packages:
|
|
||||||
- gcc-4.9
|
|
||||||
- g++-4.9
|
|
||||||
- clang-3.5
|
|
||||||
- valgrind
|
|
||||||
os:
|
|
||||||
- linux
|
|
||||||
language: cpp
|
language: cpp
|
||||||
compiler:
|
compiler:
|
||||||
- gcc
|
- gcc
|
||||||
- clang
|
- clang
|
||||||
script: ./travis.sh
|
script: cmake -DJSONCPP_WITH_CMAKE_PACKAGE=$CMAKE_PKG -DJSONCPP_LIB_BUILD_SHARED=$SHARED_LIB -DCMAKE_BUILD_TYPE=$BUILD_TYPE -DCMAKE_VERBOSE_MAKEFILE=$VERBOSE_MAKE . && make && make jsoncpp_check
|
||||||
env:
|
env:
|
||||||
matrix:
|
matrix:
|
||||||
- LIB_TYPE=static BUILD_TYPE=release
|
- SHARED_LIB=ON STATIC_LIB=ON CMAKE_PKG=ON BUILD_TYPE=release VERBOSE_MAKE=false
|
||||||
- LIB_TYPE=shared BUILD_TYPE=debug
|
- SHARED_LIB=OFF STATIC_LIB=ON CMAKE_PKG=OFF BUILD_TYPE=debug VERBOSE_MAKE=true VERBOSE
|
||||||
notifications:
|
notifications:
|
||||||
email: false
|
email:
|
||||||
dist: trusty
|
- aaronjjacobs@gmail.com
|
||||||
sudo: false
|
|
||||||
|
110
AUTHORS
110
AUTHORS
@@ -1,111 +1 @@
|
|||||||
Baptiste Lepilleur <blep@users.sourceforge.net>
|
Baptiste Lepilleur <blep@users.sourceforge.net>
|
||||||
|
|
||||||
Aaron Jacobs <aaronjjacobs@gmail.com>
|
|
||||||
Aaron Jacobs <jacobsa@google.com>
|
|
||||||
Adam Boseley <ABoseley@agjunction.com>
|
|
||||||
Adam Boseley <adam.boseley@gmail.com>
|
|
||||||
Aleksandr Derbenev <13alexac@gmail.com>
|
|
||||||
Alexander Gazarov <DrMetallius@users.noreply.github.com>
|
|
||||||
Alexander V. Brezgin <abrezgin@appliedtech.ru>
|
|
||||||
Alexandr Brezgin <albrezgin@mail.ru>
|
|
||||||
Alexey Kruchinin <alexey@mopals.com>
|
|
||||||
Anton Indrawan <anton.indrawan@gmail.com>
|
|
||||||
Baptiste Jonglez <git@bitsofnetworks.org>
|
|
||||||
Baptiste Lepilleur <baptiste.lepilleur@gmail.com>
|
|
||||||
Baruch Siach <baruch@tkos.co.il>
|
|
||||||
Ben Boeckel <mathstuf@gmail.com>
|
|
||||||
Benjamin Knecht <bknecht@logitech.com>
|
|
||||||
Bernd Kuhls <bernd.kuhls@t-online.de>
|
|
||||||
Billy Donahue <billydonahue@google.com>
|
|
||||||
Braden McDorman <bmcdorman@gmail.com>
|
|
||||||
Brandon Myers <bmyers1788@gmail.com>
|
|
||||||
Brendan Drew <brendan.drew@daqri.com>
|
|
||||||
chason <cxchao802@gmail.com>
|
|
||||||
Chris Gilling <cgilling@iparadigms.com>
|
|
||||||
Christopher Dawes <christopher.dawes.1981@googlemail.com>
|
|
||||||
Christopher Dunn <cdunn2001@gmail.com>
|
|
||||||
Chuck Atkins <chuck.atkins@kitware.com>
|
|
||||||
Cody P Schafer <dev@codyps.com>
|
|
||||||
Connor Manning <connor@hobu.co>
|
|
||||||
Cory Quammen <cory.quammen@kitware.com>
|
|
||||||
Cristóvão B da Cruz e Silva <CrisXed@gmail.com>
|
|
||||||
Daniel Krügler <daniel.kruegler@gmail.com>
|
|
||||||
Dani-Hub <daniel.kruegler@googlemail.com>
|
|
||||||
Dan Liu <gzliudan>
|
|
||||||
datadiode <datadiode@users.noreply.github.com>
|
|
||||||
datadiode <jochen.neubeck@vodafone.de>
|
|
||||||
David Seifert <soap@gentoo.org>
|
|
||||||
David West <david-west@idexx.com>
|
|
||||||
dawesc <chris.dawes@eftlab.co.uk>
|
|
||||||
Dmitry Marakasov <amdmi3@amdmi3.ru>
|
|
||||||
dominicpezzuto <dom@dompezzuto.com>
|
|
||||||
Don Milham <dmilham@gmail.com>
|
|
||||||
drgler <daniel.kruegler@gmail.com>
|
|
||||||
ds283 <D.Seery@sussex.ac.uk>
|
|
||||||
Egor Tensin <Egor.Tensin@gmail.com>
|
|
||||||
eightnoteight <mr.eightnoteight@gmail.com>
|
|
||||||
Evince <baneyue@gmail.com>
|
|
||||||
filipjs <filipjs@users.noreply.github.com>
|
|
||||||
findblar <ft@finbarr.ca>
|
|
||||||
Florian Meier <florian.meier@koalo.de>
|
|
||||||
Gaëtan Lehmann <gaetan.lehmann@gmail.com>
|
|
||||||
Gaurav <g.gupta@samsung.com>
|
|
||||||
Gergely Nagy <ngg@ngg.hu>
|
|
||||||
Gida Pataki <gida.pataki@prezi.com>
|
|
||||||
I3ck <buckmartin@buckmartin.de>
|
|
||||||
Iñaki Baz Castillo <ibc@aliax.net>
|
|
||||||
Jacco <jacco@geul.net>
|
|
||||||
Jean-Christophe Fillion-Robin <jchris.fillionr@kitware.com>
|
|
||||||
Jonas Platte <mail@jonasplatte.de>
|
|
||||||
Jörg Krause <joerg.krause@embedded.rocks>
|
|
||||||
Keith Lea <keith@whamcitylights.com>
|
|
||||||
Kevin Grant <kbradleygrant@gmail.com>
|
|
||||||
Kirill V. Lyadvinsky <jia3ep@gmail.com>
|
|
||||||
Kirill V. Lyadvinsky <mail@codeatcpp.com>
|
|
||||||
Kobi Gurkan <kobigurk@gmail.com>
|
|
||||||
Magnus Bjerke Vik <mbvett@gmail.com>
|
|
||||||
Malay Shah <malays@users.sourceforge.net>
|
|
||||||
Mara Kim <hacker.root@gmail.com>
|
|
||||||
Marek Kotewicz <marek.kotewicz@gmail.com>
|
|
||||||
Mark Lakata <mark@lakata.org>
|
|
||||||
Mark Zeren <mzeren@vmware.com>
|
|
||||||
Martin Buck <buckmartin@buckmartin.de>
|
|
||||||
Martyn Gigg <martyn.gigg@gmail.com>
|
|
||||||
Mattes D <github@xoft.cz>
|
|
||||||
Matthias Loy <matthias.loy@hbm.com>
|
|
||||||
Merlyn Morgan-Graham <kavika@gmail.com>
|
|
||||||
Michael Shields <mshields@google.com>
|
|
||||||
Michał Górny <mgorny@gentoo.org>
|
|
||||||
Mike Naberezny <mike@naberezny.com>
|
|
||||||
mloy <matthias.loy@googlemail.com>
|
|
||||||
Motti <lanzkron@gmail.com>
|
|
||||||
nnkur <nnkur@mail.ru>
|
|
||||||
Omkar Wagh <owagh@owaghlinux.ny.tower-research.com>
|
|
||||||
paulo <paulobrizolara@users.noreply.github.com>
|
|
||||||
pavel.pimenov <pavel.pimenov@gmail.com>
|
|
||||||
Paweł Bylica <chfast@gmail.com>
|
|
||||||
Péricles Lopes Machado <pericles.raskolnikoff@gmail.com>
|
|
||||||
Peter Spiess-Knafl <psk@autistici.org>
|
|
||||||
pffang <pffang@vip.qq.com>
|
|
||||||
Rémi Verschelde <remi@verschelde.fr>
|
|
||||||
renu555 <renu.tyagi@samsung.com>
|
|
||||||
Robert Dailey <rcdailey@gmail.com>
|
|
||||||
Sam Clegg <sbc@chromium.org>
|
|
||||||
selaselah <selah@outlook.com>
|
|
||||||
Sergiy80 <sil2004@gmail.com>
|
|
||||||
sergzub <sergzub@gmail.com>
|
|
||||||
Stefan Schweter <stefan@schweter.it>
|
|
||||||
Steffen Kieß <Steffen.Kiess@ipvs.uni-stuttgart.de>
|
|
||||||
Steven Hahn <hahnse@ornl.gov>
|
|
||||||
Stuart Eichert <stuart@fivemicro.com>
|
|
||||||
SuperManitu <supermanitu@gmail.com>
|
|
||||||
Techwolf <dring@g33kworld.net>
|
|
||||||
Tengiz Sharafiev <btolfa+github@gmail.com>
|
|
||||||
Tomasz Maciejewski <tmaciejewsk@gmail.com>
|
|
||||||
Vicente Olivert Riera <Vincent.Riera@imgtec.com>
|
|
||||||
xiaoyur347 <xiaoyur347@gmail.com>
|
|
||||||
ycqiu <429148848@qq.com>
|
|
||||||
yiqiju <fred_ju@selinc.com>
|
|
||||||
Yu Xiaolei <dreifachstein@gmail.com>
|
|
||||||
|
|
||||||
Google Inc.
|
|
||||||
|
121
CMakeLists.txt
121
CMakeLists.txt
@@ -1,17 +1,14 @@
|
|||||||
# vim: et ts=4 sts=4 sw=4 tw=0
|
# vim: et ts=4 sts=4 sw=4 tw=0
|
||||||
|
|
||||||
CMAKE_MINIMUM_REQUIRED(VERSION 3.1)
|
CMAKE_MINIMUM_REQUIRED(VERSION 2.8.5)
|
||||||
PROJECT(jsoncpp)
|
PROJECT(jsoncpp)
|
||||||
ENABLE_TESTING()
|
ENABLE_TESTING()
|
||||||
|
|
||||||
OPTION(JSONCPP_WITH_TESTS "Compile and (for jsoncpp_check) run JsonCpp test executables" ON)
|
OPTION(JSONCPP_WITH_TESTS "Compile and (for jsoncpp_check) run JsonCpp test executables" ON)
|
||||||
OPTION(JSONCPP_WITH_POST_BUILD_UNITTEST "Automatically run unit-tests as a post build step" ON)
|
OPTION(JSONCPP_WITH_POST_BUILD_UNITTEST "Automatically run unit-tests as a post build step" ON)
|
||||||
OPTION(JSONCPP_WITH_WARNING_AS_ERROR "Force compilation to fail if a warning occurs" OFF)
|
OPTION(JSONCPP_WITH_WARNING_AS_ERROR "Force compilation to fail if a warning occurs" OFF)
|
||||||
OPTION(JSONCPP_WITH_STRICT_ISO "Issue all the warnings demanded by strict ISO C and ISO C++" ON)
|
|
||||||
OPTION(JSONCPP_WITH_PKGCONFIG_SUPPORT "Generate and install .pc files" ON)
|
OPTION(JSONCPP_WITH_PKGCONFIG_SUPPORT "Generate and install .pc files" ON)
|
||||||
OPTION(JSONCPP_WITH_CMAKE_PACKAGE "Generate and install cmake package files" OFF)
|
OPTION(JSONCPP_WITH_CMAKE_PACKAGE "Generate and install cmake package files" OFF)
|
||||||
OPTION(BUILD_SHARED_LIBS "Build jsoncpp_lib as a shared library." OFF)
|
|
||||||
OPTION(BUILD_STATIC_LIBS "Build jsoncpp_lib static library." ON)
|
|
||||||
|
|
||||||
# Ensures that CMAKE_BUILD_TYPE is visible in cmake-gui on Unix
|
# Ensures that CMAKE_BUILD_TYPE is visible in cmake-gui on Unix
|
||||||
IF(NOT WIN32)
|
IF(NOT WIN32)
|
||||||
@@ -19,23 +16,27 @@ IF(NOT WIN32)
|
|||||||
SET(CMAKE_BUILD_TYPE Release CACHE STRING
|
SET(CMAKE_BUILD_TYPE Release CACHE STRING
|
||||||
"Choose the type of build, options are: None Debug Release RelWithDebInfo MinSizeRel Coverage."
|
"Choose the type of build, options are: None Debug Release RelWithDebInfo MinSizeRel Coverage."
|
||||||
FORCE)
|
FORCE)
|
||||||
ENDIF()
|
ENDIF(NOT CMAKE_BUILD_TYPE)
|
||||||
ENDIF()
|
ENDIF(NOT WIN32)
|
||||||
|
|
||||||
# Enable runtime search path support for dynamic libraries on OSX
|
SET(LIB_SUFFIX "" CACHE STRING "Optional arch-dependent suffix for the library installation directory")
|
||||||
IF(APPLE)
|
|
||||||
SET(CMAKE_MACOSX_RPATH 1)
|
|
||||||
ENDIF()
|
|
||||||
|
|
||||||
# Adhere to GNU filesystem layout conventions
|
SET(RUNTIME_INSTALL_DIR bin
|
||||||
INCLUDE(GNUInstallDirs)
|
CACHE PATH "Install dir for executables and dlls")
|
||||||
|
SET(ARCHIVE_INSTALL_DIR lib${LIB_SUFFIX}
|
||||||
SET(DEBUG_LIBNAME_SUFFIX "" CACHE STRING "Optional suffix to append to the library name for a debug build")
|
CACHE PATH "Install dir for static libraries")
|
||||||
|
SET(LIBRARY_INSTALL_DIR lib${LIB_SUFFIX}
|
||||||
|
CACHE PATH "Install dir for shared libraries")
|
||||||
|
SET(INCLUDE_INSTALL_DIR include
|
||||||
|
CACHE PATH "Install dir for headers")
|
||||||
|
SET(PACKAGE_INSTALL_DIR lib${LIB_SUFFIX}/cmake
|
||||||
|
CACHE PATH "Install dir for cmake package config files")
|
||||||
|
MARK_AS_ADVANCED( RUNTIME_INSTALL_DIR ARCHIVE_INSTALL_DIR INCLUDE_INSTALL_DIR PACKAGE_INSTALL_DIR )
|
||||||
|
|
||||||
# Set variable named ${VAR_NAME} to value ${VALUE}
|
# Set variable named ${VAR_NAME} to value ${VALUE}
|
||||||
FUNCTION(set_using_dynamic_name VAR_NAME VALUE)
|
FUNCTION(set_using_dynamic_name VAR_NAME VALUE)
|
||||||
SET( "${VAR_NAME}" "${VALUE}" PARENT_SCOPE)
|
SET( "${VAR_NAME}" "${VALUE}" PARENT_SCOPE)
|
||||||
ENDFUNCTION()
|
ENDFUNCTION(set_using_dynamic_name)
|
||||||
|
|
||||||
# Extract major, minor, patch from version text
|
# Extract major, minor, patch from version text
|
||||||
# Parse a version string "X.Y.Z" and outputs
|
# Parse a version string "X.Y.Z" and outputs
|
||||||
@@ -51,21 +52,19 @@ MACRO(jsoncpp_parse_version VERSION_TEXT OUPUT_PREFIX)
|
|||||||
set_using_dynamic_name( "${OUPUT_PREFIX}_FOUND" TRUE )
|
set_using_dynamic_name( "${OUPUT_PREFIX}_FOUND" TRUE )
|
||||||
ELSE( ${VERSION_TEXT} MATCHES ${VERSION_REGEX} )
|
ELSE( ${VERSION_TEXT} MATCHES ${VERSION_REGEX} )
|
||||||
set_using_dynamic_name( "${OUPUT_PREFIX}_FOUND" FALSE )
|
set_using_dynamic_name( "${OUPUT_PREFIX}_FOUND" FALSE )
|
||||||
ENDIF()
|
ENDIF( ${VERSION_TEXT} MATCHES ${VERSION_REGEX} )
|
||||||
ENDMACRO()
|
ENDMACRO(jsoncpp_parse_version)
|
||||||
|
|
||||||
# Read out version from "version" file
|
# Read out version from "version" file
|
||||||
#FILE(STRINGS "version" JSONCPP_VERSION)
|
#FILE(STRINGS "version" JSONCPP_VERSION)
|
||||||
#SET( JSONCPP_VERSION_MAJOR X )
|
#SET( JSONCPP_VERSION_MAJOR X )
|
||||||
#SET( JSONCPP_VERSION_MINOR Y )
|
#SET( JSONCPP_VERSION_MINOR Y )
|
||||||
#SET( JSONCPP_VERSION_PATCH Z )
|
#SET( JSONCPP_VERSION_PATCH Z )
|
||||||
SET( JSONCPP_VERSION 1.8.1 )
|
SET( JSONCPP_VERSION 0.9.4 )
|
||||||
jsoncpp_parse_version( ${JSONCPP_VERSION} JSONCPP_VERSION )
|
jsoncpp_parse_version( ${JSONCPP_VERSION} JSONCPP_VERSION )
|
||||||
#IF(NOT JSONCPP_VERSION_FOUND)
|
#IF(NOT JSONCPP_VERSION_FOUND)
|
||||||
# MESSAGE(FATAL_ERROR "Failed to parse version string properly. Expect X.Y.Z")
|
# MESSAGE(FATAL_ERROR "Failed to parse version string properly. Expect X.Y.Z")
|
||||||
#ENDIF(NOT JSONCPP_VERSION_FOUND)
|
#ENDIF(NOT JSONCPP_VERSION_FOUND)
|
||||||
SET( JSONCPP_SOVERSION 11 )
|
|
||||||
SET( JSONCPP_USE_SECURE_MEMORY "0" CACHE STRING "-D...=1 to use memory-wiping allocator for STL" )
|
|
||||||
|
|
||||||
MESSAGE(STATUS "JsonCpp Version: ${JSONCPP_VERSION_MAJOR}.${JSONCPP_VERSION_MINOR}.${JSONCPP_VERSION_PATCH}")
|
MESSAGE(STATUS "JsonCpp Version: ${JSONCPP_VERSION_MAJOR}.${JSONCPP_VERSION_MINOR}.${JSONCPP_VERSION_PATCH}")
|
||||||
# File version.h is only regenerated on CMake configure step
|
# File version.h is only regenerated on CMake configure step
|
||||||
@@ -76,81 +75,49 @@ CONFIGURE_FILE( "${PROJECT_SOURCE_DIR}/version.in"
|
|||||||
"${PROJECT_SOURCE_DIR}/version"
|
"${PROJECT_SOURCE_DIR}/version"
|
||||||
NEWLINE_STYLE UNIX )
|
NEWLINE_STYLE UNIX )
|
||||||
|
|
||||||
MACRO(UseCompilationWarningAsError)
|
macro(UseCompilationWarningAsError)
|
||||||
IF(MSVC)
|
if ( MSVC )
|
||||||
# Only enabled in debug because some old versions of VS STL generate
|
# Only enabled in debug because some old versions of VS STL generate
|
||||||
# warnings when compiled in release configuration.
|
# warnings when compiled in release configuration.
|
||||||
SET(CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} /WX ")
|
set(CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} /WX ")
|
||||||
ELSEIF(CMAKE_CXX_COMPILER_ID STREQUAL "GNU")
|
endif( MSVC )
|
||||||
SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Werror")
|
endmacro()
|
||||||
IF(JSONCPP_WITH_STRICT_ISO)
|
|
||||||
SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -pedantic-errors")
|
|
||||||
ENDIF()
|
|
||||||
ENDIF()
|
|
||||||
ENDMACRO()
|
|
||||||
|
|
||||||
# Include our configuration header
|
# Include our configuration header
|
||||||
INCLUDE_DIRECTORIES( ${jsoncpp_SOURCE_DIR}/include )
|
INCLUDE_DIRECTORIES( ${jsoncpp_SOURCE_DIR}/include )
|
||||||
|
|
||||||
IF(MSVC)
|
if ( MSVC )
|
||||||
# Only enabled in debug because some old versions of VS STL generate
|
# Only enabled in debug because some old versions of VS STL generate
|
||||||
# unreachable code warning when compiled in release configuration.
|
# unreachable code warning when compiled in release configuration.
|
||||||
SET(CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} /W4 ")
|
set(CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} /W4 ")
|
||||||
ENDIF()
|
endif( MSVC )
|
||||||
|
|
||||||
# Require C++11 support, prefer ISO C++ over GNU variants,
|
if (CMAKE_CXX_COMPILER_ID MATCHES "Clang")
|
||||||
# as relying solely on ISO C++ is more portable.
|
# using regular Clang or AppleClang
|
||||||
SET(CMAKE_CXX_STANDARD 11)
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall")
|
||||||
SET(CMAKE_CXX_STANDARD_REQUIRED ON)
|
elseif ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "GNU")
|
||||||
SET(CMAKE_CXX_EXTENSIONS OFF)
|
# using GCC
|
||||||
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall -Wextra -pedantic")
|
||||||
IF(CMAKE_CXX_COMPILER_ID MATCHES "Clang")
|
endif()
|
||||||
# using regular Clang or AppleClang
|
|
||||||
SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall -Wconversion -Wshadow -Werror=conversion -Werror=sign-compare")
|
|
||||||
ELSEIF(CMAKE_CXX_COMPILER_ID STREQUAL "GNU")
|
|
||||||
# using GCC
|
|
||||||
SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall -Wconversion -Wshadow -Wextra")
|
|
||||||
# not yet ready for -Wsign-conversion
|
|
||||||
|
|
||||||
IF(JSONCPP_WITH_STRICT_ISO)
|
|
||||||
SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -pedantic")
|
|
||||||
ENDIF()
|
|
||||||
IF(JSONCPP_WITH_WARNING_AS_ERROR)
|
|
||||||
SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Werror=conversion")
|
|
||||||
ENDIF()
|
|
||||||
ELSEIF(CMAKE_CXX_COMPILER_ID STREQUAL "Intel")
|
|
||||||
# using Intel compiler
|
|
||||||
SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall -Wconversion -Wshadow -Wextra -Werror=conversion")
|
|
||||||
|
|
||||||
IF(JSONCPP_WITH_STRICT_ISO AND NOT JSONCPP_WITH_WARNING_AS_ERROR)
|
|
||||||
SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -pedantic")
|
|
||||||
ENDIF()
|
|
||||||
ENDIF()
|
|
||||||
|
|
||||||
FIND_PROGRAM(CCACHE_FOUND ccache)
|
|
||||||
IF(CCACHE_FOUND)
|
|
||||||
SET_PROPERTY(GLOBAL PROPERTY RULE_LAUNCH_COMPILE ccache)
|
|
||||||
SET_PROPERTY(GLOBAL PROPERTY RULE_LAUNCH_LINK ccache)
|
|
||||||
ENDIF(CCACHE_FOUND)
|
|
||||||
|
|
||||||
IF(JSONCPP_WITH_WARNING_AS_ERROR)
|
IF(JSONCPP_WITH_WARNING_AS_ERROR)
|
||||||
UseCompilationWarningAsError()
|
UseCompilationWarningAsError()
|
||||||
ENDIF()
|
ENDIF(JSONCPP_WITH_WARNING_AS_ERROR)
|
||||||
|
|
||||||
IF(JSONCPP_WITH_PKGCONFIG_SUPPORT)
|
IF(JSONCPP_WITH_PKGCONFIG_SUPPORT)
|
||||||
CONFIGURE_FILE(
|
CONFIGURE_FILE(
|
||||||
"pkg-config/jsoncpp.pc.in"
|
"pkg-config/jsoncpp.pc.in"
|
||||||
"pkg-config/jsoncpp.pc"
|
"pkg-config/jsoncpp.pc"
|
||||||
@ONLY)
|
@ONLY)
|
||||||
INSTALL(FILES "${CMAKE_CURRENT_BINARY_DIR}/pkg-config/jsoncpp.pc"
|
INSTALL(FILES "${CMAKE_BINARY_DIR}/pkg-config/jsoncpp.pc"
|
||||||
DESTINATION "${CMAKE_INSTALL_LIBDIR}/pkgconfig")
|
DESTINATION "${CMAKE_INSTALL_PREFIX}/lib${LIB_SUFFIX}/pkgconfig")
|
||||||
ENDIF()
|
ENDIF(JSONCPP_WITH_PKGCONFIG_SUPPORT)
|
||||||
|
|
||||||
IF(JSONCPP_WITH_CMAKE_PACKAGE)
|
IF(JSONCPP_WITH_CMAKE_PACKAGE)
|
||||||
INSTALL(EXPORT jsoncpp
|
INSTALL(EXPORT jsoncpp
|
||||||
DESTINATION ${CMAKE_INSTALL_LIBDIR}/cmake/jsoncpp
|
DESTINATION ${PACKAGE_INSTALL_DIR}/jsoncpp
|
||||||
FILE jsoncppConfig.cmake)
|
FILE jsoncppConfig.cmake)
|
||||||
ENDIF()
|
ENDIF(JSONCPP_WITH_CMAKE_PACKAGE)
|
||||||
|
|
||||||
# Build the different applications
|
# Build the different applications
|
||||||
ADD_SUBDIRECTORY( src )
|
ADD_SUBDIRECTORY( src )
|
||||||
|
6
LICENSE
6
LICENSE
@@ -2,12 +2,12 @@ The JsonCpp library's source code, including accompanying documentation,
|
|||||||
tests and demonstration applications, are licensed under the following
|
tests and demonstration applications, are licensed under the following
|
||||||
conditions...
|
conditions...
|
||||||
|
|
||||||
The JsonCpp Authors explicitly disclaim copyright in all
|
The author (Baptiste Lepilleur) explicitly disclaims copyright in all
|
||||||
jurisdictions which recognize such a disclaimer. In such jurisdictions,
|
jurisdictions which recognize such a disclaimer. In such jurisdictions,
|
||||||
this software is released into the Public Domain.
|
this software is released into the Public Domain.
|
||||||
|
|
||||||
In jurisdictions which do not recognize Public Domain property (e.g. Germany as of
|
In jurisdictions which do not recognize Public Domain property (e.g. Germany as of
|
||||||
2010), this software is Copyright (c) 2007-2010 by The JsonCpp Authors, and is
|
2010), this software is Copyright (c) 2007-2010 by Baptiste Lepilleur, and is
|
||||||
released under the terms of the MIT License (see below).
|
released under the terms of the MIT License (see below).
|
||||||
|
|
||||||
In jurisdictions which recognize Public Domain property, the user of this
|
In jurisdictions which recognize Public Domain property, the user of this
|
||||||
@@ -23,7 +23,7 @@ described in clear, concise terms at:
|
|||||||
The full text of the MIT License follows:
|
The full text of the MIT License follows:
|
||||||
|
|
||||||
========================================================================
|
========================================================================
|
||||||
Copyright (c) 2007-2010 The JsonCpp Authors
|
Copyright (c) 2007-2010 Baptiste Lepilleur
|
||||||
|
|
||||||
Permission is hereby granted, free of charge, to any person
|
Permission is hereby granted, free of charge, to any person
|
||||||
obtaining a copy of this software and associated documentation
|
obtaining a copy of this software and associated documentation
|
||||||
|
184
README.md
184
README.md
@@ -1,6 +1,5 @@
|
|||||||
# JsonCpp
|
Introduction
|
||||||
|
------------
|
||||||
[](http://www.conan.io/source/jsoncpp/1.8.0/theirix/ci)
|
|
||||||
|
|
||||||
[JSON][json-org] is a lightweight data-interchange format. It can represent
|
[JSON][json-org] is a lightweight data-interchange format. It can represent
|
||||||
numbers, strings, ordered sequences of values, and collections of name/value
|
numbers, strings, ordered sequences of values, and collections of name/value
|
||||||
@@ -8,109 +7,37 @@ pairs.
|
|||||||
|
|
||||||
[json-org]: http://json.org/
|
[json-org]: http://json.org/
|
||||||
|
|
||||||
JsonCpp is a C++ library that allows manipulating JSON values, including
|
[JsonCpp][] is a C++ library that allows manipulating JSON values, including
|
||||||
serialization and deserialization to and from strings. It can also preserve
|
serialization and deserialization to and from strings. It can also preserve
|
||||||
existing comment in unserialization/serialization steps, making it a convenient
|
existing comment in unserialization/serialization steps, making it a convenient
|
||||||
format to store user input files.
|
format to store user input files.
|
||||||
|
|
||||||
|
[JsonCpp]: http://open-source-parsers.github.io/jsoncpp-docs/doxygen/index.html
|
||||||
## Documentation
|
|
||||||
|
|
||||||
[JsonCpp documentation][JsonCpp-documentation] is generated using [Doxygen][].
|
|
||||||
|
|
||||||
[JsonCpp-documentation]: http://open-source-parsers.github.io/jsoncpp-docs/doxygen/index.html
|
|
||||||
[Doxygen]: http://www.doxygen.org
|
|
||||||
|
|
||||||
|
|
||||||
## A note on backward-compatibility
|
## A note on backward-compatibility
|
||||||
|
|
||||||
* `1.y.z` is built with C++11.
|
* `1.y.z` is built with C++11.
|
||||||
* `0.y.z` can be used with older compilers.
|
* `0.y.z` can be used with older compilers.
|
||||||
* Major versions maintain binary-compatibility.
|
* Major versions maintain binary-compatibility.
|
||||||
|
|
||||||
|
Using JsonCpp in your project
|
||||||
|
-----------------------------
|
||||||
|
The recommended approach to integrating JsonCpp in your project is to build
|
||||||
|
the amalgamated source (a single `.cpp` file) with your own build system. This
|
||||||
|
ensures consistency of compilation flags and ABI compatibility. See the section
|
||||||
|
"Generating amalgamated source and header" for instructions.
|
||||||
|
|
||||||
## Using JsonCpp in your project
|
The `include/` should be added to your compiler include path. Jsoncpp headers
|
||||||
|
|
||||||
The recommended approach to integrating JsonCpp in your project is to include
|
|
||||||
the [amalgamated source](#generating-amalgamated-source-and-header) (a single
|
|
||||||
`.cpp` file and two `.h` files) in your project, and compile and build as you
|
|
||||||
would any other source file. This ensures consistency of compilation flags and
|
|
||||||
ABI compatibility, issues which arise when building shared or static
|
|
||||||
libraries. See the next section for instructions.
|
|
||||||
|
|
||||||
The `include/` should be added to your compiler include path. JsonCpp headers
|
|
||||||
should be included as follow:
|
should be included as follow:
|
||||||
|
|
||||||
#include <json/json.h>
|
#include <json/json.h>
|
||||||
|
|
||||||
If JsonCpp was built as a dynamic library on Windows, then your project needs to define the macro `JSON_DLL`.
|
If JsonCpp was built as a dynamic library on Windows, then your project needs to
|
||||||
|
define the macro `JSON_DLL`.
|
||||||
|
|
||||||
### Generating amalgamated source and header
|
Building and testing with CMake
|
||||||
|
-------------------------------
|
||||||
JsonCpp is provided with a script to generate a single header and a single
|
[CMake][] is a C++ Makefiles/Solution generator. It is usually available on most
|
||||||
source file to ease inclusion into an existing project. The amalgamated source
|
Linux system as package. On Ubuntu:
|
||||||
can be generated at any time by running the following command from the
|
|
||||||
top-directory (this requires Python 2.6):
|
|
||||||
|
|
||||||
python amalgamate.py
|
|
||||||
|
|
||||||
It is possible to specify header name. See the `-h` option for detail.
|
|
||||||
|
|
||||||
By default, the following files are generated:
|
|
||||||
|
|
||||||
* `dist/jsoncpp.cpp`: source file that needs to be added to your project.
|
|
||||||
* `dist/json/json.h`: corresponding header file for use in your project. It is
|
|
||||||
equivalent to including `json/json.h` in non-amalgamated source. This header
|
|
||||||
only depends on standard headers.
|
|
||||||
* `dist/json/json-forwards.h`: header that provides forward declaration of all
|
|
||||||
JsonCpp types.
|
|
||||||
|
|
||||||
The amalgamated sources are generated by concatenating JsonCpp source in the
|
|
||||||
correct order and defining the macro `JSON_IS_AMALGAMATION` to prevent inclusion of other headers.
|
|
||||||
|
|
||||||
|
|
||||||
## Contributing to JsonCpp
|
|
||||||
|
|
||||||
### Building and testing with Conan
|
|
||||||
|
|
||||||
[Conan](https://www.conan.io/#/) is an open source package manager intended for C/C++ projects.
|
|
||||||
It is cross platform and build system agnostic.
|
|
||||||
|
|
||||||
Conan requires Python for running, and can be installed using pip:
|
|
||||||
|
|
||||||
pip install conan
|
|
||||||
|
|
||||||
Detailed instructions can be found on [conan docs](http://docs.conan.io/en/latest/).
|
|
||||||
|
|
||||||
For build jsoncpp with conan, you need to create a [conanfile.txt](http://docs.conan.io/en/latest/reference/conanfile_txt.html) or a [conanfile.py](http://docs.conan.io/en/latest/reference/conanfile.html). The first is simpler, but the second is more flexible.
|
|
||||||
|
|
||||||
This is a sample conanfile.txt:
|
|
||||||
|
|
||||||
```
|
|
||||||
[requires]
|
|
||||||
jsoncpp/1.8.0@theirix/ci
|
|
||||||
|
|
||||||
[generators]
|
|
||||||
cmake
|
|
||||||
```
|
|
||||||
|
|
||||||
**Note**: cmake is not required, you can use other [integrations](http://docs.conan.io/en/latest/integrations.html). Or you can set the appropriate environment variables, using [virtualenv generators](http://docs.conan.io/en/latest/mastering/virtualenv.html).
|
|
||||||
|
|
||||||
Then run the following command from the conanfile directory:
|
|
||||||
|
|
||||||
conan install --build missing
|
|
||||||
|
|
||||||
This will try to download the appropriate package for your settings (OS, compiler, architecture) from the [recipe packages](https://www.conan.io/source/jsoncpp/1.8.0/theirix/ci). If it is not found, the package will be built.
|
|
||||||
|
|
||||||
**Note**: you do not need to install cmake to build jsoncpp using conan, because the recipe will download it automatically.
|
|
||||||
|
|
||||||
If you need, you can customize the jsoncpp recipe. Just clone/fork [it from github](https://github.com/theirix/conan-jsoncpp/).
|
|
||||||
|
|
||||||
See [integrations instructions](http://docs.conan.io/en/latest/integrations.html) for how to use your build system with conan.
|
|
||||||
|
|
||||||
### Building and testing with CMake
|
|
||||||
|
|
||||||
[CMake][] is a C++ Makefiles/Solution generator. It is usually available on most Linux system as package. On Ubuntu:
|
|
||||||
|
|
||||||
sudo apt-get install cmake
|
sudo apt-get install cmake
|
||||||
|
|
||||||
@@ -121,9 +48,9 @@ missing, the build will skip running those tests.
|
|||||||
|
|
||||||
When running CMake, a few parameters are required:
|
When running CMake, a few parameters are required:
|
||||||
|
|
||||||
* A build directory where the makefiles/solution are generated. It is also used
|
* a build directory where the makefiles/solution are generated. It is also used
|
||||||
to store objects, libraries and executables files.
|
to store objects, libraries and executables files.
|
||||||
* The generator to use: makefiles or Visual Studio solution? What version or
|
* the generator to use: makefiles or Visual Studio solution? What version or
|
||||||
Visual Studio, 32 or 64 bits solution?
|
Visual Studio, 32 or 64 bits solution?
|
||||||
|
|
||||||
Steps for generating solution/makefiles using `cmake-gui`:
|
Steps for generating solution/makefiles using `cmake-gui`:
|
||||||
@@ -131,7 +58,7 @@ Steps for generating solution/makefiles using `cmake-gui`:
|
|||||||
* Make "source code" point to the source directory.
|
* Make "source code" point to the source directory.
|
||||||
* Make "where to build the binary" point to the directory to use for the build.
|
* Make "where to build the binary" point to the directory to use for the build.
|
||||||
* Click on the "Grouped" check box.
|
* Click on the "Grouped" check box.
|
||||||
* Review JsonCpp build options (tick `BUILD_SHARED_LIBS` to build as a
|
* Review JsonCpp build options (tick `JSONCPP_LIB_BUILD_SHARED` to build as a
|
||||||
dynamic library).
|
dynamic library).
|
||||||
* Click the configure button at the bottom, then the generate button.
|
* Click the configure button at the bottom, then the generate button.
|
||||||
* The generated solution/makefiles can be found in the binary directory.
|
* The generated solution/makefiles can be found in the binary directory.
|
||||||
@@ -140,23 +67,19 @@ Alternatively, from the command-line on Unix in the source directory:
|
|||||||
|
|
||||||
mkdir -p build/debug
|
mkdir -p build/debug
|
||||||
cd build/debug
|
cd build/debug
|
||||||
cmake -DCMAKE_BUILD_TYPE=debug -DBUILD_STATIC_LIBS=ON -DBUILD_SHARED_LIBS=OFF -DARCHIVE_INSTALL_DIR=. -G "Unix Makefiles" ../..
|
cmake -DCMAKE_BUILD_TYPE=debug -DJSONCPP_LIB_BUILD_STATIC=ON -DJSONCPP_LIB_BUILD_SHARED=OFF -G "Unix Makefiles" ../..
|
||||||
make
|
make
|
||||||
|
|
||||||
For a good pkg-config file, add:
|
Running `cmake -`" will display the list of available generators (passed using
|
||||||
|
|
||||||
-DCMAKE_INSTALL_INCLUDEDIR=include/jsoncpp
|
|
||||||
|
|
||||||
Running `cmake -h` will display the list of available generators (passed using
|
|
||||||
the `-G` option).
|
the `-G` option).
|
||||||
|
|
||||||
By default CMake hides compilation commands. This can be modified by specifying
|
By default CMake hides compilation commands. This can be modified by specifying
|
||||||
`-DCMAKE_VERBOSE_MAKEFILE=true` when generating makefiles.
|
`-DCMAKE_VERBOSE_MAKEFILE=true` when generating makefiles.
|
||||||
|
|
||||||
### Building and testing with SCons
|
Building and testing with SCons
|
||||||
|
-------------------------------
|
||||||
**Note:** The SCons-based build system is deprecated. Please use CMake (see the
|
**Note:** The SCons-based build system is deprecated. Please use CMake; see the
|
||||||
section above).
|
section above.
|
||||||
|
|
||||||
JsonCpp can use [Scons][] as a build system. Note that SCons requires Python to
|
JsonCpp can use [Scons][] as a build system. Note that SCons requires Python to
|
||||||
be installed.
|
be installed.
|
||||||
@@ -183,8 +106,7 @@ If you are building with Microsoft Visual Studio 2008, you need to set up the
|
|||||||
environment by running `vcvars32.bat` (e.g. MSVC 2008 command prompt) before
|
environment by running `vcvars32.bat` (e.g. MSVC 2008 command prompt) before
|
||||||
running SCons.
|
running SCons.
|
||||||
|
|
||||||
### Running the tests manually
|
# Running the tests manually
|
||||||
|
|
||||||
You need to run tests manually only if you are troubleshooting an issue.
|
You need to run tests manually only if you are troubleshooting an issue.
|
||||||
|
|
||||||
In the instructions below, replace `path/to/jsontest` with the path of the
|
In the instructions below, replace `path/to/jsontest` with the path of the
|
||||||
@@ -207,22 +129,44 @@ In the instructions below, replace `path/to/jsontest` with the path of the
|
|||||||
# You can run the tests using valgrind:
|
# You can run the tests using valgrind:
|
||||||
python rununittests.py --valgrind path/to/test_lib_json
|
python rununittests.py --valgrind path/to/test_lib_json
|
||||||
|
|
||||||
### Running the tests using SCons
|
## Running the tests using scons
|
||||||
|
|
||||||
Note that tests can be run using SCons using the `check` target:
|
Note that tests can be run using SCons using the `check` target:
|
||||||
|
|
||||||
scons platform=$PLATFORM check
|
scons platform=$PLATFORM check
|
||||||
|
|
||||||
### Building the documentation
|
Building the documentation
|
||||||
|
--------------------------
|
||||||
Run the Python script `doxybuild.py` from the top directory:
|
Run the Python script `doxybuild.py` from the top directory:
|
||||||
|
|
||||||
python doxybuild.py --doxygen=$(which doxygen) --open --with-dot
|
python doxybuild.py --doxygen=$(which doxygen) --open --with-dot
|
||||||
|
|
||||||
See `doxybuild.py --help` for options.
|
See `doxybuild.py --help` for options.
|
||||||
|
|
||||||
### Adding a reader/writer test
|
Generating amalgamated source and header
|
||||||
|
----------------------------------------
|
||||||
|
JsonCpp is provided with a script to generate a single header and a single
|
||||||
|
source file to ease inclusion into an existing project. The amalgamated source
|
||||||
|
can be generated at any time by running the following command from the
|
||||||
|
top-directory (this requires Python 2.6):
|
||||||
|
|
||||||
|
python amalgamate.py
|
||||||
|
|
||||||
|
It is possible to specify header name. See the `-h` option for detail.
|
||||||
|
|
||||||
|
By default, the following files are generated:
|
||||||
|
* `dist/jsoncpp.cpp`: source file that needs to be added to your project.
|
||||||
|
* `dist/json/json.h`: corresponding header file for use in your project. It is
|
||||||
|
equivalent to including `json/json.h` in non-amalgamated source. This header
|
||||||
|
only depends on standard headers.
|
||||||
|
* `dist/json/json-forwards.h`: header that provides forward declaration of all
|
||||||
|
JsonCpp types.
|
||||||
|
|
||||||
|
The amalgamated sources are generated by concatenating JsonCpp source in the
|
||||||
|
correct order and defining the macro `JSON_IS_AMALGAMATION` to prevent inclusion
|
||||||
|
of other headers.
|
||||||
|
|
||||||
|
Adding a reader/writer test
|
||||||
|
---------------------------
|
||||||
To add a test, you need to create two files in test/data:
|
To add a test, you need to create two files in test/data:
|
||||||
|
|
||||||
* a `TESTNAME.json` file, that contains the input document in JSON format.
|
* a `TESTNAME.json` file, that contains the input document in JSON format.
|
||||||
@@ -231,19 +175,21 @@ To add a test, you need to create two files in test/data:
|
|||||||
|
|
||||||
The `TESTNAME.expected` file format is as follows:
|
The `TESTNAME.expected` file format is as follows:
|
||||||
|
|
||||||
* Each line represents a JSON element of the element tree represented by the
|
* each line represents a JSON element of the element tree represented by the
|
||||||
input document.
|
input document.
|
||||||
* Each line has two parts: the path to access the element separated from the
|
* each line has two parts: the path to access the element separated from the
|
||||||
element value by `=`. Array and object values are always empty (i.e.
|
element value by `=`. Array and object values are always empty (i.e.
|
||||||
represented by either `[]` or `{}`).
|
represented by either `[]` or `{}`).
|
||||||
* Element path `.` represents the root element, and is used to separate object
|
* element path: `.` represents the root element, and is used to separate object
|
||||||
members. `[N]` is used to specify the value of an array element at index `N`.
|
members. `[N]` is used to specify the value of an array element at index `N`.
|
||||||
|
|
||||||
See the examples `test_complex_01.json` and `test_complex_01.expected` to better understand element paths.
|
See the examples `test_complex_01.json` and `test_complex_01.expected` to better
|
||||||
|
understand element paths.
|
||||||
|
|
||||||
### Understanding reader/writer test output
|
Understanding reader/writer test output
|
||||||
|
---------------------------------------
|
||||||
When a test is run, output files are generated beside the input test files. Below is a short description of the content of each file:
|
When a test is run, output files are generated beside the input test files.
|
||||||
|
Below is a short description of the content of each file:
|
||||||
|
|
||||||
* `test_complex_01.json`: input JSON document.
|
* `test_complex_01.json`: input JSON document.
|
||||||
* `test_complex_01.expected`: flattened JSON element tree used to check if
|
* `test_complex_01.expected`: flattened JSON element tree used to check if
|
||||||
@@ -258,7 +204,7 @@ When a test is run, output files are generated beside the input test files. Belo
|
|||||||
* `test_complex_01.process-output`: `jsontest` output, typically useful for
|
* `test_complex_01.process-output`: `jsontest` output, typically useful for
|
||||||
understanding parsing errors.
|
understanding parsing errors.
|
||||||
|
|
||||||
## License
|
License
|
||||||
|
-------
|
||||||
See the `LICENSE` file for details. In summary, JsonCpp is licensed under the
|
See the `LICENSE` file for details. In summary, JsonCpp is licensed under the
|
||||||
MIT license, or public domain if desired and recognized in your jurisdiction.
|
MIT license, or public domain if desired and recognized in your jurisdiction.
|
||||||
|
@@ -67,7 +67,6 @@ def amalgamate_source(source_top_dir=None,
|
|||||||
header.add_text("/// to prevent private header inclusion.")
|
header.add_text("/// to prevent private header inclusion.")
|
||||||
header.add_text("#define JSON_IS_AMALGAMATION")
|
header.add_text("#define JSON_IS_AMALGAMATION")
|
||||||
header.add_file("include/json/version.h")
|
header.add_file("include/json/version.h")
|
||||||
#header.add_file("include/json/allocator.h") # Not available here.
|
|
||||||
header.add_file("include/json/config.h")
|
header.add_file("include/json/config.h")
|
||||||
header.add_file("include/json/forwards.h")
|
header.add_file("include/json/forwards.h")
|
||||||
header.add_file("include/json/features.h")
|
header.add_file("include/json/features.h")
|
||||||
|
35
appveyor.yml
35
appveyor.yml
@@ -1,35 +0,0 @@
|
|||||||
# This is a comment.
|
|
||||||
|
|
||||||
version: build.{build}
|
|
||||||
|
|
||||||
os: Windows Server 2012 R2
|
|
||||||
|
|
||||||
clone_folder: c:\projects\jsoncpp
|
|
||||||
|
|
||||||
platform:
|
|
||||||
- Win32
|
|
||||||
- x64
|
|
||||||
|
|
||||||
configuration:
|
|
||||||
- Debug
|
|
||||||
- Release
|
|
||||||
|
|
||||||
# scripts to run before build
|
|
||||||
before_build:
|
|
||||||
- echo "Running cmake..."
|
|
||||||
- cd c:\projects\jsoncpp
|
|
||||||
- cmake --version
|
|
||||||
- set PATH=C:\Program Files (x86)\MSBuild\14.0\Bin;%PATH%
|
|
||||||
- if %PLATFORM% == Win32 cmake .
|
|
||||||
- if %PLATFORM% == x64 cmake -G "Visual Studio 12 2013 Win64" .
|
|
||||||
|
|
||||||
build:
|
|
||||||
project: jsoncpp.sln # path to Visual Studio solution or project
|
|
||||||
|
|
||||||
deploy:
|
|
||||||
provider: GitHub
|
|
||||||
auth_token:
|
|
||||||
secure: K2Tp1q8pIZ7rs0Ot24ZMWuwr12Ev6Tc6QkhMjGQxoQG3ng1pXtgPasiJ45IDXGdg
|
|
||||||
on:
|
|
||||||
branch: master
|
|
||||||
appveyor_repo_tag: true
|
|
@@ -16,7 +16,7 @@ dox:
|
|||||||
# Then 'git add -A' and 'git push' in jsoncpp-docs.
|
# Then 'git add -A' and 'git push' in jsoncpp-docs.
|
||||||
build:
|
build:
|
||||||
mkdir -p build/debug
|
mkdir -p build/debug
|
||||||
cd build/debug; cmake -DCMAKE_BUILD_TYPE=debug -DBUILD_SHARED_LIBS=ON -G "Unix Makefiles" ../..
|
cd build/debug; cmake -DCMAKE_BUILD_TYPE=debug -DJSONCPP_LIB_BUILD_SHARED=ON -G "Unix Makefiles" ../..
|
||||||
make -C build/debug
|
make -C build/debug
|
||||||
|
|
||||||
# Currently, this depends on include/json/version.h generated
|
# Currently, this depends on include/json/version.h generated
|
||||||
@@ -26,9 +26,6 @@ test-amalgamate:
|
|||||||
python3.4 amalgamate.py
|
python3.4 amalgamate.py
|
||||||
cd dist; gcc -I. -c jsoncpp.cpp
|
cd dist; gcc -I. -c jsoncpp.cpp
|
||||||
|
|
||||||
valgrind:
|
|
||||||
valgrind --error-exitcode=42 --leak-check=full ./build/debug/src/test_lib_json/jsoncpp_test
|
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
\rm -rf *.gz *.asc dist/
|
\rm -rf *.gz *.asc dist/
|
||||||
|
|
||||||
|
@@ -1,6 +1 @@
|
|||||||
# Copyright 2010 The JsonCpp Authors
|
|
||||||
# Distributed under MIT license, or public domain if desired and
|
|
||||||
# recognized in your jurisdiction.
|
|
||||||
# See file LICENSE for detail or copy at http://jsoncpp.sourceforge.net/LICENSE
|
|
||||||
|
|
||||||
# module
|
# module
|
@@ -19,8 +19,8 @@
|
|||||||
},
|
},
|
||||||
{"name": "shared_dll",
|
{"name": "shared_dll",
|
||||||
"variables": [
|
"variables": [
|
||||||
["BUILD_SHARED_LIBS=true"],
|
["JSONCPP_LIB_BUILD_SHARED=true"],
|
||||||
["BUILD_SHARED_LIBS=false"]
|
["JSONCPP_LIB_BUILD_SHARED=false"]
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{"name": "build_type",
|
{"name": "build_type",
|
||||||
|
@@ -12,8 +12,8 @@
|
|||||||
},
|
},
|
||||||
{"name": "shared_dll",
|
{"name": "shared_dll",
|
||||||
"variables": [
|
"variables": [
|
||||||
["BUILD_SHARED_LIBS=true"],
|
["JSONCPP_LIB_BUILD_SHARED=true"],
|
||||||
["BUILD_SHARED_LIBS=false"]
|
["JSONCPP_LIB_BUILD_SHARED=false"]
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{"name": "build_type",
|
{"name": "build_type",
|
||||||
|
@@ -1,9 +1,6 @@
|
|||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
# encoding: utf-8
|
# encoding: utf-8
|
||||||
# Copyright 2009 The JsonCpp Authors
|
# Baptiste Lepilleur, 2009
|
||||||
# Distributed under MIT license, or public domain if desired and
|
|
||||||
# recognized in your jurisdiction.
|
|
||||||
# See file LICENSE for detail or copy at http://jsoncpp.sourceforge.net/LICENSE
|
|
||||||
|
|
||||||
from __future__ import print_function
|
from __future__ import print_function
|
||||||
from dircache import listdir
|
from dircache import listdir
|
||||||
|
@@ -1,11 +1,5 @@
|
|||||||
# Copyright 2010 The JsonCpp Authors
|
|
||||||
# Distributed under MIT license, or public domain if desired and
|
|
||||||
# recognized in your jurisdiction.
|
|
||||||
# See file LICENSE for detail or copy at http://jsoncpp.sourceforge.net/LICENSE
|
|
||||||
|
|
||||||
from __future__ import print_function
|
from __future__ import print_function
|
||||||
import os.path
|
import os.path
|
||||||
import sys
|
|
||||||
|
|
||||||
def fix_source_eol(path, is_dry_run = True, verbose = True, eol = '\n'):
|
def fix_source_eol(path, is_dry_run = True, verbose = True, eol = '\n'):
|
||||||
"""Makes sure that all sources have the specified eol sequence (default: unix)."""
|
"""Makes sure that all sources have the specified eol sequence (default: unix)."""
|
||||||
|
@@ -6,7 +6,7 @@ from __future__ import print_function
|
|||||||
# and ends with the first blank line.
|
# and ends with the first blank line.
|
||||||
LICENSE_BEGIN = "// Copyright "
|
LICENSE_BEGIN = "// Copyright "
|
||||||
|
|
||||||
BRIEF_LICENSE = LICENSE_BEGIN + """2007-2010 The JsonCpp Authors
|
BRIEF_LICENSE = LICENSE_BEGIN + """2007-2010 Baptiste Lepilleur
|
||||||
// Distributed under MIT license, or public domain if desired and
|
// Distributed under MIT license, or public domain if desired and
|
||||||
// recognized in your jurisdiction.
|
// recognized in your jurisdiction.
|
||||||
// See file LICENSE for detail or copy at http://jsoncpp.sourceforge.net/LICENSE
|
// See file LICENSE for detail or copy at http://jsoncpp.sourceforge.net/LICENSE
|
||||||
|
@@ -1,8 +1,3 @@
|
|||||||
# Copyright 2010 The JsonCpp Authors
|
|
||||||
# Distributed under MIT license, or public domain if desired and
|
|
||||||
# recognized in your jurisdiction.
|
|
||||||
# See file LICENSE for detail or copy at http://jsoncpp.sourceforge.net/LICENSE
|
|
||||||
|
|
||||||
from contextlib import closing
|
from contextlib import closing
|
||||||
import os
|
import os
|
||||||
import tarfile
|
import tarfile
|
||||||
|
@@ -31,7 +31,7 @@ def find_program(*filenames):
|
|||||||
paths = os.environ.get('PATH', '').split(os.pathsep)
|
paths = os.environ.get('PATH', '').split(os.pathsep)
|
||||||
suffixes = ('win32' in sys.platform) and '.exe .com .bat .cmd' or ''
|
suffixes = ('win32' in sys.platform) and '.exe .com .bat .cmd' or ''
|
||||||
for filename in filenames:
|
for filename in filenames:
|
||||||
for name in [filename+ext for ext in suffixes.split(' ')]:
|
for name in [filename+ext for ext in suffixes.split()]:
|
||||||
for directory in paths:
|
for directory in paths:
|
||||||
full_path = os.path.join(directory, name)
|
full_path = os.path.join(directory, name)
|
||||||
if os.path.isfile(full_path):
|
if os.path.isfile(full_path):
|
||||||
@@ -72,7 +72,7 @@ def run_cmd(cmd, silent=False):
|
|||||||
if silent:
|
if silent:
|
||||||
status, output = getstatusoutput(cmd)
|
status, output = getstatusoutput(cmd)
|
||||||
else:
|
else:
|
||||||
status, output = subprocess.call(cmd), ''
|
status, output = os.system(' '.join(cmd)), ''
|
||||||
if status:
|
if status:
|
||||||
msg = 'Error while %s ...\n\terror=%d, output="""%s"""' %(info, status, output)
|
msg = 'Error while %s ...\n\terror=%d, output="""%s"""' %(info, status, output)
|
||||||
raise Exception(msg)
|
raise Exception(msg)
|
||||||
|
@@ -1,2 +1,2 @@
|
|||||||
FILE(GLOB INCLUDE_FILES "json/*.h")
|
FILE(GLOB INCLUDE_FILES "json/*.h")
|
||||||
INSTALL(FILES ${INCLUDE_FILES} DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/json)
|
INSTALL(FILES ${INCLUDE_FILES} DESTINATION ${INCLUDE_INSTALL_DIR}/json)
|
||||||
|
@@ -1,98 +0,0 @@
|
|||||||
// Copyright 2007-2010 Baptiste Lepilleur
|
|
||||||
// Distributed under MIT license, or public domain if desired and
|
|
||||||
// recognized in your jurisdiction.
|
|
||||||
// See file LICENSE for detail or copy at http://jsoncpp.sourceforge.net/LICENSE
|
|
||||||
|
|
||||||
#ifndef CPPTL_JSON_ALLOCATOR_H_INCLUDED
|
|
||||||
#define CPPTL_JSON_ALLOCATOR_H_INCLUDED
|
|
||||||
|
|
||||||
#include <cstring>
|
|
||||||
#include <memory>
|
|
||||||
|
|
||||||
#pragma pack(push, 8)
|
|
||||||
|
|
||||||
namespace Json {
|
|
||||||
template<typename T>
|
|
||||||
class SecureAllocator {
|
|
||||||
public:
|
|
||||||
// Type definitions
|
|
||||||
using value_type = T;
|
|
||||||
using pointer = T*;
|
|
||||||
using const_pointer = const T*;
|
|
||||||
using reference = T&;
|
|
||||||
using const_reference = const T&;
|
|
||||||
using size_type = std::size_t;
|
|
||||||
using difference_type = std::ptrdiff_t;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Allocate memory for N items using the standard allocator.
|
|
||||||
*/
|
|
||||||
pointer allocate(size_type n) {
|
|
||||||
// allocate using "global operator new"
|
|
||||||
return static_cast<pointer>(::operator new(n * sizeof(T)));
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Release memory which was allocated for N items at pointer P.
|
|
||||||
*
|
|
||||||
* The memory block is filled with zeroes before being released.
|
|
||||||
* The pointer argument is tagged as "volatile" to prevent the
|
|
||||||
* compiler optimizing out this critical step.
|
|
||||||
*/
|
|
||||||
void deallocate(volatile pointer p, size_type n) {
|
|
||||||
std::memset(p, 0, n * sizeof(T));
|
|
||||||
// free using "global operator delete"
|
|
||||||
::operator delete(p);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Construct an item in-place at pointer P.
|
|
||||||
*/
|
|
||||||
template<typename... Args>
|
|
||||||
void construct(pointer p, Args&&... args) {
|
|
||||||
// construct using "placement new" and "perfect forwarding"
|
|
||||||
::new (static_cast<void*>(p)) T(std::forward<Args>(args)...);
|
|
||||||
}
|
|
||||||
|
|
||||||
size_type max_size() const {
|
|
||||||
return size_t(-1) / sizeof(T);
|
|
||||||
}
|
|
||||||
|
|
||||||
pointer address( reference x ) const {
|
|
||||||
return std::addressof(x);
|
|
||||||
}
|
|
||||||
|
|
||||||
const_pointer address( const_reference x ) const {
|
|
||||||
return std::addressof(x);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Destroy an item in-place at pointer P.
|
|
||||||
*/
|
|
||||||
void destroy(pointer p) {
|
|
||||||
// destroy using "explicit destructor"
|
|
||||||
p->~T();
|
|
||||||
}
|
|
||||||
|
|
||||||
// Boilerplate
|
|
||||||
SecureAllocator() {}
|
|
||||||
template<typename U> SecureAllocator(const SecureAllocator<U>&) {}
|
|
||||||
template<typename U> struct rebind { using other = SecureAllocator<U>; };
|
|
||||||
};
|
|
||||||
|
|
||||||
|
|
||||||
template<typename T, typename U>
|
|
||||||
bool operator==(const SecureAllocator<T>&, const SecureAllocator<U>&) {
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
template<typename T, typename U>
|
|
||||||
bool operator!=(const SecureAllocator<T>&, const SecureAllocator<U>&) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
} //namespace Json
|
|
||||||
|
|
||||||
#pragma pack(pop)
|
|
||||||
|
|
||||||
#endif // CPPTL_JSON_ALLOCATOR_H_INCLUDED
|
|
@@ -13,32 +13,24 @@
|
|||||||
#include "config.h"
|
#include "config.h"
|
||||||
#endif // if !defined(JSON_IS_AMALGAMATION)
|
#endif // if !defined(JSON_IS_AMALGAMATION)
|
||||||
|
|
||||||
/** It should not be possible for a maliciously designed file to
|
|
||||||
* cause an abort() or seg-fault, so these macros are used only
|
|
||||||
* for pre-condition violations and internal logic errors.
|
|
||||||
*/
|
|
||||||
#if JSON_USE_EXCEPTION
|
#if JSON_USE_EXCEPTION
|
||||||
|
#include <stdexcept>
|
||||||
// @todo <= add detail about condition in exception
|
#define JSON_ASSERT(condition) \
|
||||||
# define JSON_ASSERT(condition) \
|
{if (!(condition)) {throw std::logic_error( "assert json failed" );}} // @todo <= add detail about condition in exception
|
||||||
{if (!(condition)) {Json::throwLogicError( "assert json failed" );}}
|
#define JSON_FAIL_MESSAGE(message) \
|
||||||
|
|
||||||
# define JSON_FAIL_MESSAGE(message) \
|
|
||||||
{ \
|
{ \
|
||||||
JSONCPP_OSTRINGSTREAM oss; oss << message; \
|
std::ostringstream oss; oss << message; \
|
||||||
Json::throwLogicError(oss.str()); \
|
throw std::logic_error(oss.str()); \
|
||||||
abort(); \
|
|
||||||
}
|
}
|
||||||
|
//#define JSON_FAIL_MESSAGE(message) throw std::logic_error(message)
|
||||||
#else // JSON_USE_EXCEPTION
|
#else // JSON_USE_EXCEPTION
|
||||||
|
#define JSON_ASSERT(condition) assert(condition)
|
||||||
# define JSON_ASSERT(condition) assert(condition)
|
|
||||||
|
|
||||||
// The call to assert() will show the failure message in debug builds. In
|
// The call to assert() will show the failure message in debug builds. In
|
||||||
// release builds we abort, for a core-dump or debugger.
|
// release bugs we abort, for a core-dump or debugger.
|
||||||
# define JSON_FAIL_MESSAGE(message) \
|
#define JSON_FAIL_MESSAGE(message) \
|
||||||
{ \
|
{ \
|
||||||
JSONCPP_OSTRINGSTREAM oss; oss << message; \
|
std::ostringstream oss; oss << message; \
|
||||||
assert(false && oss.str().c_str()); \
|
assert(false && oss.str().c_str()); \
|
||||||
abort(); \
|
abort(); \
|
||||||
}
|
}
|
||||||
|
@@ -5,9 +5,6 @@
|
|||||||
|
|
||||||
#ifndef JSON_CONFIG_H_INCLUDED
|
#ifndef JSON_CONFIG_H_INCLUDED
|
||||||
#define JSON_CONFIG_H_INCLUDED
|
#define JSON_CONFIG_H_INCLUDED
|
||||||
#include <stddef.h>
|
|
||||||
#include <string> //typedef String
|
|
||||||
#include <stdint.h> //typedef int64_t, uint64_t
|
|
||||||
|
|
||||||
/// If defined, indicates that json library is embedded in CppTL library.
|
/// If defined, indicates that json library is embedded in CppTL library.
|
||||||
//# define JSON_IN_CPPTL 1
|
//# define JSON_IN_CPPTL 1
|
||||||
@@ -40,12 +37,12 @@
|
|||||||
#ifdef JSON_IN_CPPTL
|
#ifdef JSON_IN_CPPTL
|
||||||
#define JSON_API CPPTL_API
|
#define JSON_API CPPTL_API
|
||||||
#elif defined(JSON_DLL_BUILD)
|
#elif defined(JSON_DLL_BUILD)
|
||||||
#if defined(_MSC_VER) || defined(__MINGW32__)
|
#if defined(_MSC_VER)
|
||||||
#define JSON_API __declspec(dllexport)
|
#define JSON_API __declspec(dllexport)
|
||||||
#define JSONCPP_DISABLE_DLL_INTERFACE_WARNING
|
#define JSONCPP_DISABLE_DLL_INTERFACE_WARNING
|
||||||
#endif // if defined(_MSC_VER)
|
#endif // if defined(_MSC_VER)
|
||||||
#elif defined(JSON_DLL)
|
#elif defined(JSON_DLL)
|
||||||
#if defined(_MSC_VER) || defined(__MINGW32__)
|
#if defined(_MSC_VER)
|
||||||
#define JSON_API __declspec(dllimport)
|
#define JSON_API __declspec(dllimport)
|
||||||
#define JSONCPP_DISABLE_DLL_INTERFACE_WARNING
|
#define JSONCPP_DISABLE_DLL_INTERFACE_WARNING
|
||||||
#endif // if defined(_MSC_VER)
|
#endif // if defined(_MSC_VER)
|
||||||
@@ -59,93 +56,26 @@
|
|||||||
// Storages, and 64 bits integer support is disabled.
|
// Storages, and 64 bits integer support is disabled.
|
||||||
// #define JSON_NO_INT64 1
|
// #define JSON_NO_INT64 1
|
||||||
|
|
||||||
#if defined(_MSC_VER) // MSVC
|
#if defined(_MSC_VER) && _MSC_VER <= 1200 // MSVC 6
|
||||||
# if _MSC_VER <= 1200 // MSVC 6
|
// Microsoft Visual Studio 6 only support conversion from __int64 to double
|
||||||
// Microsoft Visual Studio 6 only support conversion from __int64 to double
|
// (no conversion from unsigned __int64).
|
||||||
// (no conversion from unsigned __int64).
|
#define JSON_USE_INT64_DOUBLE_CONVERSION 1
|
||||||
# define JSON_USE_INT64_DOUBLE_CONVERSION 1
|
// Disable warning 4786 for VS6 caused by STL (identifier was truncated to '255'
|
||||||
// Disable warning 4786 for VS6 caused by STL (identifier was truncated to '255'
|
// characters in the debug information)
|
||||||
// characters in the debug information)
|
// All projects I've ever seen with VS6 were using this globally (not bothering
|
||||||
// All projects I've ever seen with VS6 were using this globally (not bothering
|
// with pragma push/pop).
|
||||||
// with pragma push/pop).
|
#pragma warning(disable : 4786)
|
||||||
# pragma warning(disable : 4786)
|
#endif // if defined(_MSC_VER) && _MSC_VER < 1200 // MSVC 6
|
||||||
# endif // MSVC 6
|
|
||||||
|
|
||||||
# if _MSC_VER >= 1500 // MSVC 2008
|
#if defined(_MSC_VER) && _MSC_VER >= 1500 // MSVC 2008
|
||||||
/// Indicates that the following function is deprecated.
|
/// Indicates that the following function is deprecated.
|
||||||
# define JSONCPP_DEPRECATED(message) __declspec(deprecated(message))
|
#define JSONCPP_DEPRECATED(message) __declspec(deprecated(message))
|
||||||
# endif
|
|
||||||
|
|
||||||
#endif // defined(_MSC_VER)
|
|
||||||
|
|
||||||
// In c++11 the override keyword allows you to explicity define that a function
|
|
||||||
// is intended to override the base-class version. This makes the code more
|
|
||||||
// managable and fixes a set of common hard-to-find bugs.
|
|
||||||
#if __cplusplus >= 201103L
|
|
||||||
# define JSONCPP_OVERRIDE override
|
|
||||||
# define JSONCPP_NOEXCEPT noexcept
|
|
||||||
#elif defined(_MSC_VER) && _MSC_VER > 1600 && _MSC_VER < 1900
|
|
||||||
# define JSONCPP_OVERRIDE override
|
|
||||||
# define JSONCPP_NOEXCEPT throw()
|
|
||||||
#elif defined(_MSC_VER) && _MSC_VER >= 1900
|
|
||||||
# define JSONCPP_OVERRIDE override
|
|
||||||
# define JSONCPP_NOEXCEPT noexcept
|
|
||||||
#else
|
|
||||||
# define JSONCPP_OVERRIDE
|
|
||||||
# define JSONCPP_NOEXCEPT throw()
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifndef JSON_HAS_RVALUE_REFERENCES
|
|
||||||
|
|
||||||
#if defined(_MSC_VER) && _MSC_VER >= 1600 // MSVC >= 2010
|
|
||||||
#define JSON_HAS_RVALUE_REFERENCES 1
|
|
||||||
#endif // MSVC >= 2010
|
|
||||||
|
|
||||||
#ifdef __clang__
|
|
||||||
#if __has_feature(cxx_rvalue_references)
|
|
||||||
#define JSON_HAS_RVALUE_REFERENCES 1
|
|
||||||
#endif // has_feature
|
|
||||||
|
|
||||||
#elif defined __GNUC__ // not clang (gcc comes later since clang emulates gcc)
|
|
||||||
#if defined(__GXX_EXPERIMENTAL_CXX0X__) || (__cplusplus >= 201103L)
|
|
||||||
#define JSON_HAS_RVALUE_REFERENCES 1
|
|
||||||
#endif // GXX_EXPERIMENTAL
|
|
||||||
|
|
||||||
#endif // __clang__ || __GNUC__
|
|
||||||
|
|
||||||
#endif // not defined JSON_HAS_RVALUE_REFERENCES
|
|
||||||
|
|
||||||
#ifndef JSON_HAS_RVALUE_REFERENCES
|
|
||||||
#define JSON_HAS_RVALUE_REFERENCES 0
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifdef __clang__
|
|
||||||
#elif defined __GNUC__ // not clang (gcc comes later since clang emulates gcc)
|
|
||||||
# if (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 5))
|
|
||||||
# define JSONCPP_DEPRECATED(message) __attribute__ ((deprecated(message)))
|
|
||||||
# elif (__GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 1))
|
|
||||||
# define JSONCPP_DEPRECATED(message) __attribute__((__deprecated__))
|
|
||||||
# endif // GNUC version
|
|
||||||
#endif // __clang__ || __GNUC__
|
|
||||||
|
|
||||||
#if !defined(JSONCPP_DEPRECATED)
|
#if !defined(JSONCPP_DEPRECATED)
|
||||||
#define JSONCPP_DEPRECATED(message)
|
#define JSONCPP_DEPRECATED(message)
|
||||||
#endif // if !defined(JSONCPP_DEPRECATED)
|
#endif // if !defined(JSONCPP_DEPRECATED)
|
||||||
|
|
||||||
#if __GNUC__ >= 6
|
|
||||||
# define JSON_USE_INT64_DOUBLE_CONVERSION 1
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#if !defined(JSON_IS_AMALGAMATION)
|
|
||||||
|
|
||||||
# include "version.h"
|
|
||||||
|
|
||||||
# if JSONCPP_USING_SECURE_MEMORY
|
|
||||||
# include "allocator.h" //typedef Allocator
|
|
||||||
# endif
|
|
||||||
|
|
||||||
#endif // if !defined(JSON_IS_AMALGAMATION)
|
|
||||||
|
|
||||||
namespace Json {
|
namespace Json {
|
||||||
typedef int Int;
|
typedef int Int;
|
||||||
typedef unsigned int UInt;
|
typedef unsigned int UInt;
|
||||||
@@ -159,26 +89,13 @@ typedef unsigned int LargestUInt;
|
|||||||
typedef __int64 Int64;
|
typedef __int64 Int64;
|
||||||
typedef unsigned __int64 UInt64;
|
typedef unsigned __int64 UInt64;
|
||||||
#else // if defined(_MSC_VER) // Other platforms, use long long
|
#else // if defined(_MSC_VER) // Other platforms, use long long
|
||||||
typedef int64_t Int64;
|
typedef long long int Int64;
|
||||||
typedef uint64_t UInt64;
|
typedef unsigned long long int UInt64;
|
||||||
#endif // if defined(_MSC_VER)
|
#endif // if defined(_MSC_VER)
|
||||||
typedef Int64 LargestInt;
|
typedef Int64 LargestInt;
|
||||||
typedef UInt64 LargestUInt;
|
typedef UInt64 LargestUInt;
|
||||||
#define JSON_HAS_INT64
|
#define JSON_HAS_INT64
|
||||||
#endif // if defined(JSON_NO_INT64)
|
#endif // if defined(JSON_NO_INT64)
|
||||||
#if JSONCPP_USING_SECURE_MEMORY
|
|
||||||
#define JSONCPP_STRING std::basic_string<char, std::char_traits<char>, Json::SecureAllocator<char> >
|
|
||||||
#define JSONCPP_OSTRINGSTREAM std::basic_ostringstream<char, std::char_traits<char>, Json::SecureAllocator<char> >
|
|
||||||
#define JSONCPP_OSTREAM std::basic_ostream<char, std::char_traits<char>>
|
|
||||||
#define JSONCPP_ISTRINGSTREAM std::basic_istringstream<char, std::char_traits<char>, Json::SecureAllocator<char> >
|
|
||||||
#define JSONCPP_ISTREAM std::istream
|
|
||||||
#else
|
|
||||||
#define JSONCPP_STRING std::string
|
|
||||||
#define JSONCPP_OSTRINGSTREAM std::ostringstream
|
|
||||||
#define JSONCPP_OSTREAM std::ostream
|
|
||||||
#define JSONCPP_ISTRINGSTREAM std::istringstream
|
|
||||||
#define JSONCPP_ISTREAM std::istream
|
|
||||||
#endif // if JSONCPP_USING_SECURE_MEMORY
|
|
||||||
} // end namespace Json
|
} // end namespace Json
|
||||||
|
|
||||||
#endif // JSON_CONFIG_H_INCLUDED
|
#endif // JSON_CONFIG_H_INCLUDED
|
||||||
|
@@ -10,8 +10,6 @@
|
|||||||
#include "forwards.h"
|
#include "forwards.h"
|
||||||
#endif // if !defined(JSON_IS_AMALGAMATION)
|
#endif // if !defined(JSON_IS_AMALGAMATION)
|
||||||
|
|
||||||
#pragma pack(push, 8)
|
|
||||||
|
|
||||||
namespace Json {
|
namespace Json {
|
||||||
|
|
||||||
/** \brief Configuration passed to reader and writer.
|
/** \brief Configuration passed to reader and writer.
|
||||||
@@ -46,16 +44,8 @@ public:
|
|||||||
/// \c true if root must be either an array or an object value. Default: \c
|
/// \c true if root must be either an array or an object value. Default: \c
|
||||||
/// false.
|
/// false.
|
||||||
bool strictRoot_;
|
bool strictRoot_;
|
||||||
|
|
||||||
/// \c true if dropped null placeholders are allowed. Default: \c false.
|
|
||||||
bool allowDroppedNullPlaceholders_;
|
|
||||||
|
|
||||||
/// \c true if numeric object key are allowed. Default: \c false.
|
|
||||||
bool allowNumericKeys_;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace Json
|
} // namespace Json
|
||||||
|
|
||||||
#pragma pack(pop)
|
|
||||||
|
|
||||||
#endif // CPPTL_JSON_FEATURES_H_INCLUDED
|
#endif // CPPTL_JSON_FEATURES_H_INCLUDED
|
||||||
|
@@ -23,8 +23,6 @@
|
|||||||
#pragma warning(disable : 4251)
|
#pragma warning(disable : 4251)
|
||||||
#endif // if defined(JSONCPP_DISABLE_DLL_INTERFACE_WARNING)
|
#endif // if defined(JSONCPP_DISABLE_DLL_INTERFACE_WARNING)
|
||||||
|
|
||||||
#pragma pack(push, 8)
|
|
||||||
|
|
||||||
namespace Json {
|
namespace Json {
|
||||||
|
|
||||||
/** \brief Unserialize a <a HREF="http://www.json.org">JSON</a> document into a
|
/** \brief Unserialize a <a HREF="http://www.json.org">JSON</a> document into a
|
||||||
@@ -37,18 +35,6 @@ public:
|
|||||||
typedef char Char;
|
typedef char Char;
|
||||||
typedef const Char* Location;
|
typedef const Char* Location;
|
||||||
|
|
||||||
/** \brief An error tagged with where in the JSON text it was encountered.
|
|
||||||
*
|
|
||||||
* The offsets give the [start, limit) range of bytes within the text. Note
|
|
||||||
* that this is bytes, not codepoints.
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
struct StructuredError {
|
|
||||||
ptrdiff_t offset_start;
|
|
||||||
ptrdiff_t offset_limit;
|
|
||||||
JSONCPP_STRING message;
|
|
||||||
};
|
|
||||||
|
|
||||||
/** \brief Constructs a Reader allowing all features
|
/** \brief Constructs a Reader allowing all features
|
||||||
* for parsing.
|
* for parsing.
|
||||||
*/
|
*/
|
||||||
@@ -101,7 +87,7 @@ public:
|
|||||||
|
|
||||||
/// \brief Parse from input stream.
|
/// \brief Parse from input stream.
|
||||||
/// \see Json::operator>>(std::istream&, Json::Value&).
|
/// \see Json::operator>>(std::istream&, Json::Value&).
|
||||||
bool parse(JSONCPP_ISTREAM& is, Value& root, bool collectComments = true);
|
bool parse(std::istream& is, Value& root, bool collectComments = true);
|
||||||
|
|
||||||
/** \brief Returns a user friendly string that list errors in the parsed
|
/** \brief Returns a user friendly string that list errors in the parsed
|
||||||
* document.
|
* document.
|
||||||
@@ -112,8 +98,8 @@ public:
|
|||||||
* during parsing.
|
* during parsing.
|
||||||
* \deprecated Use getFormattedErrorMessages() instead (typo fix).
|
* \deprecated Use getFormattedErrorMessages() instead (typo fix).
|
||||||
*/
|
*/
|
||||||
JSONCPP_DEPRECATED("Use getFormattedErrorMessages() instead.")
|
JSONCPP_DEPRECATED("Use getFormattedErrorMessages instead")
|
||||||
JSONCPP_STRING getFormatedErrorMessages() const;
|
std::string getFormatedErrorMessages() const;
|
||||||
|
|
||||||
/** \brief Returns a user friendly string that list errors in the parsed
|
/** \brief Returns a user friendly string that list errors in the parsed
|
||||||
* document.
|
* document.
|
||||||
@@ -123,39 +109,7 @@ public:
|
|||||||
* occurred
|
* occurred
|
||||||
* during parsing.
|
* during parsing.
|
||||||
*/
|
*/
|
||||||
JSONCPP_STRING getFormattedErrorMessages() const;
|
std::string getFormattedErrorMessages() const;
|
||||||
|
|
||||||
/** \brief Returns a vector of structured erros encounted while parsing.
|
|
||||||
* \return A (possibly empty) vector of StructuredError objects. Currently
|
|
||||||
* only one error can be returned, but the caller should tolerate
|
|
||||||
* multiple
|
|
||||||
* errors. This can occur if the parser recovers from a non-fatal
|
|
||||||
* parse error and then encounters additional errors.
|
|
||||||
*/
|
|
||||||
std::vector<StructuredError> getStructuredErrors() const;
|
|
||||||
|
|
||||||
/** \brief Add a semantic error message.
|
|
||||||
* \param value JSON Value location associated with the error
|
|
||||||
* \param message The error message.
|
|
||||||
* \return \c true if the error was successfully added, \c false if the
|
|
||||||
* Value offset exceeds the document size.
|
|
||||||
*/
|
|
||||||
bool pushError(const Value& value, const JSONCPP_STRING& message);
|
|
||||||
|
|
||||||
/** \brief Add a semantic error message with extra context.
|
|
||||||
* \param value JSON Value location associated with the error
|
|
||||||
* \param message The error message.
|
|
||||||
* \param extra Additional JSON Value location to contextualize the error
|
|
||||||
* \return \c true if the error was successfully added, \c false if either
|
|
||||||
* Value offset exceeds the document size.
|
|
||||||
*/
|
|
||||||
bool pushError(const Value& value, const JSONCPP_STRING& message, const Value& extra);
|
|
||||||
|
|
||||||
/** \brief Return whether there are any errors.
|
|
||||||
* \return \c true if there are no errors to report \c false if
|
|
||||||
* errors have occurred.
|
|
||||||
*/
|
|
||||||
bool good() const;
|
|
||||||
|
|
||||||
private:
|
private:
|
||||||
enum TokenType {
|
enum TokenType {
|
||||||
@@ -185,7 +139,7 @@ private:
|
|||||||
class ErrorInfo {
|
class ErrorInfo {
|
||||||
public:
|
public:
|
||||||
Token token_;
|
Token token_;
|
||||||
JSONCPP_STRING message_;
|
std::string message_;
|
||||||
Location extra_;
|
Location extra_;
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -205,7 +159,7 @@ private:
|
|||||||
bool decodeNumber(Token& token);
|
bool decodeNumber(Token& token);
|
||||||
bool decodeNumber(Token& token, Value& decoded);
|
bool decodeNumber(Token& token, Value& decoded);
|
||||||
bool decodeString(Token& token);
|
bool decodeString(Token& token);
|
||||||
bool decodeString(Token& token, JSONCPP_STRING& decoded);
|
bool decodeString(Token& token, std::string& decoded);
|
||||||
bool decodeDouble(Token& token);
|
bool decodeDouble(Token& token);
|
||||||
bool decodeDouble(Token& token, Value& decoded);
|
bool decodeDouble(Token& token, Value& decoded);
|
||||||
bool decodeUnicodeCodePoint(Token& token,
|
bool decodeUnicodeCodePoint(Token& token,
|
||||||
@@ -216,9 +170,9 @@ private:
|
|||||||
Location& current,
|
Location& current,
|
||||||
Location end,
|
Location end,
|
||||||
unsigned int& unicode);
|
unsigned int& unicode);
|
||||||
bool addError(const JSONCPP_STRING& message, Token& token, Location extra = 0);
|
bool addError(const std::string& message, Token& token, Location extra = 0);
|
||||||
bool recoverFromError(TokenType skipUntilToken);
|
bool recoverFromError(TokenType skipUntilToken);
|
||||||
bool addErrorAndRecover(const JSONCPP_STRING& message,
|
bool addErrorAndRecover(const std::string& message,
|
||||||
Token& token,
|
Token& token,
|
||||||
TokenType skipUntilToken);
|
TokenType skipUntilToken);
|
||||||
void skipUntilSpace();
|
void skipUntilSpace();
|
||||||
@@ -226,20 +180,20 @@ private:
|
|||||||
Char getNextChar();
|
Char getNextChar();
|
||||||
void
|
void
|
||||||
getLocationLineAndColumn(Location location, int& line, int& column) const;
|
getLocationLineAndColumn(Location location, int& line, int& column) const;
|
||||||
JSONCPP_STRING getLocationLineAndColumn(Location location) const;
|
std::string getLocationLineAndColumn(Location location) const;
|
||||||
void addComment(Location begin, Location end, CommentPlacement placement);
|
void addComment(Location begin, Location end, CommentPlacement placement);
|
||||||
void skipCommentTokens(Token& token);
|
void skipCommentTokens(Token& token);
|
||||||
|
|
||||||
typedef std::stack<Value*> Nodes;
|
typedef std::stack<Value*> Nodes;
|
||||||
Nodes nodes_;
|
Nodes nodes_;
|
||||||
Errors errors_;
|
Errors errors_;
|
||||||
JSONCPP_STRING document_;
|
std::string document_;
|
||||||
Location begin_;
|
Location begin_;
|
||||||
Location end_;
|
Location end_;
|
||||||
Location current_;
|
Location current_;
|
||||||
Location lastValueEnd_;
|
Location lastValueEnd_;
|
||||||
Value* lastValue_;
|
Value* lastValue_;
|
||||||
JSONCPP_STRING commentsBefore_;
|
std::string commentsBefore_;
|
||||||
Features features_;
|
Features features_;
|
||||||
bool collectComments_;
|
bool collectComments_;
|
||||||
}; // Reader
|
}; // Reader
|
||||||
@@ -268,11 +222,10 @@ public:
|
|||||||
*/
|
*/
|
||||||
virtual bool parse(
|
virtual bool parse(
|
||||||
char const* beginDoc, char const* endDoc,
|
char const* beginDoc, char const* endDoc,
|
||||||
Value* root, JSONCPP_STRING* errs) = 0;
|
Value* root, std::string* errs) = 0;
|
||||||
|
|
||||||
class JSON_API Factory {
|
class Factory {
|
||||||
public:
|
public:
|
||||||
virtual ~Factory() {}
|
|
||||||
/** \brief Allocate a CharReader via operator new().
|
/** \brief Allocate a CharReader via operator new().
|
||||||
* \throw std::exception if something goes wrong (e.g. invalid settings)
|
* \throw std::exception if something goes wrong (e.g. invalid settings)
|
||||||
*/
|
*/
|
||||||
@@ -282,13 +235,15 @@ public:
|
|||||||
|
|
||||||
/** \brief Build a CharReader implementation.
|
/** \brief Build a CharReader implementation.
|
||||||
|
|
||||||
|
\deprecated This is experimental and will be altered before the next release.
|
||||||
|
|
||||||
Usage:
|
Usage:
|
||||||
\code
|
\code
|
||||||
using namespace Json;
|
using namespace Json;
|
||||||
CharReaderBuilder builder;
|
CharReaderBuilder builder;
|
||||||
builder["collectComments"] = false;
|
builder["collectComments"] = false;
|
||||||
Value value;
|
Value value;
|
||||||
JSONCPP_STRING errs;
|
std::string errs;
|
||||||
bool ok = parseFromStream(builder, std::cin, &value, &errs);
|
bool ok = parseFromStream(builder, std::cin, &value, &errs);
|
||||||
\endcode
|
\endcode
|
||||||
*/
|
*/
|
||||||
@@ -323,9 +278,6 @@ public:
|
|||||||
the JSON value in the input string.
|
the JSON value in the input string.
|
||||||
- `"rejectDupKeys": false or true`
|
- `"rejectDupKeys": false or true`
|
||||||
- If true, `parse()` returns false when a key is duplicated within an object.
|
- If true, `parse()` returns false when a key is duplicated within an object.
|
||||||
- `"allowSpecialFloats": false or true`
|
|
||||||
- If true, special float values (NaNs and infinities) are allowed
|
|
||||||
and their values are lossfree restorable.
|
|
||||||
|
|
||||||
You can examine 'settings_` yourself
|
You can examine 'settings_` yourself
|
||||||
to see the defaults. You can also write and read them just like any
|
to see the defaults. You can also write and read them just like any
|
||||||
@@ -335,9 +287,9 @@ public:
|
|||||||
Json::Value settings_;
|
Json::Value settings_;
|
||||||
|
|
||||||
CharReaderBuilder();
|
CharReaderBuilder();
|
||||||
~CharReaderBuilder() JSONCPP_OVERRIDE;
|
virtual ~CharReaderBuilder();
|
||||||
|
|
||||||
CharReader* newCharReader() const JSONCPP_OVERRIDE;
|
virtual CharReader* newCharReader() const;
|
||||||
|
|
||||||
/** \return true if 'settings' are legal and consistent;
|
/** \return true if 'settings' are legal and consistent;
|
||||||
* otherwise, indicate bad settings via 'invalid'.
|
* otherwise, indicate bad settings via 'invalid'.
|
||||||
@@ -346,18 +298,18 @@ public:
|
|||||||
|
|
||||||
/** A simple way to update a specific setting.
|
/** A simple way to update a specific setting.
|
||||||
*/
|
*/
|
||||||
Value& operator[](JSONCPP_STRING key);
|
Value& operator[](std::string key);
|
||||||
|
|
||||||
/** Called by ctor, but you can use this to reset settings_.
|
/** Called by ctor, but you can use this to reset settings_.
|
||||||
* \pre 'settings' != NULL (but Json::null is fine)
|
* \pre 'settings' != NULL (but Json::null is fine)
|
||||||
* \remark Defaults:
|
* \remark Defaults:
|
||||||
* \snippet src/lib_json/json_reader.cpp CharReaderBuilderDefaults
|
* \snippet src/lib_json/json_reader.cpp CharReaderBuilderStrictMode
|
||||||
*/
|
*/
|
||||||
static void setDefaults(Json::Value* settings);
|
static void setDefaults(Json::Value* settings);
|
||||||
/** Same as old Features::strictMode().
|
/** Same as old Features::strictMode().
|
||||||
* \pre 'settings' != NULL (but Json::null is fine)
|
* \pre 'settings' != NULL (but Json::null is fine)
|
||||||
* \remark Defaults:
|
* \remark Defaults:
|
||||||
* \snippet src/lib_json/json_reader.cpp CharReaderBuilderStrictMode
|
* \snippet src/lib_json/json_reader.cpp CharReaderBuilderDefaults
|
||||||
*/
|
*/
|
||||||
static void strictMode(Json::Value* settings);
|
static void strictMode(Json::Value* settings);
|
||||||
};
|
};
|
||||||
@@ -368,7 +320,7 @@ public:
|
|||||||
*/
|
*/
|
||||||
bool JSON_API parseFromStream(
|
bool JSON_API parseFromStream(
|
||||||
CharReader::Factory const&,
|
CharReader::Factory const&,
|
||||||
JSONCPP_ISTREAM&,
|
std::istream&,
|
||||||
Value* root, std::string* errs);
|
Value* root, std::string* errs);
|
||||||
|
|
||||||
/** \brief Read from 'sin' into 'root'.
|
/** \brief Read from 'sin' into 'root'.
|
||||||
@@ -395,12 +347,10 @@ bool JSON_API parseFromStream(
|
|||||||
\throw std::exception on parse error.
|
\throw std::exception on parse error.
|
||||||
\see Json::operator<<()
|
\see Json::operator<<()
|
||||||
*/
|
*/
|
||||||
JSON_API JSONCPP_ISTREAM& operator>>(JSONCPP_ISTREAM&, Value&);
|
JSON_API std::istream& operator>>(std::istream&, Value&);
|
||||||
|
|
||||||
} // namespace Json
|
} // namespace Json
|
||||||
|
|
||||||
#pragma pack(pop)
|
|
||||||
|
|
||||||
#if defined(JSONCPP_DISABLE_DLL_INTERFACE_WARNING)
|
#if defined(JSONCPP_DISABLE_DLL_INTERFACE_WARNING)
|
||||||
#pragma warning(pop)
|
#pragma warning(pop)
|
||||||
#endif // if defined(JSONCPP_DISABLE_DLL_INTERFACE_WARNING)
|
#endif // if defined(JSONCPP_DISABLE_DLL_INTERFACE_WARNING)
|
||||||
|
@@ -11,7 +11,6 @@
|
|||||||
#endif // if !defined(JSON_IS_AMALGAMATION)
|
#endif // if !defined(JSON_IS_AMALGAMATION)
|
||||||
#include <string>
|
#include <string>
|
||||||
#include <vector>
|
#include <vector>
|
||||||
#include <exception>
|
|
||||||
|
|
||||||
#ifndef JSON_USE_CPPTL_SMALLMAP
|
#ifndef JSON_USE_CPPTL_SMALLMAP
|
||||||
#include <map>
|
#include <map>
|
||||||
@@ -22,19 +21,6 @@
|
|||||||
#include <cpptl/forwards.h>
|
#include <cpptl/forwards.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
//Conditional NORETURN attribute on the throw functions would:
|
|
||||||
// a) suppress false positives from static code analysis
|
|
||||||
// b) possibly improve optimization opportunities.
|
|
||||||
#if !defined(JSONCPP_NORETURN)
|
|
||||||
# if defined(_MSC_VER)
|
|
||||||
# define JSONCPP_NORETURN __declspec(noreturn)
|
|
||||||
# elif defined(__GNUC__)
|
|
||||||
# define JSONCPP_NORETURN __attribute__ ((__noreturn__))
|
|
||||||
# else
|
|
||||||
# define JSONCPP_NORETURN
|
|
||||||
# endif
|
|
||||||
#endif
|
|
||||||
|
|
||||||
// Disable warning C4251: <data member>: <type> needs to have dll-interface to
|
// Disable warning C4251: <data member>: <type> needs to have dll-interface to
|
||||||
// be used by...
|
// be used by...
|
||||||
#if defined(JSONCPP_DISABLE_DLL_INTERFACE_WARNING)
|
#if defined(JSONCPP_DISABLE_DLL_INTERFACE_WARNING)
|
||||||
@@ -42,52 +28,10 @@
|
|||||||
#pragma warning(disable : 4251)
|
#pragma warning(disable : 4251)
|
||||||
#endif // if defined(JSONCPP_DISABLE_DLL_INTERFACE_WARNING)
|
#endif // if defined(JSONCPP_DISABLE_DLL_INTERFACE_WARNING)
|
||||||
|
|
||||||
#pragma pack(push, 8)
|
|
||||||
|
|
||||||
/** \brief JSON (JavaScript Object Notation).
|
/** \brief JSON (JavaScript Object Notation).
|
||||||
*/
|
*/
|
||||||
namespace Json {
|
namespace Json {
|
||||||
|
|
||||||
/** Base class for all exceptions we throw.
|
|
||||||
*
|
|
||||||
* We use nothing but these internally. Of course, STL can throw others.
|
|
||||||
*/
|
|
||||||
class JSON_API Exception : public std::exception {
|
|
||||||
public:
|
|
||||||
Exception(JSONCPP_STRING const& msg);
|
|
||||||
~Exception() JSONCPP_NOEXCEPT JSONCPP_OVERRIDE;
|
|
||||||
char const* what() const JSONCPP_NOEXCEPT JSONCPP_OVERRIDE;
|
|
||||||
protected:
|
|
||||||
JSONCPP_STRING msg_;
|
|
||||||
};
|
|
||||||
|
|
||||||
/** Exceptions which the user cannot easily avoid.
|
|
||||||
*
|
|
||||||
* E.g. out-of-memory (when we use malloc), stack-overflow, malicious input
|
|
||||||
*
|
|
||||||
* \remark derived from Json::Exception
|
|
||||||
*/
|
|
||||||
class JSON_API RuntimeError : public Exception {
|
|
||||||
public:
|
|
||||||
RuntimeError(JSONCPP_STRING const& msg);
|
|
||||||
};
|
|
||||||
|
|
||||||
/** Exceptions thrown by JSON_ASSERT/JSON_FAIL macros.
|
|
||||||
*
|
|
||||||
* These are precondition-violations (user bugs) and internal errors (our bugs).
|
|
||||||
*
|
|
||||||
* \remark derived from Json::Exception
|
|
||||||
*/
|
|
||||||
class JSON_API LogicError : public Exception {
|
|
||||||
public:
|
|
||||||
LogicError(JSONCPP_STRING const& msg);
|
|
||||||
};
|
|
||||||
|
|
||||||
/// used internally
|
|
||||||
JSONCPP_NORETURN void throwRuntimeError(JSONCPP_STRING const& msg);
|
|
||||||
/// used internally
|
|
||||||
JSONCPP_NORETURN void throwLogicError(JSONCPP_STRING const& msg);
|
|
||||||
|
|
||||||
/** \brief Type of the value held by a Value object.
|
/** \brief Type of the value held by a Value object.
|
||||||
*/
|
*/
|
||||||
enum ValueType {
|
enum ValueType {
|
||||||
@@ -177,7 +121,7 @@ private:
|
|||||||
class JSON_API Value {
|
class JSON_API Value {
|
||||||
friend class ValueIteratorBase;
|
friend class ValueIteratorBase;
|
||||||
public:
|
public:
|
||||||
typedef std::vector<JSONCPP_STRING> Members;
|
typedef std::vector<std::string> Members;
|
||||||
typedef ValueIterator iterator;
|
typedef ValueIterator iterator;
|
||||||
typedef ValueConstIterator const_iterator;
|
typedef ValueConstIterator const_iterator;
|
||||||
typedef Json::UInt UInt;
|
typedef Json::UInt UInt;
|
||||||
@@ -190,10 +134,11 @@ public:
|
|||||||
typedef Json::LargestUInt LargestUInt;
|
typedef Json::LargestUInt LargestUInt;
|
||||||
typedef Json::ArrayIndex ArrayIndex;
|
typedef Json::ArrayIndex ArrayIndex;
|
||||||
|
|
||||||
static const Value& null; ///< We regret this reference to a global instance; prefer the simpler Value().
|
static const Value& nullRef;
|
||||||
static const Value& nullRef; ///< just a kludge for binary-compatibility; same as null
|
#if !defined(__ARMEL__)
|
||||||
static Value const& nullSingleton(); ///< Prefer this to null or nullRef.
|
/// \deprecated This exists for binary compatibility only. Use nullRef.
|
||||||
|
static const Value null;
|
||||||
|
#endif
|
||||||
/// Minimum signed integer value that can be stored in a Json::Value.
|
/// Minimum signed integer value that can be stored in a Json::Value.
|
||||||
static const LargestInt minLargestInt;
|
static const LargestInt minLargestInt;
|
||||||
/// Maximum signed integer value that can be stored in a Json::Value.
|
/// Maximum signed integer value that can be stored in a Json::Value.
|
||||||
@@ -229,9 +174,6 @@ private:
|
|||||||
CZString(ArrayIndex index);
|
CZString(ArrayIndex index);
|
||||||
CZString(char const* str, unsigned length, DuplicationPolicy allocate);
|
CZString(char const* str, unsigned length, DuplicationPolicy allocate);
|
||||||
CZString(CZString const& other);
|
CZString(CZString const& other);
|
||||||
#if JSON_HAS_RVALUE_REFERENCES
|
|
||||||
CZString(CZString&& other);
|
|
||||||
#endif
|
|
||||||
~CZString();
|
~CZString();
|
||||||
CZString& operator=(CZString other);
|
CZString& operator=(CZString other);
|
||||||
bool operator<(CZString const& other) const;
|
bool operator<(CZString const& other) const;
|
||||||
@@ -246,7 +188,7 @@ private:
|
|||||||
void swap(CZString& other);
|
void swap(CZString& other);
|
||||||
|
|
||||||
struct StringStorage {
|
struct StringStorage {
|
||||||
unsigned policy_: 2;
|
DuplicationPolicy policy_: 2;
|
||||||
unsigned length_: 30; // 1GB max
|
unsigned length_: 30; // 1GB max
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -290,7 +232,7 @@ Json::Value obj_value(Json::objectValue); // {}
|
|||||||
#endif // if defined(JSON_HAS_INT64)
|
#endif // if defined(JSON_HAS_INT64)
|
||||||
Value(double value);
|
Value(double value);
|
||||||
Value(const char* value); ///< Copy til first 0. (NULL causes to seg-fault.)
|
Value(const char* value); ///< Copy til first 0. (NULL causes to seg-fault.)
|
||||||
Value(const char* begin, const char* end); ///< Copy all, incl zeroes.
|
Value(const char* beginValue, const char* endValue); ///< Copy all, incl zeroes.
|
||||||
/** \brief Constructs a value from a static string.
|
/** \brief Constructs a value from a static string.
|
||||||
|
|
||||||
* Like other value string constructor but do not duplicate the string for
|
* Like other value string constructor but do not duplicate the string for
|
||||||
@@ -307,22 +249,18 @@ Json::Value obj_value(Json::objectValue); // {}
|
|||||||
* \endcode
|
* \endcode
|
||||||
*/
|
*/
|
||||||
Value(const StaticString& value);
|
Value(const StaticString& value);
|
||||||
Value(const JSONCPP_STRING& value); ///< Copy data() til size(). Embedded zeroes too.
|
Value(const std::string& value); ///< Copy data() til size(). Embedded zeroes too.
|
||||||
#ifdef JSON_USE_CPPTL
|
#ifdef JSON_USE_CPPTL
|
||||||
Value(const CppTL::ConstString& value);
|
Value(const CppTL::ConstString& value);
|
||||||
#endif
|
#endif
|
||||||
Value(bool value);
|
Value(bool value);
|
||||||
/// Deep copy.
|
/// Deep copy.
|
||||||
Value(const Value& other);
|
Value(const Value& other);
|
||||||
#if JSON_HAS_RVALUE_REFERENCES
|
|
||||||
/// Move constructor
|
|
||||||
Value(Value&& other);
|
|
||||||
#endif
|
|
||||||
~Value();
|
~Value();
|
||||||
|
|
||||||
/// Deep copy, then swap(other).
|
/// Deep copy, then swap(other).
|
||||||
/// \note Over-write existing comments. To preserve comments, use #swapPayload().
|
/// \note Over-write existing comments. To preserve comments, use #swapPayload().
|
||||||
Value& operator=(Value other);
|
Value &operator=(const Value &other);
|
||||||
/// Swap everything.
|
/// Swap everything.
|
||||||
void swap(Value& other);
|
void swap(Value& other);
|
||||||
/// Swap values but leave comments and source offsets in place.
|
/// Swap values but leave comments and source offsets in place.
|
||||||
@@ -340,15 +278,12 @@ Json::Value obj_value(Json::objectValue); // {}
|
|||||||
int compare(const Value& other) const;
|
int compare(const Value& other) const;
|
||||||
|
|
||||||
const char* asCString() const; ///< Embedded zeroes could cause you trouble!
|
const char* asCString() const; ///< Embedded zeroes could cause you trouble!
|
||||||
#if JSONCPP_USING_SECURE_MEMORY
|
std::string asString() const; ///< Embedded zeroes are possible.
|
||||||
unsigned getCStringLength() const; //Allows you to understand the length of the CString
|
|
||||||
#endif
|
|
||||||
JSONCPP_STRING asString() const; ///< Embedded zeroes are possible.
|
|
||||||
/** Get raw char* of string-value.
|
/** Get raw char* of string-value.
|
||||||
* \return false if !string. (Seg-fault if str or end are NULL.)
|
* \return false if !string. (Seg-fault if str or end are NULL.)
|
||||||
*/
|
*/
|
||||||
bool getString(
|
bool getString(
|
||||||
char const** begin, char const** end) const;
|
char const** str, char const** end) const;
|
||||||
#ifdef JSON_USE_CPPTL
|
#ifdef JSON_USE_CPPTL
|
||||||
CppTL::ConstString asConstString() const;
|
CppTL::ConstString asConstString() const;
|
||||||
#endif
|
#endif
|
||||||
@@ -447,11 +382,11 @@ Json::Value obj_value(Json::objectValue); // {}
|
|||||||
const Value& operator[](const char* key) const;
|
const Value& operator[](const char* key) const;
|
||||||
/// Access an object value by name, create a null member if it does not exist.
|
/// Access an object value by name, create a null member if it does not exist.
|
||||||
/// \param key may contain embedded nulls.
|
/// \param key may contain embedded nulls.
|
||||||
Value& operator[](const JSONCPP_STRING& key);
|
Value& operator[](const std::string& key);
|
||||||
/// Access an object value by name, returns null if there is no member with
|
/// Access an object value by name, returns null if there is no member with
|
||||||
/// that name.
|
/// that name.
|
||||||
/// \param key may contain embedded nulls.
|
/// \param key may contain embedded nulls.
|
||||||
const Value& operator[](const JSONCPP_STRING& key) const;
|
const Value& operator[](const std::string& key) const;
|
||||||
/** \brief Access an object value by name, create a null member if it does not
|
/** \brief Access an object value by name, create a null member if it does not
|
||||||
exist.
|
exist.
|
||||||
|
|
||||||
@@ -477,12 +412,12 @@ Json::Value obj_value(Json::objectValue); // {}
|
|||||||
Value get(const char* key, const Value& defaultValue) const;
|
Value get(const char* key, const Value& defaultValue) const;
|
||||||
/// Return the member named key if it exist, defaultValue otherwise.
|
/// Return the member named key if it exist, defaultValue otherwise.
|
||||||
/// \note deep copy
|
/// \note deep copy
|
||||||
/// \note key may contain embedded nulls.
|
/// \param key may contain embedded nulls.
|
||||||
Value get(const char* begin, const char* end, const Value& defaultValue) const;
|
Value get(const char* key, const char* end, const Value& defaultValue) const;
|
||||||
/// Return the member named key if it exist, defaultValue otherwise.
|
/// Return the member named key if it exist, defaultValue otherwise.
|
||||||
/// \note deep copy
|
/// \note deep copy
|
||||||
/// \param key may contain embedded nulls.
|
/// \param key may contain embedded nulls.
|
||||||
Value get(const JSONCPP_STRING& key, const Value& defaultValue) const;
|
Value get(const std::string& key, const Value& defaultValue) const;
|
||||||
#ifdef JSON_USE_CPPTL
|
#ifdef JSON_USE_CPPTL
|
||||||
/// Return the member named key if it exist, defaultValue otherwise.
|
/// Return the member named key if it exist, defaultValue otherwise.
|
||||||
/// \note deep copy
|
/// \note deep copy
|
||||||
@@ -490,12 +425,12 @@ Json::Value obj_value(Json::objectValue); // {}
|
|||||||
#endif
|
#endif
|
||||||
/// Most general and efficient version of isMember()const, get()const,
|
/// Most general and efficient version of isMember()const, get()const,
|
||||||
/// and operator[]const
|
/// and operator[]const
|
||||||
/// \note As stated elsewhere, behavior is undefined if (end-begin) >= 2^30
|
/// \note As stated elsewhere, behavior is undefined if (end-key) >= 2^30
|
||||||
Value const* find(char const* begin, char const* end) const;
|
Value const* find(char const* key, char const* end) const;
|
||||||
/// Most general and efficient version of object-mutators.
|
/// Most general and efficient version of object-mutators.
|
||||||
/// \note As stated elsewhere, behavior is undefined if (end-begin) >= 2^30
|
/// \note As stated elsewhere, behavior is undefined if (end-key) >= 2^30
|
||||||
/// \return non-zero, but JSON_ASSERT if this is neither object nor nullValue.
|
/// \return non-zero, but JSON_ASSERT if this is neither object nor nullValue.
|
||||||
Value const* demand(char const* begin, char const* end);
|
Value const* demand(char const* key, char const* end);
|
||||||
/// \brief Remove and return the named member.
|
/// \brief Remove and return the named member.
|
||||||
///
|
///
|
||||||
/// Do nothing if it did not exist.
|
/// Do nothing if it did not exist.
|
||||||
@@ -507,8 +442,8 @@ Json::Value obj_value(Json::objectValue); // {}
|
|||||||
/// Same as removeMember(const char*)
|
/// Same as removeMember(const char*)
|
||||||
/// \param key may contain embedded nulls.
|
/// \param key may contain embedded nulls.
|
||||||
/// \deprecated
|
/// \deprecated
|
||||||
Value removeMember(const JSONCPP_STRING& key);
|
Value removeMember(const std::string& key);
|
||||||
/// Same as removeMember(const char* begin, const char* end, Value* removed),
|
/// Same as removeMember(const char* key, const char* end, Value* removed),
|
||||||
/// but 'key' is null-terminated.
|
/// but 'key' is null-terminated.
|
||||||
bool removeMember(const char* key, Value* removed);
|
bool removeMember(const char* key, Value* removed);
|
||||||
/** \brief Remove the named map member.
|
/** \brief Remove the named map member.
|
||||||
@@ -517,9 +452,9 @@ Json::Value obj_value(Json::objectValue); // {}
|
|||||||
\param key may contain embedded nulls.
|
\param key may contain embedded nulls.
|
||||||
\return true iff removed (no exceptions)
|
\return true iff removed (no exceptions)
|
||||||
*/
|
*/
|
||||||
bool removeMember(JSONCPP_STRING const& key, Value* removed);
|
bool removeMember(std::string const& key, Value* removed);
|
||||||
/// Same as removeMember(JSONCPP_STRING const& key, Value* removed)
|
/// Same as removeMember(std::string const& key, Value* removed)
|
||||||
bool removeMember(const char* begin, const char* end, Value* removed);
|
bool removeMember(const char* key, const char* end, Value* removed);
|
||||||
/** \brief Remove the indexed array element.
|
/** \brief Remove the indexed array element.
|
||||||
|
|
||||||
O(n) expensive operations.
|
O(n) expensive operations.
|
||||||
@@ -533,9 +468,9 @@ Json::Value obj_value(Json::objectValue); // {}
|
|||||||
bool isMember(const char* key) const;
|
bool isMember(const char* key) const;
|
||||||
/// Return true if the object has a member named key.
|
/// Return true if the object has a member named key.
|
||||||
/// \param key may contain embedded nulls.
|
/// \param key may contain embedded nulls.
|
||||||
bool isMember(const JSONCPP_STRING& key) const;
|
bool isMember(const std::string& key) const;
|
||||||
/// Same as isMember(JSONCPP_STRING const& key)const
|
/// Same as isMember(std::string const& key)const
|
||||||
bool isMember(const char* begin, const char* end) const;
|
bool isMember(const char* key, const char* end) const;
|
||||||
#ifdef JSON_USE_CPPTL
|
#ifdef JSON_USE_CPPTL
|
||||||
/// Return true if the object has a member named key.
|
/// Return true if the object has a member named key.
|
||||||
bool isMember(const CppTL::ConstString& key) const;
|
bool isMember(const CppTL::ConstString& key) const;
|
||||||
@@ -554,17 +489,16 @@ Json::Value obj_value(Json::objectValue); // {}
|
|||||||
//# endif
|
//# endif
|
||||||
|
|
||||||
/// \deprecated Always pass len.
|
/// \deprecated Always pass len.
|
||||||
JSONCPP_DEPRECATED("Use setComment(JSONCPP_STRING const&) instead.")
|
|
||||||
void setComment(const char* comment, CommentPlacement placement);
|
void setComment(const char* comment, CommentPlacement placement);
|
||||||
/// Comments must be //... or /* ... */
|
/// Comments must be //... or /* ... */
|
||||||
void setComment(const char* comment, size_t len, CommentPlacement placement);
|
void setComment(const char* comment, size_t len, CommentPlacement placement);
|
||||||
/// Comments must be //... or /* ... */
|
/// Comments must be //... or /* ... */
|
||||||
void setComment(const JSONCPP_STRING& comment, CommentPlacement placement);
|
void setComment(const std::string& comment, CommentPlacement placement);
|
||||||
bool hasComment(CommentPlacement placement) const;
|
bool hasComment(CommentPlacement placement) const;
|
||||||
/// Include delimiters and embedded newlines.
|
/// Include delimiters and embedded newlines.
|
||||||
JSONCPP_STRING getComment(CommentPlacement placement) const;
|
std::string getComment(CommentPlacement placement) const;
|
||||||
|
|
||||||
JSONCPP_STRING toStyledString() const;
|
std::string toStyledString() const;
|
||||||
|
|
||||||
const_iterator begin() const;
|
const_iterator begin() const;
|
||||||
const_iterator end() const;
|
const_iterator end() const;
|
||||||
@@ -572,13 +506,6 @@ Json::Value obj_value(Json::objectValue); // {}
|
|||||||
iterator begin();
|
iterator begin();
|
||||||
iterator end();
|
iterator end();
|
||||||
|
|
||||||
// Accessors for the [start, limit) range of bytes within the JSON text from
|
|
||||||
// which this value was parsed, if any.
|
|
||||||
void setOffsetStart(ptrdiff_t start);
|
|
||||||
void setOffsetLimit(ptrdiff_t limit);
|
|
||||||
ptrdiff_t getOffsetStart() const;
|
|
||||||
ptrdiff_t getOffsetLimit() const;
|
|
||||||
|
|
||||||
private:
|
private:
|
||||||
void initBasic(ValueType type, bool allocated = false);
|
void initBasic(ValueType type, bool allocated = false);
|
||||||
|
|
||||||
@@ -615,11 +542,6 @@ private:
|
|||||||
unsigned int allocated_ : 1; // Notes: if declared as bool, bitfield is useless.
|
unsigned int allocated_ : 1; // Notes: if declared as bool, bitfield is useless.
|
||||||
// If not allocated_, string_ must be null-terminated.
|
// If not allocated_, string_ must be null-terminated.
|
||||||
CommentInfo* comments_;
|
CommentInfo* comments_;
|
||||||
|
|
||||||
// [start, limit) byte offsets in the source JSON text from which this Value
|
|
||||||
// was extracted.
|
|
||||||
ptrdiff_t start_;
|
|
||||||
ptrdiff_t limit_;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
/** \brief Experimental and untested: represents an element of the "path" to
|
/** \brief Experimental and untested: represents an element of the "path" to
|
||||||
@@ -632,7 +554,7 @@ public:
|
|||||||
PathArgument();
|
PathArgument();
|
||||||
PathArgument(ArrayIndex index);
|
PathArgument(ArrayIndex index);
|
||||||
PathArgument(const char* key);
|
PathArgument(const char* key);
|
||||||
PathArgument(const JSONCPP_STRING& key);
|
PathArgument(const std::string& key);
|
||||||
|
|
||||||
private:
|
private:
|
||||||
enum Kind {
|
enum Kind {
|
||||||
@@ -640,7 +562,7 @@ private:
|
|||||||
kindIndex,
|
kindIndex,
|
||||||
kindKey
|
kindKey
|
||||||
};
|
};
|
||||||
JSONCPP_STRING key_;
|
std::string key_;
|
||||||
ArrayIndex index_;
|
ArrayIndex index_;
|
||||||
Kind kind_;
|
Kind kind_;
|
||||||
};
|
};
|
||||||
@@ -658,7 +580,7 @@ private:
|
|||||||
*/
|
*/
|
||||||
class JSON_API Path {
|
class JSON_API Path {
|
||||||
public:
|
public:
|
||||||
Path(const JSONCPP_STRING& path,
|
Path(const std::string& path,
|
||||||
const PathArgument& a1 = PathArgument(),
|
const PathArgument& a1 = PathArgument(),
|
||||||
const PathArgument& a2 = PathArgument(),
|
const PathArgument& a2 = PathArgument(),
|
||||||
const PathArgument& a3 = PathArgument(),
|
const PathArgument& a3 = PathArgument(),
|
||||||
@@ -675,12 +597,12 @@ private:
|
|||||||
typedef std::vector<const PathArgument*> InArgs;
|
typedef std::vector<const PathArgument*> InArgs;
|
||||||
typedef std::vector<PathArgument> Args;
|
typedef std::vector<PathArgument> Args;
|
||||||
|
|
||||||
void makePath(const JSONCPP_STRING& path, const InArgs& in);
|
void makePath(const std::string& path, const InArgs& in);
|
||||||
void addPathInArg(const JSONCPP_STRING& path,
|
void addPathInArg(const std::string& path,
|
||||||
const InArgs& in,
|
const InArgs& in,
|
||||||
InArgs::const_iterator& itInArg,
|
InArgs::const_iterator& itInArg,
|
||||||
PathArgument::Kind kind);
|
PathArgument::Kind kind);
|
||||||
void invalidPath(const JSONCPP_STRING& path, int location);
|
void invalidPath(const std::string& path, int location);
|
||||||
|
|
||||||
Args args_;
|
Args args_;
|
||||||
};
|
};
|
||||||
@@ -695,6 +617,9 @@ public:
|
|||||||
typedef int difference_type;
|
typedef int difference_type;
|
||||||
typedef ValueIteratorBase SelfType;
|
typedef ValueIteratorBase SelfType;
|
||||||
|
|
||||||
|
ValueIteratorBase();
|
||||||
|
explicit ValueIteratorBase(const Value::ObjectValues::iterator& current);
|
||||||
|
|
||||||
bool operator==(const SelfType& other) const { return isEqual(other); }
|
bool operator==(const SelfType& other) const { return isEqual(other); }
|
||||||
|
|
||||||
bool operator!=(const SelfType& other) const { return !isEqual(other); }
|
bool operator!=(const SelfType& other) const { return !isEqual(other); }
|
||||||
@@ -707,22 +632,16 @@ public:
|
|||||||
/// Value.
|
/// Value.
|
||||||
Value key() const;
|
Value key() const;
|
||||||
|
|
||||||
/// Return the index of the referenced Value, or -1 if it is not an arrayValue.
|
/// Return the index of the referenced Value. -1 if it is not an arrayValue.
|
||||||
UInt index() const;
|
UInt index() const;
|
||||||
|
|
||||||
/// Return the member name of the referenced Value, or "" if it is not an
|
|
||||||
/// objectValue.
|
|
||||||
/// \note Avoid `c_str()` on result, as embedded zeroes are possible.
|
|
||||||
JSONCPP_STRING name() const;
|
|
||||||
|
|
||||||
/// Return the member name of the referenced Value. "" if it is not an
|
/// Return the member name of the referenced Value. "" if it is not an
|
||||||
/// objectValue.
|
/// objectValue.
|
||||||
/// \deprecated This cannot be used for UTF-8 strings, since there can be embedded nulls.
|
/// \deprecated This cannot be used for UTF-8 strings, since there can be embedded nulls.
|
||||||
JSONCPP_DEPRECATED("Use `key = name();` instead.")
|
|
||||||
char const* memberName() const;
|
char const* memberName() const;
|
||||||
/// Return the member name of the referenced Value, or NULL if it is not an
|
/// Return the member name of the referenced Value, or NULL if it is not an
|
||||||
/// objectValue.
|
/// objectValue.
|
||||||
/// \note Better version than memberName(). Allows embedded nulls.
|
/// Better version than memberName(). Allows embedded nulls.
|
||||||
char const* memberName(char const** end) const;
|
char const* memberName(char const** end) const;
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
@@ -742,12 +661,6 @@ private:
|
|||||||
Value::ObjectValues::iterator current_;
|
Value::ObjectValues::iterator current_;
|
||||||
// Indicates that iterator is for a null value.
|
// Indicates that iterator is for a null value.
|
||||||
bool isNull_;
|
bool isNull_;
|
||||||
|
|
||||||
public:
|
|
||||||
// For some reason, BORLAND needs these at the end, rather
|
|
||||||
// than earlier. No idea why.
|
|
||||||
ValueIteratorBase();
|
|
||||||
explicit ValueIteratorBase(const Value::ObjectValues::iterator& current);
|
|
||||||
};
|
};
|
||||||
|
|
||||||
/** \brief const iterator for object and array value.
|
/** \brief const iterator for object and array value.
|
||||||
@@ -765,7 +678,6 @@ public:
|
|||||||
typedef ValueConstIterator SelfType;
|
typedef ValueConstIterator SelfType;
|
||||||
|
|
||||||
ValueConstIterator();
|
ValueConstIterator();
|
||||||
ValueConstIterator(ValueIterator const& other);
|
|
||||||
|
|
||||||
private:
|
private:
|
||||||
/*! \internal Use by Value to create an iterator.
|
/*! \internal Use by Value to create an iterator.
|
||||||
@@ -815,7 +727,7 @@ public:
|
|||||||
typedef ValueIterator SelfType;
|
typedef ValueIterator SelfType;
|
||||||
|
|
||||||
ValueIterator();
|
ValueIterator();
|
||||||
explicit ValueIterator(const ValueConstIterator& other);
|
ValueIterator(const ValueConstIterator& other);
|
||||||
ValueIterator(const ValueIterator& other);
|
ValueIterator(const ValueIterator& other);
|
||||||
|
|
||||||
private:
|
private:
|
||||||
@@ -861,7 +773,6 @@ template<>
|
|||||||
inline void swap(Json::Value& a, Json::Value& b) { a.swap(b); }
|
inline void swap(Json::Value& a, Json::Value& b) { a.swap(b); }
|
||||||
}
|
}
|
||||||
|
|
||||||
#pragma pack(pop)
|
|
||||||
|
|
||||||
#if defined(JSONCPP_DISABLE_DLL_INTERFACE_WARNING)
|
#if defined(JSONCPP_DISABLE_DLL_INTERFACE_WARNING)
|
||||||
#pragma warning(pop)
|
#pragma warning(pop)
|
||||||
|
@@ -1,20 +1,14 @@
|
|||||||
// DO NOT EDIT. This file (and "version") is generated by CMake.
|
// DO NOT EDIT. This file is generated by CMake from "version"
|
||||||
|
// and "version.h.in" files.
|
||||||
// Run CMake configure step to update it.
|
// Run CMake configure step to update it.
|
||||||
#ifndef JSON_VERSION_H_INCLUDED
|
#ifndef JSON_VERSION_H_INCLUDED
|
||||||
# define JSON_VERSION_H_INCLUDED
|
# define JSON_VERSION_H_INCLUDED
|
||||||
|
|
||||||
# define JSONCPP_VERSION_STRING "1.8.1"
|
# define JSONCPP_VERSION_STRING "0.9.4"
|
||||||
# define JSONCPP_VERSION_MAJOR 1
|
# define JSONCPP_VERSION_MAJOR 0
|
||||||
# define JSONCPP_VERSION_MINOR 8
|
# define JSONCPP_VERSION_MINOR 9
|
||||||
# define JSONCPP_VERSION_PATCH 1
|
# define JSONCPP_VERSION_PATCH 4
|
||||||
# define JSONCPP_VERSION_QUALIFIER
|
# define JSONCPP_VERSION_QUALIFIER
|
||||||
# define JSONCPP_VERSION_HEXA ((JSONCPP_VERSION_MAJOR << 24) | (JSONCPP_VERSION_MINOR << 16) | (JSONCPP_VERSION_PATCH << 8))
|
# define JSONCPP_VERSION_HEXA ((JSONCPP_VERSION_MAJOR << 24) | (JSONCPP_VERSION_MINOR << 16) | (JSONCPP_VERSION_PATCH << 8))
|
||||||
|
|
||||||
#ifdef JSONCPP_USING_SECURE_MEMORY
|
|
||||||
#undef JSONCPP_USING_SECURE_MEMORY
|
|
||||||
#endif
|
|
||||||
#define JSONCPP_USING_SECURE_MEMORY 0
|
|
||||||
// If non-zero, the library zeroes any memory that it has allocated before
|
|
||||||
// it frees its memory.
|
|
||||||
|
|
||||||
#endif // JSON_VERSION_H_INCLUDED
|
#endif // JSON_VERSION_H_INCLUDED
|
||||||
|
@@ -20,8 +20,6 @@
|
|||||||
#pragma warning(disable : 4251)
|
#pragma warning(disable : 4251)
|
||||||
#endif // if defined(JSONCPP_DISABLE_DLL_INTERFACE_WARNING)
|
#endif // if defined(JSONCPP_DISABLE_DLL_INTERFACE_WARNING)
|
||||||
|
|
||||||
#pragma pack(push, 8)
|
|
||||||
|
|
||||||
namespace Json {
|
namespace Json {
|
||||||
|
|
||||||
class Value;
|
class Value;
|
||||||
@@ -41,17 +39,17 @@ Usage:
|
|||||||
*/
|
*/
|
||||||
class JSON_API StreamWriter {
|
class JSON_API StreamWriter {
|
||||||
protected:
|
protected:
|
||||||
JSONCPP_OSTREAM* sout_; // not owned; will not delete
|
std::ostream* sout_; // not owned; will not delete
|
||||||
public:
|
public:
|
||||||
StreamWriter();
|
StreamWriter();
|
||||||
virtual ~StreamWriter();
|
virtual ~StreamWriter();
|
||||||
/** Write Value into document as configured in sub-class.
|
/** Write Value into document as configured in sub-class.
|
||||||
Do not take ownership of sout, but maintain a reference during function.
|
Do not take ownership of sout, but maintain a reference during function.
|
||||||
\pre sout != NULL
|
\pre sout != NULL
|
||||||
\return zero on success (For now, we always return zero, so check the stream instead.)
|
\return zero on success
|
||||||
\throw std::exception possibly, depending on configuration
|
\throw std::exception possibly, depending on configuration
|
||||||
*/
|
*/
|
||||||
virtual int write(Value const& root, JSONCPP_OSTREAM* sout) = 0;
|
virtual int write(Value const& root, std::ostream* sout) = 0;
|
||||||
|
|
||||||
/** \brief A simple abstract factory.
|
/** \brief A simple abstract factory.
|
||||||
*/
|
*/
|
||||||
@@ -68,7 +66,7 @@ public:
|
|||||||
/** \brief Write into stringstream, then return string, for convenience.
|
/** \brief Write into stringstream, then return string, for convenience.
|
||||||
* A StreamWriter will be created from the factory, used, and then deleted.
|
* A StreamWriter will be created from the factory, used, and then deleted.
|
||||||
*/
|
*/
|
||||||
JSONCPP_STRING JSON_API writeString(StreamWriter::Factory const& factory, Value const& root);
|
std::string JSON_API writeString(StreamWriter::Factory const& factory, Value const& root);
|
||||||
|
|
||||||
|
|
||||||
/** \brief Build a StreamWriter implementation.
|
/** \brief Build a StreamWriter implementation.
|
||||||
@@ -101,10 +99,6 @@ public:
|
|||||||
Strictly speaking, this is not valid JSON. But when the output is being
|
Strictly speaking, this is not valid JSON. But when the output is being
|
||||||
fed to a browser's Javascript, it makes for smaller output and the
|
fed to a browser's Javascript, it makes for smaller output and the
|
||||||
browser can handle the output just fine.
|
browser can handle the output just fine.
|
||||||
- "useSpecialFloats": false or true
|
|
||||||
- If true, outputs non-finite floating point values in the following way:
|
|
||||||
NaN values as "NaN", positive infinity as "Infinity", and negative infinity
|
|
||||||
as "-Infinity".
|
|
||||||
|
|
||||||
You can examine 'settings_` yourself
|
You can examine 'settings_` yourself
|
||||||
to see the defaults. You can also write and read them just like any
|
to see the defaults. You can also write and read them just like any
|
||||||
@@ -114,12 +108,12 @@ public:
|
|||||||
Json::Value settings_;
|
Json::Value settings_;
|
||||||
|
|
||||||
StreamWriterBuilder();
|
StreamWriterBuilder();
|
||||||
~StreamWriterBuilder() JSONCPP_OVERRIDE;
|
virtual ~StreamWriterBuilder();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* \throw std::exception if something goes wrong (e.g. invalid settings)
|
* \throw std::exception if something goes wrong (e.g. invalid settings)
|
||||||
*/
|
*/
|
||||||
StreamWriter* newStreamWriter() const JSONCPP_OVERRIDE;
|
virtual StreamWriter* newStreamWriter() const;
|
||||||
|
|
||||||
/** \return true if 'settings' are legal and consistent;
|
/** \return true if 'settings' are legal and consistent;
|
||||||
* otherwise, indicate bad settings via 'invalid'.
|
* otherwise, indicate bad settings via 'invalid'.
|
||||||
@@ -127,7 +121,7 @@ public:
|
|||||||
bool validate(Json::Value* invalid) const;
|
bool validate(Json::Value* invalid) const;
|
||||||
/** A simple way to update a specific setting.
|
/** A simple way to update a specific setting.
|
||||||
*/
|
*/
|
||||||
Value& operator[](JSONCPP_STRING key);
|
Value& operator[](std::string key);
|
||||||
|
|
||||||
/** Called by ctor, but you can use this to reset settings_.
|
/** Called by ctor, but you can use this to reset settings_.
|
||||||
* \pre 'settings' != NULL (but Json::null is fine)
|
* \pre 'settings' != NULL (but Json::null is fine)
|
||||||
@@ -138,13 +132,13 @@ public:
|
|||||||
};
|
};
|
||||||
|
|
||||||
/** \brief Abstract class for writers.
|
/** \brief Abstract class for writers.
|
||||||
* \deprecated Use StreamWriter. (And really, this is an implementation detail.)
|
* \deprecated Use StreamWriter.
|
||||||
*/
|
*/
|
||||||
class JSON_API Writer {
|
class JSON_API Writer {
|
||||||
public:
|
public:
|
||||||
virtual ~Writer();
|
virtual ~Writer();
|
||||||
|
|
||||||
virtual JSONCPP_STRING write(const Value& root) = 0;
|
virtual std::string write(const Value& root) = 0;
|
||||||
};
|
};
|
||||||
|
|
||||||
/** \brief Outputs a Value in <a HREF="http://www.json.org">JSON</a> format
|
/** \brief Outputs a Value in <a HREF="http://www.json.org">JSON</a> format
|
||||||
@@ -157,32 +151,20 @@ public:
|
|||||||
* \deprecated Use StreamWriterBuilder.
|
* \deprecated Use StreamWriterBuilder.
|
||||||
*/
|
*/
|
||||||
class JSON_API FastWriter : public Writer {
|
class JSON_API FastWriter : public Writer {
|
||||||
|
|
||||||
public:
|
public:
|
||||||
FastWriter();
|
FastWriter();
|
||||||
~FastWriter() JSONCPP_OVERRIDE {}
|
virtual ~FastWriter() {}
|
||||||
|
|
||||||
void enableYAMLCompatibility();
|
void enableYAMLCompatibility();
|
||||||
|
|
||||||
/** \brief Drop the "null" string from the writer's output for nullValues.
|
|
||||||
* Strictly speaking, this is not valid JSON. But when the output is being
|
|
||||||
* fed to a browser's Javascript, it makes for smaller output and the
|
|
||||||
* browser can handle the output just fine.
|
|
||||||
*/
|
|
||||||
void dropNullPlaceholders();
|
|
||||||
|
|
||||||
void omitEndingLineFeed();
|
|
||||||
|
|
||||||
public: // overridden from Writer
|
public: // overridden from Writer
|
||||||
JSONCPP_STRING write(const Value& root) JSONCPP_OVERRIDE;
|
virtual std::string write(const Value& root);
|
||||||
|
|
||||||
private:
|
private:
|
||||||
void writeValue(const Value& value);
|
void writeValue(const Value& value);
|
||||||
|
|
||||||
JSONCPP_STRING document_;
|
std::string document_;
|
||||||
bool yamlCompatiblityEnabled_;
|
bool yamlCompatiblityEnabled_;
|
||||||
bool dropNullPlaceholders_;
|
|
||||||
bool omitEndingLineFeed_;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
/** \brief Writes a Value in <a HREF="http://www.json.org">JSON</a> format in a
|
/** \brief Writes a Value in <a HREF="http://www.json.org">JSON</a> format in a
|
||||||
@@ -212,36 +194,36 @@ private:
|
|||||||
class JSON_API StyledWriter : public Writer {
|
class JSON_API StyledWriter : public Writer {
|
||||||
public:
|
public:
|
||||||
StyledWriter();
|
StyledWriter();
|
||||||
~StyledWriter() JSONCPP_OVERRIDE {}
|
virtual ~StyledWriter() {}
|
||||||
|
|
||||||
public: // overridden from Writer
|
public: // overridden from Writer
|
||||||
/** \brief Serialize a Value in <a HREF="http://www.json.org">JSON</a> format.
|
/** \brief Serialize a Value in <a HREF="http://www.json.org">JSON</a> format.
|
||||||
* \param root Value to serialize.
|
* \param root Value to serialize.
|
||||||
* \return String containing the JSON document that represents the root value.
|
* \return String containing the JSON document that represents the root value.
|
||||||
*/
|
*/
|
||||||
JSONCPP_STRING write(const Value& root) JSONCPP_OVERRIDE;
|
virtual std::string write(const Value& root);
|
||||||
|
|
||||||
private:
|
private:
|
||||||
void writeValue(const Value& value);
|
void writeValue(const Value& value);
|
||||||
void writeArrayValue(const Value& value);
|
void writeArrayValue(const Value& value);
|
||||||
bool isMultineArray(const Value& value);
|
bool isMultineArray(const Value& value);
|
||||||
void pushValue(const JSONCPP_STRING& value);
|
void pushValue(const std::string& value);
|
||||||
void writeIndent();
|
void writeIndent();
|
||||||
void writeWithIndent(const JSONCPP_STRING& value);
|
void writeWithIndent(const std::string& value);
|
||||||
void indent();
|
void indent();
|
||||||
void unindent();
|
void unindent();
|
||||||
void writeCommentBeforeValue(const Value& root);
|
void writeCommentBeforeValue(const Value& root);
|
||||||
void writeCommentAfterValueOnSameLine(const Value& root);
|
void writeCommentAfterValueOnSameLine(const Value& root);
|
||||||
bool hasCommentForValue(const Value& value);
|
bool hasCommentForValue(const Value& value);
|
||||||
static JSONCPP_STRING normalizeEOL(const JSONCPP_STRING& text);
|
static std::string normalizeEOL(const std::string& text);
|
||||||
|
|
||||||
typedef std::vector<JSONCPP_STRING> ChildValues;
|
typedef std::vector<std::string> ChildValues;
|
||||||
|
|
||||||
ChildValues childValues_;
|
ChildValues childValues_;
|
||||||
JSONCPP_STRING document_;
|
std::string document_;
|
||||||
JSONCPP_STRING indentString_;
|
std::string indentString_;
|
||||||
unsigned int rightMargin_;
|
int rightMargin_;
|
||||||
unsigned int indentSize_;
|
int indentSize_;
|
||||||
bool addChildValues_;
|
bool addChildValues_;
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -273,7 +255,7 @@ private:
|
|||||||
*/
|
*/
|
||||||
class JSON_API StyledStreamWriter {
|
class JSON_API StyledStreamWriter {
|
||||||
public:
|
public:
|
||||||
StyledStreamWriter(JSONCPP_STRING indentation = "\t");
|
StyledStreamWriter(std::string indentation = "\t");
|
||||||
~StyledStreamWriter() {}
|
~StyledStreamWriter() {}
|
||||||
|
|
||||||
public:
|
public:
|
||||||
@@ -283,51 +265,49 @@ public:
|
|||||||
* \note There is no point in deriving from Writer, since write() should not
|
* \note There is no point in deriving from Writer, since write() should not
|
||||||
* return a value.
|
* return a value.
|
||||||
*/
|
*/
|
||||||
void write(JSONCPP_OSTREAM& out, const Value& root);
|
void write(std::ostream& out, const Value& root);
|
||||||
|
|
||||||
private:
|
private:
|
||||||
void writeValue(const Value& value);
|
void writeValue(const Value& value);
|
||||||
void writeArrayValue(const Value& value);
|
void writeArrayValue(const Value& value);
|
||||||
bool isMultineArray(const Value& value);
|
bool isMultineArray(const Value& value);
|
||||||
void pushValue(const JSONCPP_STRING& value);
|
void pushValue(const std::string& value);
|
||||||
void writeIndent();
|
void writeIndent();
|
||||||
void writeWithIndent(const JSONCPP_STRING& value);
|
void writeWithIndent(const std::string& value);
|
||||||
void indent();
|
void indent();
|
||||||
void unindent();
|
void unindent();
|
||||||
void writeCommentBeforeValue(const Value& root);
|
void writeCommentBeforeValue(const Value& root);
|
||||||
void writeCommentAfterValueOnSameLine(const Value& root);
|
void writeCommentAfterValueOnSameLine(const Value& root);
|
||||||
bool hasCommentForValue(const Value& value);
|
bool hasCommentForValue(const Value& value);
|
||||||
static JSONCPP_STRING normalizeEOL(const JSONCPP_STRING& text);
|
static std::string normalizeEOL(const std::string& text);
|
||||||
|
|
||||||
typedef std::vector<JSONCPP_STRING> ChildValues;
|
typedef std::vector<std::string> ChildValues;
|
||||||
|
|
||||||
ChildValues childValues_;
|
ChildValues childValues_;
|
||||||
JSONCPP_OSTREAM* document_;
|
std::ostream* document_;
|
||||||
JSONCPP_STRING indentString_;
|
std::string indentString_;
|
||||||
unsigned int rightMargin_;
|
int rightMargin_;
|
||||||
JSONCPP_STRING indentation_;
|
std::string indentation_;
|
||||||
bool addChildValues_ : 1;
|
bool addChildValues_ : 1;
|
||||||
bool indented_ : 1;
|
bool indented_ : 1;
|
||||||
};
|
};
|
||||||
|
|
||||||
#if defined(JSON_HAS_INT64)
|
#if defined(JSON_HAS_INT64)
|
||||||
JSONCPP_STRING JSON_API valueToString(Int value);
|
std::string JSON_API valueToString(Int value);
|
||||||
JSONCPP_STRING JSON_API valueToString(UInt value);
|
std::string JSON_API valueToString(UInt value);
|
||||||
#endif // if defined(JSON_HAS_INT64)
|
#endif // if defined(JSON_HAS_INT64)
|
||||||
JSONCPP_STRING JSON_API valueToString(LargestInt value);
|
std::string JSON_API valueToString(LargestInt value);
|
||||||
JSONCPP_STRING JSON_API valueToString(LargestUInt value);
|
std::string JSON_API valueToString(LargestUInt value);
|
||||||
JSONCPP_STRING JSON_API valueToString(double value);
|
std::string JSON_API valueToString(double value);
|
||||||
JSONCPP_STRING JSON_API valueToString(bool value);
|
std::string JSON_API valueToString(bool value);
|
||||||
JSONCPP_STRING JSON_API valueToQuotedString(const char* value);
|
std::string JSON_API valueToQuotedString(const char* value);
|
||||||
|
|
||||||
/// \brief Output using the StyledStreamWriter.
|
/// \brief Output using the StyledStreamWriter.
|
||||||
/// \see Json::operator>>()
|
/// \see Json::operator>>()
|
||||||
JSON_API JSONCPP_OSTREAM& operator<<(JSONCPP_OSTREAM&, const Value& root);
|
JSON_API std::ostream& operator<<(std::ostream&, const Value& root);
|
||||||
|
|
||||||
} // namespace Json
|
} // namespace Json
|
||||||
|
|
||||||
#pragma pack(pop)
|
|
||||||
|
|
||||||
#if defined(JSONCPP_DISABLE_DLL_INTERFACE_WARNING)
|
#if defined(JSONCPP_DISABLE_DLL_INTERFACE_WARNING)
|
||||||
#pragma warning(pop)
|
#pragma warning(pop)
|
||||||
#endif // if defined(JSONCPP_DISABLE_DLL_INTERFACE_WARNING)
|
#endif // if defined(JSONCPP_DISABLE_DLL_INTERFACE_WARNING)
|
||||||
|
@@ -1,8 +1,3 @@
|
|||||||
# Copyright 2010 The JsonCpp Authors
|
|
||||||
# Distributed under MIT license, or public domain if desired and
|
|
||||||
# recognized in your jurisdiction.
|
|
||||||
# See file LICENSE for detail or copy at http://jsoncpp.sourceforge.net/LICENSE
|
|
||||||
|
|
||||||
"""Tag the sandbox for release, make source and doc tarballs.
|
"""Tag the sandbox for release, make source and doc tarballs.
|
||||||
|
|
||||||
Requires Python 2.6
|
Requires Python 2.6
|
||||||
@@ -19,7 +14,6 @@ python makerelease.py 0.5.0 0.6.0-dev
|
|||||||
Note: This was for Subversion. Now that we are in GitHub, we do not
|
Note: This was for Subversion. Now that we are in GitHub, we do not
|
||||||
need to build versioned tarballs anymore, so makerelease.py is defunct.
|
need to build versioned tarballs anymore, so makerelease.py is defunct.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
from __future__ import print_function
|
from __future__ import print_function
|
||||||
import os.path
|
import os.path
|
||||||
import subprocess
|
import subprocess
|
||||||
|
102
meson.build
102
meson.build
@@ -1,102 +0,0 @@
|
|||||||
project(
|
|
||||||
'jsoncpp',
|
|
||||||
'cpp',
|
|
||||||
version : '1.8.1',
|
|
||||||
default_options : [
|
|
||||||
'buildtype=release',
|
|
||||||
'warning_level=1'],
|
|
||||||
license : 'Public Domain',
|
|
||||||
meson_version : '>= 0.41.1')
|
|
||||||
|
|
||||||
jsoncpp_ver_arr = meson.project_version().split('.')
|
|
||||||
jsoncpp_major_version = jsoncpp_ver_arr[0]
|
|
||||||
jsoncpp_minor_version = jsoncpp_ver_arr[1]
|
|
||||||
jsoncpp_patch_version = jsoncpp_ver_arr[2]
|
|
||||||
|
|
||||||
jsoncpp_cdata = configuration_data()
|
|
||||||
jsoncpp_cdata.set('JSONCPP_VERSION', meson.project_version())
|
|
||||||
jsoncpp_cdata.set('JSONCPP_VERSION_MAJOR', jsoncpp_major_version)
|
|
||||||
jsoncpp_cdata.set('JSONCPP_VERSION_MINOR', jsoncpp_minor_version)
|
|
||||||
jsoncpp_cdata.set('JSONCPP_VERSION_PATCH', jsoncpp_patch_version)
|
|
||||||
|
|
||||||
jsoncpp_gen_sources = configure_file(
|
|
||||||
input : 'src/lib_json/version.h.in',
|
|
||||||
output : 'version.h',
|
|
||||||
configuration : jsoncpp_cdata,
|
|
||||||
install : true,
|
|
||||||
install_dir : join_paths(get_option('prefix'), get_option('includedir'), 'json')
|
|
||||||
)
|
|
||||||
|
|
||||||
jsoncpp_headers = [
|
|
||||||
'include/json/allocator.h',
|
|
||||||
'include/json/assertions.h',
|
|
||||||
'include/json/autolink.h',
|
|
||||||
'include/json/config.h',
|
|
||||||
'include/json/features.h',
|
|
||||||
'include/json/forwards.h',
|
|
||||||
'include/json/json.h',
|
|
||||||
'include/json/reader.h',
|
|
||||||
'include/json/value.h',
|
|
||||||
'include/json/writer.h']
|
|
||||||
jsoncpp_include_directories = include_directories('include')
|
|
||||||
|
|
||||||
install_headers(
|
|
||||||
jsoncpp_headers,
|
|
||||||
subdir : 'json')
|
|
||||||
|
|
||||||
jsoncpp_lib = library(
|
|
||||||
'jsoncpp',
|
|
||||||
[ jsoncpp_gen_sources,
|
|
||||||
jsoncpp_headers,
|
|
||||||
'src/lib_json/json_tool.h',
|
|
||||||
'src/lib_json/json_reader.cpp',
|
|
||||||
'src/lib_json/json_value.cpp',
|
|
||||||
'src/lib_json/json_writer.cpp'],
|
|
||||||
soversion : 18,
|
|
||||||
install : true,
|
|
||||||
include_directories : jsoncpp_include_directories)
|
|
||||||
|
|
||||||
import('pkgconfig').generate(
|
|
||||||
libraries : jsoncpp_lib,
|
|
||||||
version : meson.project_version(),
|
|
||||||
name : 'jsoncpp',
|
|
||||||
filebase : 'jsoncpp',
|
|
||||||
description : 'A C++ library for interacting with JSON')
|
|
||||||
|
|
||||||
# for libraries bundling jsoncpp
|
|
||||||
declare_dependency(
|
|
||||||
include_directories : jsoncpp_include_directories,
|
|
||||||
link_with : jsoncpp_lib,
|
|
||||||
version : meson.project_version(),
|
|
||||||
sources : jsoncpp_gen_sources)
|
|
||||||
|
|
||||||
# tests
|
|
||||||
python = import('python3').find_python()
|
|
||||||
|
|
||||||
jsoncpp_test = executable(
|
|
||||||
'jsoncpp_test',
|
|
||||||
[ 'src/test_lib_json/jsontest.cpp',
|
|
||||||
'src/test_lib_json/jsontest.h',
|
|
||||||
'src/test_lib_json/main.cpp'],
|
|
||||||
include_directories : jsoncpp_include_directories,
|
|
||||||
link_with : jsoncpp_lib,
|
|
||||||
install : false)
|
|
||||||
test(
|
|
||||||
'unittest_jsoncpp_test',
|
|
||||||
jsoncpp_test)
|
|
||||||
|
|
||||||
jsontestrunner = executable(
|
|
||||||
'jsontestrunner',
|
|
||||||
'src/jsontestrunner/main.cpp',
|
|
||||||
include_directories : jsoncpp_include_directories,
|
|
||||||
link_with : jsoncpp_lib,
|
|
||||||
install : false)
|
|
||||||
test(
|
|
||||||
'unittest_jsontestrunner',
|
|
||||||
python,
|
|
||||||
args : [
|
|
||||||
'-B',
|
|
||||||
join_paths(meson.current_source_dir(), 'test/runjsontests.py'),
|
|
||||||
jsontestrunner,
|
|
||||||
join_paths(meson.current_source_dir(), 'test/data')]
|
|
||||||
)
|
|
@@ -1,5 +1,7 @@
|
|||||||
libdir=@CMAKE_INSTALL_FULL_LIBDIR@
|
prefix=@CMAKE_INSTALL_PREFIX@
|
||||||
includedir=@CMAKE_INSTALL_FULL_INCLUDEDIR@
|
exec_prefix=${prefix}
|
||||||
|
libdir=${exec_prefix}/@LIBRARY_INSTALL_DIR@
|
||||||
|
includedir=${prefix}/@INCLUDE_INSTALL_DIR@
|
||||||
|
|
||||||
Name: jsoncpp
|
Name: jsoncpp
|
||||||
Description: A C++ library for interacting with JSON
|
Description: A C++ library for interacting with JSON
|
||||||
|
@@ -1,8 +1,3 @@
|
|||||||
# Copyright 2009 The JsonCpp Authors
|
|
||||||
# Distributed under MIT license, or public domain if desired and
|
|
||||||
# recognized in your jurisdiction.
|
|
||||||
# See file LICENSE for detail or copy at http://jsoncpp.sourceforge.net/LICENSE
|
|
||||||
|
|
||||||
import fnmatch
|
import fnmatch
|
||||||
import os
|
import os
|
||||||
|
|
||||||
|
@@ -1,8 +1,3 @@
|
|||||||
# Copyright 2007 The JsonCpp Authors
|
|
||||||
# Distributed under MIT license, or public domain if desired and
|
|
||||||
# recognized in your jurisdiction.
|
|
||||||
# See file LICENSE for detail or copy at http://jsoncpp.sourceforge.net/LICENSE
|
|
||||||
|
|
||||||
import os
|
import os
|
||||||
import os.path
|
import os.path
|
||||||
from fnmatch import fnmatch
|
from fnmatch import fnmatch
|
||||||
|
@@ -1,8 +1,3 @@
|
|||||||
# Copyright 2010 The JsonCpp Authors
|
|
||||||
# Distributed under MIT license, or public domain if desired and
|
|
||||||
# recognized in your jurisdiction.
|
|
||||||
# See file LICENSE for detail or copy at http://jsoncpp.sourceforge.net/LICENSE
|
|
||||||
|
|
||||||
import re
|
import re
|
||||||
from SCons.Script import * # the usual scons stuff you get in a SConscript
|
from SCons.Script import * # the usual scons stuff you get in a SConscript
|
||||||
import collections
|
import collections
|
||||||
|
@@ -1,8 +1,3 @@
|
|||||||
# Copyright 2007 The JsonCpp Authors
|
|
||||||
# Distributed under MIT license, or public domain if desired and
|
|
||||||
# recognized in your jurisdiction.
|
|
||||||
# See file LICENSE for detail or copy at http://jsoncpp.sourceforge.net/LICENSE
|
|
||||||
|
|
||||||
"""tarball
|
"""tarball
|
||||||
|
|
||||||
Tool-specific initialization for tarball.
|
Tool-specific initialization for tarball.
|
||||||
|
@@ -2,4 +2,4 @@ ADD_SUBDIRECTORY(lib_json)
|
|||||||
IF(JSONCPP_WITH_TESTS)
|
IF(JSONCPP_WITH_TESTS)
|
||||||
ADD_SUBDIRECTORY(jsontestrunner)
|
ADD_SUBDIRECTORY(jsontestrunner)
|
||||||
ADD_SUBDIRECTORY(test_lib_json)
|
ADD_SUBDIRECTORY(test_lib_json)
|
||||||
ENDIF()
|
ENDIF(JSONCPP_WITH_TESTS)
|
||||||
|
@@ -1,15 +1,18 @@
|
|||||||
FIND_PACKAGE(PythonInterp 2.6)
|
FIND_PACKAGE(PythonInterp 2.6)
|
||||||
|
|
||||||
|
IF(JSONCPP_LIB_BUILD_SHARED)
|
||||||
|
ADD_DEFINITIONS( -DJSON_DLL )
|
||||||
|
ENDIF(JSONCPP_LIB_BUILD_SHARED)
|
||||||
|
|
||||||
ADD_EXECUTABLE(jsontestrunner_exe
|
ADD_EXECUTABLE(jsontestrunner_exe
|
||||||
main.cpp
|
main.cpp
|
||||||
)
|
)
|
||||||
|
|
||||||
IF(BUILD_SHARED_LIBS)
|
IF(JSONCPP_LIB_BUILD_SHARED)
|
||||||
ADD_DEFINITIONS( -DJSON_DLL )
|
|
||||||
TARGET_LINK_LIBRARIES(jsontestrunner_exe jsoncpp_lib)
|
TARGET_LINK_LIBRARIES(jsontestrunner_exe jsoncpp_lib)
|
||||||
ELSE(BUILD_SHARED_LIBS)
|
ELSE(JSONCPP_LIB_BUILD_SHARED)
|
||||||
TARGET_LINK_LIBRARIES(jsontestrunner_exe jsoncpp_lib_static)
|
TARGET_LINK_LIBRARIES(jsontestrunner_exe jsoncpp_lib_static)
|
||||||
ENDIF()
|
ENDIF(JSONCPP_LIB_BUILD_SHARED)
|
||||||
|
|
||||||
SET_TARGET_PROPERTIES(jsontestrunner_exe PROPERTIES OUTPUT_NAME jsontestrunner_exe)
|
SET_TARGET_PROPERTIES(jsontestrunner_exe PROPERTIES OUTPUT_NAME jsontestrunner_exe)
|
||||||
|
|
||||||
@@ -22,4 +25,4 @@ IF(PYTHONINTERP_FOUND)
|
|||||||
DEPENDS jsontestrunner_exe jsoncpp_test
|
DEPENDS jsontestrunner_exe jsoncpp_test
|
||||||
)
|
)
|
||||||
ADD_CUSTOM_TARGET(jsoncpp_check DEPENDS jsoncpp_readerwriter_tests)
|
ADD_CUSTOM_TARGET(jsoncpp_check DEPENDS jsoncpp_readerwriter_tests)
|
||||||
ENDIF()
|
ENDIF(PYTHONINTERP_FOUND)
|
||||||
|
@@ -17,14 +17,14 @@
|
|||||||
|
|
||||||
struct Options
|
struct Options
|
||||||
{
|
{
|
||||||
JSONCPP_STRING path;
|
std::string path;
|
||||||
Json::Features features;
|
Json::Features features;
|
||||||
bool parseOnly;
|
bool parseOnly;
|
||||||
typedef JSONCPP_STRING (*writeFuncType)(Json::Value const&);
|
typedef std::string (*writeFuncType)(Json::Value const&);
|
||||||
writeFuncType write;
|
writeFuncType write;
|
||||||
};
|
};
|
||||||
|
|
||||||
static JSONCPP_STRING normalizeFloatingPointStr(double value) {
|
static std::string normalizeFloatingPointStr(double value) {
|
||||||
char buffer[32];
|
char buffer[32];
|
||||||
#if defined(_MSC_VER) && defined(__STDC_SECURE_LIB__)
|
#if defined(_MSC_VER) && defined(__STDC_SECURE_LIB__)
|
||||||
sprintf_s(buffer, sizeof(buffer), "%.16g", value);
|
sprintf_s(buffer, sizeof(buffer), "%.16g", value);
|
||||||
@@ -32,18 +32,18 @@ static JSONCPP_STRING normalizeFloatingPointStr(double value) {
|
|||||||
snprintf(buffer, sizeof(buffer), "%.16g", value);
|
snprintf(buffer, sizeof(buffer), "%.16g", value);
|
||||||
#endif
|
#endif
|
||||||
buffer[sizeof(buffer) - 1] = 0;
|
buffer[sizeof(buffer) - 1] = 0;
|
||||||
JSONCPP_STRING s(buffer);
|
std::string s(buffer);
|
||||||
JSONCPP_STRING::size_type index = s.find_last_of("eE");
|
std::string::size_type index = s.find_last_of("eE");
|
||||||
if (index != JSONCPP_STRING::npos) {
|
if (index != std::string::npos) {
|
||||||
JSONCPP_STRING::size_type hasSign =
|
std::string::size_type hasSign =
|
||||||
(s[index + 1] == '+' || s[index + 1] == '-') ? 1 : 0;
|
(s[index + 1] == '+' || s[index + 1] == '-') ? 1 : 0;
|
||||||
JSONCPP_STRING::size_type exponentStartIndex = index + 1 + hasSign;
|
std::string::size_type exponentStartIndex = index + 1 + hasSign;
|
||||||
JSONCPP_STRING normalized = s.substr(0, exponentStartIndex);
|
std::string normalized = s.substr(0, exponentStartIndex);
|
||||||
JSONCPP_STRING::size_type indexDigit =
|
std::string::size_type indexDigit =
|
||||||
s.find_first_not_of('0', exponentStartIndex);
|
s.find_first_not_of('0', exponentStartIndex);
|
||||||
JSONCPP_STRING exponent = "0";
|
std::string exponent = "0";
|
||||||
if (indexDigit !=
|
if (indexDigit !=
|
||||||
JSONCPP_STRING::npos) // There is an exponent different from 0
|
std::string::npos) // There is an exponent different from 0
|
||||||
{
|
{
|
||||||
exponent = s.substr(indexDigit);
|
exponent = s.substr(indexDigit);
|
||||||
}
|
}
|
||||||
@@ -52,18 +52,17 @@ static JSONCPP_STRING normalizeFloatingPointStr(double value) {
|
|||||||
return s;
|
return s;
|
||||||
}
|
}
|
||||||
|
|
||||||
static JSONCPP_STRING readInputTestFile(const char* path) {
|
static std::string readInputTestFile(const char* path) {
|
||||||
FILE* file = fopen(path, "rb");
|
FILE* file = fopen(path, "rb");
|
||||||
if (!file)
|
if (!file)
|
||||||
return JSONCPP_STRING("");
|
return std::string("");
|
||||||
fseek(file, 0, SEEK_END);
|
fseek(file, 0, SEEK_END);
|
||||||
long const size = ftell(file);
|
long size = ftell(file);
|
||||||
unsigned long const usize = static_cast<unsigned long>(size);
|
|
||||||
fseek(file, 0, SEEK_SET);
|
fseek(file, 0, SEEK_SET);
|
||||||
JSONCPP_STRING text;
|
std::string text;
|
||||||
char* buffer = new char[size + 1];
|
char* buffer = new char[size + 1];
|
||||||
buffer[size] = 0;
|
buffer[size] = 0;
|
||||||
if (fread(buffer, 1, usize, file) == usize)
|
if (fread(buffer, 1, size, file) == (unsigned long)size)
|
||||||
text = buffer;
|
text = buffer;
|
||||||
fclose(file);
|
fclose(file);
|
||||||
delete[] buffer;
|
delete[] buffer;
|
||||||
@@ -71,7 +70,7 @@ static JSONCPP_STRING readInputTestFile(const char* path) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
printValueTree(FILE* fout, Json::Value& value, const JSONCPP_STRING& path = ".") {
|
printValueTree(FILE* fout, Json::Value& value, const std::string& path = ".") {
|
||||||
if (value.hasComment(Json::commentBefore)) {
|
if (value.hasComment(Json::commentBefore)) {
|
||||||
fprintf(fout, "%s\n", value.getComment(Json::commentBefore).c_str());
|
fprintf(fout, "%s\n", value.getComment(Json::commentBefore).c_str());
|
||||||
}
|
}
|
||||||
@@ -105,8 +104,8 @@ printValueTree(FILE* fout, Json::Value& value, const JSONCPP_STRING& path = ".")
|
|||||||
break;
|
break;
|
||||||
case Json::arrayValue: {
|
case Json::arrayValue: {
|
||||||
fprintf(fout, "%s=[]\n", path.c_str());
|
fprintf(fout, "%s=[]\n", path.c_str());
|
||||||
Json::ArrayIndex size = value.size();
|
int size = value.size();
|
||||||
for (Json::ArrayIndex index = 0; index < size; ++index) {
|
for (int index = 0; index < size; ++index) {
|
||||||
static char buffer[16];
|
static char buffer[16];
|
||||||
#if defined(_MSC_VER) && defined(__STDC_SECURE_LIB__)
|
#if defined(_MSC_VER) && defined(__STDC_SECURE_LIB__)
|
||||||
sprintf_s(buffer, sizeof(buffer), "[%d]", index);
|
sprintf_s(buffer, sizeof(buffer), "[%d]", index);
|
||||||
@@ -120,11 +119,11 @@ printValueTree(FILE* fout, Json::Value& value, const JSONCPP_STRING& path = ".")
|
|||||||
fprintf(fout, "%s={}\n", path.c_str());
|
fprintf(fout, "%s={}\n", path.c_str());
|
||||||
Json::Value::Members members(value.getMemberNames());
|
Json::Value::Members members(value.getMemberNames());
|
||||||
std::sort(members.begin(), members.end());
|
std::sort(members.begin(), members.end());
|
||||||
JSONCPP_STRING suffix = *(path.end() - 1) == '.' ? "" : ".";
|
std::string suffix = *(path.end() - 1) == '.' ? "" : ".";
|
||||||
for (Json::Value::Members::iterator it = members.begin();
|
for (Json::Value::Members::iterator it = members.begin();
|
||||||
it != members.end();
|
it != members.end();
|
||||||
++it) {
|
++it) {
|
||||||
const JSONCPP_STRING name = *it;
|
const std::string& name = *it;
|
||||||
printValueTree(fout, value[name], path + suffix + name);
|
printValueTree(fout, value[name], path + suffix + name);
|
||||||
}
|
}
|
||||||
} break;
|
} break;
|
||||||
@@ -137,15 +136,15 @@ printValueTree(FILE* fout, Json::Value& value, const JSONCPP_STRING& path = ".")
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static int parseAndSaveValueTree(const JSONCPP_STRING& input,
|
static int parseAndSaveValueTree(const std::string& input,
|
||||||
const JSONCPP_STRING& actual,
|
const std::string& actual,
|
||||||
const JSONCPP_STRING& kind,
|
const std::string& kind,
|
||||||
const Json::Features& features,
|
const Json::Features& features,
|
||||||
bool parseOnly,
|
bool parseOnly,
|
||||||
Json::Value* root)
|
Json::Value* root)
|
||||||
{
|
{
|
||||||
Json::Reader reader(features);
|
Json::Reader reader(features);
|
||||||
bool parsingSuccessful = reader.parse(input.data(), input.data() + input.size(), *root);
|
bool parsingSuccessful = reader.parse(input, *root);
|
||||||
if (!parsingSuccessful) {
|
if (!parsingSuccessful) {
|
||||||
printf("Failed to parse %s file: \n%s\n",
|
printf("Failed to parse %s file: \n%s\n",
|
||||||
kind.c_str(),
|
kind.c_str(),
|
||||||
@@ -163,36 +162,36 @@ static int parseAndSaveValueTree(const JSONCPP_STRING& input,
|
|||||||
}
|
}
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
// static JSONCPP_STRING useFastWriter(Json::Value const& root) {
|
// static std::string useFastWriter(Json::Value const& root) {
|
||||||
// Json::FastWriter writer;
|
// Json::FastWriter writer;
|
||||||
// writer.enableYAMLCompatibility();
|
// writer.enableYAMLCompatibility();
|
||||||
// return writer.write(root);
|
// return writer.write(root);
|
||||||
// }
|
// }
|
||||||
static JSONCPP_STRING useStyledWriter(
|
static std::string useStyledWriter(
|
||||||
Json::Value const& root)
|
Json::Value const& root)
|
||||||
{
|
{
|
||||||
Json::StyledWriter writer;
|
Json::StyledWriter writer;
|
||||||
return writer.write(root);
|
return writer.write(root);
|
||||||
}
|
}
|
||||||
static JSONCPP_STRING useStyledStreamWriter(
|
static std::string useStyledStreamWriter(
|
||||||
Json::Value const& root)
|
Json::Value const& root)
|
||||||
{
|
{
|
||||||
Json::StyledStreamWriter writer;
|
Json::StyledStreamWriter writer;
|
||||||
JSONCPP_OSTRINGSTREAM sout;
|
std::ostringstream sout;
|
||||||
writer.write(sout, root);
|
writer.write(sout, root);
|
||||||
return sout.str();
|
return sout.str();
|
||||||
}
|
}
|
||||||
static JSONCPP_STRING useBuiltStyledStreamWriter(
|
static std::string useBuiltStyledStreamWriter(
|
||||||
Json::Value const& root)
|
Json::Value const& root)
|
||||||
{
|
{
|
||||||
Json::StreamWriterBuilder builder;
|
Json::StreamWriterBuilder builder;
|
||||||
return Json::writeString(builder, root);
|
return Json::writeString(builder, root);
|
||||||
}
|
}
|
||||||
static int rewriteValueTree(
|
static int rewriteValueTree(
|
||||||
const JSONCPP_STRING& rewritePath,
|
const std::string& rewritePath,
|
||||||
const Json::Value& root,
|
const Json::Value& root,
|
||||||
Options::writeFuncType write,
|
Options::writeFuncType write,
|
||||||
JSONCPP_STRING* rewrite)
|
std::string* rewrite)
|
||||||
{
|
{
|
||||||
*rewrite = write(root);
|
*rewrite = write(root);
|
||||||
FILE* fout = fopen(rewritePath.c_str(), "wt");
|
FILE* fout = fopen(rewritePath.c_str(), "wt");
|
||||||
@@ -205,13 +204,13 @@ static int rewriteValueTree(
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static JSONCPP_STRING removeSuffix(const JSONCPP_STRING& path,
|
static std::string removeSuffix(const std::string& path,
|
||||||
const JSONCPP_STRING& extension) {
|
const std::string& extension) {
|
||||||
if (extension.length() >= path.length())
|
if (extension.length() >= path.length())
|
||||||
return JSONCPP_STRING("");
|
return std::string("");
|
||||||
JSONCPP_STRING suffix = path.substr(path.length() - extension.length());
|
std::string suffix = path.substr(path.length() - extension.length());
|
||||||
if (suffix != extension)
|
if (suffix != extension)
|
||||||
return JSONCPP_STRING("");
|
return std::string("");
|
||||||
return path.substr(0, path.length() - extension.length());
|
return path.substr(0, path.length() - extension.length());
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -238,18 +237,18 @@ static int parseCommandLine(
|
|||||||
return printUsage(argv);
|
return printUsage(argv);
|
||||||
}
|
}
|
||||||
int index = 1;
|
int index = 1;
|
||||||
if (JSONCPP_STRING(argv[index]) == "--json-checker") {
|
if (std::string(argv[index]) == "--json-checker") {
|
||||||
opts->features = Json::Features::strictMode();
|
opts->features = Json::Features::strictMode();
|
||||||
opts->parseOnly = true;
|
opts->parseOnly = true;
|
||||||
++index;
|
++index;
|
||||||
}
|
}
|
||||||
if (JSONCPP_STRING(argv[index]) == "--json-config") {
|
if (std::string(argv[index]) == "--json-config") {
|
||||||
printConfig();
|
printConfig();
|
||||||
return 3;
|
return 3;
|
||||||
}
|
}
|
||||||
if (JSONCPP_STRING(argv[index]) == "--json-writer") {
|
if (std::string(argv[index]) == "--json-writer") {
|
||||||
++index;
|
++index;
|
||||||
JSONCPP_STRING const writerName(argv[index++]);
|
std::string const writerName(argv[index++]);
|
||||||
if (writerName == "StyledWriter") {
|
if (writerName == "StyledWriter") {
|
||||||
opts->write = &useStyledWriter;
|
opts->write = &useStyledWriter;
|
||||||
} else if (writerName == "StyledStreamWriter") {
|
} else if (writerName == "StyledStreamWriter") {
|
||||||
@@ -271,22 +270,22 @@ static int runTest(Options const& opts)
|
|||||||
{
|
{
|
||||||
int exitCode = 0;
|
int exitCode = 0;
|
||||||
|
|
||||||
JSONCPP_STRING input = readInputTestFile(opts.path.c_str());
|
std::string input = readInputTestFile(opts.path.c_str());
|
||||||
if (input.empty()) {
|
if (input.empty()) {
|
||||||
printf("Failed to read input or empty input: %s\n", opts.path.c_str());
|
printf("Failed to read input or empty input: %s\n", opts.path.c_str());
|
||||||
return 3;
|
return 3;
|
||||||
}
|
}
|
||||||
|
|
||||||
JSONCPP_STRING basePath = removeSuffix(opts.path, ".json");
|
std::string basePath = removeSuffix(opts.path, ".json");
|
||||||
if (!opts.parseOnly && basePath.empty()) {
|
if (!opts.parseOnly && basePath.empty()) {
|
||||||
printf("Bad input path. Path does not end with '.expected':\n%s\n",
|
printf("Bad input path. Path does not end with '.expected':\n%s\n",
|
||||||
opts.path.c_str());
|
opts.path.c_str());
|
||||||
return 3;
|
return 3;
|
||||||
}
|
}
|
||||||
|
|
||||||
JSONCPP_STRING const actualPath = basePath + ".actual";
|
std::string const actualPath = basePath + ".actual";
|
||||||
JSONCPP_STRING const rewritePath = basePath + ".rewrite";
|
std::string const rewritePath = basePath + ".rewrite";
|
||||||
JSONCPP_STRING const rewriteActualPath = basePath + ".actual-rewrite";
|
std::string const rewriteActualPath = basePath + ".actual-rewrite";
|
||||||
|
|
||||||
Json::Value root;
|
Json::Value root;
|
||||||
exitCode = parseAndSaveValueTree(
|
exitCode = parseAndSaveValueTree(
|
||||||
@@ -295,7 +294,7 @@ static int runTest(Options const& opts)
|
|||||||
if (exitCode || opts.parseOnly) {
|
if (exitCode || opts.parseOnly) {
|
||||||
return exitCode;
|
return exitCode;
|
||||||
}
|
}
|
||||||
JSONCPP_STRING rewrite;
|
std::string rewrite;
|
||||||
exitCode = rewriteValueTree(rewritePath, root, opts.write, &rewrite);
|
exitCode = rewriteValueTree(rewritePath, root, opts.write, &rewrite);
|
||||||
if (exitCode) {
|
if (exitCode) {
|
||||||
return exitCode;
|
return exitCode;
|
||||||
@@ -311,12 +310,12 @@ static int runTest(Options const& opts)
|
|||||||
}
|
}
|
||||||
int main(int argc, const char* argv[]) {
|
int main(int argc, const char* argv[]) {
|
||||||
Options opts;
|
Options opts;
|
||||||
try {
|
|
||||||
int exitCode = parseCommandLine(argc, argv, &opts);
|
int exitCode = parseCommandLine(argc, argv, &opts);
|
||||||
if (exitCode != 0) {
|
if (exitCode != 0) {
|
||||||
printf("Failed to parse command-line.");
|
printf("Failed to parse command-line.");
|
||||||
return exitCode;
|
return exitCode;
|
||||||
}
|
}
|
||||||
|
try {
|
||||||
return runTest(opts);
|
return runTest(opts);
|
||||||
}
|
}
|
||||||
catch (const std::exception& e) {
|
catch (const std::exception& e) {
|
||||||
|
@@ -1,41 +1,20 @@
|
|||||||
IF( CMAKE_COMPILER_IS_GNUCXX )
|
OPTION(JSONCPP_LIB_BUILD_SHARED "Build jsoncpp_lib as a shared library." OFF)
|
||||||
#Get compiler version.
|
OPTION(JSONCPP_LIB_BUILD_STATIC "Build jsoncpp_lib static library." ON)
|
||||||
EXECUTE_PROCESS( COMMAND ${CMAKE_CXX_COMPILER} -dumpversion
|
|
||||||
OUTPUT_VARIABLE GNUCXX_VERSION )
|
|
||||||
|
|
||||||
#-Werror=* was introduced -after- GCC 4.1.2
|
IF(BUILD_SHARED_LIBS)
|
||||||
IF( GNUCXX_VERSION VERSION_GREATER 4.1.2 )
|
SET(JSONCPP_LIB_BUILD_SHARED ON)
|
||||||
SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Werror=strict-aliasing")
|
ENDIF(BUILD_SHARED_LIBS)
|
||||||
ENDIF()
|
|
||||||
ENDIF( CMAKE_COMPILER_IS_GNUCXX )
|
|
||||||
|
|
||||||
INCLUDE(CheckIncludeFileCXX)
|
if( CMAKE_COMPILER_IS_GNUCXX )
|
||||||
INCLUDE(CheckTypeSize)
|
#Get compiler version.
|
||||||
INCLUDE(CheckStructHasMember)
|
execute_process( COMMAND ${CMAKE_CXX_COMPILER} -dumpversion
|
||||||
INCLUDE(CheckCXXSymbolExists)
|
OUTPUT_VARIABLE GNUCXX_VERSION )
|
||||||
|
|
||||||
check_include_file_cxx(clocale HAVE_CLOCALE)
|
#-Werror=* was introduced -after- GCC 4.1.2
|
||||||
check_cxx_symbol_exists(localeconv clocale HAVE_LOCALECONV)
|
if( GNUCXX_VERSION VERSION_GREATER 4.1.2 )
|
||||||
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Werror=strict-aliasing")
|
||||||
IF(CMAKE_VERSION VERSION_LESS 3.0.0)
|
endif()
|
||||||
# The "LANGUAGE CXX" parameter is not supported in CMake versions below 3,
|
endif( CMAKE_COMPILER_IS_GNUCXX )
|
||||||
# so the C compiler and header has to be used.
|
|
||||||
check_include_file(locale.h HAVE_LOCALE_H)
|
|
||||||
SET(CMAKE_EXTRA_INCLUDE_FILES locale.h)
|
|
||||||
check_type_size("struct lconv" LCONV_SIZE)
|
|
||||||
UNSET(CMAKE_EXTRA_INCLUDE_FILES)
|
|
||||||
check_struct_has_member("struct lconv" decimal_point locale.h HAVE_DECIMAL_POINT)
|
|
||||||
ELSE()
|
|
||||||
SET(CMAKE_EXTRA_INCLUDE_FILES clocale)
|
|
||||||
check_type_size(lconv LCONV_SIZE LANGUAGE CXX)
|
|
||||||
UNSET(CMAKE_EXTRA_INCLUDE_FILES)
|
|
||||||
check_struct_has_member(lconv decimal_point clocale HAVE_DECIMAL_POINT LANGUAGE CXX)
|
|
||||||
ENDIF()
|
|
||||||
|
|
||||||
IF(NOT (HAVE_CLOCALE AND HAVE_LCONV_SIZE AND HAVE_DECIMAL_POINT AND HAVE_LOCALECONV))
|
|
||||||
MESSAGE(WARNING "Locale functionality is not supported")
|
|
||||||
ADD_DEFINITIONS(-DJSONCPP_NO_LOCALE_SUPPORT)
|
|
||||||
ENDIF()
|
|
||||||
|
|
||||||
SET( JSONCPP_INCLUDE_DIR ../../include )
|
SET( JSONCPP_INCLUDE_DIR ../../include )
|
||||||
|
|
||||||
@@ -65,49 +44,42 @@ IF(JSONCPP_WITH_CMAKE_PACKAGE)
|
|||||||
SET(INSTALL_EXPORT EXPORT jsoncpp)
|
SET(INSTALL_EXPORT EXPORT jsoncpp)
|
||||||
ELSE(JSONCPP_WITH_CMAKE_PACKAGE)
|
ELSE(JSONCPP_WITH_CMAKE_PACKAGE)
|
||||||
SET(INSTALL_EXPORT)
|
SET(INSTALL_EXPORT)
|
||||||
ENDIF()
|
ENDIF(JSONCPP_WITH_CMAKE_PACKAGE)
|
||||||
|
|
||||||
IF(BUILD_SHARED_LIBS)
|
IF(JSONCPP_LIB_BUILD_SHARED)
|
||||||
ADD_DEFINITIONS( -DJSON_DLL_BUILD )
|
ADD_DEFINITIONS( -DJSON_DLL_BUILD )
|
||||||
ADD_LIBRARY(jsoncpp_lib SHARED ${PUBLIC_HEADERS} ${jsoncpp_sources})
|
ADD_LIBRARY(jsoncpp_lib SHARED ${PUBLIC_HEADERS} ${jsoncpp_sources})
|
||||||
SET_TARGET_PROPERTIES( jsoncpp_lib PROPERTIES VERSION ${JSONCPP_VERSION} SOVERSION ${JSONCPP_SOVERSION})
|
SET_TARGET_PROPERTIES( jsoncpp_lib PROPERTIES VERSION ${JSONCPP_VERSION} SOVERSION ${JSONCPP_VERSION_MAJOR})
|
||||||
SET_TARGET_PROPERTIES( jsoncpp_lib PROPERTIES OUTPUT_NAME jsoncpp
|
SET_TARGET_PROPERTIES( jsoncpp_lib PROPERTIES OUTPUT_NAME jsoncpp )
|
||||||
DEBUG_OUTPUT_NAME jsoncpp${DEBUG_LIBNAME_SUFFIX} )
|
|
||||||
|
|
||||||
# Set library's runtime search path on OSX
|
|
||||||
IF(APPLE)
|
|
||||||
SET_TARGET_PROPERTIES( jsoncpp_lib PROPERTIES INSTALL_RPATH "@loader_path/." )
|
|
||||||
ENDIF()
|
|
||||||
|
|
||||||
INSTALL( TARGETS jsoncpp_lib ${INSTALL_EXPORT}
|
INSTALL( TARGETS jsoncpp_lib ${INSTALL_EXPORT}
|
||||||
RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR}
|
RUNTIME DESTINATION ${RUNTIME_INSTALL_DIR}
|
||||||
LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR}
|
LIBRARY DESTINATION ${LIBRARY_INSTALL_DIR}
|
||||||
ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR})
|
ARCHIVE DESTINATION ${ARCHIVE_INSTALL_DIR})
|
||||||
|
|
||||||
IF(NOT CMAKE_VERSION VERSION_LESS 2.8.11)
|
IF(NOT CMAKE_VERSION VERSION_LESS 2.8.11)
|
||||||
TARGET_INCLUDE_DIRECTORIES( jsoncpp_lib PUBLIC
|
TARGET_INCLUDE_DIRECTORIES( jsoncpp_lib PUBLIC
|
||||||
$<INSTALL_INTERFACE:${CMAKE_INSTALL_INCLUDEDIR}>
|
$<INSTALL_INTERFACE:${INCLUDE_INSTALL_DIR}>
|
||||||
$<BUILD_INTERFACE:${CMAKE_CURRENT_LIST_DIR}/${JSONCPP_INCLUDE_DIR}>)
|
$<BUILD_INTERFACE:${CMAKE_CURRENT_LIST_DIR}/${JSONCPP_INCLUDE_DIR}>)
|
||||||
ENDIF()
|
ENDIF(NOT CMAKE_VERSION VERSION_LESS 2.8.11)
|
||||||
|
|
||||||
ENDIF()
|
ENDIF()
|
||||||
|
|
||||||
IF(BUILD_STATIC_LIBS)
|
IF(JSONCPP_LIB_BUILD_STATIC)
|
||||||
ADD_LIBRARY(jsoncpp_lib_static STATIC ${PUBLIC_HEADERS} ${jsoncpp_sources})
|
ADD_LIBRARY(jsoncpp_lib_static STATIC ${PUBLIC_HEADERS} ${jsoncpp_sources})
|
||||||
SET_TARGET_PROPERTIES( jsoncpp_lib_static PROPERTIES VERSION ${JSONCPP_VERSION} SOVERSION ${JSONCPP_SOVERSION})
|
SET_TARGET_PROPERTIES( jsoncpp_lib_static PROPERTIES VERSION ${JSONCPP_VERSION} SOVERSION ${JSONCPP_VERSION_MAJOR})
|
||||||
SET_TARGET_PROPERTIES( jsoncpp_lib_static PROPERTIES OUTPUT_NAME jsoncpp
|
SET_TARGET_PROPERTIES( jsoncpp_lib_static PROPERTIES OUTPUT_NAME jsoncpp )
|
||||||
DEBUG_OUTPUT_NAME jsoncpp${DEBUG_LIBNAME_SUFFIX} )
|
|
||||||
|
|
||||||
INSTALL( TARGETS jsoncpp_lib_static ${INSTALL_EXPORT}
|
INSTALL( TARGETS jsoncpp_lib_static ${INSTALL_EXPORT}
|
||||||
RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR}
|
RUNTIME DESTINATION ${RUNTIME_INSTALL_DIR}
|
||||||
LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR}
|
LIBRARY DESTINATION ${LIBRARY_INSTALL_DIR}
|
||||||
ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR})
|
ARCHIVE DESTINATION ${ARCHIVE_INSTALL_DIR})
|
||||||
|
|
||||||
IF(NOT CMAKE_VERSION VERSION_LESS 2.8.11)
|
IF(NOT CMAKE_VERSION VERSION_LESS 2.8.11)
|
||||||
TARGET_INCLUDE_DIRECTORIES( jsoncpp_lib_static PUBLIC
|
TARGET_INCLUDE_DIRECTORIES( jsoncpp_lib_static PUBLIC
|
||||||
$<INSTALL_INTERFACE:${CMAKE_INSTALL_INCLUDEDIR}>
|
$<INSTALL_INTERFACE:${INCLUDE_INSTALL_DIR}>
|
||||||
$<BUILD_INTERFACE:${CMAKE_CURRENT_LIST_DIR}/${JSONCPP_INCLUDE_DIR}>
|
$<BUILD_INTERFACE:${CMAKE_CURRENT_LIST_DIR}/${JSONCPP_INCLUDE_DIR}>
|
||||||
)
|
)
|
||||||
ENDIF()
|
ENDIF(NOT CMAKE_VERSION VERSION_LESS 2.8.11)
|
||||||
|
|
||||||
ENDIF()
|
ENDIF()
|
||||||
|
File diff suppressed because it is too large
Load Diff
@@ -6,16 +6,6 @@
|
|||||||
#ifndef LIB_JSONCPP_JSON_TOOL_H_INCLUDED
|
#ifndef LIB_JSONCPP_JSON_TOOL_H_INCLUDED
|
||||||
#define LIB_JSONCPP_JSON_TOOL_H_INCLUDED
|
#define LIB_JSONCPP_JSON_TOOL_H_INCLUDED
|
||||||
|
|
||||||
|
|
||||||
// Also support old flag NO_LOCALE_SUPPORT
|
|
||||||
#ifdef NO_LOCALE_SUPPORT
|
|
||||||
#define JSONCPP_NO_LOCALE_SUPPORT
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifndef JSONCPP_NO_LOCALE_SUPPORT
|
|
||||||
#include <clocale>
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/* This header provides common string manipulation support, such as UTF-8,
|
/* This header provides common string manipulation support, such as UTF-8,
|
||||||
* portable conversion from/to string...
|
* portable conversion from/to string...
|
||||||
*
|
*
|
||||||
@@ -23,18 +13,10 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
namespace Json {
|
namespace Json {
|
||||||
static char getDecimalPoint() {
|
|
||||||
#ifdef JSONCPP_NO_LOCALE_SUPPORT
|
|
||||||
return '\0';
|
|
||||||
#else
|
|
||||||
struct lconv* lc = localeconv();
|
|
||||||
return lc ? *(lc->decimal_point) : '\0';
|
|
||||||
#endif
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Converts a unicode code-point to UTF-8.
|
/// Converts a unicode code-point to UTF-8.
|
||||||
static inline JSONCPP_STRING codePointToUTF8(unsigned int cp) {
|
static inline std::string codePointToUTF8(unsigned int cp) {
|
||||||
JSONCPP_STRING result;
|
std::string result;
|
||||||
|
|
||||||
// based on description from http://en.wikipedia.org/wiki/UTF-8
|
// based on description from http://en.wikipedia.org/wiki/UTF-8
|
||||||
|
|
||||||
@@ -48,8 +30,8 @@ static inline JSONCPP_STRING codePointToUTF8(unsigned int cp) {
|
|||||||
} else if (cp <= 0xFFFF) {
|
} else if (cp <= 0xFFFF) {
|
||||||
result.resize(3);
|
result.resize(3);
|
||||||
result[2] = static_cast<char>(0x80 | (0x3f & cp));
|
result[2] = static_cast<char>(0x80 | (0x3f & cp));
|
||||||
result[1] = static_cast<char>(0x80 | (0x3f & (cp >> 6)));
|
result[1] = 0x80 | static_cast<char>((0x3f & (cp >> 6)));
|
||||||
result[0] = static_cast<char>(0xE0 | (0xf & (cp >> 12)));
|
result[0] = 0xE0 | static_cast<char>((0xf & (cp >> 12)));
|
||||||
} else if (cp <= 0x10FFFF) {
|
} else if (cp <= 0x10FFFF) {
|
||||||
result.resize(4);
|
result.resize(4);
|
||||||
result[3] = static_cast<char>(0x80 | (0x3f & cp));
|
result[3] = static_cast<char>(0x80 | (0x3f & cp));
|
||||||
@@ -61,7 +43,7 @@ static inline JSONCPP_STRING codePointToUTF8(unsigned int cp) {
|
|||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Returns true if ch is a control character (in range [1,31]).
|
/// Returns true if ch is a control character (in range [0,32[).
|
||||||
static inline bool isControlCharacter(char ch) { return ch > 0 && ch <= 0x1F; }
|
static inline bool isControlCharacter(char ch) { return ch > 0 && ch <= 0x1F; }
|
||||||
|
|
||||||
enum {
|
enum {
|
||||||
@@ -81,7 +63,7 @@ typedef char UIntToStringBuffer[uintToStringBufferSize];
|
|||||||
static inline void uintToString(LargestUInt value, char*& current) {
|
static inline void uintToString(LargestUInt value, char*& current) {
|
||||||
*--current = 0;
|
*--current = 0;
|
||||||
do {
|
do {
|
||||||
*--current = static_cast<char>(value % 10U + static_cast<unsigned>('0'));
|
*--current = char(value % 10) + '0';
|
||||||
value /= 10;
|
value /= 10;
|
||||||
} while (value != 0);
|
} while (value != 0);
|
||||||
}
|
}
|
||||||
@@ -100,18 +82,6 @@ static inline void fixNumericLocale(char* begin, char* end) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static inline void fixNumericLocaleInput(char* begin, char* end) {
|
|
||||||
char decimalPoint = getDecimalPoint();
|
|
||||||
if (decimalPoint != '\0' && decimalPoint != '.') {
|
|
||||||
while (begin < end) {
|
|
||||||
if (*begin == '.') {
|
|
||||||
*begin = decimalPoint;
|
|
||||||
}
|
|
||||||
++begin;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
} // namespace Json {
|
} // namespace Json {
|
||||||
|
|
||||||
#endif // LIB_JSONCPP_JSON_TOOL_H_INCLUDED
|
#endif // LIB_JSONCPP_JSON_TOOL_H_INCLUDED
|
||||||
|
@@ -29,24 +29,13 @@ namespace Json {
|
|||||||
#if defined(__ARMEL__)
|
#if defined(__ARMEL__)
|
||||||
#define ALIGNAS(byte_alignment) __attribute__((aligned(byte_alignment)))
|
#define ALIGNAS(byte_alignment) __attribute__((aligned(byte_alignment)))
|
||||||
#else
|
#else
|
||||||
|
// This exists for binary compatibility only. Use nullRef.
|
||||||
|
const Value Value::null;
|
||||||
#define ALIGNAS(byte_alignment)
|
#define ALIGNAS(byte_alignment)
|
||||||
#endif
|
#endif
|
||||||
//static const unsigned char ALIGNAS(8) kNull[sizeof(Value)] = { 0 };
|
static const unsigned char ALIGNAS(8) kNull[sizeof(Value)] = { 0 };
|
||||||
//const unsigned char& kNullRef = kNull[0];
|
const unsigned char& kNullRef = kNull[0];
|
||||||
//const Value& Value::null = reinterpret_cast<const Value&>(kNullRef);
|
const Value& Value::nullRef = reinterpret_cast<const Value&>(kNullRef);
|
||||||
//const Value& Value::nullRef = null;
|
|
||||||
|
|
||||||
// static
|
|
||||||
Value const& Value::nullSingleton()
|
|
||||||
{
|
|
||||||
static Value const nullStatic;
|
|
||||||
return nullStatic;
|
|
||||||
}
|
|
||||||
|
|
||||||
// for backwards compatibility, we'll leave these global references around, but DO NOT
|
|
||||||
// use them in JSONCPP library code any more!
|
|
||||||
Value const& Value::null = Value::nullSingleton();
|
|
||||||
Value const& Value::nullRef = Value::nullSingleton();
|
|
||||||
|
|
||||||
const Int Value::minInt = Int(~(UInt(-1) / 2));
|
const Int Value::minInt = Int(~(UInt(-1) / 2));
|
||||||
const Int Value::maxInt = Int(UInt(-1) / 2);
|
const Int Value::maxInt = Int(UInt(-1) / 2);
|
||||||
@@ -67,14 +56,11 @@ const LargestUInt Value::maxLargestUInt = LargestUInt(-1);
|
|||||||
#if !defined(JSON_USE_INT64_DOUBLE_CONVERSION)
|
#if !defined(JSON_USE_INT64_DOUBLE_CONVERSION)
|
||||||
template <typename T, typename U>
|
template <typename T, typename U>
|
||||||
static inline bool InRange(double d, T min, U max) {
|
static inline bool InRange(double d, T min, U max) {
|
||||||
// The casts can lose precision, but we are looking only for
|
|
||||||
// an approximate range. Might fail on edge cases though. ~cdunn
|
|
||||||
//return d >= static_cast<double>(min) && d <= static_cast<double>(max);
|
|
||||||
return d >= min && d <= max;
|
return d >= min && d <= max;
|
||||||
}
|
}
|
||||||
#else // if !defined(JSON_USE_INT64_DOUBLE_CONVERSION)
|
#else // if !defined(JSON_USE_INT64_DOUBLE_CONVERSION)
|
||||||
static inline double integerToDouble(Json::UInt64 value) {
|
static inline double integerToDouble(Json::UInt64 value) {
|
||||||
return static_cast<double>(Int64(value / 2)) * 2.0 + static_cast<double>(Int64(value & 1));
|
return static_cast<double>(Int64(value / 2)) * 2.0 + Int64(value & 1);
|
||||||
}
|
}
|
||||||
|
|
||||||
template <typename T> static inline double integerToDouble(T value) {
|
template <typename T> static inline double integerToDouble(T value) {
|
||||||
@@ -95,19 +81,16 @@ static inline bool InRange(double d, T min, U max) {
|
|||||||
* @return Pointer on the duplicate instance of string.
|
* @return Pointer on the duplicate instance of string.
|
||||||
*/
|
*/
|
||||||
static inline char* duplicateStringValue(const char* value,
|
static inline char* duplicateStringValue(const char* value,
|
||||||
size_t length)
|
size_t length) {
|
||||||
{
|
|
||||||
// Avoid an integer overflow in the call to malloc below by limiting length
|
// Avoid an integer overflow in the call to malloc below by limiting length
|
||||||
// to a sane value.
|
// to a sane value.
|
||||||
if (length >= static_cast<size_t>(Value::maxInt))
|
if (length >= (size_t)Value::maxInt)
|
||||||
length = Value::maxInt - 1;
|
length = Value::maxInt - 1;
|
||||||
|
|
||||||
char* newString = static_cast<char*>(malloc(length + 1));
|
char* newString = static_cast<char*>(malloc(length + 1));
|
||||||
if (newString == NULL) {
|
JSON_ASSERT_MESSAGE(newString != 0,
|
||||||
throwRuntimeError(
|
"in Json::Value::duplicateStringValue(): "
|
||||||
"in Json::Value::duplicateStringValue(): "
|
"Failed to allocate string value buffer");
|
||||||
"Failed to allocate string value buffer");
|
|
||||||
}
|
|
||||||
memcpy(newString, value, length);
|
memcpy(newString, value, length);
|
||||||
newString[length] = 0;
|
newString[length] = 0;
|
||||||
return newString;
|
return newString;
|
||||||
@@ -121,16 +104,14 @@ static inline char* duplicateAndPrefixStringValue(
|
|||||||
{
|
{
|
||||||
// Avoid an integer overflow in the call to malloc below by limiting length
|
// Avoid an integer overflow in the call to malloc below by limiting length
|
||||||
// to a sane value.
|
// to a sane value.
|
||||||
JSON_ASSERT_MESSAGE(length <= static_cast<unsigned>(Value::maxInt) - sizeof(unsigned) - 1U,
|
JSON_ASSERT_MESSAGE(length <= (unsigned)Value::maxInt - sizeof(unsigned) - 1U,
|
||||||
"in Json::Value::duplicateAndPrefixStringValue(): "
|
"in Json::Value::duplicateAndPrefixStringValue(): "
|
||||||
"length too big for prefixing");
|
"length too big for prefixing");
|
||||||
unsigned actualLength = length + static_cast<unsigned>(sizeof(unsigned)) + 1U;
|
unsigned actualLength = length + sizeof(unsigned) + 1U;
|
||||||
char* newString = static_cast<char*>(malloc(actualLength));
|
char* newString = static_cast<char*>(malloc(actualLength));
|
||||||
if (newString == 0) {
|
JSON_ASSERT_MESSAGE(newString != 0,
|
||||||
throwRuntimeError(
|
"in Json::Value::duplicateAndPrefixStringValue(): "
|
||||||
"in Json::Value::duplicateAndPrefixStringValue(): "
|
"Failed to allocate string value buffer");
|
||||||
"Failed to allocate string value buffer");
|
|
||||||
}
|
|
||||||
*reinterpret_cast<unsigned*>(newString) = length;
|
*reinterpret_cast<unsigned*>(newString) = length;
|
||||||
memcpy(newString + sizeof(unsigned), value, length);
|
memcpy(newString + sizeof(unsigned), value, length);
|
||||||
newString[actualLength - 1U] = 0; // to avoid buffer over-run accidents by users later
|
newString[actualLength - 1U] = 0; // to avoid buffer over-run accidents by users later
|
||||||
@@ -141,7 +122,7 @@ inline static void decodePrefixedString(
|
|||||||
unsigned* length, char const** value)
|
unsigned* length, char const** value)
|
||||||
{
|
{
|
||||||
if (!isPrefixed) {
|
if (!isPrefixed) {
|
||||||
*length = static_cast<unsigned>(strlen(prefixed));
|
*length = strlen(prefixed);
|
||||||
*value = prefixed;
|
*value = prefixed;
|
||||||
} else {
|
} else {
|
||||||
*length = *reinterpret_cast<unsigned const*>(prefixed);
|
*length = *reinterpret_cast<unsigned const*>(prefixed);
|
||||||
@@ -150,29 +131,7 @@ inline static void decodePrefixedString(
|
|||||||
}
|
}
|
||||||
/** Free the string duplicated by duplicateStringValue()/duplicateAndPrefixStringValue().
|
/** Free the string duplicated by duplicateStringValue()/duplicateAndPrefixStringValue().
|
||||||
*/
|
*/
|
||||||
#if JSONCPP_USING_SECURE_MEMORY
|
static inline void releaseStringValue(char* value) { free(value); }
|
||||||
static inline void releasePrefixedStringValue(char* value) {
|
|
||||||
unsigned length = 0;
|
|
||||||
char const* valueDecoded;
|
|
||||||
decodePrefixedString(true, value, &length, &valueDecoded);
|
|
||||||
size_t const size = sizeof(unsigned) + length + 1U;
|
|
||||||
memset(value, 0, size);
|
|
||||||
free(value);
|
|
||||||
}
|
|
||||||
static inline void releaseStringValue(char* value, unsigned length) {
|
|
||||||
// length==0 => we allocated the strings memory
|
|
||||||
size_t size = (length==0) ? strlen(value) : length;
|
|
||||||
memset(value, 0, size);
|
|
||||||
free(value);
|
|
||||||
}
|
|
||||||
#else // !JSONCPP_USING_SECURE_MEMORY
|
|
||||||
static inline void releasePrefixedStringValue(char* value) {
|
|
||||||
free(value);
|
|
||||||
}
|
|
||||||
static inline void releaseStringValue(char* value, unsigned) {
|
|
||||||
free(value);
|
|
||||||
}
|
|
||||||
#endif // JSONCPP_USING_SECURE_MEMORY
|
|
||||||
|
|
||||||
} // namespace Json
|
} // namespace Json
|
||||||
|
|
||||||
@@ -190,30 +149,6 @@ static inline void releaseStringValue(char* value, unsigned) {
|
|||||||
|
|
||||||
namespace Json {
|
namespace Json {
|
||||||
|
|
||||||
Exception::Exception(JSONCPP_STRING const& msg)
|
|
||||||
: msg_(msg)
|
|
||||||
{}
|
|
||||||
Exception::~Exception() JSONCPP_NOEXCEPT
|
|
||||||
{}
|
|
||||||
char const* Exception::what() const JSONCPP_NOEXCEPT
|
|
||||||
{
|
|
||||||
return msg_.c_str();
|
|
||||||
}
|
|
||||||
RuntimeError::RuntimeError(JSONCPP_STRING const& msg)
|
|
||||||
: Exception(msg)
|
|
||||||
{}
|
|
||||||
LogicError::LogicError(JSONCPP_STRING const& msg)
|
|
||||||
: Exception(msg)
|
|
||||||
{}
|
|
||||||
JSONCPP_NORETURN void throwRuntimeError(JSONCPP_STRING const& msg)
|
|
||||||
{
|
|
||||||
throw RuntimeError(msg);
|
|
||||||
}
|
|
||||||
JSONCPP_NORETURN void throwLogicError(JSONCPP_STRING const& msg)
|
|
||||||
{
|
|
||||||
throw LogicError(msg);
|
|
||||||
}
|
|
||||||
|
|
||||||
// //////////////////////////////////////////////////////////////////
|
// //////////////////////////////////////////////////////////////////
|
||||||
// //////////////////////////////////////////////////////////////////
|
// //////////////////////////////////////////////////////////////////
|
||||||
// //////////////////////////////////////////////////////////////////
|
// //////////////////////////////////////////////////////////////////
|
||||||
@@ -222,17 +157,16 @@ JSONCPP_NORETURN void throwLogicError(JSONCPP_STRING const& msg)
|
|||||||
// //////////////////////////////////////////////////////////////////
|
// //////////////////////////////////////////////////////////////////
|
||||||
// //////////////////////////////////////////////////////////////////
|
// //////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
Value::CommentInfo::CommentInfo() : comment_(0)
|
Value::CommentInfo::CommentInfo() : comment_(0) {}
|
||||||
{}
|
|
||||||
|
|
||||||
Value::CommentInfo::~CommentInfo() {
|
Value::CommentInfo::~CommentInfo() {
|
||||||
if (comment_)
|
if (comment_)
|
||||||
releaseStringValue(comment_, 0u);
|
releaseStringValue(comment_);
|
||||||
}
|
}
|
||||||
|
|
||||||
void Value::CommentInfo::setComment(const char* text, size_t len) {
|
void Value::CommentInfo::setComment(const char* text, size_t len) {
|
||||||
if (comment_) {
|
if (comment_) {
|
||||||
releaseStringValue(comment_, 0u);
|
releaseStringValue(comment_);
|
||||||
comment_ = 0;
|
comment_ = 0;
|
||||||
}
|
}
|
||||||
JSON_ASSERT(text != 0);
|
JSON_ASSERT(text != 0);
|
||||||
@@ -254,37 +188,31 @@ void Value::CommentInfo::setComment(const char* text, size_t len) {
|
|||||||
// Notes: policy_ indicates if the string was allocated when
|
// Notes: policy_ indicates if the string was allocated when
|
||||||
// a string is stored.
|
// a string is stored.
|
||||||
|
|
||||||
Value::CZString::CZString(ArrayIndex aindex) : cstr_(0), index_(aindex) {}
|
Value::CZString::CZString(ArrayIndex index) : cstr_(0), index_(index) {}
|
||||||
|
|
||||||
Value::CZString::CZString(char const* str, unsigned ulength, DuplicationPolicy allocate)
|
Value::CZString::CZString(char const* str, unsigned length, DuplicationPolicy allocate)
|
||||||
: cstr_(str) {
|
: cstr_(str)
|
||||||
|
{
|
||||||
// allocate != duplicate
|
// allocate != duplicate
|
||||||
storage_.policy_ = allocate & 0x3;
|
storage_.policy_ = allocate;
|
||||||
storage_.length_ = ulength & 0x3FFFFFFF;
|
storage_.length_ = length;
|
||||||
}
|
}
|
||||||
|
|
||||||
Value::CZString::CZString(const CZString& other) {
|
Value::CZString::CZString(const CZString& other)
|
||||||
cstr_ = (other.storage_.policy_ != noDuplication && other.cstr_ != 0
|
: cstr_(other.storage_.policy_ != noDuplication && other.cstr_ != 0
|
||||||
? duplicateStringValue(other.cstr_, other.storage_.length_)
|
? duplicateStringValue(other.cstr_, other.storage_.length_)
|
||||||
: other.cstr_);
|
: other.cstr_)
|
||||||
storage_.policy_ = static_cast<unsigned>(other.cstr_
|
{
|
||||||
? (static_cast<DuplicationPolicy>(other.storage_.policy_) == noDuplication
|
storage_.policy_ = (other.cstr_
|
||||||
|
? (other.storage_.policy_ == noDuplication
|
||||||
? noDuplication : duplicate)
|
? noDuplication : duplicate)
|
||||||
: static_cast<DuplicationPolicy>(other.storage_.policy_)) & 3U;
|
: other.storage_.policy_);
|
||||||
storage_.length_ = other.storage_.length_;
|
storage_.length_ = other.storage_.length_;
|
||||||
}
|
}
|
||||||
|
|
||||||
#if JSON_HAS_RVALUE_REFERENCES
|
|
||||||
Value::CZString::CZString(CZString&& other)
|
|
||||||
: cstr_(other.cstr_), index_(other.index_) {
|
|
||||||
other.cstr_ = nullptr;
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
|
|
||||||
Value::CZString::~CZString() {
|
Value::CZString::~CZString() {
|
||||||
if (cstr_ && storage_.policy_ == duplicate) {
|
if (cstr_ && storage_.policy_ == duplicate)
|
||||||
releaseStringValue(const_cast<char*>(cstr_), storage_.length_ + 1u); //+1 for null terminating character for sake of completeness but not actually necessary
|
releaseStringValue(const_cast<char*>(cstr_));
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void Value::CZString::swap(CZString& other) {
|
void Value::CZString::swap(CZString& other) {
|
||||||
@@ -303,8 +231,7 @@ bool Value::CZString::operator<(const CZString& other) const {
|
|||||||
// Assume both are strings.
|
// Assume both are strings.
|
||||||
unsigned this_len = this->storage_.length_;
|
unsigned this_len = this->storage_.length_;
|
||||||
unsigned other_len = other.storage_.length_;
|
unsigned other_len = other.storage_.length_;
|
||||||
unsigned min_len = std::min<unsigned>(this_len, other_len);
|
unsigned min_len = std::min(this_len, other_len);
|
||||||
JSON_ASSERT(this->cstr_ && other.cstr_);
|
|
||||||
int comp = memcmp(this->cstr_, other.cstr_, min_len);
|
int comp = memcmp(this->cstr_, other.cstr_, min_len);
|
||||||
if (comp < 0) return true;
|
if (comp < 0) return true;
|
||||||
if (comp > 0) return false;
|
if (comp > 0) return false;
|
||||||
@@ -318,7 +245,6 @@ bool Value::CZString::operator==(const CZString& other) const {
|
|||||||
unsigned this_len = this->storage_.length_;
|
unsigned this_len = this->storage_.length_;
|
||||||
unsigned other_len = other.storage_.length_;
|
unsigned other_len = other.storage_.length_;
|
||||||
if (this_len != other_len) return false;
|
if (this_len != other_len) return false;
|
||||||
JSON_ASSERT(this->cstr_ && other.cstr_);
|
|
||||||
int comp = memcmp(this->cstr_, other.cstr_, this_len);
|
int comp = memcmp(this->cstr_, other.cstr_, this_len);
|
||||||
return comp == 0;
|
return comp == 0;
|
||||||
}
|
}
|
||||||
@@ -342,10 +268,9 @@ bool Value::CZString::isStaticString() const { return storage_.policy_ == noDupl
|
|||||||
* memset( this, 0, sizeof(Value) )
|
* memset( this, 0, sizeof(Value) )
|
||||||
* This optimization is used in ValueInternalMap fast allocator.
|
* This optimization is used in ValueInternalMap fast allocator.
|
||||||
*/
|
*/
|
||||||
Value::Value(ValueType vtype) {
|
Value::Value(ValueType type) {
|
||||||
static char const emptyString[] = "";
|
initBasic(type);
|
||||||
initBasic(vtype);
|
switch (type) {
|
||||||
switch (vtype) {
|
|
||||||
case nullValue:
|
case nullValue:
|
||||||
break;
|
break;
|
||||||
case intValue:
|
case intValue:
|
||||||
@@ -356,8 +281,7 @@ Value::Value(ValueType vtype) {
|
|||||||
value_.real_ = 0.0;
|
value_.real_ = 0.0;
|
||||||
break;
|
break;
|
||||||
case stringValue:
|
case stringValue:
|
||||||
// allocated_ == false, so this is safe.
|
value_.string_ = 0;
|
||||||
value_.string_ = const_cast<char*>(static_cast<char const*>(emptyString));
|
|
||||||
break;
|
break;
|
||||||
case arrayValue:
|
case arrayValue:
|
||||||
case objectValue:
|
case objectValue:
|
||||||
@@ -398,7 +322,6 @@ Value::Value(double value) {
|
|||||||
|
|
||||||
Value::Value(const char* value) {
|
Value::Value(const char* value) {
|
||||||
initBasic(stringValue, true);
|
initBasic(stringValue, true);
|
||||||
JSON_ASSERT_MESSAGE(value != NULL, "Null Value Passed to Value Constructor");
|
|
||||||
value_.string_ = duplicateAndPrefixStringValue(value, static_cast<unsigned>(strlen(value)));
|
value_.string_ = duplicateAndPrefixStringValue(value, static_cast<unsigned>(strlen(value)));
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -408,7 +331,7 @@ Value::Value(const char* beginValue, const char* endValue) {
|
|||||||
duplicateAndPrefixStringValue(beginValue, static_cast<unsigned>(endValue - beginValue));
|
duplicateAndPrefixStringValue(beginValue, static_cast<unsigned>(endValue - beginValue));
|
||||||
}
|
}
|
||||||
|
|
||||||
Value::Value(const JSONCPP_STRING& value) {
|
Value::Value(const std::string& value) {
|
||||||
initBasic(stringValue, true);
|
initBasic(stringValue, true);
|
||||||
value_.string_ =
|
value_.string_ =
|
||||||
duplicateAndPrefixStringValue(value.data(), static_cast<unsigned>(value.length()));
|
duplicateAndPrefixStringValue(value.data(), static_cast<unsigned>(value.length()));
|
||||||
@@ -434,7 +357,7 @@ Value::Value(bool value) {
|
|||||||
Value::Value(Value const& other)
|
Value::Value(Value const& other)
|
||||||
: type_(other.type_), allocated_(false)
|
: type_(other.type_), allocated_(false)
|
||||||
,
|
,
|
||||||
comments_(0), start_(other.start_), limit_(other.limit_)
|
comments_(0)
|
||||||
{
|
{
|
||||||
switch (type_) {
|
switch (type_) {
|
||||||
case nullValue:
|
case nullValue:
|
||||||
@@ -475,14 +398,6 @@ Value::Value(Value const& other)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#if JSON_HAS_RVALUE_REFERENCES
|
|
||||||
// Move constructor
|
|
||||||
Value::Value(Value&& other) {
|
|
||||||
initBasic(nullValue);
|
|
||||||
swap(other);
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
|
|
||||||
Value::~Value() {
|
Value::~Value() {
|
||||||
switch (type_) {
|
switch (type_) {
|
||||||
case nullValue:
|
case nullValue:
|
||||||
@@ -493,7 +408,7 @@ Value::~Value() {
|
|||||||
break;
|
break;
|
||||||
case stringValue:
|
case stringValue:
|
||||||
if (allocated_)
|
if (allocated_)
|
||||||
releasePrefixedStringValue(value_.string_);
|
releaseStringValue(value_.string_);
|
||||||
break;
|
break;
|
||||||
case arrayValue:
|
case arrayValue:
|
||||||
case objectValue:
|
case objectValue:
|
||||||
@@ -503,13 +418,13 @@ Value::~Value() {
|
|||||||
JSON_ASSERT_UNREACHABLE;
|
JSON_ASSERT_UNREACHABLE;
|
||||||
}
|
}
|
||||||
|
|
||||||
delete[] comments_;
|
if (comments_)
|
||||||
|
delete[] comments_;
|
||||||
value_.uint_ = 0;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
Value& Value::operator=(Value other) {
|
Value &Value::operator=(const Value &other) {
|
||||||
swap(other);
|
Value temp(other);
|
||||||
|
swap(temp);
|
||||||
return *this;
|
return *this;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -520,14 +435,12 @@ void Value::swapPayload(Value& other) {
|
|||||||
std::swap(value_, other.value_);
|
std::swap(value_, other.value_);
|
||||||
int temp2 = allocated_;
|
int temp2 = allocated_;
|
||||||
allocated_ = other.allocated_;
|
allocated_ = other.allocated_;
|
||||||
other.allocated_ = temp2 & 0x1;
|
other.allocated_ = temp2;
|
||||||
}
|
}
|
||||||
|
|
||||||
void Value::swap(Value& other) {
|
void Value::swap(Value& other) {
|
||||||
swapPayload(other);
|
swapPayload(other);
|
||||||
std::swap(comments_, other.comments_);
|
std::swap(comments_, other.comments_);
|
||||||
std::swap(start_, other.start_);
|
|
||||||
std::swap(limit_, other.limit_);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
ValueType Value::type() const { return type_; }
|
ValueType Value::type() const { return type_; }
|
||||||
@@ -567,8 +480,7 @@ bool Value::operator<(const Value& other) const {
|
|||||||
char const* other_str;
|
char const* other_str;
|
||||||
decodePrefixedString(this->allocated_, this->value_.string_, &this_len, &this_str);
|
decodePrefixedString(this->allocated_, this->value_.string_, &this_len, &this_str);
|
||||||
decodePrefixedString(other.allocated_, other.value_.string_, &other_len, &other_str);
|
decodePrefixedString(other.allocated_, other.value_.string_, &other_len, &other_str);
|
||||||
unsigned min_len = std::min<unsigned>(this_len, other_len);
|
unsigned min_len = std::min(this_len, other_len);
|
||||||
JSON_ASSERT(this_str && other_str);
|
|
||||||
int comp = memcmp(this_str, other_str, min_len);
|
int comp = memcmp(this_str, other_str, min_len);
|
||||||
if (comp < 0) return true;
|
if (comp < 0) return true;
|
||||||
if (comp > 0) return false;
|
if (comp > 0) return false;
|
||||||
@@ -624,7 +536,6 @@ bool Value::operator==(const Value& other) const {
|
|||||||
decodePrefixedString(this->allocated_, this->value_.string_, &this_len, &this_str);
|
decodePrefixedString(this->allocated_, this->value_.string_, &this_len, &this_str);
|
||||||
decodePrefixedString(other.allocated_, other.value_.string_, &other_len, &other_str);
|
decodePrefixedString(other.allocated_, other.value_.string_, &other_len, &other_str);
|
||||||
if (this_len != other_len) return false;
|
if (this_len != other_len) return false;
|
||||||
JSON_ASSERT(this_str && other_str);
|
|
||||||
int comp = memcmp(this_str, other_str, this_len);
|
int comp = memcmp(this_str, other_str, this_len);
|
||||||
return comp == 0;
|
return comp == 0;
|
||||||
}
|
}
|
||||||
@@ -650,28 +561,16 @@ const char* Value::asCString() const {
|
|||||||
return this_str;
|
return this_str;
|
||||||
}
|
}
|
||||||
|
|
||||||
#if JSONCPP_USING_SECURE_MEMORY
|
bool Value::getString(char const** str, char const** end) const {
|
||||||
unsigned Value::getCStringLength() const {
|
|
||||||
JSON_ASSERT_MESSAGE(type_ == stringValue,
|
|
||||||
"in Json::Value::asCString(): requires stringValue");
|
|
||||||
if (value_.string_ == 0) return 0;
|
|
||||||
unsigned this_len;
|
|
||||||
char const* this_str;
|
|
||||||
decodePrefixedString(this->allocated_, this->value_.string_, &this_len, &this_str);
|
|
||||||
return this_len;
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
|
|
||||||
bool Value::getString(char const** str, char const** cend) const {
|
|
||||||
if (type_ != stringValue) return false;
|
if (type_ != stringValue) return false;
|
||||||
if (value_.string_ == 0) return false;
|
if (value_.string_ == 0) return false;
|
||||||
unsigned length;
|
unsigned length;
|
||||||
decodePrefixedString(this->allocated_, this->value_.string_, &length, str);
|
decodePrefixedString(this->allocated_, this->value_.string_, &length, str);
|
||||||
*cend = *str + length;
|
*end = *str + length;
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
JSONCPP_STRING Value::asString() const {
|
std::string Value::asString() const {
|
||||||
switch (type_) {
|
switch (type_) {
|
||||||
case nullValue:
|
case nullValue:
|
||||||
return "";
|
return "";
|
||||||
@@ -681,7 +580,7 @@ JSONCPP_STRING Value::asString() const {
|
|||||||
unsigned this_len;
|
unsigned this_len;
|
||||||
char const* this_str;
|
char const* this_str;
|
||||||
decodePrefixedString(this->allocated_, this->value_.string_, &this_len, &this_str);
|
decodePrefixedString(this->allocated_, this->value_.string_, &this_len, &this_str);
|
||||||
return JSONCPP_STRING(this_str, this_len);
|
return std::string(this_str, this_len);
|
||||||
}
|
}
|
||||||
case booleanValue:
|
case booleanValue:
|
||||||
return value_.bool_ ? "true" : "false";
|
return value_.bool_ ? "true" : "false";
|
||||||
@@ -841,8 +740,7 @@ float Value::asFloat() const {
|
|||||||
#if !defined(JSON_USE_INT64_DOUBLE_CONVERSION)
|
#if !defined(JSON_USE_INT64_DOUBLE_CONVERSION)
|
||||||
return static_cast<float>(value_.uint_);
|
return static_cast<float>(value_.uint_);
|
||||||
#else // if !defined(JSON_USE_INT64_DOUBLE_CONVERSION)
|
#else // if !defined(JSON_USE_INT64_DOUBLE_CONVERSION)
|
||||||
// This can fail (silently?) if the value is bigger than MAX_FLOAT.
|
return integerToDouble(value_.uint_);
|
||||||
return static_cast<float>(integerToDouble(value_.uint_));
|
|
||||||
#endif // if !defined(JSON_USE_INT64_DOUBLE_CONVERSION)
|
#endif // if !defined(JSON_USE_INT64_DOUBLE_CONVERSION)
|
||||||
case realValue:
|
case realValue:
|
||||||
return static_cast<float>(value_.real_);
|
return static_cast<float>(value_.real_);
|
||||||
@@ -867,8 +765,7 @@ bool Value::asBool() const {
|
|||||||
case uintValue:
|
case uintValue:
|
||||||
return value_.uint_ ? true : false;
|
return value_.uint_ ? true : false;
|
||||||
case realValue:
|
case realValue:
|
||||||
// This is kind of strange. Not recommended.
|
return value_.real_ ? true : false;
|
||||||
return (value_.real_ != 0.0) ? true : false;
|
|
||||||
default:
|
default:
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
@@ -880,7 +777,7 @@ bool Value::isConvertibleTo(ValueType other) const {
|
|||||||
case nullValue:
|
case nullValue:
|
||||||
return (isNumeric() && asDouble() == 0.0) ||
|
return (isNumeric() && asDouble() == 0.0) ||
|
||||||
(type_ == booleanValue && value_.bool_ == false) ||
|
(type_ == booleanValue && value_.bool_ == false) ||
|
||||||
(type_ == stringValue && asString().empty()) ||
|
(type_ == stringValue && asString() == "") ||
|
||||||
(type_ == arrayValue && value_.map_->size() == 0) ||
|
(type_ == arrayValue && value_.map_->size() == 0) ||
|
||||||
(type_ == objectValue && value_.map_->size() == 0) ||
|
(type_ == objectValue && value_.map_->size() == 0) ||
|
||||||
type_ == nullValue;
|
type_ == nullValue;
|
||||||
@@ -945,8 +842,6 @@ void Value::clear() {
|
|||||||
JSON_ASSERT_MESSAGE(type_ == nullValue || type_ == arrayValue ||
|
JSON_ASSERT_MESSAGE(type_ == nullValue || type_ == arrayValue ||
|
||||||
type_ == objectValue,
|
type_ == objectValue,
|
||||||
"in Json::Value::clear(): requires complex value");
|
"in Json::Value::clear(): requires complex value");
|
||||||
start_ = 0;
|
|
||||||
limit_ = 0;
|
|
||||||
switch (type_) {
|
switch (type_) {
|
||||||
case arrayValue:
|
case arrayValue:
|
||||||
case objectValue:
|
case objectValue:
|
||||||
@@ -971,7 +866,7 @@ void Value::resize(ArrayIndex newSize) {
|
|||||||
for (ArrayIndex index = newSize; index < oldSize; ++index) {
|
for (ArrayIndex index = newSize; index < oldSize; ++index) {
|
||||||
value_.map_->erase(index);
|
value_.map_->erase(index);
|
||||||
}
|
}
|
||||||
JSON_ASSERT(size() == newSize);
|
assert(size() == newSize);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -986,7 +881,7 @@ Value& Value::operator[](ArrayIndex index) {
|
|||||||
if (it != value_.map_->end() && (*it).first == key)
|
if (it != value_.map_->end() && (*it).first == key)
|
||||||
return (*it).second;
|
return (*it).second;
|
||||||
|
|
||||||
ObjectValues::value_type defaultValue(key, nullSingleton());
|
ObjectValues::value_type defaultValue(key, nullRef);
|
||||||
it = value_.map_->insert(it, defaultValue);
|
it = value_.map_->insert(it, defaultValue);
|
||||||
return (*it).second;
|
return (*it).second;
|
||||||
}
|
}
|
||||||
@@ -1003,11 +898,11 @@ const Value& Value::operator[](ArrayIndex index) const {
|
|||||||
type_ == nullValue || type_ == arrayValue,
|
type_ == nullValue || type_ == arrayValue,
|
||||||
"in Json::Value::operator[](ArrayIndex)const: requires arrayValue");
|
"in Json::Value::operator[](ArrayIndex)const: requires arrayValue");
|
||||||
if (type_ == nullValue)
|
if (type_ == nullValue)
|
||||||
return nullSingleton();
|
return nullRef;
|
||||||
CZString key(index);
|
CZString key(index);
|
||||||
ObjectValues::const_iterator it = value_.map_->find(key);
|
ObjectValues::const_iterator it = value_.map_->find(key);
|
||||||
if (it == value_.map_->end())
|
if (it == value_.map_->end())
|
||||||
return nullSingleton();
|
return nullRef;
|
||||||
return (*it).second;
|
return (*it).second;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -1018,12 +913,10 @@ const Value& Value::operator[](int index) const {
|
|||||||
return (*this)[ArrayIndex(index)];
|
return (*this)[ArrayIndex(index)];
|
||||||
}
|
}
|
||||||
|
|
||||||
void Value::initBasic(ValueType vtype, bool allocated) {
|
void Value::initBasic(ValueType type, bool allocated) {
|
||||||
type_ = vtype;
|
type_ = type;
|
||||||
allocated_ = allocated;
|
allocated_ = allocated;
|
||||||
comments_ = 0;
|
comments_ = 0;
|
||||||
start_ = 0;
|
|
||||||
limit_ = 0;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Access an object value by name, create a null member if it does not exist.
|
// Access an object value by name, create a null member if it does not exist.
|
||||||
@@ -1041,14 +934,14 @@ Value& Value::resolveReference(const char* key) {
|
|||||||
if (it != value_.map_->end() && (*it).first == actualKey)
|
if (it != value_.map_->end() && (*it).first == actualKey)
|
||||||
return (*it).second;
|
return (*it).second;
|
||||||
|
|
||||||
ObjectValues::value_type defaultValue(actualKey, nullSingleton());
|
ObjectValues::value_type defaultValue(actualKey, nullRef);
|
||||||
it = value_.map_->insert(it, defaultValue);
|
it = value_.map_->insert(it, defaultValue);
|
||||||
Value& value = (*it).second;
|
Value& value = (*it).second;
|
||||||
return value;
|
return value;
|
||||||
}
|
}
|
||||||
|
|
||||||
// @param key is not null-terminated.
|
// @param key is not null-terminated.
|
||||||
Value& Value::resolveReference(char const* key, char const* cend)
|
Value& Value::resolveReference(char const* key, char const* end)
|
||||||
{
|
{
|
||||||
JSON_ASSERT_MESSAGE(
|
JSON_ASSERT_MESSAGE(
|
||||||
type_ == nullValue || type_ == objectValue,
|
type_ == nullValue || type_ == objectValue,
|
||||||
@@ -1056,12 +949,12 @@ Value& Value::resolveReference(char const* key, char const* cend)
|
|||||||
if (type_ == nullValue)
|
if (type_ == nullValue)
|
||||||
*this = Value(objectValue);
|
*this = Value(objectValue);
|
||||||
CZString actualKey(
|
CZString actualKey(
|
||||||
key, static_cast<unsigned>(cend-key), CZString::duplicateOnCopy);
|
key, static_cast<unsigned>(end-key), CZString::duplicateOnCopy);
|
||||||
ObjectValues::iterator it = value_.map_->lower_bound(actualKey);
|
ObjectValues::iterator it = value_.map_->lower_bound(actualKey);
|
||||||
if (it != value_.map_->end() && (*it).first == actualKey)
|
if (it != value_.map_->end() && (*it).first == actualKey)
|
||||||
return (*it).second;
|
return (*it).second;
|
||||||
|
|
||||||
ObjectValues::value_type defaultValue(actualKey, nullSingleton());
|
ObjectValues::value_type defaultValue(actualKey, nullRef);
|
||||||
it = value_.map_->insert(it, defaultValue);
|
it = value_.map_->insert(it, defaultValue);
|
||||||
Value& value = (*it).second;
|
Value& value = (*it).second;
|
||||||
return value;
|
return value;
|
||||||
@@ -1069,18 +962,18 @@ Value& Value::resolveReference(char const* key, char const* cend)
|
|||||||
|
|
||||||
Value Value::get(ArrayIndex index, const Value& defaultValue) const {
|
Value Value::get(ArrayIndex index, const Value& defaultValue) const {
|
||||||
const Value* value = &((*this)[index]);
|
const Value* value = &((*this)[index]);
|
||||||
return value == &nullSingleton() ? defaultValue : *value;
|
return value == &nullRef ? defaultValue : *value;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool Value::isValidIndex(ArrayIndex index) const { return index < size(); }
|
bool Value::isValidIndex(ArrayIndex index) const { return index < size(); }
|
||||||
|
|
||||||
Value const* Value::find(char const* key, char const* cend) const
|
Value const* Value::find(char const* key, char const* end) const
|
||||||
{
|
{
|
||||||
JSON_ASSERT_MESSAGE(
|
JSON_ASSERT_MESSAGE(
|
||||||
type_ == nullValue || type_ == objectValue,
|
type_ == nullValue || type_ == objectValue,
|
||||||
"in Json::Value::find(key, end, found): requires objectValue or nullValue");
|
"in Json::Value::find(key, end, found): requires objectValue or nullValue");
|
||||||
if (type_ == nullValue) return NULL;
|
if (type_ == nullValue) return NULL;
|
||||||
CZString actualKey(key, static_cast<unsigned>(cend-key), CZString::noDuplication);
|
CZString actualKey(key, static_cast<unsigned>(end-key), CZString::noDuplication);
|
||||||
ObjectValues::const_iterator it = value_.map_->find(actualKey);
|
ObjectValues::const_iterator it = value_.map_->find(actualKey);
|
||||||
if (it == value_.map_->end()) return NULL;
|
if (it == value_.map_->end()) return NULL;
|
||||||
return &(*it).second;
|
return &(*it).second;
|
||||||
@@ -1088,13 +981,13 @@ Value const* Value::find(char const* key, char const* cend) const
|
|||||||
const Value& Value::operator[](const char* key) const
|
const Value& Value::operator[](const char* key) const
|
||||||
{
|
{
|
||||||
Value const* found = find(key, key + strlen(key));
|
Value const* found = find(key, key + strlen(key));
|
||||||
if (!found) return nullSingleton();
|
if (!found) return nullRef;
|
||||||
return *found;
|
return *found;
|
||||||
}
|
}
|
||||||
Value const& Value::operator[](JSONCPP_STRING const& key) const
|
Value const& Value::operator[](std::string const& key) const
|
||||||
{
|
{
|
||||||
Value const* found = find(key.data(), key.data() + key.length());
|
Value const* found = find(key.data(), key.data() + key.length());
|
||||||
if (!found) return nullSingleton();
|
if (!found) return nullRef;
|
||||||
return *found;
|
return *found;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -1102,7 +995,7 @@ Value& Value::operator[](const char* key) {
|
|||||||
return resolveReference(key, key + strlen(key));
|
return resolveReference(key, key + strlen(key));
|
||||||
}
|
}
|
||||||
|
|
||||||
Value& Value::operator[](const JSONCPP_STRING& key) {
|
Value& Value::operator[](const std::string& key) {
|
||||||
return resolveReference(key.data(), key.data() + key.length());
|
return resolveReference(key.data(), key.data() + key.length());
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -1117,34 +1010,34 @@ Value& Value::operator[](const CppTL::ConstString& key) {
|
|||||||
Value const& Value::operator[](CppTL::ConstString const& key) const
|
Value const& Value::operator[](CppTL::ConstString const& key) const
|
||||||
{
|
{
|
||||||
Value const* found = find(key.c_str(), key.end_c_str());
|
Value const* found = find(key.c_str(), key.end_c_str());
|
||||||
if (!found) return nullSingleton();
|
if (!found) return nullRef;
|
||||||
return *found;
|
return *found;
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
Value& Value::append(const Value& value) { return (*this)[size()] = value; }
|
Value& Value::append(const Value& value) { return (*this)[size()] = value; }
|
||||||
|
|
||||||
Value Value::get(char const* key, char const* cend, Value const& defaultValue) const
|
Value Value::get(char const* key, char const* end, Value const& defaultValue) const
|
||||||
{
|
{
|
||||||
Value const* found = find(key, cend);
|
Value const* found = find(key, end);
|
||||||
return !found ? defaultValue : *found;
|
return !found ? defaultValue : *found;
|
||||||
}
|
}
|
||||||
Value Value::get(char const* key, Value const& defaultValue) const
|
Value Value::get(char const* key, Value const& defaultValue) const
|
||||||
{
|
{
|
||||||
return get(key, key + strlen(key), defaultValue);
|
return get(key, key + strlen(key), defaultValue);
|
||||||
}
|
}
|
||||||
Value Value::get(JSONCPP_STRING const& key, Value const& defaultValue) const
|
Value Value::get(std::string const& key, Value const& defaultValue) const
|
||||||
{
|
{
|
||||||
return get(key.data(), key.data() + key.length(), defaultValue);
|
return get(key.data(), key.data() + key.length(), defaultValue);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
bool Value::removeMember(const char* key, const char* cend, Value* removed)
|
bool Value::removeMember(const char* key, const char* end, Value* removed)
|
||||||
{
|
{
|
||||||
if (type_ != objectValue) {
|
if (type_ != objectValue) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
CZString actualKey(key, static_cast<unsigned>(cend-key), CZString::noDuplication);
|
CZString actualKey(key, static_cast<unsigned>(end-key), CZString::noDuplication);
|
||||||
ObjectValues::iterator it = value_.map_->find(actualKey);
|
ObjectValues::iterator it = value_.map_->find(actualKey);
|
||||||
if (it == value_.map_->end())
|
if (it == value_.map_->end())
|
||||||
return false;
|
return false;
|
||||||
@@ -1156,7 +1049,7 @@ bool Value::removeMember(const char* key, Value* removed)
|
|||||||
{
|
{
|
||||||
return removeMember(key, key + strlen(key), removed);
|
return removeMember(key, key + strlen(key), removed);
|
||||||
}
|
}
|
||||||
bool Value::removeMember(JSONCPP_STRING const& key, Value* removed)
|
bool Value::removeMember(std::string const& key, Value* removed)
|
||||||
{
|
{
|
||||||
return removeMember(key.data(), key.data() + key.length(), removed);
|
return removeMember(key.data(), key.data() + key.length(), removed);
|
||||||
}
|
}
|
||||||
@@ -1165,13 +1058,13 @@ Value Value::removeMember(const char* key)
|
|||||||
JSON_ASSERT_MESSAGE(type_ == nullValue || type_ == objectValue,
|
JSON_ASSERT_MESSAGE(type_ == nullValue || type_ == objectValue,
|
||||||
"in Json::Value::removeMember(): requires objectValue");
|
"in Json::Value::removeMember(): requires objectValue");
|
||||||
if (type_ == nullValue)
|
if (type_ == nullValue)
|
||||||
return nullSingleton();
|
return nullRef;
|
||||||
|
|
||||||
Value removed; // null
|
Value removed; // null
|
||||||
removeMember(key, key + strlen(key), &removed);
|
removeMember(key, key + strlen(key), &removed);
|
||||||
return removed; // still null if removeMember() did nothing
|
return removed; // still null if removeMember() did nothing
|
||||||
}
|
}
|
||||||
Value Value::removeMember(const JSONCPP_STRING& key)
|
Value Value::removeMember(const std::string& key)
|
||||||
{
|
{
|
||||||
return removeMember(key.c_str());
|
return removeMember(key.c_str());
|
||||||
}
|
}
|
||||||
@@ -1189,8 +1082,8 @@ bool Value::removeIndex(ArrayIndex index, Value* removed) {
|
|||||||
ArrayIndex oldSize = size();
|
ArrayIndex oldSize = size();
|
||||||
// shift left all items left, into the place of the "removed"
|
// shift left all items left, into the place of the "removed"
|
||||||
for (ArrayIndex i = index; i < (oldSize - 1); ++i){
|
for (ArrayIndex i = index; i < (oldSize - 1); ++i){
|
||||||
CZString keey(i);
|
CZString key(i);
|
||||||
(*value_.map_)[keey] = (*this)[i + 1];
|
(*value_.map_)[key] = (*this)[i + 1];
|
||||||
}
|
}
|
||||||
// erase the last one ("leftover")
|
// erase the last one ("leftover")
|
||||||
CZString keyLast(oldSize - 1);
|
CZString keyLast(oldSize - 1);
|
||||||
@@ -1206,16 +1099,16 @@ Value Value::get(const CppTL::ConstString& key,
|
|||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
bool Value::isMember(char const* key, char const* cend) const
|
bool Value::isMember(char const* key, char const* end) const
|
||||||
{
|
{
|
||||||
Value const* value = find(key, cend);
|
Value const* value = find(key, end);
|
||||||
return NULL != value;
|
return NULL != value;
|
||||||
}
|
}
|
||||||
bool Value::isMember(char const* key) const
|
bool Value::isMember(char const* key) const
|
||||||
{
|
{
|
||||||
return isMember(key, key + strlen(key));
|
return isMember(key, key + strlen(key));
|
||||||
}
|
}
|
||||||
bool Value::isMember(JSONCPP_STRING const& key) const
|
bool Value::isMember(std::string const& key) const
|
||||||
{
|
{
|
||||||
return isMember(key.data(), key.data() + key.length());
|
return isMember(key.data(), key.data() + key.length());
|
||||||
}
|
}
|
||||||
@@ -1237,7 +1130,7 @@ Value::Members Value::getMemberNames() const {
|
|||||||
ObjectValues::const_iterator it = value_.map_->begin();
|
ObjectValues::const_iterator it = value_.map_->begin();
|
||||||
ObjectValues::const_iterator itEnd = value_.map_->end();
|
ObjectValues::const_iterator itEnd = value_.map_->end();
|
||||||
for (; it != itEnd; ++it) {
|
for (; it != itEnd; ++it) {
|
||||||
members.push_back(JSONCPP_STRING((*it).first.data(),
|
members.push_back(std::string((*it).first.data(),
|
||||||
(*it).first.length()));
|
(*it).first.length()));
|
||||||
}
|
}
|
||||||
return members;
|
return members;
|
||||||
@@ -1280,11 +1173,7 @@ bool Value::isBool() const { return type_ == booleanValue; }
|
|||||||
bool Value::isInt() const {
|
bool Value::isInt() const {
|
||||||
switch (type_) {
|
switch (type_) {
|
||||||
case intValue:
|
case intValue:
|
||||||
#if defined(JSON_HAS_INT64)
|
|
||||||
return value_.int_ >= minInt && value_.int_ <= maxInt;
|
return value_.int_ >= minInt && value_.int_ <= maxInt;
|
||||||
#else
|
|
||||||
return true;
|
|
||||||
#endif
|
|
||||||
case uintValue:
|
case uintValue:
|
||||||
return value_.uint_ <= UInt(maxInt);
|
return value_.uint_ <= UInt(maxInt);
|
||||||
case realValue:
|
case realValue:
|
||||||
@@ -1299,17 +1188,9 @@ bool Value::isInt() const {
|
|||||||
bool Value::isUInt() const {
|
bool Value::isUInt() const {
|
||||||
switch (type_) {
|
switch (type_) {
|
||||||
case intValue:
|
case intValue:
|
||||||
#if defined(JSON_HAS_INT64)
|
|
||||||
return value_.int_ >= 0 && LargestUInt(value_.int_) <= LargestUInt(maxUInt);
|
return value_.int_ >= 0 && LargestUInt(value_.int_) <= LargestUInt(maxUInt);
|
||||||
#else
|
|
||||||
return value_.int_ >= 0;
|
|
||||||
#endif
|
|
||||||
case uintValue:
|
case uintValue:
|
||||||
#if defined(JSON_HAS_INT64)
|
|
||||||
return value_.uint_ <= maxUInt;
|
return value_.uint_ <= maxUInt;
|
||||||
#else
|
|
||||||
return true;
|
|
||||||
#endif
|
|
||||||
case realValue:
|
case realValue:
|
||||||
return value_.real_ >= 0 && value_.real_ <= maxUInt &&
|
return value_.real_ >= 0 && value_.real_ <= maxUInt &&
|
||||||
IsIntegral(value_.real_);
|
IsIntegral(value_.real_);
|
||||||
@@ -1360,28 +1241,16 @@ bool Value::isUInt64() const {
|
|||||||
}
|
}
|
||||||
|
|
||||||
bool Value::isIntegral() const {
|
bool Value::isIntegral() const {
|
||||||
switch (type_) {
|
|
||||||
case intValue:
|
|
||||||
case uintValue:
|
|
||||||
return true;
|
|
||||||
case realValue:
|
|
||||||
#if defined(JSON_HAS_INT64)
|
#if defined(JSON_HAS_INT64)
|
||||||
// Note that maxUInt64 (= 2^64 - 1) is not exactly representable as a
|
return isInt64() || isUInt64();
|
||||||
// double, so double(maxUInt64) will be rounded up to 2^64. Therefore we
|
|
||||||
// require the value to be strictly less than the limit.
|
|
||||||
return value_.real_ >= double(minInt64) && value_.real_ < maxUInt64AsDouble && IsIntegral(value_.real_);
|
|
||||||
#else
|
#else
|
||||||
return value_.real_ >= minInt && value_.real_ <= maxUInt && IsIntegral(value_.real_);
|
return isInt() || isUInt();
|
||||||
#endif // JSON_HAS_INT64
|
#endif
|
||||||
default:
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
return false;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
bool Value::isDouble() const { return type_ == intValue || type_ == uintValue || type_ == realValue; }
|
bool Value::isDouble() const { return type_ == realValue || isIntegral(); }
|
||||||
|
|
||||||
bool Value::isNumeric() const { return isDouble(); }
|
bool Value::isNumeric() const { return isIntegral() || isDouble(); }
|
||||||
|
|
||||||
bool Value::isString() const { return type_ == stringValue; }
|
bool Value::isString() const { return type_ == stringValue; }
|
||||||
|
|
||||||
@@ -1403,7 +1272,7 @@ void Value::setComment(const char* comment, CommentPlacement placement) {
|
|||||||
setComment(comment, strlen(comment), placement);
|
setComment(comment, strlen(comment), placement);
|
||||||
}
|
}
|
||||||
|
|
||||||
void Value::setComment(const JSONCPP_STRING& comment, CommentPlacement placement) {
|
void Value::setComment(const std::string& comment, CommentPlacement placement) {
|
||||||
setComment(comment.c_str(), comment.length(), placement);
|
setComment(comment.c_str(), comment.length(), placement);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -1411,21 +1280,13 @@ bool Value::hasComment(CommentPlacement placement) const {
|
|||||||
return comments_ != 0 && comments_[placement].comment_ != 0;
|
return comments_ != 0 && comments_[placement].comment_ != 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
JSONCPP_STRING Value::getComment(CommentPlacement placement) const {
|
std::string Value::getComment(CommentPlacement placement) const {
|
||||||
if (hasComment(placement))
|
if (hasComment(placement))
|
||||||
return comments_[placement].comment_;
|
return comments_[placement].comment_;
|
||||||
return "";
|
return "";
|
||||||
}
|
}
|
||||||
|
|
||||||
void Value::setOffsetStart(ptrdiff_t start) { start_ = start; }
|
std::string Value::toStyledString() const {
|
||||||
|
|
||||||
void Value::setOffsetLimit(ptrdiff_t limit) { limit_ = limit; }
|
|
||||||
|
|
||||||
ptrdiff_t Value::getOffsetStart() const { return start_; }
|
|
||||||
|
|
||||||
ptrdiff_t Value::getOffsetLimit() const { return limit_; }
|
|
||||||
|
|
||||||
JSONCPP_STRING Value::toStyledString() const {
|
|
||||||
StyledWriter writer;
|
StyledWriter writer;
|
||||||
return writer.write(*this);
|
return writer.write(*this);
|
||||||
}
|
}
|
||||||
@@ -1493,20 +1354,19 @@ PathArgument::PathArgument(ArrayIndex index)
|
|||||||
PathArgument::PathArgument(const char* key)
|
PathArgument::PathArgument(const char* key)
|
||||||
: key_(key), index_(), kind_(kindKey) {}
|
: key_(key), index_(), kind_(kindKey) {}
|
||||||
|
|
||||||
PathArgument::PathArgument(const JSONCPP_STRING& key)
|
PathArgument::PathArgument(const std::string& key)
|
||||||
: key_(key.c_str()), index_(), kind_(kindKey) {}
|
: key_(key.c_str()), index_(), kind_(kindKey) {}
|
||||||
|
|
||||||
// class Path
|
// class Path
|
||||||
// //////////////////////////////////////////////////////////////////
|
// //////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
Path::Path(const JSONCPP_STRING& path,
|
Path::Path(const std::string& path,
|
||||||
const PathArgument& a1,
|
const PathArgument& a1,
|
||||||
const PathArgument& a2,
|
const PathArgument& a2,
|
||||||
const PathArgument& a3,
|
const PathArgument& a3,
|
||||||
const PathArgument& a4,
|
const PathArgument& a4,
|
||||||
const PathArgument& a5) {
|
const PathArgument& a5) {
|
||||||
InArgs in;
|
InArgs in;
|
||||||
in.reserve(5);
|
|
||||||
in.push_back(&a1);
|
in.push_back(&a1);
|
||||||
in.push_back(&a2);
|
in.push_back(&a2);
|
||||||
in.push_back(&a3);
|
in.push_back(&a3);
|
||||||
@@ -1515,7 +1375,7 @@ Path::Path(const JSONCPP_STRING& path,
|
|||||||
makePath(path, in);
|
makePath(path, in);
|
||||||
}
|
}
|
||||||
|
|
||||||
void Path::makePath(const JSONCPP_STRING& path, const InArgs& in) {
|
void Path::makePath(const std::string& path, const InArgs& in) {
|
||||||
const char* current = path.c_str();
|
const char* current = path.c_str();
|
||||||
const char* end = current + path.length();
|
const char* end = current + path.length();
|
||||||
InArgs::const_iterator itInArg = in.begin();
|
InArgs::const_iterator itInArg = in.begin();
|
||||||
@@ -1530,23 +1390,23 @@ void Path::makePath(const JSONCPP_STRING& path, const InArgs& in) {
|
|||||||
index = index * 10 + ArrayIndex(*current - '0');
|
index = index * 10 + ArrayIndex(*current - '0');
|
||||||
args_.push_back(index);
|
args_.push_back(index);
|
||||||
}
|
}
|
||||||
if (current == end || *++current != ']')
|
if (current == end || *current++ != ']')
|
||||||
invalidPath(path, int(current - path.c_str()));
|
invalidPath(path, int(current - path.c_str()));
|
||||||
} else if (*current == '%') {
|
} else if (*current == '%') {
|
||||||
addPathInArg(path, in, itInArg, PathArgument::kindKey);
|
addPathInArg(path, in, itInArg, PathArgument::kindKey);
|
||||||
++current;
|
++current;
|
||||||
} else if (*current == '.' || *current == ']') {
|
} else if (*current == '.') {
|
||||||
++current;
|
++current;
|
||||||
} else {
|
} else {
|
||||||
const char* beginName = current;
|
const char* beginName = current;
|
||||||
while (current != end && !strchr("[.", *current))
|
while (current != end && !strchr("[.", *current))
|
||||||
++current;
|
++current;
|
||||||
args_.push_back(JSONCPP_STRING(beginName, current));
|
args_.push_back(std::string(beginName, current));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void Path::addPathInArg(const JSONCPP_STRING& /*path*/,
|
void Path::addPathInArg(const std::string& /*path*/,
|
||||||
const InArgs& in,
|
const InArgs& in,
|
||||||
InArgs::const_iterator& itInArg,
|
InArgs::const_iterator& itInArg,
|
||||||
PathArgument::Kind kind) {
|
PathArgument::Kind kind) {
|
||||||
@@ -1555,11 +1415,11 @@ void Path::addPathInArg(const JSONCPP_STRING& /*path*/,
|
|||||||
} else if ((*itInArg)->kind_ != kind) {
|
} else if ((*itInArg)->kind_ != kind) {
|
||||||
// Error: bad argument type
|
// Error: bad argument type
|
||||||
} else {
|
} else {
|
||||||
args_.push_back(**itInArg++);
|
args_.push_back(**itInArg);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void Path::invalidPath(const JSONCPP_STRING& /*path*/, int /*location*/) {
|
void Path::invalidPath(const std::string& /*path*/, int /*location*/) {
|
||||||
// Error: invalid path.
|
// Error: invalid path.
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -1570,19 +1430,16 @@ const Value& Path::resolve(const Value& root) const {
|
|||||||
if (arg.kind_ == PathArgument::kindIndex) {
|
if (arg.kind_ == PathArgument::kindIndex) {
|
||||||
if (!node->isArray() || !node->isValidIndex(arg.index_)) {
|
if (!node->isArray() || !node->isValidIndex(arg.index_)) {
|
||||||
// Error: unable to resolve path (array value expected at position...
|
// Error: unable to resolve path (array value expected at position...
|
||||||
return Value::null;
|
|
||||||
}
|
}
|
||||||
node = &((*node)[arg.index_]);
|
node = &((*node)[arg.index_]);
|
||||||
} else if (arg.kind_ == PathArgument::kindKey) {
|
} else if (arg.kind_ == PathArgument::kindKey) {
|
||||||
if (!node->isObject()) {
|
if (!node->isObject()) {
|
||||||
// Error: unable to resolve path (object value expected at position...)
|
// Error: unable to resolve path (object value expected at position...)
|
||||||
return Value::null;
|
|
||||||
}
|
}
|
||||||
node = &((*node)[arg.key_]);
|
node = &((*node)[arg.key_]);
|
||||||
if (node == &Value::nullSingleton()) {
|
if (node == &Value::nullRef) {
|
||||||
// Error: unable to resolve path (object has no member named '' at
|
// Error: unable to resolve path (object has no member named '' at
|
||||||
// position...)
|
// position...)
|
||||||
return Value::null;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -1601,7 +1458,7 @@ Value Path::resolve(const Value& root, const Value& defaultValue) const {
|
|||||||
if (!node->isObject())
|
if (!node->isObject())
|
||||||
return defaultValue;
|
return defaultValue;
|
||||||
node = &((*node)[arg.key_]);
|
node = &((*node)[arg.key_]);
|
||||||
if (node == &Value::nullSingleton())
|
if (node == &Value::nullRef)
|
||||||
return defaultValue;
|
return defaultValue;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -92,27 +92,19 @@ UInt ValueIteratorBase::index() const {
|
|||||||
return Value::UInt(-1);
|
return Value::UInt(-1);
|
||||||
}
|
}
|
||||||
|
|
||||||
JSONCPP_STRING ValueIteratorBase::name() const {
|
|
||||||
char const* keey;
|
|
||||||
char const* end;
|
|
||||||
keey = memberName(&end);
|
|
||||||
if (!keey) return JSONCPP_STRING();
|
|
||||||
return JSONCPP_STRING(keey, end);
|
|
||||||
}
|
|
||||||
|
|
||||||
char const* ValueIteratorBase::memberName() const {
|
char const* ValueIteratorBase::memberName() const {
|
||||||
const char* cname = (*current_).first.data();
|
const char* name = (*current_).first.data();
|
||||||
return cname ? cname : "";
|
return name ? name : "";
|
||||||
}
|
}
|
||||||
|
|
||||||
char const* ValueIteratorBase::memberName(char const** end) const {
|
char const* ValueIteratorBase::memberName(char const** end) const {
|
||||||
const char* cname = (*current_).first.data();
|
const char* name = (*current_).first.data();
|
||||||
if (!cname) {
|
if (!name) {
|
||||||
*end = NULL;
|
*end = NULL;
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
*end = cname + (*current_).first.length();
|
*end = name + (*current_).first.length();
|
||||||
return cname;
|
return name;
|
||||||
}
|
}
|
||||||
|
|
||||||
// //////////////////////////////////////////////////////////////////
|
// //////////////////////////////////////////////////////////////////
|
||||||
@@ -129,9 +121,6 @@ ValueConstIterator::ValueConstIterator(
|
|||||||
const Value::ObjectValues::iterator& current)
|
const Value::ObjectValues::iterator& current)
|
||||||
: ValueIteratorBase(current) {}
|
: ValueIteratorBase(current) {}
|
||||||
|
|
||||||
ValueConstIterator::ValueConstIterator(ValueIterator const& other)
|
|
||||||
: ValueIteratorBase(other) {}
|
|
||||||
|
|
||||||
ValueConstIterator& ValueConstIterator::
|
ValueConstIterator& ValueConstIterator::
|
||||||
operator=(const ValueIteratorBase& other) {
|
operator=(const ValueIteratorBase& other) {
|
||||||
copy(other);
|
copy(other);
|
||||||
@@ -152,9 +141,7 @@ ValueIterator::ValueIterator(const Value::ObjectValues::iterator& current)
|
|||||||
: ValueIteratorBase(current) {}
|
: ValueIteratorBase(current) {}
|
||||||
|
|
||||||
ValueIterator::ValueIterator(const ValueConstIterator& other)
|
ValueIterator::ValueIterator(const ValueConstIterator& other)
|
||||||
: ValueIteratorBase(other) {
|
: ValueIteratorBase(other) {}
|
||||||
throwRuntimeError("ConstIterator to Iterator should never be allowed.");
|
|
||||||
}
|
|
||||||
|
|
||||||
ValueIterator::ValueIterator(const ValueIterator& other)
|
ValueIterator::ValueIterator(const ValueIterator& other)
|
||||||
: ValueIteratorBase(other) {}
|
: ValueIteratorBase(other) {}
|
||||||
|
@@ -12,57 +12,13 @@
|
|||||||
#include <sstream>
|
#include <sstream>
|
||||||
#include <utility>
|
#include <utility>
|
||||||
#include <set>
|
#include <set>
|
||||||
#include <cassert>
|
#include <stdexcept>
|
||||||
#include <cstring>
|
#include <assert.h>
|
||||||
#include <cstdio>
|
|
||||||
|
|
||||||
#if defined(_MSC_VER) && _MSC_VER >= 1200 && _MSC_VER < 1800 // Between VC++ 6.0 and VC++ 11.0
|
|
||||||
#include <float.h>
|
|
||||||
#define isfinite _finite
|
|
||||||
#elif defined(__sun) && defined(__SVR4) //Solaris
|
|
||||||
#if !defined(isfinite)
|
|
||||||
#include <ieeefp.h>
|
|
||||||
#define isfinite finite
|
|
||||||
#endif
|
|
||||||
#elif defined(_AIX)
|
|
||||||
#if !defined(isfinite)
|
|
||||||
#include <math.h>
|
#include <math.h>
|
||||||
#define isfinite finite
|
#include <stdio.h>
|
||||||
#endif
|
#include <string.h>
|
||||||
#elif defined(__hpux)
|
|
||||||
#if !defined(isfinite)
|
|
||||||
#if defined(__ia64) && !defined(finite)
|
|
||||||
#define isfinite(x) ((sizeof(x) == sizeof(float) ? \
|
|
||||||
_Isfinitef(x) : _IsFinite(x)))
|
|
||||||
#else
|
|
||||||
#include <math.h>
|
|
||||||
#define isfinite finite
|
|
||||||
#endif
|
|
||||||
#endif
|
|
||||||
#else
|
|
||||||
#include <cmath>
|
|
||||||
#if !(defined(__QNXNTO__)) // QNX already defines isfinite
|
|
||||||
#define isfinite std::isfinite
|
|
||||||
#endif
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#if defined(_MSC_VER)
|
#if defined(_MSC_VER) && _MSC_VER < 1500 // VC++ 8.0 and below
|
||||||
#if !defined(WINCE) && defined(__STDC_SECURE_LIB__) && _MSC_VER >= 1500 // VC++ 9.0 and above
|
|
||||||
#define snprintf sprintf_s
|
|
||||||
#elif _MSC_VER >= 1900 // VC++ 14.0 and above
|
|
||||||
#define snprintf std::snprintf
|
|
||||||
#else
|
|
||||||
#define snprintf _snprintf
|
|
||||||
#endif
|
|
||||||
#elif defined(__ANDROID__) || defined(__QNXNTO__)
|
|
||||||
#define snprintf snprintf
|
|
||||||
#elif __cplusplus >= 201103L
|
|
||||||
#if !defined(__MINGW32__) && !defined(__CYGWIN__)
|
|
||||||
#define snprintf std::snprintf
|
|
||||||
#endif
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#if defined(__BORLANDC__)
|
|
||||||
#include <float.h>
|
#include <float.h>
|
||||||
#define isfinite _finite
|
#define isfinite _finite
|
||||||
#define snprintf _snprintf
|
#define snprintf _snprintf
|
||||||
@@ -73,9 +29,14 @@
|
|||||||
#pragma warning(disable : 4996)
|
#pragma warning(disable : 4996)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#if defined(__sun) && defined(__SVR4) //Solaris
|
||||||
|
#include <ieeefp.h>
|
||||||
|
#define isfinite finite
|
||||||
|
#endif
|
||||||
|
|
||||||
namespace Json {
|
namespace Json {
|
||||||
|
|
||||||
#if __cplusplus >= 201103L || (defined(_CPPLIB_VER) && _CPPLIB_VER >= 520)
|
#if __cplusplus >= 201103L
|
||||||
typedef std::unique_ptr<StreamWriter> StreamWriterPtr;
|
typedef std::unique_ptr<StreamWriter> StreamWriterPtr;
|
||||||
#else
|
#else
|
||||||
typedef std::auto_ptr<StreamWriter> StreamWriterPtr;
|
typedef std::auto_ptr<StreamWriter> StreamWriterPtr;
|
||||||
@@ -99,23 +60,20 @@ static bool containsControlCharacter0(const char* str, unsigned len) {
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
JSONCPP_STRING valueToString(LargestInt value) {
|
std::string valueToString(LargestInt value) {
|
||||||
UIntToStringBuffer buffer;
|
UIntToStringBuffer buffer;
|
||||||
char* current = buffer + sizeof(buffer);
|
char* current = buffer + sizeof(buffer);
|
||||||
if (value == Value::minLargestInt) {
|
bool isNegative = value < 0;
|
||||||
uintToString(LargestUInt(Value::maxLargestInt) + 1, current);
|
if (isNegative)
|
||||||
|
value = -value;
|
||||||
|
uintToString(LargestUInt(value), current);
|
||||||
|
if (isNegative)
|
||||||
*--current = '-';
|
*--current = '-';
|
||||||
} else if (value < 0) {
|
|
||||||
uintToString(LargestUInt(-value), current);
|
|
||||||
*--current = '-';
|
|
||||||
} else {
|
|
||||||
uintToString(LargestUInt(value), current);
|
|
||||||
}
|
|
||||||
assert(current >= buffer);
|
assert(current >= buffer);
|
||||||
return current;
|
return current;
|
||||||
}
|
}
|
||||||
|
|
||||||
JSONCPP_STRING valueToString(LargestUInt value) {
|
std::string valueToString(LargestUInt value) {
|
||||||
UIntToStringBuffer buffer;
|
UIntToStringBuffer buffer;
|
||||||
char* current = buffer + sizeof(buffer);
|
char* current = buffer + sizeof(buffer);
|
||||||
uintToString(value, current);
|
uintToString(value, current);
|
||||||
@@ -125,70 +83,68 @@ JSONCPP_STRING valueToString(LargestUInt value) {
|
|||||||
|
|
||||||
#if defined(JSON_HAS_INT64)
|
#if defined(JSON_HAS_INT64)
|
||||||
|
|
||||||
JSONCPP_STRING valueToString(Int value) {
|
std::string valueToString(Int value) {
|
||||||
return valueToString(LargestInt(value));
|
return valueToString(LargestInt(value));
|
||||||
}
|
}
|
||||||
|
|
||||||
JSONCPP_STRING valueToString(UInt value) {
|
std::string valueToString(UInt value) {
|
||||||
return valueToString(LargestUInt(value));
|
return valueToString(LargestUInt(value));
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif // # if defined(JSON_HAS_INT64)
|
#endif // # if defined(JSON_HAS_INT64)
|
||||||
|
|
||||||
namespace {
|
std::string valueToString(double value) {
|
||||||
JSONCPP_STRING valueToString(double value, bool useSpecialFloats, unsigned int precision) {
|
|
||||||
// Allocate a buffer that is more than large enough to store the 16 digits of
|
// Allocate a buffer that is more than large enough to store the 16 digits of
|
||||||
// precision requested below.
|
// precision requested below.
|
||||||
char buffer[36];
|
char buffer[32];
|
||||||
int len = -1;
|
int len = -1;
|
||||||
|
|
||||||
char formatString[15];
|
// Print into the buffer. We need not request the alternative representation
|
||||||
snprintf(formatString, sizeof(formatString), "%%.%dg", precision);
|
// that always has a decimal point because JSON doesn't distingish the
|
||||||
|
// concepts of reals and integers.
|
||||||
// Print into the buffer. We need not request the alternative representation
|
#if defined(_MSC_VER) && defined(__STDC_SECURE_LIB__) // Use secure version with
|
||||||
// that always has a decimal point because JSON doesn't distingish the
|
// visual studio 2005 to
|
||||||
// concepts of reals and integers.
|
// avoid warning.
|
||||||
|
#if defined(WINCE)
|
||||||
|
len = _snprintf(buffer, sizeof(buffer), "%.17g", value);
|
||||||
|
#else
|
||||||
|
len = sprintf_s(buffer, sizeof(buffer), "%.17g", value);
|
||||||
|
#endif
|
||||||
|
#else
|
||||||
if (isfinite(value)) {
|
if (isfinite(value)) {
|
||||||
len = snprintf(buffer, sizeof(buffer), formatString, value);
|
len = snprintf(buffer, sizeof(buffer), "%.17g", value);
|
||||||
fixNumericLocale(buffer, buffer + len);
|
|
||||||
|
|
||||||
// try to ensure we preserve the fact that this was given to us as a double on input
|
|
||||||
if (!strstr(buffer, ".") && !strstr(buffer, "e")) {
|
|
||||||
strcat(buffer, ".0");
|
|
||||||
}
|
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
// IEEE standard states that NaN values will not compare to themselves
|
// IEEE standard states that NaN values will not compare to themselves
|
||||||
if (value != value) {
|
if (value != value) {
|
||||||
len = snprintf(buffer, sizeof(buffer), useSpecialFloats ? "NaN" : "null");
|
len = snprintf(buffer, sizeof(buffer), "null");
|
||||||
} else if (value < 0) {
|
} else if (value < 0) {
|
||||||
len = snprintf(buffer, sizeof(buffer), useSpecialFloats ? "-Infinity" : "-1e+9999");
|
len = snprintf(buffer, sizeof(buffer), "-1e+9999");
|
||||||
} else {
|
} else {
|
||||||
len = snprintf(buffer, sizeof(buffer), useSpecialFloats ? "Infinity" : "1e+9999");
|
len = snprintf(buffer, sizeof(buffer), "1e+9999");
|
||||||
}
|
}
|
||||||
|
// For those, we do not need to call fixNumLoc, but it is fast.
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
assert(len >= 0);
|
assert(len >= 0);
|
||||||
|
fixNumericLocale(buffer, buffer + len);
|
||||||
return buffer;
|
return buffer;
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
JSONCPP_STRING valueToString(double value) { return valueToString(value, false, 17); }
|
std::string valueToString(bool value) { return value ? "true" : "false"; }
|
||||||
|
|
||||||
JSONCPP_STRING valueToString(bool value) { return value ? "true" : "false"; }
|
std::string valueToQuotedString(const char* value) {
|
||||||
|
|
||||||
JSONCPP_STRING valueToQuotedString(const char* value) {
|
|
||||||
if (value == NULL)
|
if (value == NULL)
|
||||||
return "";
|
return "";
|
||||||
// Not sure how to handle unicode...
|
// Not sure how to handle unicode...
|
||||||
if (strpbrk(value, "\"\\\b\f\n\r\t") == NULL &&
|
if (strpbrk(value, "\"\\\b\f\n\r\t") == NULL &&
|
||||||
!containsControlCharacter(value))
|
!containsControlCharacter(value))
|
||||||
return JSONCPP_STRING("\"") + value + "\"";
|
return std::string("\"") + value + "\"";
|
||||||
// We have to walk value and escape any special characters.
|
// We have to walk value and escape any special characters.
|
||||||
// Appending to JSONCPP_STRING is not efficient, but this should be rare.
|
// Appending to std::string is not efficient, but this should be rare.
|
||||||
// (Note: forward slashes are *not* rare, but I am not escaping them.)
|
// (Note: forward slashes are *not* rare, but I am not escaping them.)
|
||||||
JSONCPP_STRING::size_type maxsize =
|
std::string::size_type maxsize =
|
||||||
strlen(value) * 2 + 3; // allescaped+quotes+NULL
|
strlen(value) * 2 + 3; // allescaped+quotes+NULL
|
||||||
JSONCPP_STRING result;
|
std::string result;
|
||||||
result.reserve(maxsize); // to avoid lots of mallocs
|
result.reserve(maxsize); // to avoid lots of mallocs
|
||||||
result += "\"";
|
result += "\"";
|
||||||
for (const char* c = value; *c != 0; ++c) {
|
for (const char* c = value; *c != 0; ++c) {
|
||||||
@@ -224,7 +180,7 @@ JSONCPP_STRING valueToQuotedString(const char* value) {
|
|||||||
// sequence from occurring.
|
// sequence from occurring.
|
||||||
default:
|
default:
|
||||||
if (isControlCharacter(*c)) {
|
if (isControlCharacter(*c)) {
|
||||||
JSONCPP_OSTRINGSTREAM oss;
|
std::ostringstream oss;
|
||||||
oss << "\\u" << std::hex << std::uppercase << std::setfill('0')
|
oss << "\\u" << std::hex << std::uppercase << std::setfill('0')
|
||||||
<< std::setw(4) << static_cast<int>(*c);
|
<< std::setw(4) << static_cast<int>(*c);
|
||||||
result += oss.str();
|
result += oss.str();
|
||||||
@@ -253,19 +209,19 @@ static char const* strnpbrk(char const* s, char const* accept, size_t n) {
|
|||||||
}
|
}
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
static JSONCPP_STRING valueToQuotedStringN(const char* value, unsigned length) {
|
static std::string valueToQuotedStringN(const char* value, unsigned length) {
|
||||||
if (value == NULL)
|
if (value == NULL)
|
||||||
return "";
|
return "";
|
||||||
// Not sure how to handle unicode...
|
// Not sure how to handle unicode...
|
||||||
if (strnpbrk(value, "\"\\\b\f\n\r\t", length) == NULL &&
|
if (strnpbrk(value, "\"\\\b\f\n\r\t", length) == NULL &&
|
||||||
!containsControlCharacter0(value, length))
|
!containsControlCharacter0(value, length))
|
||||||
return JSONCPP_STRING("\"") + value + "\"";
|
return std::string("\"") + value + "\"";
|
||||||
// We have to walk value and escape any special characters.
|
// We have to walk value and escape any special characters.
|
||||||
// Appending to JSONCPP_STRING is not efficient, but this should be rare.
|
// Appending to std::string is not efficient, but this should be rare.
|
||||||
// (Note: forward slashes are *not* rare, but I am not escaping them.)
|
// (Note: forward slashes are *not* rare, but I am not escaping them.)
|
||||||
JSONCPP_STRING::size_type maxsize =
|
std::string::size_type maxsize =
|
||||||
length * 2 + 3; // allescaped+quotes+NULL
|
length * 2 + 3; // allescaped+quotes+NULL
|
||||||
JSONCPP_STRING result;
|
std::string result;
|
||||||
result.reserve(maxsize); // to avoid lots of mallocs
|
result.reserve(maxsize); // to avoid lots of mallocs
|
||||||
result += "\"";
|
result += "\"";
|
||||||
char const* end = value + length;
|
char const* end = value + length;
|
||||||
@@ -302,7 +258,7 @@ static JSONCPP_STRING valueToQuotedStringN(const char* value, unsigned length) {
|
|||||||
// sequence from occurring.
|
// sequence from occurring.
|
||||||
default:
|
default:
|
||||||
if ((isControlCharacter(*c)) || (*c == 0)) {
|
if ((isControlCharacter(*c)) || (*c == 0)) {
|
||||||
JSONCPP_OSTRINGSTREAM oss;
|
std::ostringstream oss;
|
||||||
oss << "\\u" << std::hex << std::uppercase << std::setfill('0')
|
oss << "\\u" << std::hex << std::uppercase << std::setfill('0')
|
||||||
<< std::setw(4) << static_cast<int>(*c);
|
<< std::setw(4) << static_cast<int>(*c);
|
||||||
result += oss.str();
|
result += oss.str();
|
||||||
@@ -324,28 +280,21 @@ Writer::~Writer() {}
|
|||||||
// //////////////////////////////////////////////////////////////////
|
// //////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
FastWriter::FastWriter()
|
FastWriter::FastWriter()
|
||||||
: yamlCompatiblityEnabled_(false), dropNullPlaceholders_(false),
|
: yamlCompatiblityEnabled_(false) {}
|
||||||
omitEndingLineFeed_(false) {}
|
|
||||||
|
|
||||||
void FastWriter::enableYAMLCompatibility() { yamlCompatiblityEnabled_ = true; }
|
void FastWriter::enableYAMLCompatibility() { yamlCompatiblityEnabled_ = true; }
|
||||||
|
|
||||||
void FastWriter::dropNullPlaceholders() { dropNullPlaceholders_ = true; }
|
std::string FastWriter::write(const Value& root) {
|
||||||
|
document_ = "";
|
||||||
void FastWriter::omitEndingLineFeed() { omitEndingLineFeed_ = true; }
|
|
||||||
|
|
||||||
JSONCPP_STRING FastWriter::write(const Value& root) {
|
|
||||||
document_.clear();
|
|
||||||
writeValue(root);
|
writeValue(root);
|
||||||
if (!omitEndingLineFeed_)
|
document_ += "\n";
|
||||||
document_ += "\n";
|
|
||||||
return document_;
|
return document_;
|
||||||
}
|
}
|
||||||
|
|
||||||
void FastWriter::writeValue(const Value& value) {
|
void FastWriter::writeValue(const Value& value) {
|
||||||
switch (value.type()) {
|
switch (value.type()) {
|
||||||
case nullValue:
|
case nullValue:
|
||||||
if (!dropNullPlaceholders_)
|
document_ += "null";
|
||||||
document_ += "null";
|
|
||||||
break;
|
break;
|
||||||
case intValue:
|
case intValue:
|
||||||
document_ += valueToString(value.asLargestInt());
|
document_ += valueToString(value.asLargestInt());
|
||||||
@@ -357,21 +306,15 @@ void FastWriter::writeValue(const Value& value) {
|
|||||||
document_ += valueToString(value.asDouble());
|
document_ += valueToString(value.asDouble());
|
||||||
break;
|
break;
|
||||||
case stringValue:
|
case stringValue:
|
||||||
{
|
document_ += valueToQuotedString(value.asCString());
|
||||||
// Is NULL possible for value.string_? No.
|
|
||||||
char const* str;
|
|
||||||
char const* end;
|
|
||||||
bool ok = value.getString(&str, &end);
|
|
||||||
if (ok) document_ += valueToQuotedStringN(str, static_cast<unsigned>(end-str));
|
|
||||||
break;
|
break;
|
||||||
}
|
|
||||||
case booleanValue:
|
case booleanValue:
|
||||||
document_ += valueToString(value.asBool());
|
document_ += valueToString(value.asBool());
|
||||||
break;
|
break;
|
||||||
case arrayValue: {
|
case arrayValue: {
|
||||||
document_ += '[';
|
document_ += '[';
|
||||||
ArrayIndex size = value.size();
|
int size = value.size();
|
||||||
for (ArrayIndex index = 0; index < size; ++index) {
|
for (int index = 0; index < size; ++index) {
|
||||||
if (index > 0)
|
if (index > 0)
|
||||||
document_ += ',';
|
document_ += ',';
|
||||||
writeValue(value[index]);
|
writeValue(value[index]);
|
||||||
@@ -383,10 +326,10 @@ void FastWriter::writeValue(const Value& value) {
|
|||||||
document_ += '{';
|
document_ += '{';
|
||||||
for (Value::Members::iterator it = members.begin(); it != members.end();
|
for (Value::Members::iterator it = members.begin(); it != members.end();
|
||||||
++it) {
|
++it) {
|
||||||
const JSONCPP_STRING& name = *it;
|
const std::string& name = *it;
|
||||||
if (it != members.begin())
|
if (it != members.begin())
|
||||||
document_ += ',';
|
document_ += ',';
|
||||||
document_ += valueToQuotedStringN(name.data(), static_cast<unsigned>(name.length()));
|
document_ += valueToQuotedStringN(name.data(), name.length());
|
||||||
document_ += yamlCompatiblityEnabled_ ? ": " : ":";
|
document_ += yamlCompatiblityEnabled_ ? ": " : ":";
|
||||||
writeValue(value[name]);
|
writeValue(value[name]);
|
||||||
}
|
}
|
||||||
@@ -401,10 +344,10 @@ void FastWriter::writeValue(const Value& value) {
|
|||||||
StyledWriter::StyledWriter()
|
StyledWriter::StyledWriter()
|
||||||
: rightMargin_(74), indentSize_(3), addChildValues_() {}
|
: rightMargin_(74), indentSize_(3), addChildValues_() {}
|
||||||
|
|
||||||
JSONCPP_STRING StyledWriter::write(const Value& root) {
|
std::string StyledWriter::write(const Value& root) {
|
||||||
document_.clear();
|
document_ = "";
|
||||||
addChildValues_ = false;
|
addChildValues_ = false;
|
||||||
indentString_.clear();
|
indentString_ = "";
|
||||||
writeCommentBeforeValue(root);
|
writeCommentBeforeValue(root);
|
||||||
writeValue(root);
|
writeValue(root);
|
||||||
writeCommentAfterValueOnSameLine(root);
|
writeCommentAfterValueOnSameLine(root);
|
||||||
@@ -428,7 +371,7 @@ void StyledWriter::writeValue(const Value& value) {
|
|||||||
break;
|
break;
|
||||||
case stringValue:
|
case stringValue:
|
||||||
{
|
{
|
||||||
// Is NULL possible for value.string_? No.
|
// Is NULL is possible for value.string_?
|
||||||
char const* str;
|
char const* str;
|
||||||
char const* end;
|
char const* end;
|
||||||
bool ok = value.getString(&str, &end);
|
bool ok = value.getString(&str, &end);
|
||||||
@@ -451,7 +394,7 @@ void StyledWriter::writeValue(const Value& value) {
|
|||||||
indent();
|
indent();
|
||||||
Value::Members::iterator it = members.begin();
|
Value::Members::iterator it = members.begin();
|
||||||
for (;;) {
|
for (;;) {
|
||||||
const JSONCPP_STRING& name = *it;
|
const std::string& name = *it;
|
||||||
const Value& childValue = value[name];
|
const Value& childValue = value[name];
|
||||||
writeCommentBeforeValue(childValue);
|
writeCommentBeforeValue(childValue);
|
||||||
writeWithIndent(valueToQuotedString(name.c_str()));
|
writeWithIndent(valueToQuotedString(name.c_str()));
|
||||||
@@ -515,25 +458,26 @@ void StyledWriter::writeArrayValue(const Value& value) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
bool StyledWriter::isMultineArray(const Value& value) {
|
bool StyledWriter::isMultineArray(const Value& value) {
|
||||||
ArrayIndex const size = value.size();
|
int size = value.size();
|
||||||
bool isMultiLine = size * 3 >= rightMargin_;
|
bool isMultiLine = size * 3 >= rightMargin_;
|
||||||
childValues_.clear();
|
childValues_.clear();
|
||||||
for (ArrayIndex index = 0; index < size && !isMultiLine; ++index) {
|
for (int index = 0; index < size && !isMultiLine; ++index) {
|
||||||
const Value& childValue = value[index];
|
const Value& childValue = value[index];
|
||||||
isMultiLine = ((childValue.isArray() || childValue.isObject()) &&
|
isMultiLine =
|
||||||
|
isMultiLine || ((childValue.isArray() || childValue.isObject()) &&
|
||||||
childValue.size() > 0);
|
childValue.size() > 0);
|
||||||
}
|
}
|
||||||
if (!isMultiLine) // check if line length > max line length
|
if (!isMultiLine) // check if line length > max line length
|
||||||
{
|
{
|
||||||
childValues_.reserve(size);
|
childValues_.reserve(size);
|
||||||
addChildValues_ = true;
|
addChildValues_ = true;
|
||||||
ArrayIndex lineLength = 4 + (size - 1) * 2; // '[ ' + ', '*n + ' ]'
|
int lineLength = 4 + (size - 1) * 2; // '[ ' + ', '*n + ' ]'
|
||||||
for (ArrayIndex index = 0; index < size; ++index) {
|
for (int index = 0; index < size; ++index) {
|
||||||
if (hasCommentForValue(value[index])) {
|
if (hasCommentForValue(value[index])) {
|
||||||
isMultiLine = true;
|
isMultiLine = true;
|
||||||
}
|
}
|
||||||
writeValue(value[index]);
|
writeValue(value[index]);
|
||||||
lineLength += static_cast<ArrayIndex>(childValues_[index].length());
|
lineLength += int(childValues_[index].length());
|
||||||
}
|
}
|
||||||
addChildValues_ = false;
|
addChildValues_ = false;
|
||||||
isMultiLine = isMultiLine || lineLength >= rightMargin_;
|
isMultiLine = isMultiLine || lineLength >= rightMargin_;
|
||||||
@@ -541,7 +485,7 @@ bool StyledWriter::isMultineArray(const Value& value) {
|
|||||||
return isMultiLine;
|
return isMultiLine;
|
||||||
}
|
}
|
||||||
|
|
||||||
void StyledWriter::pushValue(const JSONCPP_STRING& value) {
|
void StyledWriter::pushValue(const std::string& value) {
|
||||||
if (addChildValues_)
|
if (addChildValues_)
|
||||||
childValues_.push_back(value);
|
childValues_.push_back(value);
|
||||||
else
|
else
|
||||||
@@ -559,15 +503,15 @@ void StyledWriter::writeIndent() {
|
|||||||
document_ += indentString_;
|
document_ += indentString_;
|
||||||
}
|
}
|
||||||
|
|
||||||
void StyledWriter::writeWithIndent(const JSONCPP_STRING& value) {
|
void StyledWriter::writeWithIndent(const std::string& value) {
|
||||||
writeIndent();
|
writeIndent();
|
||||||
document_ += value;
|
document_ += value;
|
||||||
}
|
}
|
||||||
|
|
||||||
void StyledWriter::indent() { indentString_ += JSONCPP_STRING(indentSize_, ' '); }
|
void StyledWriter::indent() { indentString_ += std::string(indentSize_, ' '); }
|
||||||
|
|
||||||
void StyledWriter::unindent() {
|
void StyledWriter::unindent() {
|
||||||
assert(indentString_.size() >= indentSize_);
|
assert(int(indentString_.size()) >= indentSize_);
|
||||||
indentString_.resize(indentString_.size() - indentSize_);
|
indentString_.resize(indentString_.size() - indentSize_);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -577,8 +521,8 @@ void StyledWriter::writeCommentBeforeValue(const Value& root) {
|
|||||||
|
|
||||||
document_ += "\n";
|
document_ += "\n";
|
||||||
writeIndent();
|
writeIndent();
|
||||||
const JSONCPP_STRING& comment = root.getComment(commentBefore);
|
const std::string& comment = root.getComment(commentBefore);
|
||||||
JSONCPP_STRING::const_iterator iter = comment.begin();
|
std::string::const_iterator iter = comment.begin();
|
||||||
while (iter != comment.end()) {
|
while (iter != comment.end()) {
|
||||||
document_ += *iter;
|
document_ += *iter;
|
||||||
if (*iter == '\n' &&
|
if (*iter == '\n' &&
|
||||||
@@ -611,14 +555,14 @@ bool StyledWriter::hasCommentForValue(const Value& value) {
|
|||||||
// Class StyledStreamWriter
|
// Class StyledStreamWriter
|
||||||
// //////////////////////////////////////////////////////////////////
|
// //////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
StyledStreamWriter::StyledStreamWriter(JSONCPP_STRING indentation)
|
StyledStreamWriter::StyledStreamWriter(std::string indentation)
|
||||||
: document_(NULL), rightMargin_(74), indentation_(indentation),
|
: document_(NULL), rightMargin_(74), indentation_(indentation),
|
||||||
addChildValues_() {}
|
addChildValues_() {}
|
||||||
|
|
||||||
void StyledStreamWriter::write(JSONCPP_OSTREAM& out, const Value& root) {
|
void StyledStreamWriter::write(std::ostream& out, const Value& root) {
|
||||||
document_ = &out;
|
document_ = &out;
|
||||||
addChildValues_ = false;
|
addChildValues_ = false;
|
||||||
indentString_.clear();
|
indentString_ = "";
|
||||||
indented_ = true;
|
indented_ = true;
|
||||||
writeCommentBeforeValue(root);
|
writeCommentBeforeValue(root);
|
||||||
if (!indented_) writeIndent();
|
if (!indented_) writeIndent();
|
||||||
@@ -644,15 +588,8 @@ void StyledStreamWriter::writeValue(const Value& value) {
|
|||||||
pushValue(valueToString(value.asDouble()));
|
pushValue(valueToString(value.asDouble()));
|
||||||
break;
|
break;
|
||||||
case stringValue:
|
case stringValue:
|
||||||
{
|
pushValue(valueToQuotedString(value.asCString()));
|
||||||
// Is NULL possible for value.string_? No.
|
|
||||||
char const* str;
|
|
||||||
char const* end;
|
|
||||||
bool ok = value.getString(&str, &end);
|
|
||||||
if (ok) pushValue(valueToQuotedStringN(str, static_cast<unsigned>(end-str)));
|
|
||||||
else pushValue("");
|
|
||||||
break;
|
break;
|
||||||
}
|
|
||||||
case booleanValue:
|
case booleanValue:
|
||||||
pushValue(valueToString(value.asBool()));
|
pushValue(valueToString(value.asBool()));
|
||||||
break;
|
break;
|
||||||
@@ -668,7 +605,7 @@ void StyledStreamWriter::writeValue(const Value& value) {
|
|||||||
indent();
|
indent();
|
||||||
Value::Members::iterator it = members.begin();
|
Value::Members::iterator it = members.begin();
|
||||||
for (;;) {
|
for (;;) {
|
||||||
const JSONCPP_STRING& name = *it;
|
const std::string& name = *it;
|
||||||
const Value& childValue = value[name];
|
const Value& childValue = value[name];
|
||||||
writeCommentBeforeValue(childValue);
|
writeCommentBeforeValue(childValue);
|
||||||
writeWithIndent(valueToQuotedString(name.c_str()));
|
writeWithIndent(valueToQuotedString(name.c_str()));
|
||||||
@@ -734,25 +671,26 @@ void StyledStreamWriter::writeArrayValue(const Value& value) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
bool StyledStreamWriter::isMultineArray(const Value& value) {
|
bool StyledStreamWriter::isMultineArray(const Value& value) {
|
||||||
ArrayIndex const size = value.size();
|
int size = value.size();
|
||||||
bool isMultiLine = size * 3 >= rightMargin_;
|
bool isMultiLine = size * 3 >= rightMargin_;
|
||||||
childValues_.clear();
|
childValues_.clear();
|
||||||
for (ArrayIndex index = 0; index < size && !isMultiLine; ++index) {
|
for (int index = 0; index < size && !isMultiLine; ++index) {
|
||||||
const Value& childValue = value[index];
|
const Value& childValue = value[index];
|
||||||
isMultiLine = ((childValue.isArray() || childValue.isObject()) &&
|
isMultiLine =
|
||||||
|
isMultiLine || ((childValue.isArray() || childValue.isObject()) &&
|
||||||
childValue.size() > 0);
|
childValue.size() > 0);
|
||||||
}
|
}
|
||||||
if (!isMultiLine) // check if line length > max line length
|
if (!isMultiLine) // check if line length > max line length
|
||||||
{
|
{
|
||||||
childValues_.reserve(size);
|
childValues_.reserve(size);
|
||||||
addChildValues_ = true;
|
addChildValues_ = true;
|
||||||
ArrayIndex lineLength = 4 + (size - 1) * 2; // '[ ' + ', '*n + ' ]'
|
int lineLength = 4 + (size - 1) * 2; // '[ ' + ', '*n + ' ]'
|
||||||
for (ArrayIndex index = 0; index < size; ++index) {
|
for (int index = 0; index < size; ++index) {
|
||||||
if (hasCommentForValue(value[index])) {
|
if (hasCommentForValue(value[index])) {
|
||||||
isMultiLine = true;
|
isMultiLine = true;
|
||||||
}
|
}
|
||||||
writeValue(value[index]);
|
writeValue(value[index]);
|
||||||
lineLength += static_cast<ArrayIndex>(childValues_[index].length());
|
lineLength += int(childValues_[index].length());
|
||||||
}
|
}
|
||||||
addChildValues_ = false;
|
addChildValues_ = false;
|
||||||
isMultiLine = isMultiLine || lineLength >= rightMargin_;
|
isMultiLine = isMultiLine || lineLength >= rightMargin_;
|
||||||
@@ -760,7 +698,7 @@ bool StyledStreamWriter::isMultineArray(const Value& value) {
|
|||||||
return isMultiLine;
|
return isMultiLine;
|
||||||
}
|
}
|
||||||
|
|
||||||
void StyledStreamWriter::pushValue(const JSONCPP_STRING& value) {
|
void StyledStreamWriter::pushValue(const std::string& value) {
|
||||||
if (addChildValues_)
|
if (addChildValues_)
|
||||||
childValues_.push_back(value);
|
childValues_.push_back(value);
|
||||||
else
|
else
|
||||||
@@ -775,7 +713,7 @@ void StyledStreamWriter::writeIndent() {
|
|||||||
*document_ << '\n' << indentString_;
|
*document_ << '\n' << indentString_;
|
||||||
}
|
}
|
||||||
|
|
||||||
void StyledStreamWriter::writeWithIndent(const JSONCPP_STRING& value) {
|
void StyledStreamWriter::writeWithIndent(const std::string& value) {
|
||||||
if (!indented_) writeIndent();
|
if (!indented_) writeIndent();
|
||||||
*document_ << value;
|
*document_ << value;
|
||||||
indented_ = false;
|
indented_ = false;
|
||||||
@@ -793,8 +731,8 @@ void StyledStreamWriter::writeCommentBeforeValue(const Value& root) {
|
|||||||
return;
|
return;
|
||||||
|
|
||||||
if (!indented_) writeIndent();
|
if (!indented_) writeIndent();
|
||||||
const JSONCPP_STRING& comment = root.getComment(commentBefore);
|
const std::string& comment = root.getComment(commentBefore);
|
||||||
JSONCPP_STRING::const_iterator iter = comment.begin();
|
std::string::const_iterator iter = comment.begin();
|
||||||
while (iter != comment.end()) {
|
while (iter != comment.end()) {
|
||||||
*document_ << *iter;
|
*document_ << *iter;
|
||||||
if (*iter == '\n' &&
|
if (*iter == '\n' &&
|
||||||
@@ -839,50 +777,44 @@ struct CommentStyle {
|
|||||||
struct BuiltStyledStreamWriter : public StreamWriter
|
struct BuiltStyledStreamWriter : public StreamWriter
|
||||||
{
|
{
|
||||||
BuiltStyledStreamWriter(
|
BuiltStyledStreamWriter(
|
||||||
JSONCPP_STRING const& indentation,
|
std::string const& indentation,
|
||||||
CommentStyle::Enum cs,
|
CommentStyle::Enum cs,
|
||||||
JSONCPP_STRING const& colonSymbol,
|
std::string const& colonSymbol,
|
||||||
JSONCPP_STRING const& nullSymbol,
|
std::string const& nullSymbol,
|
||||||
JSONCPP_STRING const& endingLineFeedSymbol,
|
std::string const& endingLineFeedSymbol);
|
||||||
bool useSpecialFloats,
|
virtual int write(Value const& root, std::ostream* sout);
|
||||||
unsigned int precision);
|
|
||||||
int write(Value const& root, JSONCPP_OSTREAM* sout) JSONCPP_OVERRIDE;
|
|
||||||
private:
|
private:
|
||||||
void writeValue(Value const& value);
|
void writeValue(Value const& value);
|
||||||
void writeArrayValue(Value const& value);
|
void writeArrayValue(Value const& value);
|
||||||
bool isMultineArray(Value const& value);
|
bool isMultineArray(Value const& value);
|
||||||
void pushValue(JSONCPP_STRING const& value);
|
void pushValue(std::string const& value);
|
||||||
void writeIndent();
|
void writeIndent();
|
||||||
void writeWithIndent(JSONCPP_STRING const& value);
|
void writeWithIndent(std::string const& value);
|
||||||
void indent();
|
void indent();
|
||||||
void unindent();
|
void unindent();
|
||||||
void writeCommentBeforeValue(Value const& root);
|
void writeCommentBeforeValue(Value const& root);
|
||||||
void writeCommentAfterValueOnSameLine(Value const& root);
|
void writeCommentAfterValueOnSameLine(Value const& root);
|
||||||
static bool hasCommentForValue(const Value& value);
|
static bool hasCommentForValue(const Value& value);
|
||||||
|
|
||||||
typedef std::vector<JSONCPP_STRING> ChildValues;
|
typedef std::vector<std::string> ChildValues;
|
||||||
|
|
||||||
ChildValues childValues_;
|
ChildValues childValues_;
|
||||||
JSONCPP_STRING indentString_;
|
std::string indentString_;
|
||||||
unsigned int rightMargin_;
|
int rightMargin_;
|
||||||
JSONCPP_STRING indentation_;
|
std::string indentation_;
|
||||||
CommentStyle::Enum cs_;
|
CommentStyle::Enum cs_;
|
||||||
JSONCPP_STRING colonSymbol_;
|
std::string colonSymbol_;
|
||||||
JSONCPP_STRING nullSymbol_;
|
std::string nullSymbol_;
|
||||||
JSONCPP_STRING endingLineFeedSymbol_;
|
std::string endingLineFeedSymbol_;
|
||||||
bool addChildValues_ : 1;
|
bool addChildValues_ : 1;
|
||||||
bool indented_ : 1;
|
bool indented_ : 1;
|
||||||
bool useSpecialFloats_ : 1;
|
|
||||||
unsigned int precision_;
|
|
||||||
};
|
};
|
||||||
BuiltStyledStreamWriter::BuiltStyledStreamWriter(
|
BuiltStyledStreamWriter::BuiltStyledStreamWriter(
|
||||||
JSONCPP_STRING const& indentation,
|
std::string const& indentation,
|
||||||
CommentStyle::Enum cs,
|
CommentStyle::Enum cs,
|
||||||
JSONCPP_STRING const& colonSymbol,
|
std::string const& colonSymbol,
|
||||||
JSONCPP_STRING const& nullSymbol,
|
std::string const& nullSymbol,
|
||||||
JSONCPP_STRING const& endingLineFeedSymbol,
|
std::string const& endingLineFeedSymbol)
|
||||||
bool useSpecialFloats,
|
|
||||||
unsigned int precision)
|
|
||||||
: rightMargin_(74)
|
: rightMargin_(74)
|
||||||
, indentation_(indentation)
|
, indentation_(indentation)
|
||||||
, cs_(cs)
|
, cs_(cs)
|
||||||
@@ -891,16 +823,14 @@ BuiltStyledStreamWriter::BuiltStyledStreamWriter(
|
|||||||
, endingLineFeedSymbol_(endingLineFeedSymbol)
|
, endingLineFeedSymbol_(endingLineFeedSymbol)
|
||||||
, addChildValues_(false)
|
, addChildValues_(false)
|
||||||
, indented_(false)
|
, indented_(false)
|
||||||
, useSpecialFloats_(useSpecialFloats)
|
|
||||||
, precision_(precision)
|
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
int BuiltStyledStreamWriter::write(Value const& root, JSONCPP_OSTREAM* sout)
|
int BuiltStyledStreamWriter::write(Value const& root, std::ostream* sout)
|
||||||
{
|
{
|
||||||
sout_ = sout;
|
sout_ = sout;
|
||||||
addChildValues_ = false;
|
addChildValues_ = false;
|
||||||
indented_ = true;
|
indented_ = true;
|
||||||
indentString_.clear();
|
indentString_ = "";
|
||||||
writeCommentBeforeValue(root);
|
writeCommentBeforeValue(root);
|
||||||
if (!indented_) writeIndent();
|
if (!indented_) writeIndent();
|
||||||
indented_ = true;
|
indented_ = true;
|
||||||
@@ -922,11 +852,11 @@ void BuiltStyledStreamWriter::writeValue(Value const& value) {
|
|||||||
pushValue(valueToString(value.asLargestUInt()));
|
pushValue(valueToString(value.asLargestUInt()));
|
||||||
break;
|
break;
|
||||||
case realValue:
|
case realValue:
|
||||||
pushValue(valueToString(value.asDouble(), useSpecialFloats_, precision_));
|
pushValue(valueToString(value.asDouble()));
|
||||||
break;
|
break;
|
||||||
case stringValue:
|
case stringValue:
|
||||||
{
|
{
|
||||||
// Is NULL is possible for value.string_? No.
|
// Is NULL is possible for value.string_?
|
||||||
char const* str;
|
char const* str;
|
||||||
char const* end;
|
char const* end;
|
||||||
bool ok = value.getString(&str, &end);
|
bool ok = value.getString(&str, &end);
|
||||||
@@ -949,10 +879,10 @@ void BuiltStyledStreamWriter::writeValue(Value const& value) {
|
|||||||
indent();
|
indent();
|
||||||
Value::Members::iterator it = members.begin();
|
Value::Members::iterator it = members.begin();
|
||||||
for (;;) {
|
for (;;) {
|
||||||
JSONCPP_STRING const& name = *it;
|
std::string const& name = *it;
|
||||||
Value const& childValue = value[name];
|
Value const& childValue = value[name];
|
||||||
writeCommentBeforeValue(childValue);
|
writeCommentBeforeValue(childValue);
|
||||||
writeWithIndent(valueToQuotedStringN(name.data(), static_cast<unsigned>(name.length())));
|
writeWithIndent(valueToQuotedStringN(name.data(), name.length()));
|
||||||
*sout_ << colonSymbol_;
|
*sout_ << colonSymbol_;
|
||||||
writeValue(childValue);
|
writeValue(childValue);
|
||||||
if (++it == members.end()) {
|
if (++it == members.end()) {
|
||||||
@@ -1007,7 +937,7 @@ void BuiltStyledStreamWriter::writeArrayValue(Value const& value) {
|
|||||||
if (!indentation_.empty()) *sout_ << " ";
|
if (!indentation_.empty()) *sout_ << " ";
|
||||||
for (unsigned index = 0; index < size; ++index) {
|
for (unsigned index = 0; index < size; ++index) {
|
||||||
if (index > 0)
|
if (index > 0)
|
||||||
*sout_ << ((!indentation_.empty()) ? ", " : ",");
|
*sout_ << ", ";
|
||||||
*sout_ << childValues_[index];
|
*sout_ << childValues_[index];
|
||||||
}
|
}
|
||||||
if (!indentation_.empty()) *sout_ << " ";
|
if (!indentation_.empty()) *sout_ << " ";
|
||||||
@@ -1017,25 +947,26 @@ void BuiltStyledStreamWriter::writeArrayValue(Value const& value) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
bool BuiltStyledStreamWriter::isMultineArray(Value const& value) {
|
bool BuiltStyledStreamWriter::isMultineArray(Value const& value) {
|
||||||
ArrayIndex const size = value.size();
|
int size = value.size();
|
||||||
bool isMultiLine = size * 3 >= rightMargin_;
|
bool isMultiLine = size * 3 >= rightMargin_;
|
||||||
childValues_.clear();
|
childValues_.clear();
|
||||||
for (ArrayIndex index = 0; index < size && !isMultiLine; ++index) {
|
for (int index = 0; index < size && !isMultiLine; ++index) {
|
||||||
Value const& childValue = value[index];
|
Value const& childValue = value[index];
|
||||||
isMultiLine = ((childValue.isArray() || childValue.isObject()) &&
|
isMultiLine =
|
||||||
|
isMultiLine || ((childValue.isArray() || childValue.isObject()) &&
|
||||||
childValue.size() > 0);
|
childValue.size() > 0);
|
||||||
}
|
}
|
||||||
if (!isMultiLine) // check if line length > max line length
|
if (!isMultiLine) // check if line length > max line length
|
||||||
{
|
{
|
||||||
childValues_.reserve(size);
|
childValues_.reserve(size);
|
||||||
addChildValues_ = true;
|
addChildValues_ = true;
|
||||||
ArrayIndex lineLength = 4 + (size - 1) * 2; // '[ ' + ', '*n + ' ]'
|
int lineLength = 4 + (size - 1) * 2; // '[ ' + ', '*n + ' ]'
|
||||||
for (ArrayIndex index = 0; index < size; ++index) {
|
for (int index = 0; index < size; ++index) {
|
||||||
if (hasCommentForValue(value[index])) {
|
if (hasCommentForValue(value[index])) {
|
||||||
isMultiLine = true;
|
isMultiLine = true;
|
||||||
}
|
}
|
||||||
writeValue(value[index]);
|
writeValue(value[index]);
|
||||||
lineLength += static_cast<ArrayIndex>(childValues_[index].length());
|
lineLength += int(childValues_[index].length());
|
||||||
}
|
}
|
||||||
addChildValues_ = false;
|
addChildValues_ = false;
|
||||||
isMultiLine = isMultiLine || lineLength >= rightMargin_;
|
isMultiLine = isMultiLine || lineLength >= rightMargin_;
|
||||||
@@ -1043,7 +974,7 @@ bool BuiltStyledStreamWriter::isMultineArray(Value const& value) {
|
|||||||
return isMultiLine;
|
return isMultiLine;
|
||||||
}
|
}
|
||||||
|
|
||||||
void BuiltStyledStreamWriter::pushValue(JSONCPP_STRING const& value) {
|
void BuiltStyledStreamWriter::pushValue(std::string const& value) {
|
||||||
if (addChildValues_)
|
if (addChildValues_)
|
||||||
childValues_.push_back(value);
|
childValues_.push_back(value);
|
||||||
else
|
else
|
||||||
@@ -1062,7 +993,7 @@ void BuiltStyledStreamWriter::writeIndent() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void BuiltStyledStreamWriter::writeWithIndent(JSONCPP_STRING const& value) {
|
void BuiltStyledStreamWriter::writeWithIndent(std::string const& value) {
|
||||||
if (!indented_) writeIndent();
|
if (!indented_) writeIndent();
|
||||||
*sout_ << value;
|
*sout_ << value;
|
||||||
indented_ = false;
|
indented_ = false;
|
||||||
@@ -1081,8 +1012,8 @@ void BuiltStyledStreamWriter::writeCommentBeforeValue(Value const& root) {
|
|||||||
return;
|
return;
|
||||||
|
|
||||||
if (!indented_) writeIndent();
|
if (!indented_) writeIndent();
|
||||||
const JSONCPP_STRING& comment = root.getComment(commentBefore);
|
const std::string& comment = root.getComment(commentBefore);
|
||||||
JSONCPP_STRING::const_iterator iter = comment.begin();
|
std::string::const_iterator iter = comment.begin();
|
||||||
while (iter != comment.end()) {
|
while (iter != comment.end()) {
|
||||||
*sout_ << *iter;
|
*sout_ << *iter;
|
||||||
if (*iter == '\n' &&
|
if (*iter == '\n' &&
|
||||||
@@ -1132,64 +1063,59 @@ StreamWriterBuilder::~StreamWriterBuilder()
|
|||||||
{}
|
{}
|
||||||
StreamWriter* StreamWriterBuilder::newStreamWriter() const
|
StreamWriter* StreamWriterBuilder::newStreamWriter() const
|
||||||
{
|
{
|
||||||
JSONCPP_STRING indentation = settings_["indentation"].asString();
|
std::string indentation = settings_["indentation"].asString();
|
||||||
JSONCPP_STRING cs_str = settings_["commentStyle"].asString();
|
std::string cs_str = settings_["commentStyle"].asString();
|
||||||
bool eyc = settings_["enableYAMLCompatibility"].asBool();
|
bool eyc = settings_["enableYAMLCompatibility"].asBool();
|
||||||
bool dnp = settings_["dropNullPlaceholders"].asBool();
|
bool dnp = settings_["dropNullPlaceholders"].asBool();
|
||||||
bool usf = settings_["useSpecialFloats"].asBool();
|
|
||||||
unsigned int pre = settings_["precision"].asUInt();
|
|
||||||
CommentStyle::Enum cs = CommentStyle::All;
|
CommentStyle::Enum cs = CommentStyle::All;
|
||||||
if (cs_str == "All") {
|
if (cs_str == "All") {
|
||||||
cs = CommentStyle::All;
|
cs = CommentStyle::All;
|
||||||
} else if (cs_str == "None") {
|
} else if (cs_str == "None") {
|
||||||
cs = CommentStyle::None;
|
cs = CommentStyle::None;
|
||||||
} else {
|
} else {
|
||||||
throwRuntimeError("commentStyle must be 'All' or 'None'");
|
throw std::runtime_error("commentStyle must be 'All' or 'None'");
|
||||||
}
|
}
|
||||||
JSONCPP_STRING colonSymbol = " : ";
|
std::string colonSymbol = " : ";
|
||||||
if (eyc) {
|
if (eyc) {
|
||||||
colonSymbol = ": ";
|
colonSymbol = ": ";
|
||||||
} else if (indentation.empty()) {
|
} else if (indentation.empty()) {
|
||||||
colonSymbol = ":";
|
colonSymbol = ":";
|
||||||
}
|
}
|
||||||
JSONCPP_STRING nullSymbol = "null";
|
std::string nullSymbol = "null";
|
||||||
if (dnp) {
|
if (dnp) {
|
||||||
nullSymbol.clear();
|
nullSymbol = "";
|
||||||
}
|
}
|
||||||
if (pre > 17) pre = 17;
|
std::string endingLineFeedSymbol = "";
|
||||||
JSONCPP_STRING endingLineFeedSymbol;
|
|
||||||
return new BuiltStyledStreamWriter(
|
return new BuiltStyledStreamWriter(
|
||||||
indentation, cs,
|
indentation, cs,
|
||||||
colonSymbol, nullSymbol, endingLineFeedSymbol, usf, pre);
|
colonSymbol, nullSymbol, endingLineFeedSymbol);
|
||||||
}
|
}
|
||||||
static void getValidWriterKeys(std::set<JSONCPP_STRING>* valid_keys)
|
static void getValidWriterKeys(std::set<std::string>* valid_keys)
|
||||||
{
|
{
|
||||||
valid_keys->clear();
|
valid_keys->clear();
|
||||||
valid_keys->insert("indentation");
|
valid_keys->insert("indentation");
|
||||||
valid_keys->insert("commentStyle");
|
valid_keys->insert("commentStyle");
|
||||||
valid_keys->insert("enableYAMLCompatibility");
|
valid_keys->insert("enableYAMLCompatibility");
|
||||||
valid_keys->insert("dropNullPlaceholders");
|
valid_keys->insert("dropNullPlaceholders");
|
||||||
valid_keys->insert("useSpecialFloats");
|
|
||||||
valid_keys->insert("precision");
|
|
||||||
}
|
}
|
||||||
bool StreamWriterBuilder::validate(Json::Value* invalid) const
|
bool StreamWriterBuilder::validate(Json::Value* invalid) const
|
||||||
{
|
{
|
||||||
Json::Value my_invalid;
|
Json::Value my_invalid;
|
||||||
if (!invalid) invalid = &my_invalid; // so we do not need to test for NULL
|
if (!invalid) invalid = &my_invalid; // so we do not need to test for NULL
|
||||||
Json::Value& inv = *invalid;
|
Json::Value& inv = *invalid;
|
||||||
std::set<JSONCPP_STRING> valid_keys;
|
std::set<std::string> valid_keys;
|
||||||
getValidWriterKeys(&valid_keys);
|
getValidWriterKeys(&valid_keys);
|
||||||
Value::Members keys = settings_.getMemberNames();
|
Value::Members keys = settings_.getMemberNames();
|
||||||
size_t n = keys.size();
|
size_t n = keys.size();
|
||||||
for (size_t i = 0; i < n; ++i) {
|
for (size_t i = 0; i < n; ++i) {
|
||||||
JSONCPP_STRING const& key = keys[i];
|
std::string const& key = keys[i];
|
||||||
if (valid_keys.find(key) == valid_keys.end()) {
|
if (valid_keys.find(key) == valid_keys.end()) {
|
||||||
inv[key] = settings_[key];
|
inv[key] = settings_[key];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return 0u == inv.size();
|
return 0u == inv.size();
|
||||||
}
|
}
|
||||||
Value& StreamWriterBuilder::operator[](JSONCPP_STRING key)
|
Value& StreamWriterBuilder::operator[](std::string key)
|
||||||
{
|
{
|
||||||
return settings_[key];
|
return settings_[key];
|
||||||
}
|
}
|
||||||
@@ -1201,19 +1127,17 @@ void StreamWriterBuilder::setDefaults(Json::Value* settings)
|
|||||||
(*settings)["indentation"] = "\t";
|
(*settings)["indentation"] = "\t";
|
||||||
(*settings)["enableYAMLCompatibility"] = false;
|
(*settings)["enableYAMLCompatibility"] = false;
|
||||||
(*settings)["dropNullPlaceholders"] = false;
|
(*settings)["dropNullPlaceholders"] = false;
|
||||||
(*settings)["useSpecialFloats"] = false;
|
|
||||||
(*settings)["precision"] = 17;
|
|
||||||
//! [StreamWriterBuilderDefaults]
|
//! [StreamWriterBuilderDefaults]
|
||||||
}
|
}
|
||||||
|
|
||||||
JSONCPP_STRING writeString(StreamWriter::Factory const& builder, Value const& root) {
|
std::string writeString(StreamWriter::Factory const& builder, Value const& root) {
|
||||||
JSONCPP_OSTRINGSTREAM sout;
|
std::ostringstream sout;
|
||||||
StreamWriterPtr const writer(builder.newStreamWriter());
|
StreamWriterPtr const writer(builder.newStreamWriter());
|
||||||
writer->write(root, &sout);
|
writer->write(root, &sout);
|
||||||
return sout.str();
|
return sout.str();
|
||||||
}
|
}
|
||||||
|
|
||||||
JSONCPP_OSTREAM& operator<<(JSONCPP_OSTREAM& sout, Value const& root) {
|
std::ostream& operator<<(std::ostream& sout, Value const& root) {
|
||||||
StreamWriterBuilder builder;
|
StreamWriterBuilder builder;
|
||||||
StreamWriterPtr const writer(builder.newStreamWriter());
|
StreamWriterPtr const writer(builder.newStreamWriter());
|
||||||
writer->write(root, &sout);
|
writer->write(root, &sout);
|
||||||
|
@@ -1,4 +1,5 @@
|
|||||||
// DO NOT EDIT. This file (and "version") is generated by CMake.
|
// DO NOT EDIT. This file is generated by CMake from "version"
|
||||||
|
// and "version.h.in" files.
|
||||||
// Run CMake configure step to update it.
|
// Run CMake configure step to update it.
|
||||||
#ifndef JSON_VERSION_H_INCLUDED
|
#ifndef JSON_VERSION_H_INCLUDED
|
||||||
# define JSON_VERSION_H_INCLUDED
|
# define JSON_VERSION_H_INCLUDED
|
||||||
@@ -10,11 +11,4 @@
|
|||||||
# define JSONCPP_VERSION_QUALIFIER
|
# define JSONCPP_VERSION_QUALIFIER
|
||||||
# define JSONCPP_VERSION_HEXA ((JSONCPP_VERSION_MAJOR << 24) | (JSONCPP_VERSION_MINOR << 16) | (JSONCPP_VERSION_PATCH << 8))
|
# define JSONCPP_VERSION_HEXA ((JSONCPP_VERSION_MAJOR << 24) | (JSONCPP_VERSION_MINOR << 16) | (JSONCPP_VERSION_PATCH << 8))
|
||||||
|
|
||||||
#ifdef JSONCPP_USING_SECURE_MEMORY
|
|
||||||
#undef JSONCPP_USING_SECURE_MEMORY
|
|
||||||
#endif
|
|
||||||
#define JSONCPP_USING_SECURE_MEMORY @JSONCPP_USE_SECURE_MEMORY@
|
|
||||||
// If non-zero, the library zeroes any memory that it has allocated before
|
|
||||||
// it frees its memory.
|
|
||||||
|
|
||||||
#endif // JSON_VERSION_H_INCLUDED
|
#endif // JSON_VERSION_H_INCLUDED
|
||||||
|
@@ -1,5 +1,9 @@
|
|||||||
# vim: et ts=4 sts=4 sw=4 tw=0
|
# vim: et ts=4 sts=4 sw=4 tw=0
|
||||||
|
|
||||||
|
IF(JSONCPP_LIB_BUILD_SHARED)
|
||||||
|
ADD_DEFINITIONS( -DJSON_DLL )
|
||||||
|
ENDIF(JSONCPP_LIB_BUILD_SHARED)
|
||||||
|
|
||||||
ADD_EXECUTABLE( jsoncpp_test
|
ADD_EXECUTABLE( jsoncpp_test
|
||||||
jsontest.cpp
|
jsontest.cpp
|
||||||
jsontest.h
|
jsontest.h
|
||||||
@@ -7,12 +11,11 @@ ADD_EXECUTABLE( jsoncpp_test
|
|||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
IF(BUILD_SHARED_LIBS)
|
IF(JSONCPP_LIB_BUILD_SHARED)
|
||||||
ADD_DEFINITIONS( -DJSON_DLL )
|
|
||||||
TARGET_LINK_LIBRARIES(jsoncpp_test jsoncpp_lib)
|
TARGET_LINK_LIBRARIES(jsoncpp_test jsoncpp_lib)
|
||||||
ELSE(BUILD_SHARED_LIBS)
|
ELSE(JSONCPP_LIB_BUILD_SHARED)
|
||||||
TARGET_LINK_LIBRARIES(jsoncpp_test jsoncpp_lib_static)
|
TARGET_LINK_LIBRARIES(jsoncpp_test jsoncpp_lib_static)
|
||||||
ENDIF()
|
ENDIF(JSONCPP_LIB_BUILD_SHARED)
|
||||||
|
|
||||||
# another way to solve issue #90
|
# another way to solve issue #90
|
||||||
#set_target_properties(jsoncpp_test PROPERTIES COMPILE_FLAGS -ffloat-store)
|
#set_target_properties(jsoncpp_test PROPERTIES COMPILE_FLAGS -ffloat-store)
|
||||||
@@ -20,19 +23,19 @@ ENDIF()
|
|||||||
# Run unit tests in post-build
|
# Run unit tests in post-build
|
||||||
# (default cmake workflow hides away the test result into a file, resulting in poor dev workflow?!?)
|
# (default cmake workflow hides away the test result into a file, resulting in poor dev workflow?!?)
|
||||||
IF(JSONCPP_WITH_POST_BUILD_UNITTEST)
|
IF(JSONCPP_WITH_POST_BUILD_UNITTEST)
|
||||||
IF(BUILD_SHARED_LIBS)
|
IF(JSONCPP_LIB_BUILD_SHARED)
|
||||||
# First, copy the shared lib, for Microsoft.
|
# First, copy the shared lib, for Microsoft.
|
||||||
# Then, run the test executable.
|
# Then, run the test executable.
|
||||||
ADD_CUSTOM_COMMAND( TARGET jsoncpp_test
|
ADD_CUSTOM_COMMAND( TARGET jsoncpp_test
|
||||||
POST_BUILD
|
POST_BUILD
|
||||||
COMMAND ${CMAKE_COMMAND} -E copy_if_different $<TARGET_FILE:jsoncpp_lib> $<TARGET_FILE_DIR:jsoncpp_test>
|
COMMAND ${CMAKE_COMMAND} -E copy_if_different $<TARGET_FILE:jsoncpp_lib> $<TARGET_FILE_DIR:jsoncpp_test>
|
||||||
COMMAND $<TARGET_FILE:jsoncpp_test>)
|
COMMAND $<TARGET_FILE:jsoncpp_test>)
|
||||||
ELSE(BUILD_SHARED_LIBS)
|
ELSE(JSONCPP_LIB_BUILD_SHARED)
|
||||||
# Just run the test executable.
|
# Just run the test executable.
|
||||||
ADD_CUSTOM_COMMAND( TARGET jsoncpp_test
|
ADD_CUSTOM_COMMAND( TARGET jsoncpp_test
|
||||||
POST_BUILD
|
POST_BUILD
|
||||||
COMMAND $<TARGET_FILE:jsoncpp_test>)
|
COMMAND $<TARGET_FILE:jsoncpp_test>)
|
||||||
ENDIF()
|
ENDIF(JSONCPP_LIB_BUILD_SHARED)
|
||||||
ENDIF()
|
ENDIF(JSONCPP_WITH_POST_BUILD_UNITTEST)
|
||||||
|
|
||||||
SET_TARGET_PROPERTIES(jsoncpp_test PROPERTIES OUTPUT_NAME jsoncpp_test)
|
SET_TARGET_PROPERTIES(jsoncpp_test PROPERTIES OUTPUT_NAME jsoncpp_test)
|
||||||
|
@@ -81,7 +81,7 @@ TestResult::TestResult()
|
|||||||
predicateStackTail_ = &rootPredicateNode_;
|
predicateStackTail_ = &rootPredicateNode_;
|
||||||
}
|
}
|
||||||
|
|
||||||
void TestResult::setTestName(const JSONCPP_STRING& name) { name_ = name; }
|
void TestResult::setTestName(const std::string& name) { name_ = name; }
|
||||||
|
|
||||||
TestResult&
|
TestResult&
|
||||||
TestResult::addFailure(const char* file, unsigned int line, const char* expr) {
|
TestResult::addFailure(const char* file, unsigned int line, const char* expr) {
|
||||||
@@ -163,7 +163,7 @@ void TestResult::printFailure(bool printTestName) const {
|
|||||||
Failures::const_iterator itEnd = failures_.end();
|
Failures::const_iterator itEnd = failures_.end();
|
||||||
for (Failures::const_iterator it = failures_.begin(); it != itEnd; ++it) {
|
for (Failures::const_iterator it = failures_.begin(); it != itEnd; ++it) {
|
||||||
const Failure& failure = *it;
|
const Failure& failure = *it;
|
||||||
JSONCPP_STRING indent(failure.nestingLevel_ * 2, ' ');
|
std::string indent(failure.nestingLevel_ * 2, ' ');
|
||||||
if (failure.file_) {
|
if (failure.file_) {
|
||||||
printf("%s%s(%d): ", indent.c_str(), failure.file_, failure.line_);
|
printf("%s%s(%d): ", indent.c_str(), failure.file_, failure.line_);
|
||||||
}
|
}
|
||||||
@@ -173,19 +173,19 @@ void TestResult::printFailure(bool printTestName) const {
|
|||||||
printf("\n");
|
printf("\n");
|
||||||
}
|
}
|
||||||
if (!failure.message_.empty()) {
|
if (!failure.message_.empty()) {
|
||||||
JSONCPP_STRING reindented = indentText(failure.message_, indent + " ");
|
std::string reindented = indentText(failure.message_, indent + " ");
|
||||||
printf("%s\n", reindented.c_str());
|
printf("%s\n", reindented.c_str());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
JSONCPP_STRING TestResult::indentText(const JSONCPP_STRING& text,
|
std::string TestResult::indentText(const std::string& text,
|
||||||
const JSONCPP_STRING& indent) {
|
const std::string& indent) {
|
||||||
JSONCPP_STRING reindented;
|
std::string reindented;
|
||||||
JSONCPP_STRING::size_type lastIndex = 0;
|
std::string::size_type lastIndex = 0;
|
||||||
while (lastIndex < text.size()) {
|
while (lastIndex < text.size()) {
|
||||||
JSONCPP_STRING::size_type nextIndex = text.find('\n', lastIndex);
|
std::string::size_type nextIndex = text.find('\n', lastIndex);
|
||||||
if (nextIndex == JSONCPP_STRING::npos) {
|
if (nextIndex == std::string::npos) {
|
||||||
nextIndex = text.size() - 1;
|
nextIndex = text.size() - 1;
|
||||||
}
|
}
|
||||||
reindented += indent;
|
reindented += indent;
|
||||||
@@ -195,7 +195,7 @@ JSONCPP_STRING TestResult::indentText(const JSONCPP_STRING& text,
|
|||||||
return reindented;
|
return reindented;
|
||||||
}
|
}
|
||||||
|
|
||||||
TestResult& TestResult::addToLastFailure(const JSONCPP_STRING& message) {
|
TestResult& TestResult::addToLastFailure(const std::string& message) {
|
||||||
if (messageTarget_ != 0) {
|
if (messageTarget_ != 0) {
|
||||||
messageTarget_->message_ += message;
|
messageTarget_->message_ += message;
|
||||||
}
|
}
|
||||||
@@ -240,9 +240,9 @@ unsigned int Runner::testCount() const {
|
|||||||
return static_cast<unsigned int>(tests_.size());
|
return static_cast<unsigned int>(tests_.size());
|
||||||
}
|
}
|
||||||
|
|
||||||
JSONCPP_STRING Runner::testNameAt(unsigned int index) const {
|
std::string Runner::testNameAt(unsigned int index) const {
|
||||||
TestCase* test = tests_[index]();
|
TestCase* test = tests_[index]();
|
||||||
JSONCPP_STRING name = test->testName();
|
std::string name = test->testName();
|
||||||
delete test;
|
delete test;
|
||||||
return name;
|
return name;
|
||||||
}
|
}
|
||||||
@@ -303,7 +303,7 @@ bool Runner::runAllTest(bool printSummary) const {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
bool Runner::testIndex(const JSONCPP_STRING& testName,
|
bool Runner::testIndex(const std::string& testName,
|
||||||
unsigned int& indexOut) const {
|
unsigned int& indexOut) const {
|
||||||
unsigned int count = testCount();
|
unsigned int count = testCount();
|
||||||
for (unsigned int index = 0; index < count; ++index) {
|
for (unsigned int index = 0; index < count; ++index) {
|
||||||
@@ -323,10 +323,10 @@ void Runner::listTests() const {
|
|||||||
}
|
}
|
||||||
|
|
||||||
int Runner::runCommandLine(int argc, const char* argv[]) const {
|
int Runner::runCommandLine(int argc, const char* argv[]) const {
|
||||||
// typedef std::deque<JSONCPP_STRING> TestNames;
|
// typedef std::deque<std::string> TestNames;
|
||||||
Runner subrunner;
|
Runner subrunner;
|
||||||
for (int index = 1; index < argc; ++index) {
|
for (int index = 1; index < argc; ++index) {
|
||||||
JSONCPP_STRING opt = argv[index];
|
std::string opt = argv[index];
|
||||||
if (opt == "--list-tests") {
|
if (opt == "--list-tests") {
|
||||||
listTests();
|
listTests();
|
||||||
return 0;
|
return 0;
|
||||||
@@ -426,23 +426,9 @@ void Runner::printUsage(const char* appName) {
|
|||||||
// Assertion functions
|
// Assertion functions
|
||||||
// //////////////////////////////////////////////////////////////////
|
// //////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
JSONCPP_STRING ToJsonString(const char* toConvert) {
|
|
||||||
return JSONCPP_STRING(toConvert);
|
|
||||||
}
|
|
||||||
|
|
||||||
JSONCPP_STRING ToJsonString(JSONCPP_STRING in) {
|
|
||||||
return in;
|
|
||||||
}
|
|
||||||
|
|
||||||
#if JSONCPP_USING_SECURE_MEMORY
|
|
||||||
JSONCPP_STRING ToJsonString(std::string in) {
|
|
||||||
return JSONCPP_STRING(in.data(), in.data() + in.length());
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
|
|
||||||
TestResult& checkStringEqual(TestResult& result,
|
TestResult& checkStringEqual(TestResult& result,
|
||||||
const JSONCPP_STRING& expected,
|
const std::string& expected,
|
||||||
const JSONCPP_STRING& actual,
|
const std::string& actual,
|
||||||
const char* file,
|
const char* file,
|
||||||
unsigned int line,
|
unsigned int line,
|
||||||
const char* expr) {
|
const char* expr) {
|
||||||
|
@@ -32,8 +32,8 @@ class Failure {
|
|||||||
public:
|
public:
|
||||||
const char* file_;
|
const char* file_;
|
||||||
unsigned int line_;
|
unsigned int line_;
|
||||||
JSONCPP_STRING expr_;
|
std::string expr_;
|
||||||
JSONCPP_STRING message_;
|
std::string message_;
|
||||||
unsigned int nestingLevel_;
|
unsigned int nestingLevel_;
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -65,7 +65,7 @@ public:
|
|||||||
/// \internal Implementation detail for predicate macros
|
/// \internal Implementation detail for predicate macros
|
||||||
PredicateContext* predicateStackTail_;
|
PredicateContext* predicateStackTail_;
|
||||||
|
|
||||||
void setTestName(const JSONCPP_STRING& name);
|
void setTestName(const std::string& name);
|
||||||
|
|
||||||
/// Adds an assertion failure.
|
/// Adds an assertion failure.
|
||||||
TestResult&
|
TestResult&
|
||||||
@@ -82,7 +82,7 @@ public:
|
|||||||
|
|
||||||
// Generic operator that will work with anything ostream can deal with.
|
// Generic operator that will work with anything ostream can deal with.
|
||||||
template <typename T> TestResult& operator<<(const T& value) {
|
template <typename T> TestResult& operator<<(const T& value) {
|
||||||
JSONCPP_OSTRINGSTREAM oss;
|
std::ostringstream oss;
|
||||||
oss.precision(16);
|
oss.precision(16);
|
||||||
oss.setf(std::ios_base::floatfield);
|
oss.setf(std::ios_base::floatfield);
|
||||||
oss << value;
|
oss << value;
|
||||||
@@ -96,19 +96,19 @@ public:
|
|||||||
TestResult& operator<<(Json::UInt64 value);
|
TestResult& operator<<(Json::UInt64 value);
|
||||||
|
|
||||||
private:
|
private:
|
||||||
TestResult& addToLastFailure(const JSONCPP_STRING& message);
|
TestResult& addToLastFailure(const std::string& message);
|
||||||
unsigned int getAssertionNestingLevel() const;
|
unsigned int getAssertionNestingLevel() const;
|
||||||
/// Adds a failure or a predicate context
|
/// Adds a failure or a predicate context
|
||||||
void addFailureInfo(const char* file,
|
void addFailureInfo(const char* file,
|
||||||
unsigned int line,
|
unsigned int line,
|
||||||
const char* expr,
|
const char* expr,
|
||||||
unsigned int nestingLevel);
|
unsigned int nestingLevel);
|
||||||
static JSONCPP_STRING indentText(const JSONCPP_STRING& text,
|
static std::string indentText(const std::string& text,
|
||||||
const JSONCPP_STRING& indent);
|
const std::string& indent);
|
||||||
|
|
||||||
typedef std::deque<Failure> Failures;
|
typedef std::deque<Failure> Failures;
|
||||||
Failures failures_;
|
Failures failures_;
|
||||||
JSONCPP_STRING name_;
|
std::string name_;
|
||||||
PredicateContext rootPredicateNode_;
|
PredicateContext rootPredicateNode_;
|
||||||
PredicateContext::Id lastUsedPredicateId_;
|
PredicateContext::Id lastUsedPredicateId_;
|
||||||
/// Failure which is the target of the messages added using operator <<
|
/// Failure which is the target of the messages added using operator <<
|
||||||
@@ -155,7 +155,7 @@ public:
|
|||||||
unsigned int testCount() const;
|
unsigned int testCount() const;
|
||||||
|
|
||||||
/// Returns the name of the test case at the specified index
|
/// Returns the name of the test case at the specified index
|
||||||
JSONCPP_STRING testNameAt(unsigned int index) const;
|
std::string testNameAt(unsigned int index) const;
|
||||||
|
|
||||||
/// Runs the test case at the specified index using the specified TestResult
|
/// Runs the test case at the specified index using the specified TestResult
|
||||||
void runTestAt(unsigned int index, TestResult& result) const;
|
void runTestAt(unsigned int index, TestResult& result) const;
|
||||||
@@ -168,7 +168,7 @@ private: // prevents copy construction and assignment
|
|||||||
|
|
||||||
private:
|
private:
|
||||||
void listTests() const;
|
void listTests() const;
|
||||||
bool testIndex(const JSONCPP_STRING& testName, unsigned int& index) const;
|
bool testIndex(const std::string& testName, unsigned int& index) const;
|
||||||
static void preventDialogOnCrash();
|
static void preventDialogOnCrash();
|
||||||
|
|
||||||
private:
|
private:
|
||||||
@@ -191,15 +191,9 @@ TestResult& checkEqual(TestResult& result,
|
|||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
JSONCPP_STRING ToJsonString(const char* toConvert);
|
|
||||||
JSONCPP_STRING ToJsonString(JSONCPP_STRING in);
|
|
||||||
#if JSONCPP_USING_SECURE_MEMORY
|
|
||||||
JSONCPP_STRING ToJsonString(std::string in);
|
|
||||||
#endif
|
|
||||||
|
|
||||||
TestResult& checkStringEqual(TestResult& result,
|
TestResult& checkStringEqual(TestResult& result,
|
||||||
const JSONCPP_STRING& expected,
|
const std::string& expected,
|
||||||
const JSONCPP_STRING& actual,
|
const std::string& actual,
|
||||||
const char* file,
|
const char* file,
|
||||||
unsigned int line,
|
unsigned int line,
|
||||||
const char* expr);
|
const char* expr);
|
||||||
@@ -241,8 +235,8 @@ TestResult& checkStringEqual(TestResult& result,
|
|||||||
/// \brief Asserts that two values are equals.
|
/// \brief Asserts that two values are equals.
|
||||||
#define JSONTEST_ASSERT_STRING_EQUAL(expected, actual) \
|
#define JSONTEST_ASSERT_STRING_EQUAL(expected, actual) \
|
||||||
JsonTest::checkStringEqual(*result_, \
|
JsonTest::checkStringEqual(*result_, \
|
||||||
JsonTest::ToJsonString(expected), \
|
std::string(expected), \
|
||||||
JsonTest::ToJsonString(actual), \
|
std::string(actual), \
|
||||||
__FILE__, \
|
__FILE__, \
|
||||||
__LINE__, \
|
__LINE__, \
|
||||||
#expected " == " #actual)
|
#expected " == " #actual)
|
||||||
@@ -271,8 +265,8 @@ TestResult& checkStringEqual(TestResult& result,
|
|||||||
} \
|
} \
|
||||||
\
|
\
|
||||||
public: /* overidden from TestCase */ \
|
public: /* overidden from TestCase */ \
|
||||||
const char* testName() const JSONCPP_OVERRIDE { return #FixtureType "/" #name; } \
|
virtual const char* testName() const { return #FixtureType "/" #name; } \
|
||||||
void runTestCase() JSONCPP_OVERRIDE; \
|
virtual void runTestCase(); \
|
||||||
}; \
|
}; \
|
||||||
\
|
\
|
||||||
void Test##FixtureType##name::runTestCase()
|
void Test##FixtureType##name::runTestCase()
|
||||||
|
@@ -6,11 +6,8 @@
|
|||||||
#include "jsontest.h"
|
#include "jsontest.h"
|
||||||
#include <json/config.h>
|
#include <json/config.h>
|
||||||
#include <json/json.h>
|
#include <json/json.h>
|
||||||
|
#include <stdexcept>
|
||||||
#include <cstring>
|
#include <cstring>
|
||||||
#include <limits>
|
|
||||||
#include <sstream>
|
|
||||||
#include <string>
|
|
||||||
#include <iomanip>
|
|
||||||
|
|
||||||
// Make numeric limits more convenient to talk about.
|
// Make numeric limits more convenient to talk about.
|
||||||
// Assumes int type in 32 bits.
|
// Assumes int type in 32 bits.
|
||||||
@@ -39,7 +36,7 @@ static inline double uint64ToDouble(Json::UInt64 value) {
|
|||||||
#else // if !defined(JSON_USE_INT64_DOUBLE_CONVERSION)
|
#else // if !defined(JSON_USE_INT64_DOUBLE_CONVERSION)
|
||||||
static inline double uint64ToDouble(Json::UInt64 value) {
|
static inline double uint64ToDouble(Json::UInt64 value) {
|
||||||
return static_cast<double>(Json::Int64(value / 2)) * 2.0 +
|
return static_cast<double>(Json::Int64(value / 2)) * 2.0 +
|
||||||
static_cast<double>(Json::Int64(value & 1));
|
Json::Int64(value & 1);
|
||||||
}
|
}
|
||||||
#endif // if !defined(JSON_USE_INT64_DOUBLE_CONVERSION)
|
#endif // if !defined(JSON_USE_INT64_DOUBLE_CONVERSION)
|
||||||
|
|
||||||
@@ -102,21 +99,21 @@ struct ValueTest : JsonTest::TestCase {
|
|||||||
|
|
||||||
/// Normalize the representation of floating-point number by stripped leading
|
/// Normalize the representation of floating-point number by stripped leading
|
||||||
/// 0 in exponent.
|
/// 0 in exponent.
|
||||||
static JSONCPP_STRING normalizeFloatingPointStr(const JSONCPP_STRING& s);
|
static std::string normalizeFloatingPointStr(const std::string& s);
|
||||||
};
|
};
|
||||||
|
|
||||||
JSONCPP_STRING ValueTest::normalizeFloatingPointStr(const JSONCPP_STRING& s) {
|
std::string ValueTest::normalizeFloatingPointStr(const std::string& s) {
|
||||||
JSONCPP_STRING::size_type index = s.find_last_of("eE");
|
std::string::size_type index = s.find_last_of("eE");
|
||||||
if (index != JSONCPP_STRING::npos) {
|
if (index != std::string::npos) {
|
||||||
JSONCPP_STRING::size_type hasSign =
|
std::string::size_type hasSign =
|
||||||
(s[index + 1] == '+' || s[index + 1] == '-') ? 1 : 0;
|
(s[index + 1] == '+' || s[index + 1] == '-') ? 1 : 0;
|
||||||
JSONCPP_STRING::size_type exponentStartIndex = index + 1 + hasSign;
|
std::string::size_type exponentStartIndex = index + 1 + hasSign;
|
||||||
JSONCPP_STRING normalized = s.substr(0, exponentStartIndex);
|
std::string normalized = s.substr(0, exponentStartIndex);
|
||||||
JSONCPP_STRING::size_type indexDigit =
|
std::string::size_type indexDigit =
|
||||||
s.find_first_not_of('0', exponentStartIndex);
|
s.find_first_not_of('0', exponentStartIndex);
|
||||||
JSONCPP_STRING exponent = "0";
|
std::string exponent = "0";
|
||||||
if (indexDigit !=
|
if (indexDigit !=
|
||||||
JSONCPP_STRING::npos) // There is an exponent different from 0
|
std::string::npos) // There is an exponent different from 0
|
||||||
{
|
{
|
||||||
exponent = s.substr(indexDigit);
|
exponent = s.substr(indexDigit);
|
||||||
}
|
}
|
||||||
@@ -261,20 +258,6 @@ JSONTEST_FIXTURE(ValueTest, arrays) {
|
|||||||
JSONTEST_ASSERT_EQUAL(Json::Value(17), got);
|
JSONTEST_ASSERT_EQUAL(Json::Value(17), got);
|
||||||
JSONTEST_ASSERT_EQUAL(false, array1_.removeIndex(2, &got)); // gone now
|
JSONTEST_ASSERT_EQUAL(false, array1_.removeIndex(2, &got)); // gone now
|
||||||
}
|
}
|
||||||
JSONTEST_FIXTURE(ValueTest, arrayIssue252)
|
|
||||||
{
|
|
||||||
int count = 5;
|
|
||||||
Json::Value root;
|
|
||||||
Json::Value item;
|
|
||||||
root["array"] = Json::Value::nullRef;
|
|
||||||
for (int i = 0; i < count; i++)
|
|
||||||
{
|
|
||||||
item["a"] = i;
|
|
||||||
item["b"] = i;
|
|
||||||
root["array"][i] = item;
|
|
||||||
}
|
|
||||||
//JSONTEST_ASSERT_EQUAL(5, root["array"].size());
|
|
||||||
}
|
|
||||||
|
|
||||||
JSONTEST_FIXTURE(ValueTest, null) {
|
JSONTEST_FIXTURE(ValueTest, null) {
|
||||||
JSONTEST_ASSERT_EQUAL(Json::nullValue, null_.type());
|
JSONTEST_ASSERT_EQUAL(Json::nullValue, null_.type());
|
||||||
@@ -479,7 +462,7 @@ JSONTEST_FIXTURE(ValueTest, integers) {
|
|||||||
JSONTEST_ASSERT_EQUAL(0.0, val.asDouble());
|
JSONTEST_ASSERT_EQUAL(0.0, val.asDouble());
|
||||||
JSONTEST_ASSERT_EQUAL(0.0, val.asFloat());
|
JSONTEST_ASSERT_EQUAL(0.0, val.asFloat());
|
||||||
JSONTEST_ASSERT_EQUAL(false, val.asBool());
|
JSONTEST_ASSERT_EQUAL(false, val.asBool());
|
||||||
JSONTEST_ASSERT_STRING_EQUAL("0.0", val.asString());
|
JSONTEST_ASSERT_STRING_EQUAL("0", val.asString());
|
||||||
|
|
||||||
// Zero (signed constructor arg)
|
// Zero (signed constructor arg)
|
||||||
val = Json::Value(0);
|
val = Json::Value(0);
|
||||||
@@ -563,7 +546,7 @@ JSONTEST_FIXTURE(ValueTest, integers) {
|
|||||||
JSONTEST_ASSERT_EQUAL(0.0, val.asDouble());
|
JSONTEST_ASSERT_EQUAL(0.0, val.asDouble());
|
||||||
JSONTEST_ASSERT_EQUAL(0.0, val.asFloat());
|
JSONTEST_ASSERT_EQUAL(0.0, val.asFloat());
|
||||||
JSONTEST_ASSERT_EQUAL(false, val.asBool());
|
JSONTEST_ASSERT_EQUAL(false, val.asBool());
|
||||||
JSONTEST_ASSERT_STRING_EQUAL("0.0", val.asString());
|
JSONTEST_ASSERT_STRING_EQUAL("0", val.asString());
|
||||||
|
|
||||||
// 2^20 (signed constructor arg)
|
// 2^20 (signed constructor arg)
|
||||||
val = Json::Value(1 << 20);
|
val = Json::Value(1 << 20);
|
||||||
@@ -646,8 +629,8 @@ JSONTEST_FIXTURE(ValueTest, integers) {
|
|||||||
JSONTEST_ASSERT_EQUAL((1 << 20), val.asDouble());
|
JSONTEST_ASSERT_EQUAL((1 << 20), val.asDouble());
|
||||||
JSONTEST_ASSERT_EQUAL((1 << 20), val.asFloat());
|
JSONTEST_ASSERT_EQUAL((1 << 20), val.asFloat());
|
||||||
JSONTEST_ASSERT_EQUAL(true, val.asBool());
|
JSONTEST_ASSERT_EQUAL(true, val.asBool());
|
||||||
JSONTEST_ASSERT_STRING_EQUAL("1048576.0",
|
JSONTEST_ASSERT_STRING_EQUAL("1048576",
|
||||||
normalizeFloatingPointStr(JsonTest::ToJsonString(val.asString())));
|
normalizeFloatingPointStr(val.asString()));
|
||||||
|
|
||||||
// -2^20
|
// -2^20
|
||||||
val = Json::Value(-(1 << 20));
|
val = Json::Value(-(1 << 20));
|
||||||
@@ -887,8 +870,8 @@ JSONTEST_FIXTURE(ValueTest, integers) {
|
|||||||
JSONTEST_ASSERT_EQUAL((Json::Int64(1) << 40), val.asDouble());
|
JSONTEST_ASSERT_EQUAL((Json::Int64(1) << 40), val.asDouble());
|
||||||
JSONTEST_ASSERT_EQUAL((Json::Int64(1) << 40), val.asFloat());
|
JSONTEST_ASSERT_EQUAL((Json::Int64(1) << 40), val.asFloat());
|
||||||
JSONTEST_ASSERT_EQUAL(true, val.asBool());
|
JSONTEST_ASSERT_EQUAL(true, val.asBool());
|
||||||
JSONTEST_ASSERT_STRING_EQUAL("1099511627776.0",
|
JSONTEST_ASSERT_STRING_EQUAL("1099511627776",
|
||||||
normalizeFloatingPointStr(JsonTest::ToJsonString(val.asString())));
|
normalizeFloatingPointStr(val.asString()));
|
||||||
|
|
||||||
// -2^40
|
// -2^40
|
||||||
val = Json::Value(-(Json::Int64(1) << 40));
|
val = Json::Value(-(Json::Int64(1) << 40));
|
||||||
@@ -963,7 +946,7 @@ JSONTEST_FIXTURE(ValueTest, integers) {
|
|||||||
val.asFloat());
|
val.asFloat());
|
||||||
JSONTEST_ASSERT_EQUAL(true, val.asBool());
|
JSONTEST_ASSERT_EQUAL(true, val.asBool());
|
||||||
JSONTEST_ASSERT_STRING_EQUAL("9.2233720368547758e+18",
|
JSONTEST_ASSERT_STRING_EQUAL("9.2233720368547758e+18",
|
||||||
normalizeFloatingPointStr(JsonTest::ToJsonString(val.asString())));
|
normalizeFloatingPointStr(val.asString()));
|
||||||
|
|
||||||
// int64 min
|
// int64 min
|
||||||
val = Json::Value(Json::Int64(kint64min));
|
val = Json::Value(Json::Int64(kint64min));
|
||||||
@@ -1011,7 +994,7 @@ JSONTEST_FIXTURE(ValueTest, integers) {
|
|||||||
JSONTEST_ASSERT_EQUAL(-9223372036854775808.0, val.asFloat());
|
JSONTEST_ASSERT_EQUAL(-9223372036854775808.0, val.asFloat());
|
||||||
JSONTEST_ASSERT_EQUAL(true, val.asBool());
|
JSONTEST_ASSERT_EQUAL(true, val.asBool());
|
||||||
JSONTEST_ASSERT_STRING_EQUAL("-9.2233720368547758e+18",
|
JSONTEST_ASSERT_STRING_EQUAL("-9.2233720368547758e+18",
|
||||||
normalizeFloatingPointStr(JsonTest::ToJsonString(val.asString())));
|
normalizeFloatingPointStr(val.asString()));
|
||||||
|
|
||||||
// 10^19
|
// 10^19
|
||||||
const Json::UInt64 ten_to_19 = static_cast<Json::UInt64>(1e19);
|
const Json::UInt64 ten_to_19 = static_cast<Json::UInt64>(1e19);
|
||||||
@@ -1058,7 +1041,7 @@ JSONTEST_FIXTURE(ValueTest, integers) {
|
|||||||
JSONTEST_ASSERT_EQUAL(1e19, val.asFloat());
|
JSONTEST_ASSERT_EQUAL(1e19, val.asFloat());
|
||||||
JSONTEST_ASSERT_EQUAL(true, val.asBool());
|
JSONTEST_ASSERT_EQUAL(true, val.asBool());
|
||||||
JSONTEST_ASSERT_STRING_EQUAL("1e+19",
|
JSONTEST_ASSERT_STRING_EQUAL("1e+19",
|
||||||
normalizeFloatingPointStr(JsonTest::ToJsonString(val.asString())));
|
normalizeFloatingPointStr(val.asString()));
|
||||||
|
|
||||||
// uint64 max
|
// uint64 max
|
||||||
val = Json::Value(Json::UInt64(kuint64max));
|
val = Json::Value(Json::UInt64(kuint64max));
|
||||||
@@ -1102,7 +1085,7 @@ JSONTEST_FIXTURE(ValueTest, integers) {
|
|||||||
JSONTEST_ASSERT_EQUAL(18446744073709551616.0, val.asFloat());
|
JSONTEST_ASSERT_EQUAL(18446744073709551616.0, val.asFloat());
|
||||||
JSONTEST_ASSERT_EQUAL(true, val.asBool());
|
JSONTEST_ASSERT_EQUAL(true, val.asBool());
|
||||||
JSONTEST_ASSERT_STRING_EQUAL("1.8446744073709552e+19",
|
JSONTEST_ASSERT_STRING_EQUAL("1.8446744073709552e+19",
|
||||||
normalizeFloatingPointStr(JsonTest::ToJsonString(val.asString())));
|
normalizeFloatingPointStr(val.asString()));
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -1192,7 +1175,7 @@ JSONTEST_FIXTURE(ValueTest, nonIntegers) {
|
|||||||
#endif
|
#endif
|
||||||
JSONTEST_ASSERT_EQUAL(true, val.asBool());
|
JSONTEST_ASSERT_EQUAL(true, val.asBool());
|
||||||
JSONTEST_ASSERT_EQUAL("2147483647.5",
|
JSONTEST_ASSERT_EQUAL("2147483647.5",
|
||||||
normalizeFloatingPointStr(JsonTest::ToJsonString(val.asString())));
|
normalizeFloatingPointStr(val.asString()));
|
||||||
|
|
||||||
// A bit under int32 min
|
// A bit under int32 min
|
||||||
val = Json::Value(kint32min - 0.5);
|
val = Json::Value(kint32min - 0.5);
|
||||||
@@ -1216,11 +1199,11 @@ JSONTEST_FIXTURE(ValueTest, nonIntegers) {
|
|||||||
JSONTEST_ASSERT_EQUAL(-2147483648.5, val.asDouble());
|
JSONTEST_ASSERT_EQUAL(-2147483648.5, val.asDouble());
|
||||||
JSONTEST_ASSERT_EQUAL(float(-2147483648.5), val.asFloat());
|
JSONTEST_ASSERT_EQUAL(float(-2147483648.5), val.asFloat());
|
||||||
#ifdef JSON_HAS_INT64
|
#ifdef JSON_HAS_INT64
|
||||||
JSONTEST_ASSERT_EQUAL(-(Json::Int64(1) << 31), val.asLargestInt());
|
JSONTEST_ASSERT_EQUAL(-Json::Int64(1) << 31, val.asLargestInt());
|
||||||
#endif
|
#endif
|
||||||
JSONTEST_ASSERT_EQUAL(true, val.asBool());
|
JSONTEST_ASSERT_EQUAL(true, val.asBool());
|
||||||
JSONTEST_ASSERT_EQUAL("-2147483648.5",
|
JSONTEST_ASSERT_EQUAL("-2147483648.5",
|
||||||
normalizeFloatingPointStr(JsonTest::ToJsonString(val.asString())));
|
normalizeFloatingPointStr(val.asString()));
|
||||||
|
|
||||||
// A bit over uint32 max
|
// A bit over uint32 max
|
||||||
val = Json::Value(kuint32max + 0.5);
|
val = Json::Value(kuint32max + 0.5);
|
||||||
@@ -1250,29 +1233,29 @@ JSONTEST_FIXTURE(ValueTest, nonIntegers) {
|
|||||||
#endif
|
#endif
|
||||||
JSONTEST_ASSERT_EQUAL(true, val.asBool());
|
JSONTEST_ASSERT_EQUAL(true, val.asBool());
|
||||||
JSONTEST_ASSERT_EQUAL("4294967295.5",
|
JSONTEST_ASSERT_EQUAL("4294967295.5",
|
||||||
normalizeFloatingPointStr(JsonTest::ToJsonString(val.asString())));
|
normalizeFloatingPointStr(val.asString()));
|
||||||
|
|
||||||
val = Json::Value(1.2345678901234);
|
val = Json::Value(1.2345678901234);
|
||||||
JSONTEST_ASSERT_STRING_EQUAL("1.2345678901234001",
|
JSONTEST_ASSERT_STRING_EQUAL("1.2345678901234001",
|
||||||
normalizeFloatingPointStr(JsonTest::ToJsonString(val.asString())));
|
normalizeFloatingPointStr(val.asString()));
|
||||||
|
|
||||||
// A 16-digit floating point number.
|
// A 16-digit floating point number.
|
||||||
val = Json::Value(2199023255552000.0f);
|
val = Json::Value(2199023255552000.0f);
|
||||||
JSONTEST_ASSERT_EQUAL(float(2199023255552000.0f), val.asFloat());
|
JSONTEST_ASSERT_EQUAL(float(2199023255552000), val.asFloat());
|
||||||
JSONTEST_ASSERT_STRING_EQUAL("2199023255552000.0",
|
JSONTEST_ASSERT_STRING_EQUAL("2199023255552000",
|
||||||
normalizeFloatingPointStr(JsonTest::ToJsonString(val.asString())));
|
normalizeFloatingPointStr(val.asString()));
|
||||||
|
|
||||||
// A very large floating point number.
|
// A very large floating point number.
|
||||||
val = Json::Value(3.402823466385289e38);
|
val = Json::Value(3.402823466385289e38);
|
||||||
JSONTEST_ASSERT_EQUAL(float(3.402823466385289e38), val.asFloat());
|
JSONTEST_ASSERT_EQUAL(float(3.402823466385289e38), val.asFloat());
|
||||||
JSONTEST_ASSERT_STRING_EQUAL("3.402823466385289e+38",
|
JSONTEST_ASSERT_STRING_EQUAL("3.402823466385289e+38",
|
||||||
normalizeFloatingPointStr(JsonTest::ToJsonString(val.asString())));
|
normalizeFloatingPointStr(val.asString()));
|
||||||
|
|
||||||
// An even larger floating point number.
|
// An even larger floating point number.
|
||||||
val = Json::Value(1.2345678e300);
|
val = Json::Value(1.2345678e300);
|
||||||
JSONTEST_ASSERT_EQUAL(double(1.2345678e300), val.asDouble());
|
JSONTEST_ASSERT_EQUAL(double(1.2345678e300), val.asDouble());
|
||||||
JSONTEST_ASSERT_STRING_EQUAL("1.2345678e+300",
|
JSONTEST_ASSERT_STRING_EQUAL("1.2345678e+300",
|
||||||
normalizeFloatingPointStr(JsonTest::ToJsonString(val.asString())));
|
normalizeFloatingPointStr(val.asString()));
|
||||||
}
|
}
|
||||||
|
|
||||||
void ValueTest::checkConstMemberCount(const Json::Value& value,
|
void ValueTest::checkConstMemberCount(const Json::Value& value,
|
||||||
@@ -1516,29 +1499,10 @@ JSONTEST_FIXTURE(ValueTest, typeChecksThrowExceptions) {
|
|||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
JSONTEST_FIXTURE(ValueTest, offsetAccessors) {
|
|
||||||
Json::Value x;
|
|
||||||
JSONTEST_ASSERT(x.getOffsetStart() == 0);
|
|
||||||
JSONTEST_ASSERT(x.getOffsetLimit() == 0);
|
|
||||||
x.setOffsetStart(10);
|
|
||||||
x.setOffsetLimit(20);
|
|
||||||
JSONTEST_ASSERT(x.getOffsetStart() == 10);
|
|
||||||
JSONTEST_ASSERT(x.getOffsetLimit() == 20);
|
|
||||||
Json::Value y(x);
|
|
||||||
JSONTEST_ASSERT(y.getOffsetStart() == 10);
|
|
||||||
JSONTEST_ASSERT(y.getOffsetLimit() == 20);
|
|
||||||
Json::Value z;
|
|
||||||
z.swap(y);
|
|
||||||
JSONTEST_ASSERT(z.getOffsetStart() == 10);
|
|
||||||
JSONTEST_ASSERT(z.getOffsetLimit() == 20);
|
|
||||||
JSONTEST_ASSERT(y.getOffsetStart() == 0);
|
|
||||||
JSONTEST_ASSERT(y.getOffsetLimit() == 0);
|
|
||||||
}
|
|
||||||
|
|
||||||
JSONTEST_FIXTURE(ValueTest, StaticString) {
|
JSONTEST_FIXTURE(ValueTest, StaticString) {
|
||||||
char mutant[] = "hello";
|
char mutant[] = "hello";
|
||||||
Json::StaticString ss(mutant);
|
Json::StaticString ss(mutant);
|
||||||
JSONCPP_STRING regular(mutant);
|
std::string regular(mutant);
|
||||||
mutant[1] = 'a';
|
mutant[1] = 'a';
|
||||||
JSONTEST_ASSERT_STRING_EQUAL("hallo", ss.c_str());
|
JSONTEST_ASSERT_STRING_EQUAL("hallo", ss.c_str());
|
||||||
JSONTEST_ASSERT_STRING_EQUAL("hello", regular.c_str());
|
JSONTEST_ASSERT_STRING_EQUAL("hello", regular.c_str());
|
||||||
@@ -1560,15 +1524,15 @@ JSONTEST_FIXTURE(ValueTest, StaticString) {
|
|||||||
|
|
||||||
JSONTEST_FIXTURE(ValueTest, CommentBefore) {
|
JSONTEST_FIXTURE(ValueTest, CommentBefore) {
|
||||||
Json::Value val; // fill val
|
Json::Value val; // fill val
|
||||||
val.setComment(JSONCPP_STRING("// this comment should appear before"), Json::commentBefore);
|
val.setComment("// this comment should appear before", Json::commentBefore);
|
||||||
Json::StreamWriterBuilder wbuilder;
|
Json::StreamWriterBuilder wbuilder;
|
||||||
wbuilder.settings_["commentStyle"] = "All";
|
wbuilder.settings_["commentStyle"] = "All";
|
||||||
{
|
{
|
||||||
char const expected[] = "// this comment should appear before\nnull";
|
char const expected[] = "// this comment should appear before\nnull";
|
||||||
JSONCPP_STRING result = Json::writeString(wbuilder, val);
|
std::string result = Json::writeString(wbuilder, val);
|
||||||
JSONTEST_ASSERT_STRING_EQUAL(expected, result);
|
JSONTEST_ASSERT_STRING_EQUAL(expected, result);
|
||||||
JSONCPP_STRING res2 = val.toStyledString();
|
std::string res2 = val.toStyledString();
|
||||||
JSONCPP_STRING exp2 = "\n";
|
std::string exp2 = "\n";
|
||||||
exp2 += expected;
|
exp2 += expected;
|
||||||
exp2 += "\n";
|
exp2 += "\n";
|
||||||
JSONTEST_ASSERT_STRING_EQUAL(exp2, res2);
|
JSONTEST_ASSERT_STRING_EQUAL(exp2, res2);
|
||||||
@@ -1577,10 +1541,10 @@ JSONTEST_FIXTURE(ValueTest, CommentBefore) {
|
|||||||
val.swapPayload(other);
|
val.swapPayload(other);
|
||||||
{
|
{
|
||||||
char const expected[] = "// this comment should appear before\n\"hello\"";
|
char const expected[] = "// this comment should appear before\n\"hello\"";
|
||||||
JSONCPP_STRING result = Json::writeString(wbuilder, val);
|
std::string result = Json::writeString(wbuilder, val);
|
||||||
JSONTEST_ASSERT_STRING_EQUAL(expected, result);
|
JSONTEST_ASSERT_STRING_EQUAL(expected, result);
|
||||||
JSONCPP_STRING res2 = val.toStyledString();
|
std::string res2 = val.toStyledString();
|
||||||
JSONCPP_STRING exp2 = "\n";
|
std::string exp2 = "\n";
|
||||||
exp2 += expected;
|
exp2 += expected;
|
||||||
exp2 += "\n";
|
exp2 += "\n";
|
||||||
JSONTEST_ASSERT_STRING_EQUAL(exp2, res2);
|
JSONTEST_ASSERT_STRING_EQUAL(exp2, res2);
|
||||||
@@ -1591,10 +1555,10 @@ JSONTEST_FIXTURE(ValueTest, CommentBefore) {
|
|||||||
// Assignment over-writes comments.
|
// Assignment over-writes comments.
|
||||||
{
|
{
|
||||||
char const expected[] = "\"hello\"";
|
char const expected[] = "\"hello\"";
|
||||||
JSONCPP_STRING result = Json::writeString(wbuilder, val);
|
std::string result = Json::writeString(wbuilder, val);
|
||||||
JSONTEST_ASSERT_STRING_EQUAL(expected, result);
|
JSONTEST_ASSERT_STRING_EQUAL(expected, result);
|
||||||
JSONCPP_STRING res2 = val.toStyledString();
|
std::string res2 = val.toStyledString();
|
||||||
JSONCPP_STRING exp2 = "";
|
std::string exp2 = "";
|
||||||
exp2 += expected;
|
exp2 += expected;
|
||||||
exp2 += "\n";
|
exp2 += "\n";
|
||||||
JSONTEST_ASSERT_STRING_EQUAL(exp2, res2);
|
JSONTEST_ASSERT_STRING_EQUAL(exp2, res2);
|
||||||
@@ -1603,7 +1567,7 @@ JSONTEST_FIXTURE(ValueTest, CommentBefore) {
|
|||||||
|
|
||||||
JSONTEST_FIXTURE(ValueTest, zeroes) {
|
JSONTEST_FIXTURE(ValueTest, zeroes) {
|
||||||
char const cstr[] = "h\0i";
|
char const cstr[] = "h\0i";
|
||||||
JSONCPP_STRING binary(cstr, sizeof(cstr)); // include trailing 0
|
std::string binary(cstr, sizeof(cstr)); // include trailing 0
|
||||||
JSONTEST_ASSERT_EQUAL(4U, binary.length());
|
JSONTEST_ASSERT_EQUAL(4U, binary.length());
|
||||||
Json::StreamWriterBuilder b;
|
Json::StreamWriterBuilder b;
|
||||||
{
|
{
|
||||||
@@ -1631,7 +1595,7 @@ JSONTEST_FIXTURE(ValueTest, zeroes) {
|
|||||||
|
|
||||||
JSONTEST_FIXTURE(ValueTest, zeroesInKeys) {
|
JSONTEST_FIXTURE(ValueTest, zeroesInKeys) {
|
||||||
char const cstr[] = "h\0i";
|
char const cstr[] = "h\0i";
|
||||||
JSONCPP_STRING binary(cstr, sizeof(cstr)); // include trailing 0
|
std::string binary(cstr, sizeof(cstr)); // include trailing 0
|
||||||
JSONTEST_ASSERT_EQUAL(4U, binary.length());
|
JSONTEST_ASSERT_EQUAL(4U, binary.length());
|
||||||
{
|
{
|
||||||
Json::Value root;
|
Json::Value root;
|
||||||
@@ -1655,74 +1619,6 @@ JSONTEST_FIXTURE(ValueTest, zeroesInKeys) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
JSONTEST_FIXTURE(ValueTest, specialFloats) {
|
|
||||||
Json::StreamWriterBuilder b;
|
|
||||||
b.settings_["useSpecialFloats"] = true;
|
|
||||||
|
|
||||||
Json::Value v = std::numeric_limits<double>::quiet_NaN();
|
|
||||||
JSONCPP_STRING expected = "NaN";
|
|
||||||
JSONCPP_STRING result = Json::writeString(b, v);
|
|
||||||
JSONTEST_ASSERT_STRING_EQUAL(expected, result);
|
|
||||||
|
|
||||||
v = std::numeric_limits<double>::infinity();
|
|
||||||
expected = "Infinity";
|
|
||||||
result = Json::writeString(b, v);
|
|
||||||
JSONTEST_ASSERT_STRING_EQUAL(expected, result);
|
|
||||||
|
|
||||||
v = -std::numeric_limits<double>::infinity();
|
|
||||||
expected = "-Infinity";
|
|
||||||
result = Json::writeString(b, v);
|
|
||||||
JSONTEST_ASSERT_STRING_EQUAL(expected, result);
|
|
||||||
}
|
|
||||||
|
|
||||||
JSONTEST_FIXTURE(ValueTest, precision) {
|
|
||||||
Json::StreamWriterBuilder b;
|
|
||||||
b.settings_["precision"] = 5;
|
|
||||||
|
|
||||||
Json::Value v = 100.0/3;
|
|
||||||
JSONCPP_STRING expected = "33.333";
|
|
||||||
JSONCPP_STRING result = Json::writeString(b, v);
|
|
||||||
JSONTEST_ASSERT_STRING_EQUAL(expected, result);
|
|
||||||
|
|
||||||
v = 0.25000000;
|
|
||||||
expected = "0.25";
|
|
||||||
result = Json::writeString(b, v);
|
|
||||||
JSONTEST_ASSERT_STRING_EQUAL(expected, result);
|
|
||||||
|
|
||||||
v = 0.2563456;
|
|
||||||
expected = "0.25635";
|
|
||||||
result = Json::writeString(b, v);
|
|
||||||
JSONTEST_ASSERT_STRING_EQUAL(expected, result);
|
|
||||||
|
|
||||||
b.settings_["precision"] = 1;
|
|
||||||
expected = "0.3";
|
|
||||||
result = Json::writeString(b, v);
|
|
||||||
JSONTEST_ASSERT_STRING_EQUAL(expected, result);
|
|
||||||
|
|
||||||
b.settings_["precision"] = 17;
|
|
||||||
v = 1234857476305.256345694873740545068;
|
|
||||||
expected = "1234857476305.2563";
|
|
||||||
result = Json::writeString(b, v);
|
|
||||||
JSONTEST_ASSERT_STRING_EQUAL(expected, result);
|
|
||||||
|
|
||||||
b.settings_["precision"] = 24;
|
|
||||||
v = 0.256345694873740545068;
|
|
||||||
expected = "0.25634569487374054";
|
|
||||||
result = Json::writeString(b, v);
|
|
||||||
JSONTEST_ASSERT_STRING_EQUAL(expected, result);
|
|
||||||
}
|
|
||||||
|
|
||||||
struct WriterTest : JsonTest::TestCase {};
|
|
||||||
|
|
||||||
JSONTEST_FIXTURE(WriterTest, dropNullPlaceholders) {
|
|
||||||
Json::FastWriter writer;
|
|
||||||
Json::Value nullValue;
|
|
||||||
JSONTEST_ASSERT(writer.write(nullValue) == "null\n");
|
|
||||||
|
|
||||||
writer.dropNullPlaceholders();
|
|
||||||
JSONTEST_ASSERT(writer.write(nullValue) == "\n");
|
|
||||||
}
|
|
||||||
|
|
||||||
struct StreamWriterTest : JsonTest::TestCase {};
|
struct StreamWriterTest : JsonTest::TestCase {};
|
||||||
|
|
||||||
JSONTEST_FIXTURE(StreamWriterTest, dropNullPlaceholders) {
|
JSONTEST_FIXTURE(StreamWriterTest, dropNullPlaceholders) {
|
||||||
@@ -1735,15 +1631,15 @@ JSONTEST_FIXTURE(StreamWriterTest, dropNullPlaceholders) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
JSONTEST_FIXTURE(StreamWriterTest, writeZeroes) {
|
JSONTEST_FIXTURE(StreamWriterTest, writeZeroes) {
|
||||||
JSONCPP_STRING binary("hi", 3); // include trailing 0
|
std::string binary("hi", 3); // include trailing 0
|
||||||
JSONTEST_ASSERT_EQUAL(3, binary.length());
|
JSONTEST_ASSERT_EQUAL(3, binary.length());
|
||||||
JSONCPP_STRING expected("\"hi\\u0000\""); // unicoded zero
|
std::string expected("\"hi\\u0000\""); // unicoded zero
|
||||||
Json::StreamWriterBuilder b;
|
Json::StreamWriterBuilder b;
|
||||||
{
|
{
|
||||||
Json::Value root;
|
Json::Value root;
|
||||||
root = binary;
|
root = binary;
|
||||||
JSONTEST_ASSERT_STRING_EQUAL(binary, root.asString());
|
JSONTEST_ASSERT_STRING_EQUAL(binary, root.asString());
|
||||||
JSONCPP_STRING out = Json::writeString(b, root);
|
std::string out = Json::writeString(b, root);
|
||||||
JSONTEST_ASSERT_EQUAL(expected.size(), out.size());
|
JSONTEST_ASSERT_EQUAL(expected.size(), out.size());
|
||||||
JSONTEST_ASSERT_STRING_EQUAL(expected, out);
|
JSONTEST_ASSERT_STRING_EQUAL(expected, out);
|
||||||
}
|
}
|
||||||
@@ -1751,7 +1647,7 @@ JSONTEST_FIXTURE(StreamWriterTest, writeZeroes) {
|
|||||||
Json::Value root;
|
Json::Value root;
|
||||||
root["top"] = binary;
|
root["top"] = binary;
|
||||||
JSONTEST_ASSERT_STRING_EQUAL(binary, root["top"].asString());
|
JSONTEST_ASSERT_STRING_EQUAL(binary, root["top"].asString());
|
||||||
JSONCPP_STRING out = Json::writeString(b, root["top"]);
|
std::string out = Json::writeString(b, root["top"]);
|
||||||
JSONTEST_ASSERT_STRING_EQUAL(expected, out);
|
JSONTEST_ASSERT_STRING_EQUAL(expected, out);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -1764,7 +1660,6 @@ JSONTEST_FIXTURE(ReaderTest, parseWithNoErrors) {
|
|||||||
bool ok = reader.parse("{ \"property\" : \"value\" }", root);
|
bool ok = reader.parse("{ \"property\" : \"value\" }", root);
|
||||||
JSONTEST_ASSERT(ok);
|
JSONTEST_ASSERT(ok);
|
||||||
JSONTEST_ASSERT(reader.getFormattedErrorMessages().size() == 0);
|
JSONTEST_ASSERT(reader.getFormattedErrorMessages().size() == 0);
|
||||||
JSONTEST_ASSERT(reader.getStructuredErrors().size() == 0);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
JSONTEST_FIXTURE(ReaderTest, parseWithNoErrorsTestingOffsets) {
|
JSONTEST_FIXTURE(ReaderTest, parseWithNoErrorsTestingOffsets) {
|
||||||
@@ -1776,25 +1671,6 @@ JSONTEST_FIXTURE(ReaderTest, parseWithNoErrorsTestingOffsets) {
|
|||||||
root);
|
root);
|
||||||
JSONTEST_ASSERT(ok);
|
JSONTEST_ASSERT(ok);
|
||||||
JSONTEST_ASSERT(reader.getFormattedErrorMessages().size() == 0);
|
JSONTEST_ASSERT(reader.getFormattedErrorMessages().size() == 0);
|
||||||
JSONTEST_ASSERT(reader.getStructuredErrors().size() == 0);
|
|
||||||
JSONTEST_ASSERT(root["property"].getOffsetStart() == 15);
|
|
||||||
JSONTEST_ASSERT(root["property"].getOffsetLimit() == 34);
|
|
||||||
JSONTEST_ASSERT(root["property"][0].getOffsetStart() == 16);
|
|
||||||
JSONTEST_ASSERT(root["property"][0].getOffsetLimit() == 23);
|
|
||||||
JSONTEST_ASSERT(root["property"][1].getOffsetStart() == 25);
|
|
||||||
JSONTEST_ASSERT(root["property"][1].getOffsetLimit() == 33);
|
|
||||||
JSONTEST_ASSERT(root["obj"].getOffsetStart() == 44);
|
|
||||||
JSONTEST_ASSERT(root["obj"].getOffsetLimit() == 76);
|
|
||||||
JSONTEST_ASSERT(root["obj"]["nested"].getOffsetStart() == 57);
|
|
||||||
JSONTEST_ASSERT(root["obj"]["nested"].getOffsetLimit() == 60);
|
|
||||||
JSONTEST_ASSERT(root["obj"]["bool"].getOffsetStart() == 71);
|
|
||||||
JSONTEST_ASSERT(root["obj"]["bool"].getOffsetLimit() == 75);
|
|
||||||
JSONTEST_ASSERT(root["null"].getOffsetStart() == 87);
|
|
||||||
JSONTEST_ASSERT(root["null"].getOffsetLimit() == 91);
|
|
||||||
JSONTEST_ASSERT(root["false"].getOffsetStart() == 103);
|
|
||||||
JSONTEST_ASSERT(root["false"].getOffsetLimit() == 108);
|
|
||||||
JSONTEST_ASSERT(root.getOffsetStart() == 0);
|
|
||||||
JSONTEST_ASSERT(root.getOffsetLimit() == 110);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
JSONTEST_FIXTURE(ReaderTest, parseWithOneError) {
|
JSONTEST_FIXTURE(ReaderTest, parseWithOneError) {
|
||||||
@@ -1805,13 +1681,6 @@ JSONTEST_FIXTURE(ReaderTest, parseWithOneError) {
|
|||||||
JSONTEST_ASSERT(reader.getFormattedErrorMessages() ==
|
JSONTEST_ASSERT(reader.getFormattedErrorMessages() ==
|
||||||
"* Line 1, Column 15\n Syntax error: value, object or array "
|
"* Line 1, Column 15\n Syntax error: value, object or array "
|
||||||
"expected.\n");
|
"expected.\n");
|
||||||
std::vector<Json::Reader::StructuredError> errors =
|
|
||||||
reader.getStructuredErrors();
|
|
||||||
JSONTEST_ASSERT(errors.size() == 1);
|
|
||||||
JSONTEST_ASSERT(errors.at(0).offset_start == 14);
|
|
||||||
JSONTEST_ASSERT(errors.at(0).offset_limit == 15);
|
|
||||||
JSONTEST_ASSERT(errors.at(0).message ==
|
|
||||||
"Syntax error: value, object or array expected.");
|
|
||||||
}
|
}
|
||||||
|
|
||||||
JSONTEST_FIXTURE(ReaderTest, parseChineseWithOneError) {
|
JSONTEST_FIXTURE(ReaderTest, parseChineseWithOneError) {
|
||||||
@@ -1822,13 +1691,6 @@ JSONTEST_FIXTURE(ReaderTest, parseChineseWithOneError) {
|
|||||||
JSONTEST_ASSERT(reader.getFormattedErrorMessages() ==
|
JSONTEST_ASSERT(reader.getFormattedErrorMessages() ==
|
||||||
"* Line 1, Column 19\n Syntax error: value, object or array "
|
"* Line 1, Column 19\n Syntax error: value, object or array "
|
||||||
"expected.\n");
|
"expected.\n");
|
||||||
std::vector<Json::Reader::StructuredError> errors =
|
|
||||||
reader.getStructuredErrors();
|
|
||||||
JSONTEST_ASSERT(errors.size() == 1);
|
|
||||||
JSONTEST_ASSERT(errors.at(0).offset_start == 18);
|
|
||||||
JSONTEST_ASSERT(errors.at(0).offset_limit == 19);
|
|
||||||
JSONTEST_ASSERT(errors.at(0).message ==
|
|
||||||
"Syntax error: value, object or array expected.");
|
|
||||||
}
|
}
|
||||||
|
|
||||||
JSONTEST_FIXTURE(ReaderTest, parseWithDetailError) {
|
JSONTEST_FIXTURE(ReaderTest, parseWithDetailError) {
|
||||||
@@ -1839,12 +1701,6 @@ JSONTEST_FIXTURE(ReaderTest, parseWithDetailError) {
|
|||||||
JSONTEST_ASSERT(reader.getFormattedErrorMessages() ==
|
JSONTEST_ASSERT(reader.getFormattedErrorMessages() ==
|
||||||
"* Line 1, Column 16\n Bad escape sequence in string\nSee "
|
"* Line 1, Column 16\n Bad escape sequence in string\nSee "
|
||||||
"Line 1, Column 20 for detail.\n");
|
"Line 1, Column 20 for detail.\n");
|
||||||
std::vector<Json::Reader::StructuredError> errors =
|
|
||||||
reader.getStructuredErrors();
|
|
||||||
JSONTEST_ASSERT(errors.size() == 1);
|
|
||||||
JSONTEST_ASSERT(errors.at(0).offset_start == 15);
|
|
||||||
JSONTEST_ASSERT(errors.at(0).offset_limit == 23);
|
|
||||||
JSONTEST_ASSERT(errors.at(0).message == "Bad escape sequence in string");
|
|
||||||
}
|
}
|
||||||
|
|
||||||
struct CharReaderTest : JsonTest::TestCase {};
|
struct CharReaderTest : JsonTest::TestCase {};
|
||||||
@@ -1852,7 +1708,7 @@ struct CharReaderTest : JsonTest::TestCase {};
|
|||||||
JSONTEST_FIXTURE(CharReaderTest, parseWithNoErrors) {
|
JSONTEST_FIXTURE(CharReaderTest, parseWithNoErrors) {
|
||||||
Json::CharReaderBuilder b;
|
Json::CharReaderBuilder b;
|
||||||
Json::CharReader* reader(b.newCharReader());
|
Json::CharReader* reader(b.newCharReader());
|
||||||
JSONCPP_STRING errs;
|
std::string errs;
|
||||||
Json::Value root;
|
Json::Value root;
|
||||||
char const doc[] = "{ \"property\" : \"value\" }";
|
char const doc[] = "{ \"property\" : \"value\" }";
|
||||||
bool ok = reader->parse(
|
bool ok = reader->parse(
|
||||||
@@ -1866,7 +1722,7 @@ JSONTEST_FIXTURE(CharReaderTest, parseWithNoErrors) {
|
|||||||
JSONTEST_FIXTURE(CharReaderTest, parseWithNoErrorsTestingOffsets) {
|
JSONTEST_FIXTURE(CharReaderTest, parseWithNoErrorsTestingOffsets) {
|
||||||
Json::CharReaderBuilder b;
|
Json::CharReaderBuilder b;
|
||||||
Json::CharReader* reader(b.newCharReader());
|
Json::CharReader* reader(b.newCharReader());
|
||||||
JSONCPP_STRING errs;
|
std::string errs;
|
||||||
Json::Value root;
|
Json::Value root;
|
||||||
char const doc[] =
|
char const doc[] =
|
||||||
"{ \"property\" : [\"value\", \"value2\"], \"obj\" : "
|
"{ \"property\" : [\"value\", \"value2\"], \"obj\" : "
|
||||||
@@ -1883,7 +1739,7 @@ JSONTEST_FIXTURE(CharReaderTest, parseWithNoErrorsTestingOffsets) {
|
|||||||
JSONTEST_FIXTURE(CharReaderTest, parseWithOneError) {
|
JSONTEST_FIXTURE(CharReaderTest, parseWithOneError) {
|
||||||
Json::CharReaderBuilder b;
|
Json::CharReaderBuilder b;
|
||||||
Json::CharReader* reader(b.newCharReader());
|
Json::CharReader* reader(b.newCharReader());
|
||||||
JSONCPP_STRING errs;
|
std::string errs;
|
||||||
Json::Value root;
|
Json::Value root;
|
||||||
char const doc[] =
|
char const doc[] =
|
||||||
"{ \"property\" :: \"value\" }";
|
"{ \"property\" :: \"value\" }";
|
||||||
@@ -1900,7 +1756,7 @@ JSONTEST_FIXTURE(CharReaderTest, parseWithOneError) {
|
|||||||
JSONTEST_FIXTURE(CharReaderTest, parseChineseWithOneError) {
|
JSONTEST_FIXTURE(CharReaderTest, parseChineseWithOneError) {
|
||||||
Json::CharReaderBuilder b;
|
Json::CharReaderBuilder b;
|
||||||
Json::CharReader* reader(b.newCharReader());
|
Json::CharReader* reader(b.newCharReader());
|
||||||
JSONCPP_STRING errs;
|
std::string errs;
|
||||||
Json::Value root;
|
Json::Value root;
|
||||||
char const doc[] =
|
char const doc[] =
|
||||||
"{ \"pr佐藤erty\" :: \"value\" }";
|
"{ \"pr佐藤erty\" :: \"value\" }";
|
||||||
@@ -1917,7 +1773,7 @@ JSONTEST_FIXTURE(CharReaderTest, parseChineseWithOneError) {
|
|||||||
JSONTEST_FIXTURE(CharReaderTest, parseWithDetailError) {
|
JSONTEST_FIXTURE(CharReaderTest, parseWithDetailError) {
|
||||||
Json::CharReaderBuilder b;
|
Json::CharReaderBuilder b;
|
||||||
Json::CharReader* reader(b.newCharReader());
|
Json::CharReader* reader(b.newCharReader());
|
||||||
JSONCPP_STRING errs;
|
std::string errs;
|
||||||
Json::Value root;
|
Json::Value root;
|
||||||
char const doc[] =
|
char const doc[] =
|
||||||
"{ \"property\" : \"v\\alue\" }";
|
"{ \"property\" : \"v\\alue\" }";
|
||||||
@@ -1939,7 +1795,7 @@ JSONTEST_FIXTURE(CharReaderTest, parseWithStackLimit) {
|
|||||||
{
|
{
|
||||||
b.settings_["stackLimit"] = 2;
|
b.settings_["stackLimit"] = 2;
|
||||||
Json::CharReader* reader(b.newCharReader());
|
Json::CharReader* reader(b.newCharReader());
|
||||||
JSONCPP_STRING errs;
|
std::string errs;
|
||||||
bool ok = reader->parse(
|
bool ok = reader->parse(
|
||||||
doc, doc + std::strlen(doc),
|
doc, doc + std::strlen(doc),
|
||||||
&root, &errs);
|
&root, &errs);
|
||||||
@@ -1951,7 +1807,7 @@ JSONTEST_FIXTURE(CharReaderTest, parseWithStackLimit) {
|
|||||||
{
|
{
|
||||||
b.settings_["stackLimit"] = 1;
|
b.settings_["stackLimit"] = 1;
|
||||||
Json::CharReader* reader(b.newCharReader());
|
Json::CharReader* reader(b.newCharReader());
|
||||||
JSONCPP_STRING errs;
|
std::string errs;
|
||||||
JSONTEST_ASSERT_THROWS(reader->parse(
|
JSONTEST_ASSERT_THROWS(reader->parse(
|
||||||
doc, doc + std::strlen(doc),
|
doc, doc + std::strlen(doc),
|
||||||
&root, &errs));
|
&root, &errs));
|
||||||
@@ -1969,7 +1825,7 @@ JSONTEST_FIXTURE(CharReaderStrictModeTest, dupKeys) {
|
|||||||
{
|
{
|
||||||
b.strictMode(&b.settings_);
|
b.strictMode(&b.settings_);
|
||||||
Json::CharReader* reader(b.newCharReader());
|
Json::CharReader* reader(b.newCharReader());
|
||||||
JSONCPP_STRING errs;
|
std::string errs;
|
||||||
bool ok = reader->parse(
|
bool ok = reader->parse(
|
||||||
doc, doc + std::strlen(doc),
|
doc, doc + std::strlen(doc),
|
||||||
&root, &errs);
|
&root, &errs);
|
||||||
@@ -1985,7 +1841,7 @@ JSONTEST_FIXTURE(CharReaderStrictModeTest, dupKeys) {
|
|||||||
struct CharReaderFailIfExtraTest : JsonTest::TestCase {};
|
struct CharReaderFailIfExtraTest : JsonTest::TestCase {};
|
||||||
|
|
||||||
JSONTEST_FIXTURE(CharReaderFailIfExtraTest, issue164) {
|
JSONTEST_FIXTURE(CharReaderFailIfExtraTest, issue164) {
|
||||||
// This is interpreted as a string value followed by a colon.
|
// This is interpretted as a string value followed by a colon.
|
||||||
Json::CharReaderBuilder b;
|
Json::CharReaderBuilder b;
|
||||||
Json::Value root;
|
Json::Value root;
|
||||||
char const doc[] =
|
char const doc[] =
|
||||||
@@ -1993,7 +1849,7 @@ JSONTEST_FIXTURE(CharReaderFailIfExtraTest, issue164) {
|
|||||||
{
|
{
|
||||||
b.settings_["failIfExtra"] = false;
|
b.settings_["failIfExtra"] = false;
|
||||||
Json::CharReader* reader(b.newCharReader());
|
Json::CharReader* reader(b.newCharReader());
|
||||||
JSONCPP_STRING errs;
|
std::string errs;
|
||||||
bool ok = reader->parse(
|
bool ok = reader->parse(
|
||||||
doc, doc + std::strlen(doc),
|
doc, doc + std::strlen(doc),
|
||||||
&root, &errs);
|
&root, &errs);
|
||||||
@@ -2005,7 +1861,7 @@ JSONTEST_FIXTURE(CharReaderFailIfExtraTest, issue164) {
|
|||||||
{
|
{
|
||||||
b.settings_["failIfExtra"] = true;
|
b.settings_["failIfExtra"] = true;
|
||||||
Json::CharReader* reader(b.newCharReader());
|
Json::CharReader* reader(b.newCharReader());
|
||||||
JSONCPP_STRING errs;
|
std::string errs;
|
||||||
bool ok = reader->parse(
|
bool ok = reader->parse(
|
||||||
doc, doc + std::strlen(doc),
|
doc, doc + std::strlen(doc),
|
||||||
&root, &errs);
|
&root, &errs);
|
||||||
@@ -2020,7 +1876,7 @@ JSONTEST_FIXTURE(CharReaderFailIfExtraTest, issue164) {
|
|||||||
b.settings_["failIfExtra"] = false;
|
b.settings_["failIfExtra"] = false;
|
||||||
b.strictMode(&b.settings_);
|
b.strictMode(&b.settings_);
|
||||||
Json::CharReader* reader(b.newCharReader());
|
Json::CharReader* reader(b.newCharReader());
|
||||||
JSONCPP_STRING errs;
|
std::string errs;
|
||||||
bool ok = reader->parse(
|
bool ok = reader->parse(
|
||||||
doc, doc + std::strlen(doc),
|
doc, doc + std::strlen(doc),
|
||||||
&root, &errs);
|
&root, &errs);
|
||||||
@@ -2040,7 +1896,7 @@ JSONTEST_FIXTURE(CharReaderFailIfExtraTest, issue107) {
|
|||||||
"1:2:3";
|
"1:2:3";
|
||||||
b.settings_["failIfExtra"] = true;
|
b.settings_["failIfExtra"] = true;
|
||||||
Json::CharReader* reader(b.newCharReader());
|
Json::CharReader* reader(b.newCharReader());
|
||||||
JSONCPP_STRING errs;
|
std::string errs;
|
||||||
bool ok = reader->parse(
|
bool ok = reader->parse(
|
||||||
doc, doc + std::strlen(doc),
|
doc, doc + std::strlen(doc),
|
||||||
&root, &errs);
|
&root, &errs);
|
||||||
@@ -2060,7 +1916,7 @@ JSONTEST_FIXTURE(CharReaderFailIfExtraTest, commentAfterObject) {
|
|||||||
"{ \"property\" : \"value\" } //trailing\n//comment\n";
|
"{ \"property\" : \"value\" } //trailing\n//comment\n";
|
||||||
b.settings_["failIfExtra"] = true;
|
b.settings_["failIfExtra"] = true;
|
||||||
Json::CharReader* reader(b.newCharReader());
|
Json::CharReader* reader(b.newCharReader());
|
||||||
JSONCPP_STRING errs;
|
std::string errs;
|
||||||
bool ok = reader->parse(
|
bool ok = reader->parse(
|
||||||
doc, doc + std::strlen(doc),
|
doc, doc + std::strlen(doc),
|
||||||
&root, &errs);
|
&root, &errs);
|
||||||
@@ -2077,7 +1933,7 @@ JSONTEST_FIXTURE(CharReaderFailIfExtraTest, commentAfterArray) {
|
|||||||
"[ \"property\" , \"value\" ] //trailing\n//comment\n";
|
"[ \"property\" , \"value\" ] //trailing\n//comment\n";
|
||||||
b.settings_["failIfExtra"] = true;
|
b.settings_["failIfExtra"] = true;
|
||||||
Json::CharReader* reader(b.newCharReader());
|
Json::CharReader* reader(b.newCharReader());
|
||||||
JSONCPP_STRING errs;
|
std::string errs;
|
||||||
bool ok = reader->parse(
|
bool ok = reader->parse(
|
||||||
doc, doc + std::strlen(doc),
|
doc, doc + std::strlen(doc),
|
||||||
&root, &errs);
|
&root, &errs);
|
||||||
@@ -2093,7 +1949,7 @@ JSONTEST_FIXTURE(CharReaderFailIfExtraTest, commentAfterBool) {
|
|||||||
" true /*trailing\ncomment*/";
|
" true /*trailing\ncomment*/";
|
||||||
b.settings_["failIfExtra"] = true;
|
b.settings_["failIfExtra"] = true;
|
||||||
Json::CharReader* reader(b.newCharReader());
|
Json::CharReader* reader(b.newCharReader());
|
||||||
JSONCPP_STRING errs;
|
std::string errs;
|
||||||
bool ok = reader->parse(
|
bool ok = reader->parse(
|
||||||
doc, doc + std::strlen(doc),
|
doc, doc + std::strlen(doc),
|
||||||
&root, &errs);
|
&root, &errs);
|
||||||
@@ -2108,7 +1964,7 @@ JSONTEST_FIXTURE(CharReaderAllowDropNullTest, issue178) {
|
|||||||
Json::CharReaderBuilder b;
|
Json::CharReaderBuilder b;
|
||||||
b.settings_["allowDroppedNullPlaceholders"] = true;
|
b.settings_["allowDroppedNullPlaceholders"] = true;
|
||||||
Json::Value root;
|
Json::Value root;
|
||||||
JSONCPP_STRING errs;
|
std::string errs;
|
||||||
Json::CharReader* reader(b.newCharReader());
|
Json::CharReader* reader(b.newCharReader());
|
||||||
{
|
{
|
||||||
char const doc[] = "{\"a\":,\"b\":true}";
|
char const doc[] = "{\"a\":,\"b\":true}";
|
||||||
@@ -2260,7 +2116,7 @@ JSONTEST_FIXTURE(CharReaderAllowSingleQuotesTest, issue182) {
|
|||||||
Json::CharReaderBuilder b;
|
Json::CharReaderBuilder b;
|
||||||
b.settings_["allowSingleQuotes"] = true;
|
b.settings_["allowSingleQuotes"] = true;
|
||||||
Json::Value root;
|
Json::Value root;
|
||||||
JSONCPP_STRING errs;
|
std::string errs;
|
||||||
Json::CharReader* reader(b.newCharReader());
|
Json::CharReader* reader(b.newCharReader());
|
||||||
{
|
{
|
||||||
char const doc[] = "{'a':true,\"b\":true}";
|
char const doc[] = "{'a':true,\"b\":true}";
|
||||||
@@ -2284,7 +2140,6 @@ JSONTEST_FIXTURE(CharReaderAllowSingleQuotesTest, issue182) {
|
|||||||
JSONTEST_ASSERT_STRING_EQUAL("x", root["a"].asString());
|
JSONTEST_ASSERT_STRING_EQUAL("x", root["a"].asString());
|
||||||
JSONTEST_ASSERT_STRING_EQUAL("y", root["b"].asString());
|
JSONTEST_ASSERT_STRING_EQUAL("y", root["b"].asString());
|
||||||
}
|
}
|
||||||
delete reader;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
struct CharReaderAllowZeroesTest : JsonTest::TestCase {};
|
struct CharReaderAllowZeroesTest : JsonTest::TestCase {};
|
||||||
@@ -2293,7 +2148,7 @@ JSONTEST_FIXTURE(CharReaderAllowZeroesTest, issue176) {
|
|||||||
Json::CharReaderBuilder b;
|
Json::CharReaderBuilder b;
|
||||||
b.settings_["allowSingleQuotes"] = true;
|
b.settings_["allowSingleQuotes"] = true;
|
||||||
Json::Value root;
|
Json::Value root;
|
||||||
JSONCPP_STRING errs;
|
std::string errs;
|
||||||
Json::CharReader* reader(b.newCharReader());
|
Json::CharReader* reader(b.newCharReader());
|
||||||
{
|
{
|
||||||
char const doc[] = "{'a':true,\"b\":true}";
|
char const doc[] = "{'a':true,\"b\":true}";
|
||||||
@@ -2317,82 +2172,6 @@ JSONTEST_FIXTURE(CharReaderAllowZeroesTest, issue176) {
|
|||||||
JSONTEST_ASSERT_STRING_EQUAL("x", root["a"].asString());
|
JSONTEST_ASSERT_STRING_EQUAL("x", root["a"].asString());
|
||||||
JSONTEST_ASSERT_STRING_EQUAL("y", root["b"].asString());
|
JSONTEST_ASSERT_STRING_EQUAL("y", root["b"].asString());
|
||||||
}
|
}
|
||||||
delete reader;
|
|
||||||
}
|
|
||||||
|
|
||||||
struct CharReaderAllowSpecialFloatsTest : JsonTest::TestCase {};
|
|
||||||
|
|
||||||
JSONTEST_FIXTURE(CharReaderAllowSpecialFloatsTest, issue209) {
|
|
||||||
Json::CharReaderBuilder b;
|
|
||||||
b.settings_["allowSpecialFloats"] = true;
|
|
||||||
Json::Value root;
|
|
||||||
JSONCPP_STRING errs;
|
|
||||||
Json::CharReader* reader(b.newCharReader());
|
|
||||||
{
|
|
||||||
char const doc[] = "{\"a\":NaN,\"b\":Infinity,\"c\":-Infinity}";
|
|
||||||
bool ok = reader->parse(
|
|
||||||
doc, doc + std::strlen(doc),
|
|
||||||
&root, &errs);
|
|
||||||
JSONTEST_ASSERT(ok);
|
|
||||||
JSONTEST_ASSERT_STRING_EQUAL("", errs);
|
|
||||||
JSONTEST_ASSERT_EQUAL(3u, root.size());
|
|
||||||
double n = root["a"].asDouble();
|
|
||||||
JSONTEST_ASSERT(n != n);
|
|
||||||
JSONTEST_ASSERT_EQUAL(std::numeric_limits<double>::infinity(), root.get("b", 0.0));
|
|
||||||
JSONTEST_ASSERT_EQUAL(-std::numeric_limits<double>::infinity(), root.get("c", 0.0));
|
|
||||||
}
|
|
||||||
|
|
||||||
struct TestData {
|
|
||||||
int line;
|
|
||||||
bool ok;
|
|
||||||
JSONCPP_STRING in;
|
|
||||||
};
|
|
||||||
const TestData test_data[] = {
|
|
||||||
{__LINE__, 1, "{\"a\":9}"},
|
|
||||||
{__LINE__, 0, "{\"a\":0Infinity}"},
|
|
||||||
{__LINE__, 0, "{\"a\":1Infinity}"},
|
|
||||||
{__LINE__, 0, "{\"a\":9Infinity}"},
|
|
||||||
{__LINE__, 0, "{\"a\":0nfinity}"},
|
|
||||||
{__LINE__, 0, "{\"a\":1nfinity}"},
|
|
||||||
{__LINE__, 0, "{\"a\":9nfinity}"},
|
|
||||||
{__LINE__, 0, "{\"a\":nfinity}"},
|
|
||||||
{__LINE__, 0, "{\"a\":.nfinity}"},
|
|
||||||
{__LINE__, 0, "{\"a\":9nfinity}"},
|
|
||||||
{__LINE__, 0, "{\"a\":-nfinity}"},
|
|
||||||
{__LINE__, 1, "{\"a\":Infinity}"},
|
|
||||||
{__LINE__, 0, "{\"a\":.Infinity}"},
|
|
||||||
{__LINE__, 0, "{\"a\":_Infinity}"},
|
|
||||||
{__LINE__, 0, "{\"a\":_nfinity}"},
|
|
||||||
{__LINE__, 1, "{\"a\":-Infinity}"}
|
|
||||||
};
|
|
||||||
for (size_t tdi = 0; tdi < sizeof(test_data) / sizeof(*test_data); ++tdi) {
|
|
||||||
const TestData& td = test_data[tdi];
|
|
||||||
bool ok = reader->parse(&*td.in.begin(),
|
|
||||||
&*td.in.begin() + td.in.size(),
|
|
||||||
&root, &errs);
|
|
||||||
JSONTEST_ASSERT(td.ok == ok)
|
|
||||||
<< "line:" << td.line << "\n"
|
|
||||||
<< " expected: {"
|
|
||||||
<< "ok:" << td.ok
|
|
||||||
<< ", in:\'" << td.in << "\'"
|
|
||||||
<< "}\n"
|
|
||||||
<< " actual: {"
|
|
||||||
<< "ok:" << ok
|
|
||||||
<< "}\n";
|
|
||||||
}
|
|
||||||
|
|
||||||
{
|
|
||||||
char const doc[] = "{\"posInf\": Infinity, \"NegInf\": -Infinity}";
|
|
||||||
bool ok = reader->parse(
|
|
||||||
doc, doc + std::strlen(doc),
|
|
||||||
&root, &errs);
|
|
||||||
JSONTEST_ASSERT(ok);
|
|
||||||
JSONTEST_ASSERT_STRING_EQUAL("", errs);
|
|
||||||
JSONTEST_ASSERT_EQUAL(2u, root.size());
|
|
||||||
JSONTEST_ASSERT_EQUAL(std::numeric_limits<double>::infinity(), root["posInf"].asDouble());
|
|
||||||
JSONTEST_ASSERT_EQUAL(-std::numeric_limits<double>::infinity(), root["NegInf"].asDouble());
|
|
||||||
}
|
|
||||||
delete reader;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
struct BuilderTest : JsonTest::TestCase {};
|
struct BuilderTest : JsonTest::TestCase {};
|
||||||
@@ -2425,7 +2204,7 @@ JSONTEST_FIXTURE(IteratorTest, distance) {
|
|||||||
json["k1"] = "a";
|
json["k1"] = "a";
|
||||||
json["k2"] = "b";
|
json["k2"] = "b";
|
||||||
int dist = 0;
|
int dist = 0;
|
||||||
JSONCPP_STRING str;
|
std::string str;
|
||||||
for (Json::ValueIterator it = json.begin(); it != json.end(); ++it) {
|
for (Json::ValueIterator it = json.begin(); it != json.end(); ++it) {
|
||||||
dist = it - json.begin();
|
dist = it - json.begin();
|
||||||
str = it->asString().c_str();
|
str = it->asString().c_str();
|
||||||
@@ -2434,89 +2213,12 @@ JSONTEST_FIXTURE(IteratorTest, distance) {
|
|||||||
JSONTEST_ASSERT_STRING_EQUAL("b", str);
|
JSONTEST_ASSERT_STRING_EQUAL("b", str);
|
||||||
}
|
}
|
||||||
|
|
||||||
JSONTEST_FIXTURE(IteratorTest, names) {
|
|
||||||
Json::Value json;
|
|
||||||
json["k1"] = "a";
|
|
||||||
json["k2"] = "b";
|
|
||||||
Json::ValueIterator it = json.begin();
|
|
||||||
JSONTEST_ASSERT(it != json.end());
|
|
||||||
JSONTEST_ASSERT_EQUAL(Json::Value("k1"), it.key());
|
|
||||||
JSONTEST_ASSERT_STRING_EQUAL("k1", it.name());
|
|
||||||
JSONTEST_ASSERT_EQUAL(-1, it.index());
|
|
||||||
++it;
|
|
||||||
JSONTEST_ASSERT(it != json.end());
|
|
||||||
JSONTEST_ASSERT_EQUAL(Json::Value("k2"), it.key());
|
|
||||||
JSONTEST_ASSERT_STRING_EQUAL("k2", it.name());
|
|
||||||
JSONTEST_ASSERT_EQUAL(-1, it.index());
|
|
||||||
++it;
|
|
||||||
JSONTEST_ASSERT(it == json.end());
|
|
||||||
}
|
|
||||||
|
|
||||||
JSONTEST_FIXTURE(IteratorTest, indexes) {
|
|
||||||
Json::Value json;
|
|
||||||
json[0] = "a";
|
|
||||||
json[1] = "b";
|
|
||||||
Json::ValueIterator it = json.begin();
|
|
||||||
JSONTEST_ASSERT(it != json.end());
|
|
||||||
JSONTEST_ASSERT_EQUAL(Json::Value(Json::ArrayIndex(0)), it.key());
|
|
||||||
JSONTEST_ASSERT_STRING_EQUAL("", it.name());
|
|
||||||
JSONTEST_ASSERT_EQUAL(0, it.index());
|
|
||||||
++it;
|
|
||||||
JSONTEST_ASSERT(it != json.end());
|
|
||||||
JSONTEST_ASSERT_EQUAL(Json::Value(Json::ArrayIndex(1)), it.key());
|
|
||||||
JSONTEST_ASSERT_STRING_EQUAL("", it.name());
|
|
||||||
JSONTEST_ASSERT_EQUAL(1, it.index());
|
|
||||||
++it;
|
|
||||||
JSONTEST_ASSERT(it == json.end());
|
|
||||||
}
|
|
||||||
|
|
||||||
JSONTEST_FIXTURE(IteratorTest, const) {
|
|
||||||
Json::Value const v;
|
|
||||||
JSONTEST_ASSERT_THROWS(
|
|
||||||
Json::Value::iterator it(v.begin()) // Compile, but throw.
|
|
||||||
);
|
|
||||||
|
|
||||||
Json::Value value;
|
|
||||||
|
|
||||||
for(int i = 9; i < 12; ++i)
|
|
||||||
{
|
|
||||||
JSONCPP_OSTRINGSTREAM out;
|
|
||||||
out << std::setw(2) << i;
|
|
||||||
JSONCPP_STRING str = out.str();
|
|
||||||
value[str] = str;
|
|
||||||
}
|
|
||||||
|
|
||||||
JSONCPP_OSTRINGSTREAM out;
|
|
||||||
//in old code, this will get a compile error
|
|
||||||
Json::Value::const_iterator iter = value.begin();
|
|
||||||
for(; iter != value.end(); ++iter)
|
|
||||||
{
|
|
||||||
out << *iter << ',';
|
|
||||||
}
|
|
||||||
JSONCPP_STRING expected = "\" 9\",\"10\",\"11\",";
|
|
||||||
JSONTEST_ASSERT_STRING_EQUAL(expected, out.str());
|
|
||||||
}
|
|
||||||
|
|
||||||
struct RValueTest : JsonTest::TestCase {};
|
|
||||||
|
|
||||||
JSONTEST_FIXTURE(RValueTest, moveConstruction) {
|
|
||||||
#if JSON_HAS_RVALUE_REFERENCES
|
|
||||||
Json::Value json;
|
|
||||||
json["key"] = "value";
|
|
||||||
Json::Value moved = std::move(json);
|
|
||||||
JSONTEST_ASSERT(moved != json); // Possibly not nullValue; definitely not equal.
|
|
||||||
JSONTEST_ASSERT_EQUAL(Json::objectValue, moved.type());
|
|
||||||
JSONTEST_ASSERT_EQUAL(Json::stringValue, moved["key"].type());
|
|
||||||
#endif
|
|
||||||
}
|
|
||||||
|
|
||||||
int main(int argc, const char* argv[]) {
|
int main(int argc, const char* argv[]) {
|
||||||
JsonTest::Runner runner;
|
JsonTest::Runner runner;
|
||||||
JSONTEST_REGISTER_FIXTURE(runner, ValueTest, checkNormalizeFloatingPointStr);
|
JSONTEST_REGISTER_FIXTURE(runner, ValueTest, checkNormalizeFloatingPointStr);
|
||||||
JSONTEST_REGISTER_FIXTURE(runner, ValueTest, memberCount);
|
JSONTEST_REGISTER_FIXTURE(runner, ValueTest, memberCount);
|
||||||
JSONTEST_REGISTER_FIXTURE(runner, ValueTest, objects);
|
JSONTEST_REGISTER_FIXTURE(runner, ValueTest, objects);
|
||||||
JSONTEST_REGISTER_FIXTURE(runner, ValueTest, arrays);
|
JSONTEST_REGISTER_FIXTURE(runner, ValueTest, arrays);
|
||||||
JSONTEST_REGISTER_FIXTURE(runner, ValueTest, arrayIssue252);
|
|
||||||
JSONTEST_REGISTER_FIXTURE(runner, ValueTest, null);
|
JSONTEST_REGISTER_FIXTURE(runner, ValueTest, null);
|
||||||
JSONTEST_REGISTER_FIXTURE(runner, ValueTest, strings);
|
JSONTEST_REGISTER_FIXTURE(runner, ValueTest, strings);
|
||||||
JSONTEST_REGISTER_FIXTURE(runner, ValueTest, bools);
|
JSONTEST_REGISTER_FIXTURE(runner, ValueTest, bools);
|
||||||
@@ -2531,17 +2233,13 @@ int main(int argc, const char* argv[]) {
|
|||||||
JSONTEST_REGISTER_FIXTURE(runner, ValueTest, compareArray);
|
JSONTEST_REGISTER_FIXTURE(runner, ValueTest, compareArray);
|
||||||
JSONTEST_REGISTER_FIXTURE(runner, ValueTest, compareObject);
|
JSONTEST_REGISTER_FIXTURE(runner, ValueTest, compareObject);
|
||||||
JSONTEST_REGISTER_FIXTURE(runner, ValueTest, compareType);
|
JSONTEST_REGISTER_FIXTURE(runner, ValueTest, compareType);
|
||||||
JSONTEST_REGISTER_FIXTURE(runner, ValueTest, offsetAccessors);
|
|
||||||
JSONTEST_REGISTER_FIXTURE(runner, ValueTest, typeChecksThrowExceptions);
|
JSONTEST_REGISTER_FIXTURE(runner, ValueTest, typeChecksThrowExceptions);
|
||||||
JSONTEST_REGISTER_FIXTURE(runner, ValueTest, StaticString);
|
JSONTEST_REGISTER_FIXTURE(runner, ValueTest, StaticString);
|
||||||
JSONTEST_REGISTER_FIXTURE(runner, ValueTest, CommentBefore);
|
JSONTEST_REGISTER_FIXTURE(runner, ValueTest, CommentBefore);
|
||||||
//JSONTEST_REGISTER_FIXTURE(runner, ValueTest, nulls);
|
//JSONTEST_REGISTER_FIXTURE(runner, ValueTest, nulls);
|
||||||
JSONTEST_REGISTER_FIXTURE(runner, ValueTest, zeroes);
|
JSONTEST_REGISTER_FIXTURE(runner, ValueTest, zeroes);
|
||||||
JSONTEST_REGISTER_FIXTURE(runner, ValueTest, zeroesInKeys);
|
JSONTEST_REGISTER_FIXTURE(runner, ValueTest, zeroesInKeys);
|
||||||
JSONTEST_REGISTER_FIXTURE(runner, ValueTest, specialFloats);
|
|
||||||
JSONTEST_REGISTER_FIXTURE(runner, ValueTest, precision);
|
|
||||||
|
|
||||||
JSONTEST_REGISTER_FIXTURE(runner, WriterTest, dropNullPlaceholders);
|
|
||||||
JSONTEST_REGISTER_FIXTURE(runner, StreamWriterTest, dropNullPlaceholders);
|
JSONTEST_REGISTER_FIXTURE(runner, StreamWriterTest, dropNullPlaceholders);
|
||||||
JSONTEST_REGISTER_FIXTURE(runner, StreamWriterTest, writeZeroes);
|
JSONTEST_REGISTER_FIXTURE(runner, StreamWriterTest, writeZeroes);
|
||||||
|
|
||||||
@@ -2574,16 +2272,9 @@ int main(int argc, const char* argv[]) {
|
|||||||
|
|
||||||
JSONTEST_REGISTER_FIXTURE(runner, CharReaderAllowZeroesTest, issue176);
|
JSONTEST_REGISTER_FIXTURE(runner, CharReaderAllowZeroesTest, issue176);
|
||||||
|
|
||||||
JSONTEST_REGISTER_FIXTURE(runner, CharReaderAllowSpecialFloatsTest, issue209);
|
|
||||||
|
|
||||||
JSONTEST_REGISTER_FIXTURE(runner, BuilderTest, settings);
|
JSONTEST_REGISTER_FIXTURE(runner, BuilderTest, settings);
|
||||||
|
|
||||||
JSONTEST_REGISTER_FIXTURE(runner, IteratorTest, distance);
|
JSONTEST_REGISTER_FIXTURE(runner, IteratorTest, distance);
|
||||||
JSONTEST_REGISTER_FIXTURE(runner, IteratorTest, names);
|
|
||||||
JSONTEST_REGISTER_FIXTURE(runner, IteratorTest, indexes);
|
|
||||||
JSONTEST_REGISTER_FIXTURE(runner, IteratorTest, const);
|
|
||||||
|
|
||||||
JSONTEST_REGISTER_FIXTURE(runner, RValueTest, moveConstruction);
|
|
||||||
|
|
||||||
return runner.runCommandLine(argc, argv);
|
return runner.runCommandLine(argc, argv);
|
||||||
}
|
}
|
||||||
|
@@ -1,10 +1,4 @@
|
|||||||
# Copyright 2007 The JsonCpp Authors
|
# removes all files created during testing
|
||||||
# Distributed under MIT license, or public domain if desired and
|
|
||||||
# recognized in your jurisdiction.
|
|
||||||
# See file LICENSE for detail or copy at http://jsoncpp.sourceforge.net/LICENSE
|
|
||||||
|
|
||||||
"""Removes all files created during testing."""
|
|
||||||
|
|
||||||
import glob
|
import glob
|
||||||
import os
|
import os
|
||||||
|
|
||||||
|
@@ -1 +0,0 @@
|
|||||||
[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]
|
|
@@ -1,8 +1,3 @@
|
|||||||
# Copyright 2007 The JsonCpp Authors
|
|
||||||
# Distributed under MIT license, or public domain if desired and
|
|
||||||
# recognized in your jurisdiction.
|
|
||||||
# See file LICENSE for detail or copy at http://jsoncpp.sourceforge.net/LICENSE
|
|
||||||
|
|
||||||
from __future__ import print_function
|
from __future__ import print_function
|
||||||
import glob
|
import glob
|
||||||
import os.path
|
import os.path
|
||||||
|
@@ -1,11 +1,4 @@
|
|||||||
# Copyright 2007 The JsonCpp Authors
|
# Simple implementation of a json test runner to run the test against json-py.
|
||||||
# Distributed under MIT license, or public domain if desired and
|
|
||||||
# recognized in your jurisdiction.
|
|
||||||
# See file LICENSE for detail or copy at http://jsoncpp.sourceforge.net/LICENSE
|
|
||||||
|
|
||||||
"""Simple implementation of a json test runner to run the test against
|
|
||||||
json-py."""
|
|
||||||
|
|
||||||
from __future__ import print_function
|
from __future__ import print_function
|
||||||
import sys
|
import sys
|
||||||
import os.path
|
import os.path
|
||||||
|
@@ -1,8 +1,3 @@
|
|||||||
# Copyright 2007 The JsonCpp Authors
|
|
||||||
# Distributed under MIT license, or public domain if desired and
|
|
||||||
# recognized in your jurisdiction.
|
|
||||||
# See file LICENSE for detail or copy at http://jsoncpp.sourceforge.net/LICENSE
|
|
||||||
|
|
||||||
from __future__ import print_function
|
from __future__ import print_function
|
||||||
from __future__ import unicode_literals
|
from __future__ import unicode_literals
|
||||||
from io import open
|
from io import open
|
||||||
|
@@ -1,8 +1,3 @@
|
|||||||
# Copyright 2009 The JsonCpp Authors
|
|
||||||
# Distributed under MIT license, or public domain if desired and
|
|
||||||
# recognized in your jurisdiction.
|
|
||||||
# See file LICENSE for detail or copy at http://jsoncpp.sourceforge.net/LICENSE
|
|
||||||
|
|
||||||
from __future__ import print_function
|
from __future__ import print_function
|
||||||
from __future__ import unicode_literals
|
from __future__ import unicode_literals
|
||||||
from io import open
|
from io import open
|
||||||
|
23
travis.sh
23
travis.sh
@@ -1,23 +0,0 @@
|
|||||||
#!/usr/bin/env sh
|
|
||||||
# This is called by `.travis.yml` via Travis CI.
|
|
||||||
# Travis supplies $TRAVIS_OS_NAME.
|
|
||||||
# http://docs.travis-ci.com/user/multi-os/
|
|
||||||
# Our .travis.yml also defines:
|
|
||||||
# - SHARED_LIB=ON/OFF
|
|
||||||
# - STATIC_LIB=ON/OFF
|
|
||||||
# - CMAKE_PKG=ON/OFF
|
|
||||||
# - BUILD_TYPE=release/debug
|
|
||||||
# - VERBOSE_MAKE=false/true
|
|
||||||
# - VERBOSE (set or not)
|
|
||||||
|
|
||||||
# -e: fail on error
|
|
||||||
# -v: show commands
|
|
||||||
# -x: show expanded commands
|
|
||||||
set -vex
|
|
||||||
|
|
||||||
env | sort
|
|
||||||
|
|
||||||
meson --buildtype ${BUILD_TYPE} --default-library ${LIB_TYPE} . build-${LIB_TYPE}
|
|
||||||
ninja -v -C build-${LIB_TYPE}
|
|
||||||
ninja -v -C build-${LIB_TYPE} test
|
|
||||||
rm -r build-${LIB_TYPE}
|
|
Reference in New Issue
Block a user