Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
J
json
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Chen Yisong
json
Commits
a9b4cb8b
Commit
a9b4cb8b
authored
Jan 12, 2017
by
Niels Lohmann
Browse files
Options
Browse Files
Download
Plain Diff
🔀
merge branch 'feature/release_information' into develop #397
parents
0f035438
3a9ccfac
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
160 additions
and
2 deletions
+160
-2
json.hpp
src/json.hpp
+58
-0
json.hpp.re2c
src/json.hpp.re2c
+58
-0
CMakeLists.txt
test/CMakeLists.txt
+1
-0
Makefile
test/Makefile
+3
-2
unit-meta.cpp
test/src/unit-meta.cpp
+40
-0
No files found.
src/json.hpp
View file @
a9b4cb8b
...
...
@@ -281,6 +281,64 @@ class basic_json
return
allocator_type
();
}
/*!
@brief returns version information on the library
*/
static
basic_json
meta
()
{
basic_json
result
;
result
[
"copyright"
]
=
"(C) 2013-2017 Niels Lohmann"
;
result
[
"name"
]
=
"JSON for Modern C++"
;
result
[
"url"
]
=
"https://github.com/nlohmann/json"
;
result
[
"version"
]
=
{
{
"string"
,
"2.0.10"
},
{
"major"
,
2
},
{
"minor"
,
0
},
{
"patch"
,
10
},
};
#ifdef _WIN32
result
[
"platform"
]
=
"win32"
;
#elif defined __linux__
result
[
"platform"
]
=
"linux"
;
#elif defined __APPLE__
result
[
"platform"
]
=
"apple"
;
#elif defined __unix__
result
[
"platform"
]
=
"unix"
;
#else
result
[
"platform"
]
=
"unknown"
;
#endif
#if defined(__clang__)
result
[
"compiler"
]
=
{{
"family"
,
"clang"
},
{
"version"
,
__clang_version__
}};
#elif defined(__ICC) || defined(__INTEL_COMPILER)
result
[
"compiler"
]
=
{{
"family"
,
"icc"
},
{
"version"
,
__INTEL_COMPILER
}};
#elif defined(__GNUC__) || defined(__GNUG__)
result
[
"compiler"
]
=
{{
"family"
,
"gcc"
},
{
"version"
,
std
::
to_string
(
__GNUC__
)
+
"."
+
std
::
to_string
(
__GNUC_MINOR__
)
+
"."
+
std
::
to_string
(
__GNUC_PATCHLEVEL__
)}};
#elif defined(__HP_cc) || defined(__HP_aCC)
result
[
"compiler"
]
=
"hp"
#elif defined(__IBMCPP__)
result
[
"compiler"
]
=
{{
"family"
,
"ilecpp"
},
{
"version"
,
__IBMCPP__
}};
#elif defined(_MSC_VER)
result
[
"compiler"
]
=
{{
"family"
,
"msvc"
},
{
"version"
,
_MSC_VER
}};
#elif defined(__PGI)
result
[
"compiler"
]
=
{{
"family"
,
"pgcpp"
},
{
"version"
,
__PGI
}};
#elif defined(__SUNPRO_CC)
result
[
"compiler"
]
=
{{
"family"
,
"sunpro"
},
{
"version"
,
__SUNPRO_CC
}};
#else
result
[
"compiler"
]
=
{{
"family"
,
"unknown"
},
{
"version"
,
"unknown"
}};
#endif
#ifdef __cplusplus
result
[
"compiler"
][
"c++"
]
=
std
::
to_string
(
__cplusplus
);
#else
result
[
"compiler"
][
"c++"
]
=
"unknown"
;
#endif
return
result
;
}
///////////////////////////
// JSON value data types //
...
...
src/json.hpp.re2c
View file @
a9b4cb8b
...
...
@@ -281,6 +281,64 @@ class basic_json
return allocator_type();
}
/*!
@brief returns version information on the library
*/
static basic_json meta()
{
basic_json result;
result["copyright"] = "(C) 2013-2017 Niels Lohmann";
result["name"] = "JSON for Modern C++";
result["url"] = "https://github.com/nlohmann/json";
result["version"] =
{
{"string", "2.0.10"},
{"major", 2},
{"minor", 0},
{"patch", 10},
};
#ifdef _WIN32
result["platform"] = "win32";
#elif defined __linux__
result["platform"] = "linux";
#elif defined __APPLE__
result["platform"] = "apple";
#elif defined __unix__
result["platform"] = "unix";
#else
result["platform"] = "unknown";
#endif
#if defined(__clang__)
result["compiler"] = {{"family", "clang"}, {"version", __clang_version__}};
#elif defined(__ICC) || defined(__INTEL_COMPILER)
result["compiler"] = {{"family", "icc"}, {"version", __INTEL_COMPILER}};
#elif defined(__GNUC__) || defined(__GNUG__)
result["compiler"] = {{"family", "gcc"}, {"version", std::to_string(__GNUC__) + "." + std::to_string(__GNUC_MINOR__) + "." + std::to_string(__GNUC_PATCHLEVEL__)}};
#elif defined(__HP_cc) || defined(__HP_aCC)
result["compiler"] = "hp"
#elif defined(__IBMCPP__)
result["compiler"] = {{"family", "ilecpp"}, {"version", __IBMCPP__}};
#elif defined(_MSC_VER)
result["compiler"] = {{"family", "msvc"}, {"version", _MSC_VER}};
#elif defined(__PGI)
result["compiler"] = {{"family", "pgcpp"}, {"version", __PGI}};
#elif defined(__SUNPRO_CC)
result["compiler"] = {{"family", "sunpro"}, {"version", __SUNPRO_CC}};
#else
result["compiler"] = {{"family", "unknown"}, {"version", "unknown"}};
#endif
#ifdef __cplusplus
result["compiler"]["c++"] = std::to_string(__cplusplus);
#else
result["compiler"]["c++"] = "unknown";
#endif
return result;
}
///////////////////////////
// JSON value data types //
...
...
test/CMakeLists.txt
View file @
a9b4cb8b
...
...
@@ -26,6 +26,7 @@ add_executable(${JSON_UNITTEST_TARGET_NAME}
"src/unit-iterators2.cpp"
"src/unit-json_patch.cpp"
"src/unit-json_pointer.cpp"
"src/unit-meta.cpp"
"src/unit-modifiers.cpp"
"src/unit-msgpack.cpp"
"src/unit-pointer_access.cpp"
...
...
test/Makefile
View file @
a9b4cb8b
...
...
@@ -30,6 +30,7 @@ SOURCES = src/unit.cpp \
src/unit-iterators2.cpp
\
src/unit-json_patch.cpp
\
src/unit-json_pointer.cpp
\
src/unit-meta.cpp
\
src/unit-modifiers.cpp
\
src/unit-msgpack.cpp
\
src/unit-pointer_access.cpp
\
...
...
@@ -37,8 +38,8 @@ SOURCES = src/unit.cpp \
src/unit-reference_access.cpp
\
src/unit-regression.cpp
\
src/unit-serialization.cpp
\
src/unit-
unicode
.cpp
\
src/unit-
testsuites
.cpp
src/unit-
testsuites
.cpp
\
src/unit-
unicode
.cpp
OBJECTS
=
$
(
SOURCES:.cpp
=
.o
)
...
...
test/src/unit-meta.cpp
0 → 100644
View file @
a9b4cb8b
/*
__ _____ _____ _____
__| | __| | | | JSON for Modern C++ (test suite)
| | |__ | | | | | | version 2.0.10
|_____|_____|_____|_|___| https://github.com/nlohmann/json
Licensed under the MIT License <http://opensource.org/licenses/MIT>.
Copyright (c) 2013-2016 Niels Lohmann <http://nlohmann.me>.
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
*/
#include "catch.hpp"
#include "json.hpp"
using
nlohmann
::
json
;
TEST_CASE
(
"version information"
)
{
SECTION
(
"version()"
)
{
CHECK
(
json
::
meta
()[
"name"
]
==
"JSON for Modern C++"
);
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment