2016-11-15 17:33:28 +00:00
|
|
|
/*
|
2017-02-02 10:06:28 +00:00
|
|
|
This file is part of solidity.
|
2016-11-15 17:33:28 +00:00
|
|
|
|
2017-02-02 10:06:28 +00:00
|
|
|
solidity is free software: you can redistribute it and/or modify
|
2016-11-15 17:33:28 +00:00
|
|
|
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.
|
|
|
|
|
2017-02-02 10:06:28 +00:00
|
|
|
solidity is distributed in the hope that it will be useful,
|
2016-11-15 17:33:28 +00:00
|
|
|
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
|
2017-02-02 10:06:28 +00:00
|
|
|
along with solidity. If not, see <http://www.gnu.org/licenses/>.
|
2016-11-15 17:33:28 +00:00
|
|
|
*/
|
|
|
|
/** @file JSON.h
|
|
|
|
* @date 2016
|
|
|
|
*
|
|
|
|
* JSON related helpers
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <json/json.h>
|
|
|
|
|
|
|
|
namespace dev
|
|
|
|
{
|
|
|
|
|
2016-12-11 15:11:04 +00:00
|
|
|
/// Serialise the JSON object (@a _input) with indentation
|
2016-11-24 20:43:57 +00:00
|
|
|
inline std::string jsonPrettyPrint(Json::Value const& _input)
|
2016-11-15 17:33:28 +00:00
|
|
|
{
|
|
|
|
return Json::StyledWriter().write(_input);
|
|
|
|
}
|
|
|
|
|
2016-12-11 15:11:04 +00:00
|
|
|
/// Serialise the JSON object (@a _input) without indentation
|
2016-11-24 20:43:57 +00:00
|
|
|
inline std::string jsonCompactPrint(Json::Value const& _input)
|
2016-11-15 17:33:28 +00:00
|
|
|
{
|
|
|
|
Json::FastWriter writer;
|
|
|
|
writer.omitEndingLineFeed();
|
|
|
|
return writer.write(_input);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|