diff options
author | chriseth <chris@ethereum.org> | 2016-11-16 02:16:07 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-11-16 02:16:07 +0800 |
commit | 192a81892dca3762c050f159da202c8c8f90f72c (patch) | |
tree | 049fdd9eaf1bbe8ec18ff643739378a076d54e9e /libdevcore | |
parent | 0072160d7772b2f30c2c6af4428728cb31641696 (diff) | |
parent | 227f6aab4f96003e0f7c99194a9ea1095041970f (diff) | |
download | dexon-solidity-192a81892dca3762c050f159da202c8c8f90f72c.tar dexon-solidity-192a81892dca3762c050f159da202c8c8f90f72c.tar.gz dexon-solidity-192a81892dca3762c050f159da202c8c8f90f72c.tar.bz2 dexon-solidity-192a81892dca3762c050f159da202c8c8f90f72c.tar.lz dexon-solidity-192a81892dca3762c050f159da202c8c8f90f72c.tar.xz dexon-solidity-192a81892dca3762c050f159da202c8c8f90f72c.tar.zst dexon-solidity-192a81892dca3762c050f159da202c8c8f90f72c.zip |
Merge pull request #1377 from ethereum/keep-json-values
Keep internal results in JSON
Diffstat (limited to 'libdevcore')
-rw-r--r-- | libdevcore/JSON.h | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/libdevcore/JSON.h b/libdevcore/JSON.h new file mode 100644 index 00000000..7876dfb2 --- /dev/null +++ b/libdevcore/JSON.h @@ -0,0 +1,44 @@ +/* + This file is part of cpp-ethereum. + + cpp-ethereum is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + cpp-ethereum is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with cpp-ethereum. If not, see <http://www.gnu.org/licenses/>. +*/ +/** @file JSON.h + * @date 2016 + * + * JSON related helpers + */ + +#pragma once + +#include <json/json.h> + +namespace dev +{ + +/// Serialise the JSON object (@a _input) with identation +std::string jsonPrettyPrint(Json::Value const& _input) +{ + return Json::StyledWriter().write(_input); +} + +/// Serialise theJ SON object (@a _input) without identation +std::string jsonCompactPrint(Json::Value const& _input) +{ + Json::FastWriter writer; + writer.omitEndingLineFeed(); + return writer.write(_input); +} + +} |