mirror of
https://github.com/open-source-parsers/jsoncpp.git
synced 2025-10-15 23:20:05 +02:00
Compare commits
58 Commits
Author | SHA1 | Date | |
---|---|---|---|
![]() |
2de18021fc | ||
![]() |
c98e1d85e3 | ||
![]() |
d830c0ab94 | ||
![]() |
90591c70cd | ||
![]() |
4cfae897c0 | ||
![]() |
f4ec601fd3 | ||
![]() |
d40f26d472 | ||
![]() |
c668af9d41 | ||
![]() |
13b5ed7287 | ||
![]() |
6d31cec7cf | ||
![]() |
5331d295aa | ||
![]() |
004270db37 | ||
![]() |
9006194139 | ||
![]() |
6062f9b848 | ||
![]() |
ef16a35328 | ||
![]() |
7354da8077 | ||
![]() |
6a15ca6442 | ||
![]() |
9a048e5766 | ||
![]() |
59e4d35339 | ||
![]() |
f26edb05e5 | ||
![]() |
cadb6dd9a6 | ||
![]() |
ea9f0cec30 | ||
![]() |
ffdcc9355d | ||
![]() |
f45c01a46e | ||
![]() |
3c2069fdd1 | ||
![]() |
414b179d86 | ||
![]() |
0ba8bd73f5 | ||
![]() |
23c44d9f9e | ||
![]() |
8996c377aa | ||
![]() |
a679dde58d | ||
![]() |
c21b4bbfdb | ||
![]() |
d14d8c35c3 | ||
![]() |
ed258de63d | ||
![]() |
154652ee7a | ||
![]() |
4a9d77bcf7 | ||
![]() |
56efb6ba83 | ||
![]() |
7f9cc2705c | ||
![]() |
d7347a2623 | ||
![]() |
2e319850d1 | ||
![]() |
a3d35d7fb8 | ||
![]() |
19fc55f408 | ||
![]() |
acf74290f1 | ||
![]() |
746ef154f1 | ||
![]() |
559b4416e6 | ||
![]() |
6ca374371e | ||
![]() |
f7df408a6a | ||
![]() |
86ed860c4b | ||
![]() |
c442fd96e6 | ||
![]() |
c68443f3a0 | ||
![]() |
11c48d0047 | ||
![]() |
264c3edca7 | ||
![]() |
a47fc398ef | ||
![]() |
2f178f390f | ||
![]() |
f251f15e6a | ||
![]() |
60bfcf1715 | ||
![]() |
81065748e3 | ||
![]() |
11836ae9aa | ||
![]() |
e25fb5384a |
7
.gitignore
vendored
7
.gitignore
vendored
@@ -1,4 +1,5 @@
|
|||||||
/build/
|
/build/
|
||||||
|
/build-*/
|
||||||
*.pyc
|
*.pyc
|
||||||
*.swp
|
*.swp
|
||||||
*.actual
|
*.actual
|
||||||
@@ -6,7 +7,6 @@
|
|||||||
*.process-output
|
*.process-output
|
||||||
*.rewrite
|
*.rewrite
|
||||||
/bin/
|
/bin/
|
||||||
/buildscons/
|
|
||||||
/libs/
|
/libs/
|
||||||
/doc/doxyfile
|
/doc/doxyfile
|
||||||
/dist/
|
/dist/
|
||||||
@@ -31,7 +31,7 @@
|
|||||||
# CMake-generated files:
|
# CMake-generated files:
|
||||||
CMakeFiles/
|
CMakeFiles/
|
||||||
*.cmake
|
*.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:
|
# In case someone runs cmake in the root-dir:
|
||||||
@@ -50,3 +50,6 @@ jsoncpp_lib_static.dir/
|
|||||||
.project
|
.project
|
||||||
.cproject
|
.cproject
|
||||||
/.settings/
|
/.settings/
|
||||||
|
|
||||||
|
# DS_Store
|
||||||
|
.DS_Store
|
||||||
|
24
.travis.yml
24
.travis.yml
@@ -7,14 +7,24 @@
|
|||||||
# to allow C++11, though we are not yet building with -std=c++11
|
# to allow C++11, though we are not yet building with -std=c++11
|
||||||
|
|
||||||
install:
|
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.
|
# /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
|
- 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.
|
# /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
|
- if [[ $CXX = clang++ ]]; then export CXX="clang++-3.5" CC="clang-3.5"; fi
|
||||||
- echo ${PATH}
|
- echo ${PATH}
|
||||||
- ls /usr/local
|
- ls /usr/local
|
||||||
- ls /usr/local/bin
|
- ls /usr/local/bin
|
||||||
- export PATH=/usr/local/bin:/usr/bin:${PATH}
|
- export PATH="${PWD}"/build:/usr/local/bin:/usr/bin:${PATH}
|
||||||
- echo ${CXX}
|
- echo ${CXX}
|
||||||
- ${CXX} --version
|
- ${CXX} --version
|
||||||
- which valgrind
|
- which valgrind
|
||||||
@@ -23,10 +33,7 @@ addons:
|
|||||||
sources:
|
sources:
|
||||||
- ubuntu-toolchain-r-test
|
- ubuntu-toolchain-r-test
|
||||||
- llvm-toolchain-precise-3.5
|
- llvm-toolchain-precise-3.5
|
||||||
- george-edison55-precise-backports # cmake 3.2.3
|
|
||||||
packages:
|
packages:
|
||||||
- cmake
|
|
||||||
- cmake-data
|
|
||||||
- gcc-4.9
|
- gcc-4.9
|
||||||
- g++-4.9
|
- g++-4.9
|
||||||
- clang-3.5
|
- clang-3.5
|
||||||
@@ -40,8 +47,9 @@ compiler:
|
|||||||
script: ./travis.sh
|
script: ./travis.sh
|
||||||
env:
|
env:
|
||||||
matrix:
|
matrix:
|
||||||
- SHARED_LIB=ON STATIC_LIB=ON CMAKE_PKG=ON BUILD_TYPE=release VERBOSE_MAKE=false
|
- LIB_TYPE=static BUILD_TYPE=release
|
||||||
- SHARED_LIB=OFF STATIC_LIB=ON CMAKE_PKG=OFF BUILD_TYPE=debug VERBOSE_MAKE=true VERBOSE
|
- LIB_TYPE=shared BUILD_TYPE=debug
|
||||||
notifications:
|
notifications:
|
||||||
email: false
|
email: false
|
||||||
|
dist: trusty
|
||||||
sudo: false
|
sudo: false
|
||||||
|
110
AUTHORS
110
AUTHORS
@@ -1 +1,111 @@
|
|||||||
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.
|
||||||
|
@@ -59,12 +59,12 @@ ENDMACRO()
|
|||||||
#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.0 )
|
SET( JSONCPP_VERSION 1.8.3 )
|
||||||
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_SOVERSION 19 )
|
||||||
SET( JSONCPP_USE_SECURE_MEMORY "0" CACHE STRING "-D...=1 to use memory-wiping allocator for STL" )
|
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}")
|
||||||
@@ -112,8 +112,11 @@ ELSEIF(CMAKE_CXX_COMPILER_ID STREQUAL "GNU")
|
|||||||
SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall -Wconversion -Wshadow -Wextra")
|
SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall -Wconversion -Wshadow -Wextra")
|
||||||
# not yet ready for -Wsign-conversion
|
# not yet ready for -Wsign-conversion
|
||||||
|
|
||||||
IF(JSONCPP_WITH_STRICT_ISO AND NOT JSONCPP_WITH_WARNING_AS_ERROR)
|
IF(JSONCPP_WITH_STRICT_ISO)
|
||||||
SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Werror=conversion -pedantic")
|
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()
|
ENDIF()
|
||||||
ELSEIF(CMAKE_CXX_COMPILER_ID STREQUAL "Intel")
|
ELSEIF(CMAKE_CXX_COMPILER_ID STREQUAL "Intel")
|
||||||
# using Intel compiler
|
# using Intel compiler
|
||||||
|
8
LICENSE
8
LICENSE
@@ -2,13 +2,13 @@ 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 author (Baptiste Lepilleur) explicitly disclaims copyright in all
|
Baptiste Lepilleur and The JsonCpp Authors explicitly disclaim 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 Baptiste Lepilleur, and is
|
2010), this software is Copyright (c) 2007-2010 by Baptiste Lepilleur and
|
||||||
released under the terms of the MIT License (see below).
|
The JsonCpp Authors, and is 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
|
||||||
software may choose to accept it either as 1) Public Domain, 2) under the
|
software may choose to accept it either as 1) Public Domain, 2) under the
|
||||||
@@ -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 Baptiste Lepilleur
|
Copyright (c) 2007-2010 Baptiste Lepilleur and The JsonCpp Authors
|
||||||
|
|
||||||
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
|
||||||
|
175
NEWS.txt
175
NEWS.txt
@@ -1,175 +0,0 @@
|
|||||||
New in SVN
|
|
||||||
----------
|
|
||||||
|
|
||||||
* Updated the type system's behavior, in order to better support backwards
|
|
||||||
compatibility with code that was written before 64-bit integer support was
|
|
||||||
introduced. Here's how it works now:
|
|
||||||
|
|
||||||
* isInt, isInt64, isUInt, and isUInt64 return true if and only if the
|
|
||||||
value can be exactly represented as that type. In particular, a value
|
|
||||||
constructed with a double like 17.0 will now return true for all of
|
|
||||||
these methods.
|
|
||||||
|
|
||||||
* isDouble and isFloat now return true for all numeric values, since all
|
|
||||||
numeric values can be converted to a double or float without
|
|
||||||
truncation. Note however that the conversion may not be exact -- for
|
|
||||||
example, doubles cannot exactly represent all integers above 2^53 + 1.
|
|
||||||
|
|
||||||
* isBool, isNull, isString, isArray, and isObject now return true if and
|
|
||||||
only if the value is of that type.
|
|
||||||
|
|
||||||
* isConvertibleTo(fooValue) indicates that it is safe to call asFoo.
|
|
||||||
(For each type foo, isFoo always implies isConvertibleTo(fooValue).)
|
|
||||||
asFoo returns an approximate or exact representation as appropriate.
|
|
||||||
For example, a double value may be truncated when asInt is called.
|
|
||||||
|
|
||||||
* For backwards compatibility with old code, isConvertibleTo(intValue)
|
|
||||||
may return false even if type() == intValue. This is because the value
|
|
||||||
may have been constructed with a 64-bit integer larger than maxInt,
|
|
||||||
and calling asInt() would cause an exception. If you're writing new
|
|
||||||
code, use isInt64 to find out whether the value is exactly
|
|
||||||
representable using an Int64, or asDouble() combined with minInt64 and
|
|
||||||
maxInt64 to figure out whether it is approximately representable.
|
|
||||||
|
|
||||||
* Value
|
|
||||||
- Patch #10: BOOST_FOREACH compatibility. Made Json::iterator more
|
|
||||||
standard compliant, added missing iterator_category and value_type
|
|
||||||
typedefs (contribued by Robert A. Iannucci).
|
|
||||||
|
|
||||||
* Compilation
|
|
||||||
|
|
||||||
- New CMake based build system. Based in part on contribution from
|
|
||||||
Igor Okulist and Damien Buhl (Patch #14).
|
|
||||||
|
|
||||||
- New header json/version.h now contains version number macros
|
|
||||||
(JSONCPP_VERSION_MAJOR, JSONCPP_VERSION_MINOR, JSONCPP_VERSION_PATCH
|
|
||||||
and JSONCPP_VERSION_HEXA).
|
|
||||||
|
|
||||||
- Patch #11: added missing JSON_API on some classes causing link issues
|
|
||||||
when building as a dynamic library on Windows
|
|
||||||
(contributed by Francis Bolduc).
|
|
||||||
|
|
||||||
- Visual Studio DLL: suppressed warning "C4251: <data member>: <type>
|
|
||||||
needs to have dll-interface to be used by..." via pragma push/pop
|
|
||||||
in json-cpp headers.
|
|
||||||
|
|
||||||
- Added Travis CI intregration: https://travis-ci.org/blep/jsoncpp-mirror
|
|
||||||
|
|
||||||
* Bug fixes
|
|
||||||
- Patch #15: Copy constructor does not initialize allocated_ for stringValue
|
|
||||||
(contributed by rmongia).
|
|
||||||
|
|
||||||
- Patch #16: Missing field copy in Json::Value::iterator causing infinite
|
|
||||||
loop when using experimental internal map (#define JSON_VALUE_USE_INTERNAL_MAP)
|
|
||||||
(contributed by Ming-Lin Kao).
|
|
||||||
|
|
||||||
|
|
||||||
New in JsonCpp 0.6.0:
|
|
||||||
---------------------
|
|
||||||
|
|
||||||
* Compilation
|
|
||||||
|
|
||||||
- LD_LIBRARY_PATH and LIBRARY_PATH environment variables are now
|
|
||||||
propagated to the build environment as this is required for some
|
|
||||||
compiler installation.
|
|
||||||
|
|
||||||
- Added support for Microsoft Visual Studio 2008 (bug #2930462):
|
|
||||||
The platform "msvc90" has been added.
|
|
||||||
|
|
||||||
Notes: you need to setup the environment by running vcvars32.bat
|
|
||||||
(e.g. MSVC 2008 command prompt in start menu) before running scons.
|
|
||||||
|
|
||||||
- Added support for amalgamated source and header generation (a la sqlite).
|
|
||||||
Refer to README.md section "Generating amalgamated source and header"
|
|
||||||
for detail.
|
|
||||||
|
|
||||||
* Value
|
|
||||||
|
|
||||||
- Removed experimental ValueAllocator, it caused static
|
|
||||||
initialization/destruction order issues (bug #2934500).
|
|
||||||
The DefaultValueAllocator has been inlined in code.
|
|
||||||
|
|
||||||
- Added support for 64 bits integer:
|
|
||||||
|
|
||||||
Types Json::Int64 and Json::UInt64 have been added. They are aliased
|
|
||||||
to 64 bits integers on system that support them (based on __int64 on
|
|
||||||
Microsoft Visual Studio platform, and long long on other platforms).
|
|
||||||
|
|
||||||
Types Json::LargestInt and Json::LargestUInt have been added. They are
|
|
||||||
aliased to the largest integer type supported:
|
|
||||||
either Json::Int/Json::UInt or Json::Int64/Json::UInt64 respectively.
|
|
||||||
|
|
||||||
Json::Value::asInt() and Json::Value::asUInt() still returns plain
|
|
||||||
"int" based types, but asserts if an attempt is made to retrieve
|
|
||||||
a 64 bits value that can not represented as the return type.
|
|
||||||
|
|
||||||
Json::Value::asInt64() and Json::Value::asUInt64() have been added
|
|
||||||
to obtain the 64 bits integer value.
|
|
||||||
|
|
||||||
Json::Value::asLargestInt() and Json::Value::asLargestUInt() returns
|
|
||||||
the integer as a LargestInt/LargestUInt respectively. Those functions
|
|
||||||
functions are typically used when implementing writer.
|
|
||||||
|
|
||||||
The reader attempts to read number as 64 bits integer, and fall back
|
|
||||||
to reading a double if the number is not in the range of 64 bits
|
|
||||||
integer.
|
|
||||||
|
|
||||||
Warning: Json::Value::asInt() and Json::Value::asUInt() now returns
|
|
||||||
long long. This changes break code that was passing the return value
|
|
||||||
to *printf() function.
|
|
||||||
|
|
||||||
Support for 64 bits integer can be disabled by defining the macro
|
|
||||||
JSON_NO_INT64 (uncomment it in json/config.h for example), though
|
|
||||||
it should have no impact on existing usage.
|
|
||||||
|
|
||||||
- The type Json::ArrayIndex is used for indexes of a JSON value array. It
|
|
||||||
is an unsigned int (typically 32 bits).
|
|
||||||
|
|
||||||
- Array index can be passed as int to operator[], allowing use of literal:
|
|
||||||
Json::Value array;
|
|
||||||
array.append( 1234 );
|
|
||||||
int value = array[0].asInt(); // did not compile previously
|
|
||||||
|
|
||||||
- Added float Json::Value::asFloat() to obtain a floating point value as a
|
|
||||||
float (avoid lost of precision warning caused by used of asDouble()
|
|
||||||
to initialize a float).
|
|
||||||
|
|
||||||
* Reader
|
|
||||||
|
|
||||||
- Renamed Reader::getFormatedErrorMessages() to getFormattedErrorMessages.
|
|
||||||
Bug #3023708 (Formatted has 2 't'). The old member function is deprecated
|
|
||||||
but still present for backward compatibility.
|
|
||||||
|
|
||||||
* Tests
|
|
||||||
|
|
||||||
- Added test to ensure that the escape sequence "\/" is corrected handled
|
|
||||||
by the parser.
|
|
||||||
|
|
||||||
* Bug fixes
|
|
||||||
|
|
||||||
- Bug #3139677: JSON [1 2 3] was incorrectly parsed as [1, 3]. Error is now
|
|
||||||
correctly detected.
|
|
||||||
|
|
||||||
- Bug #3139678: stack buffer overflow when parsing a double with a
|
|
||||||
length of 32 characters.
|
|
||||||
|
|
||||||
- Fixed Value::operator <= implementation (had the semantic of operator >=).
|
|
||||||
Found when adding unit tests for comparison operators.
|
|
||||||
|
|
||||||
- Value::compare() is now const and has an actual implementation with
|
|
||||||
unit tests.
|
|
||||||
|
|
||||||
- Bug #2407932: strpbrk() can fail for NULL pointer.
|
|
||||||
|
|
||||||
- Bug #3306345: Fixed minor typo in Path::resolve().
|
|
||||||
|
|
||||||
- Bug #3314841/#3306896: errors in amalgamate.py
|
|
||||||
|
|
||||||
- Fixed some Coverity warnings and line-endings.
|
|
||||||
|
|
||||||
* License
|
|
||||||
|
|
||||||
- See file LICENSE for details. Basically JsonCpp is now licensed under
|
|
||||||
MIT license, or public domain if desired and recognized in your jurisdiction.
|
|
||||||
Thanks to Stephan G. Beal [http://wanderinghorse.net/home/stephan/]) who
|
|
||||||
helped figuring out the solution to the public domain issue.
|
|
185
README.md
185
README.md
@@ -1,5 +1,6 @@
|
|||||||
Introduction
|
# JsonCpp
|
||||||
------------
|
|
||||||
|
[](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
|
||||||
@@ -7,133 +8,48 @@ 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
|
## Contributing to JsonCpp
|
||||||
-----------------------------
|
|
||||||
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:
|
|
||||||
|
|
||||||
#include <json/json.h>
|
### Building and testing with Meson/Ninja
|
||||||
|
Thanks to David Seifert (@SoapGentoo), we (the maintainers) now use [meson](http://mesonbuild.com/) and [ninja](https://ninja-build.org/) to build for debugging, as well as for continuous integration (see [`travis.sh`](travis.sh) ). Other systems may work, but minor things like version strings might break.
|
||||||
|
|
||||||
If JsonCpp was built as a dynamic library on Windows, then your project needs to
|
First, install both meson (which requires Python3) and ninja.
|
||||||
define the macro `JSON_DLL`.
|
|
||||||
|
|
||||||
Generating amalgamated source and header
|
Then,
|
||||||
----------------------------------------
|
|
||||||
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
|
cd jsoncpp/
|
||||||
|
BUILD_TYPE=shared
|
||||||
|
#BUILD_TYPE=static
|
||||||
|
LIB_TYPE=debug
|
||||||
|
#LIB_TYPE=release
|
||||||
|
meson --buildtype ${BUILD_TYPE} --default-library ${LIB_TYPE} . build-${LIB_TYPE}
|
||||||
|
ninja -v -C build-${LIB_TYPE} test
|
||||||
|
|
||||||
It is possible to specify header name. See the `-h` option for detail.
|
### Building and testing with other build systems
|
||||||
|
See https://github.com/open-source-parsers/jsoncpp/wiki/Building
|
||||||
|
|
||||||
By default, the following files are generated:
|
### Running the tests manually
|
||||||
* `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 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
|
|
||||||
|
|
||||||
[CMake]: http://www.cmake.org
|
|
||||||
|
|
||||||
Note that Python is also required to run the JSON reader/writer tests. If
|
|
||||||
missing, the build will skip running those tests.
|
|
||||||
|
|
||||||
When running CMake, a few parameters are required:
|
|
||||||
|
|
||||||
* a build directory where the makefiles/solution are generated. It is also used
|
|
||||||
to store objects, libraries and executables files.
|
|
||||||
* the generator to use: makefiles or Visual Studio solution? What version or
|
|
||||||
Visual Studio, 32 or 64 bits solution?
|
|
||||||
|
|
||||||
Steps for generating solution/makefiles using `cmake-gui`:
|
|
||||||
|
|
||||||
* Make "source code" point to the source directory.
|
|
||||||
* Make "where to build the binary" point to the directory to use for the build.
|
|
||||||
* Click on the "Grouped" check box.
|
|
||||||
* Review JsonCpp build options (tick `BUILD_SHARED_LIBS` to build as a
|
|
||||||
dynamic library).
|
|
||||||
* Click the configure button at the bottom, then the generate button.
|
|
||||||
* The generated solution/makefiles can be found in the binary directory.
|
|
||||||
|
|
||||||
Alternatively, from the command-line on Unix in the source directory:
|
|
||||||
|
|
||||||
mkdir -p build/debug
|
|
||||||
cd build/debug
|
|
||||||
cmake -DCMAKE_BUILD_TYPE=debug -DBUILD_STATIC_LIBS=ON -DBUILD_SHARED_LIBS=OFF -DARCHIVE_INSTALL_DIR=. -G "Unix Makefiles" ../..
|
|
||||||
make
|
|
||||||
|
|
||||||
Running `cmake -h` will display the list of available generators (passed using
|
|
||||||
the `-G` option).
|
|
||||||
|
|
||||||
By default CMake hides compilation commands. This can be modified by specifying
|
|
||||||
`-DCMAKE_VERBOSE_MAKEFILE=true` when generating makefiles.
|
|
||||||
|
|
||||||
Building and testing with SCons
|
|
||||||
-------------------------------
|
|
||||||
**Note:** The SCons-based build system is deprecated. Please use CMake; see the
|
|
||||||
section above.
|
|
||||||
|
|
||||||
JsonCpp can use [Scons][] as a build system. Note that SCons requires Python to
|
|
||||||
be installed.
|
|
||||||
|
|
||||||
[SCons]: http://www.scons.org/
|
|
||||||
|
|
||||||
Invoke SCons as follows:
|
|
||||||
|
|
||||||
scons platform=$PLATFORM [TARGET]
|
|
||||||
|
|
||||||
where `$PLATFORM` may be one of:
|
|
||||||
|
|
||||||
* `suncc`: Sun C++ (Solaris)
|
|
||||||
* `vacpp`: Visual Age C++ (AIX)
|
|
||||||
* `mingw`
|
|
||||||
* `msvc6`: Microsoft Visual Studio 6 service pack 5-6
|
|
||||||
* `msvc70`: Microsoft Visual Studio 2002
|
|
||||||
* `msvc71`: Microsoft Visual Studio 2003
|
|
||||||
* `msvc80`: Microsoft Visual Studio 2005
|
|
||||||
* `msvc90`: Microsoft Visual Studio 2008
|
|
||||||
* `linux-gcc`: Gnu C++ (linux, also reported to work for Mac OS X)
|
|
||||||
|
|
||||||
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
|
|
||||||
running SCons.
|
|
||||||
|
|
||||||
## 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
|
||||||
@@ -142,35 +58,30 @@ In the instructions below, replace `path/to/jsontest` with the path of the
|
|||||||
cd test
|
cd test
|
||||||
# This will run the Reader/Writer tests
|
# This will run the Reader/Writer tests
|
||||||
python runjsontests.py path/to/jsontest
|
python runjsontests.py path/to/jsontest
|
||||||
|
|
||||||
# This will run the Reader/Writer tests, using JSONChecker test suite
|
# This will run the Reader/Writer tests, using JSONChecker test suite
|
||||||
# (http://www.json.org/JSON_checker/).
|
# (http://www.json.org/JSON_checker/).
|
||||||
# Notes: not all tests pass: JsonCpp is too lenient (for example,
|
# Notes: not all tests pass: JsonCpp is too lenient (for example,
|
||||||
# it allows an integer to start with '0'). The goal is to improve
|
# it allows an integer to start with '0'). The goal is to improve
|
||||||
# strict mode parsing to get all tests to pass.
|
# strict mode parsing to get all tests to pass.
|
||||||
python runjsontests.py --with-json-checker path/to/jsontest
|
python runjsontests.py --with-json-checker path/to/jsontest
|
||||||
|
|
||||||
# This will run the unit tests (mostly Value)
|
# This will run the unit tests (mostly Value)
|
||||||
python rununittests.py path/to/test_lib_json
|
python rununittests.py path/to/test_lib_json
|
||||||
|
|
||||||
# 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
|
### Building the documentation
|
||||||
Note that tests can be run using SCons using the `check` target:
|
|
||||||
|
|
||||||
scons platform=$PLATFORM check
|
|
||||||
|
|
||||||
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
|
### 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.
|
||||||
@@ -179,21 +90,19 @@ 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
|
See the examples `test_complex_01.json` and `test_complex_01.expected` to better understand element paths.
|
||||||
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.
|
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:
|
||||||
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
|
||||||
@@ -208,7 +117,15 @@ Below is a short description of the content of each file:
|
|||||||
* `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
|
## Using JsonCpp in your project
|
||||||
-------
|
|
||||||
|
### Amalgamated source
|
||||||
|
https://github.com/open-source-parsers/jsoncpp/wiki/Amalgamated
|
||||||
|
|
||||||
|
### Other ways
|
||||||
|
If you have trouble, see the Wiki, or post a question as an Issue.
|
||||||
|
|
||||||
|
## 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.
|
||||||
|
248
SConstruct
248
SConstruct
@@ -1,248 +0,0 @@
|
|||||||
"""
|
|
||||||
Notes:
|
|
||||||
- shared library support is buggy: it assumes that a static and dynamic library can be build from the same object files. This is not true on many platforms. For this reason it is only enabled on linux-gcc at the current time.
|
|
||||||
|
|
||||||
To add a platform:
|
|
||||||
- add its name in options allowed_values below
|
|
||||||
- add tool initialization for this platform. Search for "if platform == 'suncc'" as an example.
|
|
||||||
"""
|
|
||||||
|
|
||||||
import os
|
|
||||||
import os.path
|
|
||||||
import sys
|
|
||||||
|
|
||||||
JSONCPP_VERSION = open(File('#version').abspath,'rt').read().strip()
|
|
||||||
DIST_DIR = '#dist'
|
|
||||||
|
|
||||||
options = Variables()
|
|
||||||
options.Add( EnumVariable('platform',
|
|
||||||
'Platform (compiler/stl) used to build the project',
|
|
||||||
'msvc71',
|
|
||||||
allowed_values='suncc vacpp mingw msvc6 msvc7 msvc71 msvc80 msvc90 linux-gcc'.split(),
|
|
||||||
ignorecase=2) )
|
|
||||||
|
|
||||||
try:
|
|
||||||
platform = ARGUMENTS['platform']
|
|
||||||
if platform == 'linux-gcc':
|
|
||||||
CXX = 'g++' # not quite right, but env is not yet available.
|
|
||||||
import commands
|
|
||||||
version = commands.getoutput('%s -dumpversion' %CXX)
|
|
||||||
platform = 'linux-gcc-%s' %version
|
|
||||||
print "Using platform '%s'" %platform
|
|
||||||
LD_LIBRARY_PATH = os.environ.get('LD_LIBRARY_PATH', '')
|
|
||||||
LD_LIBRARY_PATH = "%s:libs/%s" %(LD_LIBRARY_PATH, platform)
|
|
||||||
os.environ['LD_LIBRARY_PATH'] = LD_LIBRARY_PATH
|
|
||||||
print "LD_LIBRARY_PATH =", LD_LIBRARY_PATH
|
|
||||||
except KeyError:
|
|
||||||
print 'You must specify a "platform"'
|
|
||||||
sys.exit(2)
|
|
||||||
|
|
||||||
print "Building using PLATFORM =", platform
|
|
||||||
|
|
||||||
rootbuild_dir = Dir('#buildscons')
|
|
||||||
build_dir = os.path.join( '#buildscons', platform )
|
|
||||||
bin_dir = os.path.join( '#bin', platform )
|
|
||||||
lib_dir = os.path.join( '#libs', platform )
|
|
||||||
sconsign_dir_path = Dir(build_dir).abspath
|
|
||||||
sconsign_path = os.path.join( sconsign_dir_path, '.sconsign.dbm' )
|
|
||||||
|
|
||||||
# Ensure build directory exist (SConsignFile fail otherwise!)
|
|
||||||
if not os.path.exists( sconsign_dir_path ):
|
|
||||||
os.makedirs( sconsign_dir_path )
|
|
||||||
|
|
||||||
# Store all dependencies signature in a database
|
|
||||||
SConsignFile( sconsign_path )
|
|
||||||
|
|
||||||
def make_environ_vars():
|
|
||||||
"""Returns a dictionnary with environment variable to use when compiling."""
|
|
||||||
# PATH is required to find the compiler
|
|
||||||
# TEMP is required for at least mingw
|
|
||||||
# LD_LIBRARY_PATH & co is required on some system for the compiler
|
|
||||||
vars = {}
|
|
||||||
for name in ('PATH', 'TEMP', 'TMP', 'LD_LIBRARY_PATH', 'LIBRARY_PATH'):
|
|
||||||
if name in os.environ:
|
|
||||||
vars[name] = os.environ[name]
|
|
||||||
return vars
|
|
||||||
|
|
||||||
|
|
||||||
env = Environment( ENV = make_environ_vars(),
|
|
||||||
toolpath = ['scons-tools'],
|
|
||||||
tools=[] ) #, tools=['default'] )
|
|
||||||
|
|
||||||
if platform == 'suncc':
|
|
||||||
env.Tool( 'sunc++' )
|
|
||||||
env.Tool( 'sunlink' )
|
|
||||||
env.Tool( 'sunar' )
|
|
||||||
env.Append( CCFLAGS = ['-mt'] )
|
|
||||||
elif platform == 'vacpp':
|
|
||||||
env.Tool( 'default' )
|
|
||||||
env.Tool( 'aixcc' )
|
|
||||||
env['CXX'] = 'xlC_r' #scons does not pick-up the correct one !
|
|
||||||
# using xlC_r ensure multi-threading is enabled:
|
|
||||||
# http://publib.boulder.ibm.com/infocenter/pseries/index.jsp?topic=/com.ibm.vacpp7a.doc/compiler/ref/cuselect.htm
|
|
||||||
env.Append( CCFLAGS = '-qrtti=all',
|
|
||||||
LINKFLAGS='-bh:5' ) # -bh:5 remove duplicate symbol warning
|
|
||||||
elif platform == 'msvc6':
|
|
||||||
env['MSVS_VERSION']='6.0'
|
|
||||||
for tool in ['msvc', 'msvs', 'mslink', 'masm', 'mslib']:
|
|
||||||
env.Tool( tool )
|
|
||||||
env['CXXFLAGS']='-GR -GX /nologo /MT'
|
|
||||||
elif platform == 'msvc70':
|
|
||||||
env['MSVS_VERSION']='7.0'
|
|
||||||
for tool in ['msvc', 'msvs', 'mslink', 'masm', 'mslib']:
|
|
||||||
env.Tool( tool )
|
|
||||||
env['CXXFLAGS']='-GR -GX /nologo /MT'
|
|
||||||
elif platform == 'msvc71':
|
|
||||||
env['MSVS_VERSION']='7.1'
|
|
||||||
for tool in ['msvc', 'msvs', 'mslink', 'masm', 'mslib']:
|
|
||||||
env.Tool( tool )
|
|
||||||
env['CXXFLAGS']='-GR -GX /nologo /MT'
|
|
||||||
elif platform == 'msvc80':
|
|
||||||
env['MSVS_VERSION']='8.0'
|
|
||||||
for tool in ['msvc', 'msvs', 'mslink', 'masm', 'mslib']:
|
|
||||||
env.Tool( tool )
|
|
||||||
env['CXXFLAGS']='-GR -EHsc /nologo /MT'
|
|
||||||
elif platform == 'msvc90':
|
|
||||||
env['MSVS_VERSION']='9.0'
|
|
||||||
# Scons 1.2 fails to detect the correct location of the platform SDK.
|
|
||||||
# So we propagate those from the environment. This requires that the
|
|
||||||
# user run vcvars32.bat before compiling.
|
|
||||||
if 'INCLUDE' in os.environ:
|
|
||||||
env['ENV']['INCLUDE'] = os.environ['INCLUDE']
|
|
||||||
if 'LIB' in os.environ:
|
|
||||||
env['ENV']['LIB'] = os.environ['LIB']
|
|
||||||
for tool in ['msvc', 'msvs', 'mslink', 'masm', 'mslib']:
|
|
||||||
env.Tool( tool )
|
|
||||||
env['CXXFLAGS']='-GR -EHsc /nologo /MT'
|
|
||||||
elif platform == 'mingw':
|
|
||||||
env.Tool( 'mingw' )
|
|
||||||
env.Append( CPPDEFINES=[ "WIN32", "NDEBUG", "_MT" ] )
|
|
||||||
elif platform.startswith('linux-gcc'):
|
|
||||||
env.Tool( 'default' )
|
|
||||||
env.Append( LIBS = ['pthread'], CCFLAGS = os.environ.get("CXXFLAGS", "-Wall"), LINKFLAGS=os.environ.get("LDFLAGS", "") )
|
|
||||||
env['SHARED_LIB_ENABLED'] = True
|
|
||||||
else:
|
|
||||||
print "UNSUPPORTED PLATFORM."
|
|
||||||
env.Exit(1)
|
|
||||||
|
|
||||||
env.Tool('targz')
|
|
||||||
env.Tool('srcdist')
|
|
||||||
env.Tool('globtool')
|
|
||||||
|
|
||||||
env.Append( CPPPATH = ['#include'],
|
|
||||||
LIBPATH = lib_dir )
|
|
||||||
short_platform = platform
|
|
||||||
if short_platform.startswith('msvc'):
|
|
||||||
short_platform = short_platform[2:]
|
|
||||||
# Notes: on Windows you need to rebuild the source for each variant
|
|
||||||
# Build script does not support that yet so we only build static libraries.
|
|
||||||
# This also fails on AIX because both dynamic and static library ends with
|
|
||||||
# extension .a.
|
|
||||||
env['SHARED_LIB_ENABLED'] = env.get('SHARED_LIB_ENABLED', False)
|
|
||||||
env['LIB_PLATFORM'] = short_platform
|
|
||||||
env['LIB_LINK_TYPE'] = 'lib' # static
|
|
||||||
env['LIB_CRUNTIME'] = 'mt'
|
|
||||||
env['LIB_NAME_SUFFIX'] = '${LIB_PLATFORM}_${LIB_LINK_TYPE}${LIB_CRUNTIME}' # must match autolink naming convention
|
|
||||||
env['JSONCPP_VERSION'] = JSONCPP_VERSION
|
|
||||||
env['BUILD_DIR'] = env.Dir(build_dir)
|
|
||||||
env['ROOTBUILD_DIR'] = env.Dir(rootbuild_dir)
|
|
||||||
env['DIST_DIR'] = DIST_DIR
|
|
||||||
if 'TarGz' in env['BUILDERS']:
|
|
||||||
class SrcDistAdder:
|
|
||||||
def __init__( self, env ):
|
|
||||||
self.env = env
|
|
||||||
def __call__( self, *args, **kw ):
|
|
||||||
apply( self.env.SrcDist, (self.env['SRCDIST_TARGET'],) + args, kw )
|
|
||||||
env['SRCDIST_BUILDER'] = env.TarGz
|
|
||||||
else: # If tarfile module is missing
|
|
||||||
class SrcDistAdder:
|
|
||||||
def __init__( self, env ):
|
|
||||||
pass
|
|
||||||
def __call__( self, *args, **kw ):
|
|
||||||
pass
|
|
||||||
env['SRCDIST_ADD'] = SrcDistAdder( env )
|
|
||||||
env['SRCDIST_TARGET'] = os.path.join( DIST_DIR, 'jsoncpp-src-%s.tar.gz' % env['JSONCPP_VERSION'] )
|
|
||||||
|
|
||||||
env_testing = env.Clone( )
|
|
||||||
env_testing.Append( LIBS = ['json_${LIB_NAME_SUFFIX}'] )
|
|
||||||
|
|
||||||
def buildJSONExample( env, target_sources, target_name ):
|
|
||||||
env = env.Clone()
|
|
||||||
env.Append( CPPPATH = ['#'] )
|
|
||||||
exe = env.Program( target=target_name,
|
|
||||||
source=target_sources )
|
|
||||||
env['SRCDIST_ADD']( source=[target_sources] )
|
|
||||||
global bin_dir
|
|
||||||
return env.Install( bin_dir, exe )
|
|
||||||
|
|
||||||
def buildJSONTests( env, target_sources, target_name ):
|
|
||||||
jsontests_node = buildJSONExample( env, target_sources, target_name )
|
|
||||||
check_alias_target = env.Alias( 'check', jsontests_node, RunJSONTests( jsontests_node, jsontests_node ) )
|
|
||||||
env.AlwaysBuild( check_alias_target )
|
|
||||||
|
|
||||||
def buildUnitTests( env, target_sources, target_name ):
|
|
||||||
jsontests_node = buildJSONExample( env, target_sources, target_name )
|
|
||||||
check_alias_target = env.Alias( 'check', jsontests_node,
|
|
||||||
RunUnitTests( jsontests_node, jsontests_node ) )
|
|
||||||
env.AlwaysBuild( check_alias_target )
|
|
||||||
|
|
||||||
def buildLibrary( env, target_sources, target_name ):
|
|
||||||
static_lib = env.StaticLibrary( target=target_name + '_${LIB_NAME_SUFFIX}',
|
|
||||||
source=target_sources )
|
|
||||||
global lib_dir
|
|
||||||
env.Install( lib_dir, static_lib )
|
|
||||||
if env['SHARED_LIB_ENABLED']:
|
|
||||||
shared_lib = env.SharedLibrary( target=target_name + '_${LIB_NAME_SUFFIX}',
|
|
||||||
source=target_sources )
|
|
||||||
env.Install( lib_dir, shared_lib )
|
|
||||||
env['SRCDIST_ADD']( source=[target_sources] )
|
|
||||||
|
|
||||||
Export( 'env env_testing buildJSONExample buildLibrary buildJSONTests buildUnitTests' )
|
|
||||||
|
|
||||||
def buildProjectInDirectory( target_directory ):
|
|
||||||
global build_dir
|
|
||||||
target_build_dir = os.path.join( build_dir, target_directory )
|
|
||||||
target = os.path.join( target_directory, 'sconscript' )
|
|
||||||
SConscript( target, build_dir=target_build_dir, duplicate=0 )
|
|
||||||
env['SRCDIST_ADD']( source=[target] )
|
|
||||||
|
|
||||||
|
|
||||||
def runJSONTests_action( target, source = None, env = None ):
|
|
||||||
# Add test scripts to python path
|
|
||||||
jsontest_path = Dir( '#test' ).abspath
|
|
||||||
sys.path.insert( 0, jsontest_path )
|
|
||||||
data_path = os.path.join( jsontest_path, 'data' )
|
|
||||||
import runjsontests
|
|
||||||
return runjsontests.runAllTests( os.path.abspath(source[0].path), data_path )
|
|
||||||
|
|
||||||
def runJSONTests_string( target, source = None, env = None ):
|
|
||||||
return 'RunJSONTests("%s")' % source[0]
|
|
||||||
|
|
||||||
import SCons.Action
|
|
||||||
ActionFactory = SCons.Action.ActionFactory
|
|
||||||
RunJSONTests = ActionFactory(runJSONTests_action, runJSONTests_string )
|
|
||||||
|
|
||||||
def runUnitTests_action( target, source = None, env = None ):
|
|
||||||
# Add test scripts to python path
|
|
||||||
jsontest_path = Dir( '#test' ).abspath
|
|
||||||
sys.path.insert( 0, jsontest_path )
|
|
||||||
import rununittests
|
|
||||||
return rununittests.runAllTests( os.path.abspath(source[0].path) )
|
|
||||||
|
|
||||||
def runUnitTests_string( target, source = None, env = None ):
|
|
||||||
return 'RunUnitTests("%s")' % source[0]
|
|
||||||
|
|
||||||
RunUnitTests = ActionFactory(runUnitTests_action, runUnitTests_string )
|
|
||||||
|
|
||||||
env.Alias( 'check' )
|
|
||||||
|
|
||||||
srcdist_cmd = env['SRCDIST_ADD']( source = """
|
|
||||||
AUTHORS README.md SConstruct
|
|
||||||
""".split() )
|
|
||||||
env.Alias( 'src-dist', srcdist_cmd )
|
|
||||||
|
|
||||||
buildProjectInDirectory( 'src/jsontestrunner' )
|
|
||||||
buildProjectInDirectory( 'src/lib_json' )
|
|
||||||
buildProjectInDirectory( 'src/test_lib_json' )
|
|
||||||
#print env.Dump()
|
|
||||||
|
|
35
appveyor.yml
35
appveyor.yml
@@ -1,30 +1,17 @@
|
|||||||
# This is a comment.
|
|
||||||
|
|
||||||
version: build.{build}
|
|
||||||
|
|
||||||
os: Windows Server 2012 R2
|
|
||||||
|
|
||||||
clone_folder: c:\projects\jsoncpp
|
clone_folder: c:\projects\jsoncpp
|
||||||
|
|
||||||
platform:
|
environment:
|
||||||
- Win32
|
matrix:
|
||||||
- x64
|
- CMAKE_GENERATOR: Visual Studio 12 2013
|
||||||
|
- CMAKE_GENERATOR: Visual Studio 12 2013 Win64
|
||||||
|
- CMAKE_GENERATOR: Visual Studio 14 2015
|
||||||
|
- CMAKE_GENERATOR: Visual Studio 14 2015 Win64
|
||||||
|
|
||||||
configuration:
|
build_script:
|
||||||
- Debug
|
- cmake --version
|
||||||
- Release
|
- cd c:\projects\jsoncpp
|
||||||
|
- cmake -G "%CMAKE_GENERATOR%" -DCMAKE_INSTALL_PREFIX=%CD:\=/%/install -DCMAKE_BUILD_TYPE=Release -DBUILD_SHARED_LIBS=ON .
|
||||||
# scripts to run before build
|
- cmake --build . --config Release --target install
|
||||||
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:
|
deploy:
|
||||||
provider: GitHub
|
provider: GitHub
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
# Copyright 2010 Baptiste Lepilleur
|
# Copyright 2010 Baptiste Lepilleur and The JsonCpp Authors
|
||||||
# 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,6 +1,6 @@
|
|||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
# encoding: utf-8
|
# encoding: utf-8
|
||||||
# Copyright 2009 Baptiste Lepilleur
|
# Copyright 2009 Baptiste Lepilleur and The JsonCpp Authors
|
||||||
# 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,4 +1,4 @@
|
|||||||
# Copyright 2010 Baptiste Lepilleur
|
# Copyright 2010 Baptiste Lepilleur and The JsonCpp Authors
|
||||||
# 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
|
||||||
|
@@ -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 Baptiste Lepilleur
|
BRIEF_LICENSE = LICENSE_BEGIN + """2007-2010 Baptiste Lepilleur and The JsonCpp Authors
|
||||||
// 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,4 +1,4 @@
|
|||||||
# Copyright 2010 Baptiste Lepilleur
|
# Copyright 2010 Baptiste Lepilleur and The JsonCpp Authors
|
||||||
# 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,4 +1,4 @@
|
|||||||
// Copyright 2007-2010 Baptiste Lepilleur
|
// Copyright 2007-2010 Baptiste Lepilleur and The JsonCpp Authors
|
||||||
// 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,4 +1,4 @@
|
|||||||
// Copyright 2007-2010 Baptiste Lepilleur
|
// Copyright 2007-2010 Baptiste Lepilleur and The JsonCpp Authors
|
||||||
// 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,4 +1,4 @@
|
|||||||
// Copyright 2007-2010 Baptiste Lepilleur
|
// Copyright 2007-2010 Baptiste Lepilleur and The JsonCpp Authors
|
||||||
// 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,4 +1,4 @@
|
|||||||
// Copyright 2007-2010 Baptiste Lepilleur
|
// Copyright 2007-2010 Baptiste Lepilleur and The JsonCpp Authors
|
||||||
// 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
|
||||||
@@ -120,6 +120,9 @@
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef __clang__
|
#ifdef __clang__
|
||||||
|
# if __has_extension(attribute_deprecated_with_message)
|
||||||
|
# define JSONCPP_DEPRECATED(message) __attribute__ ((deprecated(message)))
|
||||||
|
# endif
|
||||||
#elif defined __GNUC__ // not clang (gcc comes later since clang emulates gcc)
|
#elif defined __GNUC__ // not clang (gcc comes later since clang emulates gcc)
|
||||||
# if (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 5))
|
# if (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 5))
|
||||||
# define JSONCPP_DEPRECATED(message) __attribute__ ((deprecated(message)))
|
# define JSONCPP_DEPRECATED(message) __attribute__ ((deprecated(message)))
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
// Copyright 2007-2010 Baptiste Lepilleur
|
// Copyright 2007-2010 Baptiste Lepilleur and The JsonCpp Authors
|
||||||
// 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,4 +1,4 @@
|
|||||||
// Copyright 2007-2010 Baptiste Lepilleur
|
// Copyright 2007-2010 Baptiste Lepilleur and The JsonCpp Authors
|
||||||
// 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,4 +1,4 @@
|
|||||||
// Copyright 2007-2010 Baptiste Lepilleur
|
// Copyright 2007-2010 Baptiste Lepilleur and The JsonCpp Authors
|
||||||
// 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,4 +1,4 @@
|
|||||||
// Copyright 2007-2010 Baptiste Lepilleur
|
// Copyright 2007-2010 Baptiste Lepilleur and The JsonCpp Authors
|
||||||
// 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
|
||||||
@@ -32,7 +32,7 @@ namespace Json {
|
|||||||
*
|
*
|
||||||
* \deprecated Use CharReader and CharReaderBuilder.
|
* \deprecated Use CharReader and CharReaderBuilder.
|
||||||
*/
|
*/
|
||||||
class JSON_API Reader {
|
class JSONCPP_DEPRECATED("Use CharReader and CharReaderBuilder instead") JSON_API Reader {
|
||||||
public:
|
public:
|
||||||
typedef char Char;
|
typedef char Char;
|
||||||
typedef const Char* Location;
|
typedef const Char* Location;
|
||||||
@@ -230,6 +230,9 @@ private:
|
|||||||
void addComment(Location begin, Location end, CommentPlacement placement);
|
void addComment(Location begin, Location end, CommentPlacement placement);
|
||||||
void skipCommentTokens(Token& token);
|
void skipCommentTokens(Token& token);
|
||||||
|
|
||||||
|
static bool containsNewLine(Location begin, Location end);
|
||||||
|
static JSONCPP_STRING normalizeEOL(Location begin, Location end);
|
||||||
|
|
||||||
typedef std::stack<Value*> Nodes;
|
typedef std::stack<Value*> Nodes;
|
||||||
Nodes nodes_;
|
Nodes nodes_;
|
||||||
Errors errors_;
|
Errors errors_;
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
// Copyright 2007-2010 Baptiste Lepilleur
|
// Copyright 2007-2010 Baptiste Lepilleur and The JsonCpp Authors
|
||||||
// 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
|
||||||
@@ -23,7 +23,7 @@
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
//Conditional NORETURN attribute on the throw functions would:
|
//Conditional NORETURN attribute on the throw functions would:
|
||||||
// a) suppress false positives from static code analysis
|
// a) suppress false positives from static code analysis
|
||||||
// b) possibly improve optimization opportunities.
|
// b) possibly improve optimization opportunities.
|
||||||
#if !defined(JSONCPP_NORETURN)
|
#if !defined(JSONCPP_NORETURN)
|
||||||
# if defined(_MSC_VER)
|
# if defined(_MSC_VER)
|
||||||
@@ -64,7 +64,7 @@ protected:
|
|||||||
/** Exceptions which the user cannot easily avoid.
|
/** Exceptions which the user cannot easily avoid.
|
||||||
*
|
*
|
||||||
* E.g. out-of-memory (when we use malloc), stack-overflow, malicious input
|
* E.g. out-of-memory (when we use malloc), stack-overflow, malicious input
|
||||||
*
|
*
|
||||||
* \remark derived from Json::Exception
|
* \remark derived from Json::Exception
|
||||||
*/
|
*/
|
||||||
class JSON_API RuntimeError : public Exception {
|
class JSON_API RuntimeError : public Exception {
|
||||||
@@ -75,7 +75,7 @@ public:
|
|||||||
/** Exceptions thrown by JSON_ASSERT/JSON_FAIL macros.
|
/** Exceptions thrown by JSON_ASSERT/JSON_FAIL macros.
|
||||||
*
|
*
|
||||||
* These are precondition-violations (user bugs) and internal errors (our bugs).
|
* These are precondition-violations (user bugs) and internal errors (our bugs).
|
||||||
*
|
*
|
||||||
* \remark derived from Json::Exception
|
* \remark derived from Json::Exception
|
||||||
*/
|
*/
|
||||||
class JSON_API LogicError : public Exception {
|
class JSON_API LogicError : public Exception {
|
||||||
@@ -233,7 +233,12 @@ private:
|
|||||||
CZString(CZString&& other);
|
CZString(CZString&& other);
|
||||||
#endif
|
#endif
|
||||||
~CZString();
|
~CZString();
|
||||||
CZString& operator=(CZString other);
|
CZString& operator=(const CZString& other);
|
||||||
|
|
||||||
|
#if JSON_HAS_RVALUE_REFERENCES
|
||||||
|
CZString& operator=(CZString&& other);
|
||||||
|
#endif
|
||||||
|
|
||||||
bool operator<(CZString const& other) const;
|
bool operator<(CZString const& other) const;
|
||||||
bool operator==(CZString const& other) const;
|
bool operator==(CZString const& other) const;
|
||||||
ArrayIndex index() const;
|
ArrayIndex index() const;
|
||||||
@@ -323,11 +328,17 @@ Json::Value obj_value(Json::objectValue); // {}
|
|||||||
/// 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=(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.
|
||||||
void swapPayload(Value& other);
|
void swapPayload(Value& other);
|
||||||
|
|
||||||
|
/// copy everything.
|
||||||
|
void copy(const Value& other);
|
||||||
|
/// copy values but leave comments and source offsets in place.
|
||||||
|
void copyPayload(const Value& other);
|
||||||
|
|
||||||
ValueType type() const;
|
ValueType type() const;
|
||||||
|
|
||||||
/// Compare payload only, not comments etc.
|
/// Compare payload only, not comments etc.
|
||||||
@@ -438,6 +449,10 @@ Json::Value obj_value(Json::objectValue); // {}
|
|||||||
/// Equivalent to jsonvalue[jsonvalue.size()] = value;
|
/// Equivalent to jsonvalue[jsonvalue.size()] = value;
|
||||||
Value& append(const Value& value);
|
Value& append(const Value& value);
|
||||||
|
|
||||||
|
#if JSON_HAS_RVALUE_REFERENCES
|
||||||
|
Value& append(Value&& value);
|
||||||
|
#endif
|
||||||
|
|
||||||
/// 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.
|
||||||
/// \note Because of our implementation, keys are limited to 2^30 -1 chars.
|
/// \note Because of our implementation, keys are limited to 2^30 -1 chars.
|
||||||
/// Exceeding that will cause an exception.
|
/// Exceeding that will cause an exception.
|
||||||
@@ -503,10 +518,12 @@ Json::Value obj_value(Json::objectValue); // {}
|
|||||||
/// \pre type() is objectValue or nullValue
|
/// \pre type() is objectValue or nullValue
|
||||||
/// \post type() is unchanged
|
/// \post type() is unchanged
|
||||||
/// \deprecated
|
/// \deprecated
|
||||||
|
JSONCPP_DEPRECATED("")
|
||||||
Value removeMember(const char* key);
|
Value removeMember(const char* key);
|
||||||
/// Same as removeMember(const char*)
|
/// Same as removeMember(const char*)
|
||||||
/// \param key may contain embedded nulls.
|
/// \param key may contain embedded nulls.
|
||||||
/// \deprecated
|
/// \deprecated
|
||||||
|
JSONCPP_DEPRECATED("")
|
||||||
Value removeMember(const JSONCPP_STRING& key);
|
Value removeMember(const JSONCPP_STRING& key);
|
||||||
/// Same as removeMember(const char* begin, const char* end, Value* removed),
|
/// Same as removeMember(const char* begin, const char* end, Value* removed),
|
||||||
/// but 'key' is null-terminated.
|
/// but 'key' is null-terminated.
|
||||||
|
@@ -3,10 +3,10 @@
|
|||||||
#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.0"
|
# define JSONCPP_VERSION_STRING "1.8.3"
|
||||||
# define JSONCPP_VERSION_MAJOR 1
|
# define JSONCPP_VERSION_MAJOR 1
|
||||||
# define JSONCPP_VERSION_MINOR 8
|
# define JSONCPP_VERSION_MINOR 8
|
||||||
# define JSONCPP_VERSION_PATCH 0
|
# define JSONCPP_VERSION_PATCH 3
|
||||||
# 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))
|
||||||
|
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
// Copyright 2007-2010 Baptiste Lepilleur
|
// Copyright 2007-2010 Baptiste Lepilleur and The JsonCpp Authors
|
||||||
// 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
|
||||||
@@ -140,7 +140,7 @@ public:
|
|||||||
/** \brief Abstract class for writers.
|
/** \brief Abstract class for writers.
|
||||||
* \deprecated Use StreamWriter. (And really, this is an implementation detail.)
|
* \deprecated Use StreamWriter. (And really, this is an implementation detail.)
|
||||||
*/
|
*/
|
||||||
class JSON_API Writer {
|
class JSONCPP_DEPRECATED("Use StreamWriter instead") JSON_API Writer {
|
||||||
public:
|
public:
|
||||||
virtual ~Writer();
|
virtual ~Writer();
|
||||||
|
|
||||||
@@ -156,7 +156,7 @@ public:
|
|||||||
* \sa Reader, Value
|
* \sa Reader, Value
|
||||||
* \deprecated Use StreamWriterBuilder.
|
* \deprecated Use StreamWriterBuilder.
|
||||||
*/
|
*/
|
||||||
class JSON_API FastWriter : public Writer {
|
class JSONCPP_DEPRECATED("Use StreamWriterBuilder instead") JSON_API FastWriter : public Writer {
|
||||||
|
|
||||||
public:
|
public:
|
||||||
FastWriter();
|
FastWriter();
|
||||||
@@ -209,7 +209,7 @@ private:
|
|||||||
* \sa Reader, Value, Value::setComment()
|
* \sa Reader, Value, Value::setComment()
|
||||||
* \deprecated Use StreamWriterBuilder.
|
* \deprecated Use StreamWriterBuilder.
|
||||||
*/
|
*/
|
||||||
class JSON_API StyledWriter : public Writer {
|
class JSONCPP_DEPRECATED("Use StreamWriterBuilder instead") JSON_API StyledWriter : public Writer {
|
||||||
public:
|
public:
|
||||||
StyledWriter();
|
StyledWriter();
|
||||||
~StyledWriter() JSONCPP_OVERRIDE {}
|
~StyledWriter() JSONCPP_OVERRIDE {}
|
||||||
@@ -267,12 +267,14 @@ private:
|
|||||||
* If the Value have comments then they are outputed according to their
|
* If the Value have comments then they are outputed according to their
|
||||||
#CommentPlacement.
|
#CommentPlacement.
|
||||||
*
|
*
|
||||||
* \param indentation Each level will be indented by this amount extra.
|
|
||||||
* \sa Reader, Value, Value::setComment()
|
* \sa Reader, Value, Value::setComment()
|
||||||
* \deprecated Use StreamWriterBuilder.
|
* \deprecated Use StreamWriterBuilder.
|
||||||
*/
|
*/
|
||||||
class JSON_API StyledStreamWriter {
|
class JSONCPP_DEPRECATED("Use StreamWriterBuilder instead") JSON_API StyledStreamWriter {
|
||||||
public:
|
public:
|
||||||
|
/**
|
||||||
|
* \param indentation Each level will be indented by this amount extra.
|
||||||
|
*/
|
||||||
StyledStreamWriter(JSONCPP_STRING indentation = "\t");
|
StyledStreamWriter(JSONCPP_STRING indentation = "\t");
|
||||||
~StyledStreamWriter() {}
|
~StyledStreamWriter() {}
|
||||||
|
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
# Copyright 2010 Baptiste Lepilleur
|
# Copyright 2010 Baptiste Lepilleur and The JsonCpp Authors
|
||||||
# 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
|
||||||
|
102
meson.build
Normal file
102
meson.build
Normal file
@@ -0,0 +1,102 @@
|
|||||||
|
project(
|
||||||
|
'jsoncpp',
|
||||||
|
'cpp',
|
||||||
|
version : '1.8.3',
|
||||||
|
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 : 19,
|
||||||
|
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,7 +1,5 @@
|
|||||||
prefix=@CMAKE_INSTALL_PREFIX@
|
libdir=@CMAKE_INSTALL_FULL_LIBDIR@
|
||||||
exec_prefix=${prefix}
|
includedir=@CMAKE_INSTALL_FULL_INCLUDEDIR@
|
||||||
libdir=${exec_prefix}/@CMAKE_INSTALL_LIBDIR@
|
|
||||||
includedir=${prefix}/@CMAKE_INSTALL_INCLUDEDIR@
|
|
||||||
|
|
||||||
Name: jsoncpp
|
Name: jsoncpp
|
||||||
Description: A C++ library for interacting with JSON
|
Description: A C++ library for interacting with JSON
|
||||||
|
@@ -1,58 +0,0 @@
|
|||||||
# Copyright 2009 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
|
|
||||||
|
|
||||||
import fnmatch
|
|
||||||
import os
|
|
||||||
|
|
||||||
def generate(env):
|
|
||||||
def Glob(env, includes = None, excludes = None, dir = '.'):
|
|
||||||
"""Adds Glob(includes = Split('*'), excludes = None, dir = '.')
|
|
||||||
helper function to environment.
|
|
||||||
|
|
||||||
Glob both the file-system files.
|
|
||||||
|
|
||||||
includes: list of file name pattern included in the return list when matched.
|
|
||||||
excludes: list of file name pattern exluced from the return list.
|
|
||||||
|
|
||||||
Example:
|
|
||||||
sources = env.Glob(("*.cpp", '*.h'), "~*.cpp", "#src")
|
|
||||||
"""
|
|
||||||
def filterFilename(path):
|
|
||||||
abs_path = os.path.join(dir, path)
|
|
||||||
if not os.path.isfile(abs_path):
|
|
||||||
return 0
|
|
||||||
fn = os.path.basename(path)
|
|
||||||
match = 0
|
|
||||||
for include in includes:
|
|
||||||
if fnmatch.fnmatchcase(fn, include):
|
|
||||||
match = 1
|
|
||||||
break
|
|
||||||
if match == 1 and not excludes is None:
|
|
||||||
for exclude in excludes:
|
|
||||||
if fnmatch.fnmatchcase(fn, exclude):
|
|
||||||
match = 0
|
|
||||||
break
|
|
||||||
return match
|
|
||||||
if includes is None:
|
|
||||||
includes = ('*',)
|
|
||||||
elif type(includes) in (type(''), type(u'')):
|
|
||||||
includes = (includes,)
|
|
||||||
if type(excludes) in (type(''), type(u'')):
|
|
||||||
excludes = (excludes,)
|
|
||||||
dir = env.Dir(dir).abspath
|
|
||||||
paths = os.listdir(dir)
|
|
||||||
def makeAbsFileNode(path):
|
|
||||||
return env.File(os.path.join(dir, path))
|
|
||||||
nodes = filter(filterFilename, paths)
|
|
||||||
return map(makeAbsFileNode, nodes)
|
|
||||||
|
|
||||||
from SCons.Script import Environment
|
|
||||||
Environment.Glob = Glob
|
|
||||||
|
|
||||||
def exists(env):
|
|
||||||
"""
|
|
||||||
Tool always exists.
|
|
||||||
"""
|
|
||||||
return True
|
|
@@ -1,183 +0,0 @@
|
|||||||
# Copyright 2007 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
|
|
||||||
|
|
||||||
import os
|
|
||||||
import os.path
|
|
||||||
from fnmatch import fnmatch
|
|
||||||
import targz
|
|
||||||
|
|
||||||
##def DoxyfileParse(file_contents):
|
|
||||||
## """
|
|
||||||
## Parse a Doxygen source file and return a dictionary of all the values.
|
|
||||||
## Values will be strings and lists of strings.
|
|
||||||
## """
|
|
||||||
## data = {}
|
|
||||||
##
|
|
||||||
## import shlex
|
|
||||||
## lex = shlex.shlex(instream = file_contents, posix = True)
|
|
||||||
## lex.wordchars += "*+./-:"
|
|
||||||
## lex.whitespace = lex.whitespace.replace("\n", "")
|
|
||||||
## lex.escape = ""
|
|
||||||
##
|
|
||||||
## lineno = lex.lineno
|
|
||||||
## last_backslash_lineno = lineno
|
|
||||||
## token = lex.get_token()
|
|
||||||
## key = token # the first token should be a key
|
|
||||||
## last_token = ""
|
|
||||||
## key_token = False
|
|
||||||
## next_key = False
|
|
||||||
## new_data = True
|
|
||||||
##
|
|
||||||
## def append_data(data, key, new_data, token):
|
|
||||||
## if new_data or len(data[key]) == 0:
|
|
||||||
## data[key].append(token)
|
|
||||||
## else:
|
|
||||||
## data[key][-1] += token
|
|
||||||
##
|
|
||||||
## while token:
|
|
||||||
## if token in ['\n']:
|
|
||||||
## if last_token not in ['\\']:
|
|
||||||
## key_token = True
|
|
||||||
## elif token in ['\\']:
|
|
||||||
## pass
|
|
||||||
## elif key_token:
|
|
||||||
## key = token
|
|
||||||
## key_token = False
|
|
||||||
## else:
|
|
||||||
## if token == "+=":
|
|
||||||
## if not data.has_key(key):
|
|
||||||
## data[key] = list()
|
|
||||||
## elif token == "=":
|
|
||||||
## data[key] = list()
|
|
||||||
## else:
|
|
||||||
## append_data(data, key, new_data, token)
|
|
||||||
## new_data = True
|
|
||||||
##
|
|
||||||
## last_token = token
|
|
||||||
## token = lex.get_token()
|
|
||||||
##
|
|
||||||
## if last_token == '\\' and token != '\n':
|
|
||||||
## new_data = False
|
|
||||||
## append_data(data, key, new_data, '\\')
|
|
||||||
##
|
|
||||||
## # compress lists of len 1 into single strings
|
|
||||||
## for (k, v) in data.items():
|
|
||||||
## if len(v) == 0:
|
|
||||||
## data.pop(k)
|
|
||||||
##
|
|
||||||
## # items in the following list will be kept as lists and not converted to strings
|
|
||||||
## if k in ["INPUT", "FILE_PATTERNS", "EXCLUDE_PATTERNS"]:
|
|
||||||
## continue
|
|
||||||
##
|
|
||||||
## if len(v) == 1:
|
|
||||||
## data[k] = v[0]
|
|
||||||
##
|
|
||||||
## return data
|
|
||||||
##
|
|
||||||
##def DoxySourceScan(node, env, path):
|
|
||||||
## """
|
|
||||||
## Doxygen Doxyfile source scanner. This should scan the Doxygen file and add
|
|
||||||
## any files used to generate docs to the list of source files.
|
|
||||||
## """
|
|
||||||
## default_file_patterns = [
|
|
||||||
## '*.c', '*.cc', '*.cxx', '*.cpp', '*.c++', '*.java', '*.ii', '*.ixx',
|
|
||||||
## '*.ipp', '*.i++', '*.inl', '*.h', '*.hh ', '*.hxx', '*.hpp', '*.h++',
|
|
||||||
## '*.idl', '*.odl', '*.cs', '*.php', '*.php3', '*.inc', '*.m', '*.mm',
|
|
||||||
## '*.py',
|
|
||||||
## ]
|
|
||||||
##
|
|
||||||
## default_exclude_patterns = [
|
|
||||||
## '*~',
|
|
||||||
## ]
|
|
||||||
##
|
|
||||||
## sources = []
|
|
||||||
##
|
|
||||||
## data = DoxyfileParse(node.get_contents())
|
|
||||||
##
|
|
||||||
## if data.get("RECURSIVE", "NO") == "YES":
|
|
||||||
## recursive = True
|
|
||||||
## else:
|
|
||||||
## recursive = False
|
|
||||||
##
|
|
||||||
## file_patterns = data.get("FILE_PATTERNS", default_file_patterns)
|
|
||||||
## exclude_patterns = data.get("EXCLUDE_PATTERNS", default_exclude_patterns)
|
|
||||||
##
|
|
||||||
## for node in data.get("INPUT", []):
|
|
||||||
## if os.path.isfile(node):
|
|
||||||
## sources.add(node)
|
|
||||||
## elif os.path.isdir(node):
|
|
||||||
## if recursive:
|
|
||||||
## for root, dirs, files in os.walk(node):
|
|
||||||
## for f in files:
|
|
||||||
## filename = os.path.join(root, f)
|
|
||||||
##
|
|
||||||
## pattern_check = reduce(lambda x, y: x or bool(fnmatch(filename, y)), file_patterns, False)
|
|
||||||
## exclude_check = reduce(lambda x, y: x and fnmatch(filename, y), exclude_patterns, True)
|
|
||||||
##
|
|
||||||
## if pattern_check and not exclude_check:
|
|
||||||
## sources.append(filename)
|
|
||||||
## else:
|
|
||||||
## for pattern in file_patterns:
|
|
||||||
## sources.extend(glob.glob("/".join([node, pattern])))
|
|
||||||
## sources = map(lambda path: env.File(path), sources)
|
|
||||||
## return sources
|
|
||||||
##
|
|
||||||
##
|
|
||||||
##def DoxySourceScanCheck(node, env):
|
|
||||||
## """Check if we should scan this file"""
|
|
||||||
## return os.path.isfile(node.path)
|
|
||||||
|
|
||||||
def srcDistEmitter(source, target, env):
|
|
||||||
## """Doxygen Doxyfile emitter"""
|
|
||||||
## # possible output formats and their default values and output locations
|
|
||||||
## output_formats = {
|
|
||||||
## "HTML": ("YES", "html"),
|
|
||||||
## "LATEX": ("YES", "latex"),
|
|
||||||
## "RTF": ("NO", "rtf"),
|
|
||||||
## "MAN": ("YES", "man"),
|
|
||||||
## "XML": ("NO", "xml"),
|
|
||||||
## }
|
|
||||||
##
|
|
||||||
## data = DoxyfileParse(source[0].get_contents())
|
|
||||||
##
|
|
||||||
## targets = []
|
|
||||||
## out_dir = data.get("OUTPUT_DIRECTORY", ".")
|
|
||||||
##
|
|
||||||
## # add our output locations
|
|
||||||
## for (k, v) in output_formats.items():
|
|
||||||
## if data.get("GENERATE_" + k, v[0]) == "YES":
|
|
||||||
## targets.append(env.Dir(os.path.join(out_dir, data.get(k + "_OUTPUT", v[1]))))
|
|
||||||
##
|
|
||||||
## # don't clobber targets
|
|
||||||
## for node in targets:
|
|
||||||
## env.Precious(node)
|
|
||||||
##
|
|
||||||
## # set up cleaning stuff
|
|
||||||
## for node in targets:
|
|
||||||
## env.Clean(node, node)
|
|
||||||
##
|
|
||||||
## return (targets, source)
|
|
||||||
return (target,source)
|
|
||||||
|
|
||||||
def generate(env):
|
|
||||||
"""
|
|
||||||
Add builders and construction variables for the
|
|
||||||
SrcDist tool.
|
|
||||||
"""
|
|
||||||
## doxyfile_scanner = env.Scanner(## DoxySourceScan,
|
|
||||||
## "DoxySourceScan",
|
|
||||||
## scan_check = DoxySourceScanCheck,
|
|
||||||
##)
|
|
||||||
|
|
||||||
if targz.exists(env):
|
|
||||||
srcdist_builder = targz.makeBuilder(srcDistEmitter)
|
|
||||||
|
|
||||||
env['BUILDERS']['SrcDist'] = srcdist_builder
|
|
||||||
|
|
||||||
def exists(env):
|
|
||||||
"""
|
|
||||||
Make sure srcdist exists.
|
|
||||||
"""
|
|
||||||
return targz.exists(env)
|
|
@@ -1,85 +0,0 @@
|
|||||||
# Copyright 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
|
|
||||||
|
|
||||||
import re
|
|
||||||
from SCons.Script import * # the usual scons stuff you get in a SConscript
|
|
||||||
import collections
|
|
||||||
|
|
||||||
def generate(env):
|
|
||||||
"""
|
|
||||||
Add builders and construction variables for the
|
|
||||||
SubstInFile tool.
|
|
||||||
|
|
||||||
Adds SubstInFile builder, which substitutes the keys->values of SUBST_DICT
|
|
||||||
from the source to the target.
|
|
||||||
The values of SUBST_DICT first have any construction variables expanded
|
|
||||||
(its keys are not expanded).
|
|
||||||
If a value of SUBST_DICT is a python callable function, it is called and
|
|
||||||
the result is expanded as the value.
|
|
||||||
If there's more than one source and more than one target, each target gets
|
|
||||||
substituted from the corresponding source.
|
|
||||||
"""
|
|
||||||
def do_subst_in_file(targetfile, sourcefile, dict):
|
|
||||||
"""Replace all instances of the keys of dict with their values.
|
|
||||||
For example, if dict is {'%VERSION%': '1.2345', '%BASE%': 'MyProg'},
|
|
||||||
then all instances of %VERSION% in the file will be replaced with 1.2345 etc.
|
|
||||||
"""
|
|
||||||
try:
|
|
||||||
f = open(sourcefile, 'rb')
|
|
||||||
contents = f.read()
|
|
||||||
f.close()
|
|
||||||
except:
|
|
||||||
raise SCons.Errors.UserError("Can't read source file %s"%sourcefile)
|
|
||||||
for (k,v) in list(dict.items()):
|
|
||||||
contents = re.sub(k, v, contents)
|
|
||||||
try:
|
|
||||||
f = open(targetfile, 'wb')
|
|
||||||
f.write(contents)
|
|
||||||
f.close()
|
|
||||||
except:
|
|
||||||
raise SCons.Errors.UserError("Can't write target file %s"%targetfile)
|
|
||||||
return 0 # success
|
|
||||||
|
|
||||||
def subst_in_file(target, source, env):
|
|
||||||
if 'SUBST_DICT' not in env:
|
|
||||||
raise SCons.Errors.UserError("SubstInFile requires SUBST_DICT to be set.")
|
|
||||||
d = dict(env['SUBST_DICT']) # copy it
|
|
||||||
for (k,v) in list(d.items()):
|
|
||||||
if isinstance(v, collections.Callable):
|
|
||||||
d[k] = env.subst(v()).replace('\\','\\\\')
|
|
||||||
elif SCons.Util.is_String(v):
|
|
||||||
d[k] = env.subst(v).replace('\\','\\\\')
|
|
||||||
else:
|
|
||||||
raise SCons.Errors.UserError("SubstInFile: key %s: %s must be a string or callable"%(k, repr(v)))
|
|
||||||
for (t,s) in zip(target, source):
|
|
||||||
return do_subst_in_file(str(t), str(s), d)
|
|
||||||
|
|
||||||
def subst_in_file_string(target, source, env):
|
|
||||||
"""This is what gets printed on the console."""
|
|
||||||
return '\n'.join(['Substituting vars from %s into %s'%(str(s), str(t))
|
|
||||||
for (t,s) in zip(target, source)])
|
|
||||||
|
|
||||||
def subst_emitter(target, source, env):
|
|
||||||
"""Add dependency from substituted SUBST_DICT to target.
|
|
||||||
Returns original target, source tuple unchanged.
|
|
||||||
"""
|
|
||||||
d = env['SUBST_DICT'].copy() # copy it
|
|
||||||
for (k,v) in list(d.items()):
|
|
||||||
if isinstance(v, collections.Callable):
|
|
||||||
d[k] = env.subst(v())
|
|
||||||
elif SCons.Util.is_String(v):
|
|
||||||
d[k]=env.subst(v)
|
|
||||||
Depends(target, SCons.Node.Python.Value(d))
|
|
||||||
return target, source
|
|
||||||
|
|
||||||
## env.Append(TOOLS = 'substinfile') # this should be automaticaly done by Scons ?!?
|
|
||||||
subst_action = SCons.Action.Action(subst_in_file, subst_in_file_string)
|
|
||||||
env['BUILDERS']['SubstInFile'] = Builder(action=subst_action, emitter=subst_emitter)
|
|
||||||
|
|
||||||
def exists(env):
|
|
||||||
"""
|
|
||||||
Make sure tool exists.
|
|
||||||
"""
|
|
||||||
return True
|
|
@@ -1,87 +0,0 @@
|
|||||||
# Copyright 2007 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
|
|
||||||
|
|
||||||
"""tarball
|
|
||||||
|
|
||||||
Tool-specific initialization for tarball.
|
|
||||||
|
|
||||||
"""
|
|
||||||
|
|
||||||
## Commands to tackle a command based implementation:
|
|
||||||
##to unpack on the fly...
|
|
||||||
##gunzip < FILE.tar.gz | tar xvf -
|
|
||||||
##to pack on the fly...
|
|
||||||
##tar cvf - FILE-LIST | gzip -c > FILE.tar.gz
|
|
||||||
|
|
||||||
import os.path
|
|
||||||
|
|
||||||
import SCons.Builder
|
|
||||||
import SCons.Node.FS
|
|
||||||
import SCons.Util
|
|
||||||
|
|
||||||
try:
|
|
||||||
import gzip
|
|
||||||
import tarfile
|
|
||||||
internal_targz = 1
|
|
||||||
except ImportError:
|
|
||||||
internal_targz = 0
|
|
||||||
|
|
||||||
TARGZ_DEFAULT_COMPRESSION_LEVEL = 9
|
|
||||||
|
|
||||||
if internal_targz:
|
|
||||||
def targz(target, source, env):
|
|
||||||
def archive_name(path):
|
|
||||||
path = os.path.normpath(os.path.abspath(path))
|
|
||||||
common_path = os.path.commonprefix((base_dir, path))
|
|
||||||
archive_name = path[len(common_path):]
|
|
||||||
return archive_name
|
|
||||||
|
|
||||||
def visit(tar, dirname, names):
|
|
||||||
for name in names:
|
|
||||||
path = os.path.join(dirname, name)
|
|
||||||
if os.path.isfile(path):
|
|
||||||
tar.add(path, archive_name(path))
|
|
||||||
compression = env.get('TARGZ_COMPRESSION_LEVEL',TARGZ_DEFAULT_COMPRESSION_LEVEL)
|
|
||||||
base_dir = os.path.normpath(env.get('TARGZ_BASEDIR', env.Dir('.')).abspath)
|
|
||||||
target_path = str(target[0])
|
|
||||||
fileobj = gzip.GzipFile(target_path, 'wb', compression)
|
|
||||||
tar = tarfile.TarFile(os.path.splitext(target_path)[0], 'w', fileobj)
|
|
||||||
for source in source:
|
|
||||||
source_path = str(source)
|
|
||||||
if source.isdir():
|
|
||||||
os.path.walk(source_path, visit, tar)
|
|
||||||
else:
|
|
||||||
tar.add(source_path, archive_name(source_path)) # filename, arcname
|
|
||||||
tar.close()
|
|
||||||
|
|
||||||
targzAction = SCons.Action.Action(targz, varlist=['TARGZ_COMPRESSION_LEVEL','TARGZ_BASEDIR'])
|
|
||||||
|
|
||||||
def makeBuilder(emitter = None):
|
|
||||||
return SCons.Builder.Builder(action = SCons.Action.Action('$TARGZ_COM', '$TARGZ_COMSTR'),
|
|
||||||
source_factory = SCons.Node.FS.Entry,
|
|
||||||
source_scanner = SCons.Defaults.DirScanner,
|
|
||||||
suffix = '$TARGZ_SUFFIX',
|
|
||||||
multi = 1)
|
|
||||||
TarGzBuilder = makeBuilder()
|
|
||||||
|
|
||||||
def generate(env):
|
|
||||||
"""Add Builders and construction variables for zip to an Environment.
|
|
||||||
The following environnement variables may be set:
|
|
||||||
TARGZ_COMPRESSION_LEVEL: integer, [0-9]. 0: no compression, 9: best compression (same as gzip compression level).
|
|
||||||
TARGZ_BASEDIR: base-directory used to determine archive name (this allow archive name to be relative
|
|
||||||
to something other than top-dir).
|
|
||||||
"""
|
|
||||||
env['BUILDERS']['TarGz'] = TarGzBuilder
|
|
||||||
env['TARGZ_COM'] = targzAction
|
|
||||||
env['TARGZ_COMPRESSION_LEVEL'] = TARGZ_DEFAULT_COMPRESSION_LEVEL # range 0-9
|
|
||||||
env['TARGZ_SUFFIX'] = '.tar.gz'
|
|
||||||
env['TARGZ_BASEDIR'] = env.Dir('.') # Sources archive name are made relative to that directory.
|
|
||||||
else:
|
|
||||||
def generate(env):
|
|
||||||
pass
|
|
||||||
|
|
||||||
|
|
||||||
def exists(env):
|
|
||||||
return internal_targz
|
|
@@ -1,8 +1,11 @@
|
|||||||
// Copyright 2007-2010 Baptiste Lepilleur
|
// Copyright 2007-2010 Baptiste Lepilleur and The JsonCpp Authors
|
||||||
// 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
|
||||||
|
|
||||||
|
#pragma GCC diagnostic push
|
||||||
|
#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
|
||||||
|
|
||||||
/* This executable is used for testing parser/writer using real JSON files.
|
/* This executable is used for testing parser/writer using real JSON files.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@@ -324,3 +327,5 @@ int main(int argc, const char* argv[]) {
|
|||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#pragma GCC diagnostic pop
|
||||||
|
@@ -1,9 +0,0 @@
|
|||||||
Import( 'env_testing buildJSONTests' )
|
|
||||||
|
|
||||||
buildJSONTests( env_testing, Split( """
|
|
||||||
main.cpp
|
|
||||||
""" ),
|
|
||||||
'jsontestrunner' )
|
|
||||||
|
|
||||||
# For 'check' to work, 'libs' must be built first.
|
|
||||||
env_testing.Depends('jsontestrunner', '#libs')
|
|
@@ -95,8 +95,12 @@ ENDIF()
|
|||||||
IF(BUILD_STATIC_LIBS)
|
IF(BUILD_STATIC_LIBS)
|
||||||
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_SOVERSION})
|
||||||
SET_TARGET_PROPERTIES( jsoncpp_lib_static PROPERTIES OUTPUT_NAME jsoncpp
|
# avoid name clashes on windows as the shared import lib is also named jsoncpp.lib
|
||||||
DEBUG_OUTPUT_NAME jsoncpp${DEBUG_LIBNAME_SUFFIX} )
|
if (NOT DEFINED STATIC_SUFFIX AND BUILD_SHARED_LIBS)
|
||||||
|
set (STATIC_SUFFIX "_static")
|
||||||
|
endif ()
|
||||||
|
set_target_properties (jsoncpp_lib_static PROPERTIES OUTPUT_NAME jsoncpp${STATIC_SUFFIX}
|
||||||
|
DEBUG_OUTPUT_NAME jsoncpp${STATIC_SUFFIX}${DEBUG_LIBNAME_SUFFIX})
|
||||||
|
|
||||||
INSTALL( TARGETS jsoncpp_lib_static ${INSTALL_EXPORT}
|
INSTALL( TARGETS jsoncpp_lib_static ${INSTALL_EXPORT}
|
||||||
RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR}
|
RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR}
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
// Copyright 2007-2011 Baptiste Lepilleur
|
// Copyright 2007-2011 Baptiste Lepilleur and The JsonCpp Authors
|
||||||
// Copyright (C) 2016 InfoTeCS JSC. All rights reserved.
|
// Copyright (C) 2016 InfoTeCS JSC. All rights reserved.
|
||||||
// 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.
|
||||||
@@ -81,7 +81,7 @@ Features Features::strictMode() {
|
|||||||
// Implementation of class Reader
|
// Implementation of class Reader
|
||||||
// ////////////////////////////////
|
// ////////////////////////////////
|
||||||
|
|
||||||
static bool containsNewLine(Reader::Location begin, Reader::Location end) {
|
bool Reader::containsNewLine(Reader::Location begin, Reader::Location end) {
|
||||||
for (; begin < end; ++begin)
|
for (; begin < end; ++begin)
|
||||||
if (*begin == '\n' || *begin == '\r')
|
if (*begin == '\n' || *begin == '\r')
|
||||||
return true;
|
return true;
|
||||||
@@ -103,8 +103,7 @@ Reader::Reader(const Features& features)
|
|||||||
|
|
||||||
bool
|
bool
|
||||||
Reader::parse(const std::string& document, Value& root, bool collectComments) {
|
Reader::parse(const std::string& document, Value& root, bool collectComments) {
|
||||||
JSONCPP_STRING documentCopy(document.data(), document.data() + document.capacity());
|
document_.assign(document.begin(), document.end());
|
||||||
std::swap(documentCopy, document_);
|
|
||||||
const char* begin = document_.c_str();
|
const char* begin = document_.c_str();
|
||||||
const char* end = begin + document_.length();
|
const char* end = begin + document_.length();
|
||||||
return parse(begin, end, root, collectComments);
|
return parse(begin, end, root, collectComments);
|
||||||
@@ -137,7 +136,7 @@ bool Reader::parse(const char* beginDoc,
|
|||||||
current_ = begin_;
|
current_ = begin_;
|
||||||
lastValueEnd_ = 0;
|
lastValueEnd_ = 0;
|
||||||
lastValue_ = 0;
|
lastValue_ = 0;
|
||||||
commentsBefore_ = "";
|
commentsBefore_.clear();
|
||||||
errors_.clear();
|
errors_.clear();
|
||||||
while (!nodes_.empty())
|
while (!nodes_.empty())
|
||||||
nodes_.pop();
|
nodes_.pop();
|
||||||
@@ -176,7 +175,7 @@ bool Reader::readValue() {
|
|||||||
|
|
||||||
if (collectComments_ && !commentsBefore_.empty()) {
|
if (collectComments_ && !commentsBefore_.empty()) {
|
||||||
currentValue().setComment(commentsBefore_, commentBefore);
|
currentValue().setComment(commentsBefore_, commentBefore);
|
||||||
commentsBefore_ = "";
|
commentsBefore_.clear();
|
||||||
}
|
}
|
||||||
|
|
||||||
switch (token.type_) {
|
switch (token.type_) {
|
||||||
@@ -370,7 +369,7 @@ bool Reader::readComment() {
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
static JSONCPP_STRING normalizeEOL(Reader::Location begin, Reader::Location end) {
|
JSONCPP_STRING Reader::normalizeEOL(Reader::Location begin, Reader::Location end) {
|
||||||
JSONCPP_STRING normalized;
|
JSONCPP_STRING normalized;
|
||||||
normalized.reserve(static_cast<size_t>(end - begin));
|
normalized.reserve(static_cast<size_t>(end - begin));
|
||||||
Reader::Location current = begin;
|
Reader::Location current = begin;
|
||||||
@@ -474,7 +473,7 @@ bool Reader::readObject(Token& tokenStart) {
|
|||||||
break;
|
break;
|
||||||
if (tokenName.type_ == tokenObjectEnd && name.empty()) // empty object
|
if (tokenName.type_ == tokenObjectEnd && name.empty()) // empty object
|
||||||
return true;
|
return true;
|
||||||
name = "";
|
name.clear();
|
||||||
if (tokenName.type_ == tokenString) {
|
if (tokenName.type_ == tokenString) {
|
||||||
if (!decodeString(tokenName, name))
|
if (!decodeString(tokenName, name))
|
||||||
return recoverFromError(tokenObjectEnd);
|
return recoverFromError(tokenObjectEnd);
|
||||||
@@ -1019,6 +1018,9 @@ private:
|
|||||||
void addComment(Location begin, Location end, CommentPlacement placement);
|
void addComment(Location begin, Location end, CommentPlacement placement);
|
||||||
void skipCommentTokens(Token& token);
|
void skipCommentTokens(Token& token);
|
||||||
|
|
||||||
|
static JSONCPP_STRING normalizeEOL(Location begin, Location end);
|
||||||
|
static bool containsNewLine(Location begin, Location end);
|
||||||
|
|
||||||
typedef std::stack<Value*> Nodes;
|
typedef std::stack<Value*> Nodes;
|
||||||
Nodes nodes_;
|
Nodes nodes_;
|
||||||
Errors errors_;
|
Errors errors_;
|
||||||
@@ -1036,6 +1038,13 @@ private:
|
|||||||
|
|
||||||
// complete copy of Read impl, for OurReader
|
// complete copy of Read impl, for OurReader
|
||||||
|
|
||||||
|
bool OurReader::containsNewLine(OurReader::Location begin, OurReader::Location end) {
|
||||||
|
for (; begin < end; ++begin)
|
||||||
|
if (*begin == '\n' || *begin == '\r')
|
||||||
|
return true;
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
OurReader::OurReader(OurFeatures const& features)
|
OurReader::OurReader(OurFeatures const& features)
|
||||||
: errors_(), document_(), begin_(), end_(), current_(), lastValueEnd_(),
|
: errors_(), document_(), begin_(), end_(), current_(), lastValueEnd_(),
|
||||||
lastValue_(), commentsBefore_(),
|
lastValue_(), commentsBefore_(),
|
||||||
@@ -1056,7 +1065,7 @@ bool OurReader::parse(const char* beginDoc,
|
|||||||
current_ = begin_;
|
current_ = begin_;
|
||||||
lastValueEnd_ = 0;
|
lastValueEnd_ = 0;
|
||||||
lastValue_ = 0;
|
lastValue_ = 0;
|
||||||
commentsBefore_ = "";
|
commentsBefore_.clear();
|
||||||
errors_.clear();
|
errors_.clear();
|
||||||
while (!nodes_.empty())
|
while (!nodes_.empty())
|
||||||
nodes_.pop();
|
nodes_.pop();
|
||||||
@@ -1098,7 +1107,7 @@ bool OurReader::readValue() {
|
|||||||
|
|
||||||
if (collectComments_ && !commentsBefore_.empty()) {
|
if (collectComments_ && !commentsBefore_.empty()) {
|
||||||
currentValue().setComment(commentsBefore_, commentBefore);
|
currentValue().setComment(commentsBefore_, commentBefore);
|
||||||
commentsBefore_ = "";
|
commentsBefore_.clear();
|
||||||
}
|
}
|
||||||
|
|
||||||
switch (token.type_) {
|
switch (token.type_) {
|
||||||
@@ -1345,6 +1354,25 @@ bool OurReader::readComment() {
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
JSONCPP_STRING OurReader::normalizeEOL(OurReader::Location begin, OurReader::Location end) {
|
||||||
|
JSONCPP_STRING normalized;
|
||||||
|
normalized.reserve(static_cast<size_t>(end - begin));
|
||||||
|
OurReader::Location current = begin;
|
||||||
|
while (current != end) {
|
||||||
|
char c = *current++;
|
||||||
|
if (c == '\r') {
|
||||||
|
if (current != end && *current == '\n')
|
||||||
|
// convert dos EOL
|
||||||
|
++current;
|
||||||
|
// convert Mac EOL
|
||||||
|
normalized += '\n';
|
||||||
|
} else {
|
||||||
|
normalized += c;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return normalized;
|
||||||
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
OurReader::addComment(Location begin, Location end, CommentPlacement placement) {
|
OurReader::addComment(Location begin, Location end, CommentPlacement placement) {
|
||||||
assert(collectComments_);
|
assert(collectComments_);
|
||||||
@@ -1447,7 +1475,7 @@ bool OurReader::readObject(Token& tokenStart) {
|
|||||||
break;
|
break;
|
||||||
if (tokenName.type_ == tokenObjectEnd && name.empty()) // empty object
|
if (tokenName.type_ == tokenObjectEnd && name.empty()) // empty object
|
||||||
return true;
|
return true;
|
||||||
name = "";
|
name.clear();
|
||||||
if (tokenName.type_ == tokenString) {
|
if (tokenName.type_ == tokenString) {
|
||||||
if (!decodeString(tokenName, name))
|
if (!decodeString(tokenName, name))
|
||||||
return recoverFromError(tokenObjectEnd);
|
return recoverFromError(tokenObjectEnd);
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
// Copyright 2007-2010 Baptiste Lepilleur
|
// Copyright 2007-2010 Baptiste Lepilleur and The JsonCpp Authors
|
||||||
// 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,4 +1,4 @@
|
|||||||
// Copyright 2011 Baptiste Lepilleur
|
// Copyright 2011 Baptiste Lepilleur and The JsonCpp Authors
|
||||||
// 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
|
||||||
@@ -292,18 +292,28 @@ void Value::CZString::swap(CZString& other) {
|
|||||||
std::swap(index_, other.index_);
|
std::swap(index_, other.index_);
|
||||||
}
|
}
|
||||||
|
|
||||||
Value::CZString& Value::CZString::operator=(CZString other) {
|
Value::CZString& Value::CZString::operator=(const CZString& other) {
|
||||||
swap(other);
|
cstr_ = other.cstr_;
|
||||||
|
index_ = other.index_;
|
||||||
return *this;
|
return *this;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#if JSON_HAS_RVALUE_REFERENCES
|
||||||
|
Value::CZString& Value::CZString::operator=(CZString&& other) {
|
||||||
|
cstr_ = other.cstr_;
|
||||||
|
index_ = other.index_;
|
||||||
|
other.cstr_ = nullptr;
|
||||||
|
return *this;
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
bool Value::CZString::operator<(const CZString& other) const {
|
bool Value::CZString::operator<(const CZString& other) const {
|
||||||
if (!cstr_) return index_ < other.index_;
|
if (!cstr_) return index_ < other.index_;
|
||||||
//return strcmp(cstr_, other.cstr_) < 0;
|
//return strcmp(cstr_, other.cstr_) < 0;
|
||||||
// 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(this_len, other_len);
|
unsigned min_len = std::min<unsigned>(this_len, other_len);
|
||||||
JSON_ASSERT(this->cstr_ && other.cstr_);
|
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;
|
||||||
@@ -398,6 +408,7 @@ 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)));
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -522,6 +533,12 @@ void Value::swapPayload(Value& other) {
|
|||||||
other.allocated_ = temp2 & 0x1;
|
other.allocated_ = temp2 & 0x1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void Value::copyPayload(const Value& other) {
|
||||||
|
type_ = other.type_;
|
||||||
|
value_ = other.value_;
|
||||||
|
allocated_ = other.allocated_;
|
||||||
|
}
|
||||||
|
|
||||||
void Value::swap(Value& other) {
|
void Value::swap(Value& other) {
|
||||||
swapPayload(other);
|
swapPayload(other);
|
||||||
std::swap(comments_, other.comments_);
|
std::swap(comments_, other.comments_);
|
||||||
@@ -529,6 +546,13 @@ void Value::swap(Value& other) {
|
|||||||
std::swap(limit_, other.limit_);
|
std::swap(limit_, other.limit_);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void Value::copy(const Value& other) {
|
||||||
|
copyPayload(other);
|
||||||
|
comments_ = other.comments_;
|
||||||
|
start_ = other.start_;
|
||||||
|
limit_ = other.limit_;
|
||||||
|
}
|
||||||
|
|
||||||
ValueType Value::type() const { return type_; }
|
ValueType Value::type() const { return type_; }
|
||||||
|
|
||||||
int Value::compare(const Value& other) const {
|
int Value::compare(const Value& other) const {
|
||||||
@@ -566,7 +590,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(this_len, other_len);
|
unsigned min_len = std::min<unsigned>(this_len, other_len);
|
||||||
JSON_ASSERT(this_str && other_str);
|
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;
|
||||||
@@ -879,7 +903,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() == "") ||
|
(type_ == stringValue && asString().empty()) ||
|
||||||
(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;
|
||||||
@@ -1123,6 +1147,10 @@ Value const& Value::operator[](CppTL::ConstString const& key) const
|
|||||||
|
|
||||||
Value& Value::append(const Value& value) { return (*this)[size()] = value; }
|
Value& Value::append(const Value& value) { return (*this)[size()] = value; }
|
||||||
|
|
||||||
|
#if JSON_HAS_RVALUE_REFERENCES
|
||||||
|
Value& Value::append(Value&& value) { return (*this)[size()] = value; }
|
||||||
|
#endif
|
||||||
|
|
||||||
Value Value::get(char const* key, char const* cend, Value const& defaultValue) const
|
Value Value::get(char const* key, char const* cend, Value const& defaultValue) const
|
||||||
{
|
{
|
||||||
Value const* found = find(key, cend);
|
Value const* found = find(key, cend);
|
||||||
@@ -1359,11 +1387,23 @@ 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)
|
||||||
return isInt64() || isUInt64();
|
// Note that maxUInt64 (= 2^64 - 1) is not exactly representable as a
|
||||||
|
// 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 isInt() || isUInt();
|
return value_.real_ >= minInt && value_.real_ <= maxUInt && IsIntegral(value_.real_);
|
||||||
#endif
|
#endif // JSON_HAS_INT64
|
||||||
|
default:
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool Value::isDouble() const { return type_ == intValue || type_ == uintValue || type_ == realValue; }
|
bool Value::isDouble() const { return type_ == intValue || type_ == uintValue || type_ == realValue; }
|
||||||
@@ -1413,8 +1453,13 @@ ptrdiff_t Value::getOffsetStart() const { return start_; }
|
|||||||
ptrdiff_t Value::getOffsetLimit() const { return limit_; }
|
ptrdiff_t Value::getOffsetLimit() const { return limit_; }
|
||||||
|
|
||||||
JSONCPP_STRING Value::toStyledString() const {
|
JSONCPP_STRING Value::toStyledString() const {
|
||||||
StyledWriter writer;
|
StreamWriterBuilder builder;
|
||||||
return writer.write(*this);
|
|
||||||
|
JSONCPP_STRING out = this->hasComment(commentBefore) ? "\n" : "";
|
||||||
|
out += Json::writeString(builder, *this);
|
||||||
|
out += "\n";
|
||||||
|
|
||||||
|
return out;
|
||||||
}
|
}
|
||||||
|
|
||||||
Value::const_iterator Value::begin() const {
|
Value::const_iterator Value::begin() const {
|
||||||
@@ -1493,6 +1538,7 @@ Path::Path(const JSONCPP_STRING& path,
|
|||||||
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);
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
// Copyright 2007-2010 Baptiste Lepilleur
|
// Copyright 2007-2010 Baptiste Lepilleur and The JsonCpp Authors
|
||||||
// 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,4 +1,4 @@
|
|||||||
// Copyright 2011 Baptiste Lepilleur
|
// Copyright 2011 Baptiste Lepilleur and The JsonCpp Authors
|
||||||
// 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
|
||||||
@@ -142,17 +142,18 @@ JSONCPP_STRING valueToString(double value, bool useSpecialFloats, unsigned int p
|
|||||||
char buffer[36];
|
char buffer[36];
|
||||||
int len = -1;
|
int len = -1;
|
||||||
|
|
||||||
char formatString[6];
|
char formatString[15];
|
||||||
sprintf(formatString, "%%.%dg", precision);
|
snprintf(formatString, sizeof(formatString), "%%.%dg", precision);
|
||||||
|
|
||||||
// Print into the buffer. We need not request the alternative representation
|
// Print into the buffer. We need not request the alternative representation
|
||||||
// that always has a decimal point because JSON doesn't distingish the
|
// that always has a decimal point because JSON doesn't distingish the
|
||||||
// concepts of reals and integers.
|
// concepts of reals and integers.
|
||||||
if (isfinite(value)) {
|
if (isfinite(value)) {
|
||||||
len = snprintf(buffer, sizeof(buffer), formatString, value);
|
len = snprintf(buffer, sizeof(buffer), formatString, value);
|
||||||
|
fixNumericLocale(buffer, buffer + len);
|
||||||
|
|
||||||
// try to ensure we preserve the fact that this was given to us as a double on input
|
// try to ensure we preserve the fact that this was given to us as a double on input
|
||||||
if (!strstr(buffer, ".") && !strstr(buffer, "e")) {
|
if (!strchr(buffer, '.') && !strchr(buffer, 'e')) {
|
||||||
strcat(buffer, ".0");
|
strcat(buffer, ".0");
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -165,10 +166,8 @@ JSONCPP_STRING valueToString(double value, bool useSpecialFloats, unsigned int p
|
|||||||
} else {
|
} else {
|
||||||
len = snprintf(buffer, sizeof(buffer), useSpecialFloats ? "Infinity" : "1e+9999");
|
len = snprintf(buffer, sizeof(buffer), useSpecialFloats ? "Infinity" : "1e+9999");
|
||||||
}
|
}
|
||||||
// For those, we do not need to call fixNumLoc, but it is fast.
|
|
||||||
}
|
}
|
||||||
assert(len >= 0);
|
assert(len >= 0);
|
||||||
fixNumericLocale(buffer, buffer + len);
|
|
||||||
return buffer;
|
return buffer;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -335,7 +334,7 @@ void FastWriter::dropNullPlaceholders() { dropNullPlaceholders_ = true; }
|
|||||||
void FastWriter::omitEndingLineFeed() { omitEndingLineFeed_ = true; }
|
void FastWriter::omitEndingLineFeed() { omitEndingLineFeed_ = true; }
|
||||||
|
|
||||||
JSONCPP_STRING FastWriter::write(const Value& root) {
|
JSONCPP_STRING FastWriter::write(const Value& root) {
|
||||||
document_ = "";
|
document_.clear();
|
||||||
writeValue(root);
|
writeValue(root);
|
||||||
if (!omitEndingLineFeed_)
|
if (!omitEndingLineFeed_)
|
||||||
document_ += "\n";
|
document_ += "\n";
|
||||||
@@ -403,9 +402,9 @@ StyledWriter::StyledWriter()
|
|||||||
: rightMargin_(74), indentSize_(3), addChildValues_() {}
|
: rightMargin_(74), indentSize_(3), addChildValues_() {}
|
||||||
|
|
||||||
JSONCPP_STRING StyledWriter::write(const Value& root) {
|
JSONCPP_STRING StyledWriter::write(const Value& root) {
|
||||||
document_ = "";
|
document_.clear();
|
||||||
addChildValues_ = false;
|
addChildValues_ = false;
|
||||||
indentString_ = "";
|
indentString_.clear();
|
||||||
writeCommentBeforeValue(root);
|
writeCommentBeforeValue(root);
|
||||||
writeValue(root);
|
writeValue(root);
|
||||||
writeCommentAfterValueOnSameLine(root);
|
writeCommentAfterValueOnSameLine(root);
|
||||||
@@ -583,7 +582,7 @@ void StyledWriter::writeCommentBeforeValue(const Value& root) {
|
|||||||
while (iter != comment.end()) {
|
while (iter != comment.end()) {
|
||||||
document_ += *iter;
|
document_ += *iter;
|
||||||
if (*iter == '\n' &&
|
if (*iter == '\n' &&
|
||||||
(iter != comment.end() && *(iter + 1) == '/'))
|
((iter+1) != comment.end() && *(iter + 1) == '/'))
|
||||||
writeIndent();
|
writeIndent();
|
||||||
++iter;
|
++iter;
|
||||||
}
|
}
|
||||||
@@ -619,7 +618,7 @@ StyledStreamWriter::StyledStreamWriter(JSONCPP_STRING indentation)
|
|||||||
void StyledStreamWriter::write(JSONCPP_OSTREAM& out, const Value& root) {
|
void StyledStreamWriter::write(JSONCPP_OSTREAM& out, const Value& root) {
|
||||||
document_ = &out;
|
document_ = &out;
|
||||||
addChildValues_ = false;
|
addChildValues_ = false;
|
||||||
indentString_ = "";
|
indentString_.clear();
|
||||||
indented_ = true;
|
indented_ = true;
|
||||||
writeCommentBeforeValue(root);
|
writeCommentBeforeValue(root);
|
||||||
if (!indented_) writeIndent();
|
if (!indented_) writeIndent();
|
||||||
@@ -799,7 +798,7 @@ void StyledStreamWriter::writeCommentBeforeValue(const Value& root) {
|
|||||||
while (iter != comment.end()) {
|
while (iter != comment.end()) {
|
||||||
*document_ << *iter;
|
*document_ << *iter;
|
||||||
if (*iter == '\n' &&
|
if (*iter == '\n' &&
|
||||||
(iter != comment.end() && *(iter + 1) == '/'))
|
((iter+1) != comment.end() && *(iter + 1) == '/'))
|
||||||
// writeIndent(); // would include newline
|
// writeIndent(); // would include newline
|
||||||
*document_ << indentString_;
|
*document_ << indentString_;
|
||||||
++iter;
|
++iter;
|
||||||
@@ -901,7 +900,7 @@ int BuiltStyledStreamWriter::write(Value const& root, JSONCPP_OSTREAM* sout)
|
|||||||
sout_ = sout;
|
sout_ = sout;
|
||||||
addChildValues_ = false;
|
addChildValues_ = false;
|
||||||
indented_ = true;
|
indented_ = true;
|
||||||
indentString_ = "";
|
indentString_.clear();
|
||||||
writeCommentBeforeValue(root);
|
writeCommentBeforeValue(root);
|
||||||
if (!indented_) writeIndent();
|
if (!indented_) writeIndent();
|
||||||
indented_ = true;
|
indented_ = true;
|
||||||
@@ -1087,7 +1086,7 @@ void BuiltStyledStreamWriter::writeCommentBeforeValue(Value const& root) {
|
|||||||
while (iter != comment.end()) {
|
while (iter != comment.end()) {
|
||||||
*sout_ << *iter;
|
*sout_ << *iter;
|
||||||
if (*iter == '\n' &&
|
if (*iter == '\n' &&
|
||||||
(iter != comment.end() && *(iter + 1) == '/'))
|
((iter+1) != comment.end() && *(iter + 1) == '/'))
|
||||||
// writeIndent(); // would write extra newline
|
// writeIndent(); // would write extra newline
|
||||||
*sout_ << indentString_;
|
*sout_ << indentString_;
|
||||||
++iter;
|
++iter;
|
||||||
@@ -1155,10 +1154,10 @@ StreamWriter* StreamWriterBuilder::newStreamWriter() const
|
|||||||
}
|
}
|
||||||
JSONCPP_STRING nullSymbol = "null";
|
JSONCPP_STRING nullSymbol = "null";
|
||||||
if (dnp) {
|
if (dnp) {
|
||||||
nullSymbol = "";
|
nullSymbol.clear();
|
||||||
}
|
}
|
||||||
if (pre > 17) pre = 17;
|
if (pre > 17) pre = 17;
|
||||||
JSONCPP_STRING endingLineFeedSymbol = "";
|
JSONCPP_STRING endingLineFeedSymbol;
|
||||||
return new BuiltStyledStreamWriter(
|
return new BuiltStyledStreamWriter(
|
||||||
indentation, cs,
|
indentation, cs,
|
||||||
colonSymbol, nullSymbol, endingLineFeedSymbol, usf, pre);
|
colonSymbol, nullSymbol, endingLineFeedSymbol, usf, pre);
|
||||||
|
@@ -1,8 +0,0 @@
|
|||||||
Import( 'env buildLibrary' )
|
|
||||||
|
|
||||||
buildLibrary( env, Split( """
|
|
||||||
json_reader.cpp
|
|
||||||
json_value.cpp
|
|
||||||
json_writer.cpp
|
|
||||||
""" ),
|
|
||||||
'json' )
|
|
@@ -1,4 +1,4 @@
|
|||||||
// Copyright 2007-2010 Baptiste Lepilleur
|
// Copyright 2007-2010 Baptiste Lepilleur and The JsonCpp Authors
|
||||||
// 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,4 +1,4 @@
|
|||||||
// Copyright 2007-2010 Baptiste Lepilleur
|
// Copyright 2007-2010 Baptiste Lepilleur and The JsonCpp Authors
|
||||||
// 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,11 @@
|
|||||||
// Copyright 2007-2010 Baptiste Lepilleur
|
// Copyright 2007-2010 Baptiste Lepilleur and The JsonCpp Authors
|
||||||
// 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
|
||||||
|
|
||||||
|
#pragma GCC diagnostic push
|
||||||
|
#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
|
||||||
|
|
||||||
#include "jsontest.h"
|
#include "jsontest.h"
|
||||||
#include <json/config.h>
|
#include <json/config.h>
|
||||||
#include <json/json.h>
|
#include <json/json.h>
|
||||||
@@ -2587,3 +2590,5 @@ int main(int argc, const char* argv[]) {
|
|||||||
|
|
||||||
return runner.runCommandLine(argc, argv);
|
return runner.runCommandLine(argc, argv);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#pragma GCC diagnostic pop
|
||||||
|
@@ -1,10 +0,0 @@
|
|||||||
Import( 'env_testing buildUnitTests' )
|
|
||||||
|
|
||||||
buildUnitTests( env_testing, Split( """
|
|
||||||
main.cpp
|
|
||||||
jsontest.cpp
|
|
||||||
""" ),
|
|
||||||
'test_lib_json' )
|
|
||||||
|
|
||||||
# For 'check' to work, 'libs' must be built first.
|
|
||||||
env_testing.Depends('test_lib_json', '#libs')
|
|
@@ -1,4 +1,4 @@
|
|||||||
# Copyright 2007 Baptiste Lepilleur
|
# Copyright 2007 Baptiste Lepilleur and The JsonCpp Authors
|
||||||
# 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,4 +1,4 @@
|
|||||||
# Copyright 2007 Baptiste Lepilleur
|
# Copyright 2007 Baptiste Lepilleur and The JsonCpp Authors
|
||||||
# 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,4 +1,4 @@
|
|||||||
# Copyright 2007 Baptiste Lepilleur
|
# Copyright 2007 Baptiste Lepilleur and The JsonCpp Authors
|
||||||
# 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,4 +1,4 @@
|
|||||||
# Copyright 2007 Baptiste Lepilleur
|
# Copyright 2007 Baptiste Lepilleur and The JsonCpp Authors
|
||||||
# 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,4 +1,4 @@
|
|||||||
# Copyright 2009 Baptiste Lepilleur
|
# Copyright 2009 Baptiste Lepilleur and The JsonCpp Authors
|
||||||
# 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
|
||||||
|
16
travis.sh
16
travis.sh
@@ -17,15 +17,7 @@ set -vex
|
|||||||
|
|
||||||
env | sort
|
env | sort
|
||||||
|
|
||||||
cmake -DJSONCPP_WITH_CMAKE_PACKAGE=$CMAKE_PKG -DBUILD_SHARED_LIBS=$SHARED_LIB -DCMAKE_BUILD_TYPE=$BUILD_TYPE -DCMAKE_VERBOSE_MAKEFILE=$VERBOSE_MAKE .
|
meson --buildtype ${BUILD_TYPE} --default-library ${LIB_TYPE} . build-${LIB_TYPE}
|
||||||
make
|
ninja -v -C build-${LIB_TYPE}
|
||||||
cmake -DJSONCPP_WITH_CMAKE_PACKAGE=$CMAKE_PKG -DBUILD_SHARED_LIBS=$SHARED_LIB -DCMAKE_BUILD_TYPE=$BUILD_TYPE -DCMAKE_VERBOSE_MAKEFILE=$VERBOSE_MAKE -DJSONCPP_USE_SECURE_MEMORY=1 .
|
ninja -v -C build-${LIB_TYPE} test
|
||||||
make
|
rm -r build-${LIB_TYPE}
|
||||||
|
|
||||||
# Python is not available in Travis for osx.
|
|
||||||
# https://github.com/travis-ci/travis-ci/issues/2320
|
|
||||||
if [ "$TRAVIS_OS_NAME" != "osx" ]
|
|
||||||
then
|
|
||||||
make jsoncpp_check
|
|
||||||
valgrind --error-exitcode=42 --leak-check=full ./src/test_lib_json/jsoncpp_test
|
|
||||||
fi
|
|
||||||
|
Reference in New Issue
Block a user