2018-02-07 01:05:20 +00:00
|
|
|
/*
|
|
|
|
This file is part of solidity.
|
|
|
|
|
|
|
|
solidity 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.
|
|
|
|
|
|
|
|
solidity 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 solidity. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
2020-07-17 14:54:12 +00:00
|
|
|
// SPDX-License-Identifier: GPL-3.0
|
2018-02-07 01:05:20 +00:00
|
|
|
/** @file JSON.cpp
|
|
|
|
* @author Alexander Arlt <alexander.arlt@arlt-labs.com>
|
|
|
|
* @date 2018
|
|
|
|
*/
|
|
|
|
|
2020-01-06 10:52:23 +00:00
|
|
|
#include <libsolutil/JSON.h>
|
2018-02-07 01:05:20 +00:00
|
|
|
|
2020-01-06 10:52:23 +00:00
|
|
|
#include <libsolutil/CommonIO.h>
|
2018-11-15 15:47:52 +00:00
|
|
|
|
2019-07-02 16:06:16 +00:00
|
|
|
#include <boost/algorithm/string/replace.hpp>
|
|
|
|
|
2018-02-07 01:05:20 +00:00
|
|
|
#include <sstream>
|
|
|
|
#include <map>
|
|
|
|
#include <memory>
|
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
|
2018-04-17 10:00:02 +00:00
|
|
|
static_assert(
|
2020-07-10 17:42:24 +00:00
|
|
|
(JSONCPP_VERSION_MAJOR == 1) && (JSONCPP_VERSION_MINOR == 9) && (JSONCPP_VERSION_PATCH == 3),
|
|
|
|
"Unexpected jsoncpp version: " JSONCPP_VERSION_STRING ". Expecting 1.9.3."
|
2018-04-17 10:00:02 +00:00
|
|
|
);
|
|
|
|
|
2019-12-11 16:31:36 +00:00
|
|
|
namespace solidity::util
|
2018-02-07 01:05:20 +00:00
|
|
|
{
|
|
|
|
|
|
|
|
namespace
|
|
|
|
{
|
|
|
|
|
|
|
|
/// StreamWriterBuilder that can be constructed with specific settings
|
|
|
|
class StreamWriterBuilder: public Json::StreamWriterBuilder
|
|
|
|
{
|
|
|
|
public:
|
2019-07-02 16:06:16 +00:00
|
|
|
explicit StreamWriterBuilder(map<string, Json::Value> const& _settings)
|
2018-02-07 01:05:20 +00:00
|
|
|
{
|
2019-07-02 16:06:16 +00:00
|
|
|
for (auto const& iter: _settings)
|
2018-02-07 01:05:20 +00:00
|
|
|
this->settings_[iter.first] = iter.second;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
/// CharReaderBuilder with strict-mode settings
|
|
|
|
class StrictModeCharReaderBuilder: public Json::CharReaderBuilder
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
StrictModeCharReaderBuilder()
|
|
|
|
{
|
|
|
|
Json::CharReaderBuilder::strictMode(&this->settings_);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
/// Serialise the JSON object (@a _input) with specific builder (@a _builder)
|
|
|
|
/// \param _input JSON input string
|
|
|
|
/// \param _builder StreamWriterBuilder that is used to create new Json::StreamWriter
|
|
|
|
/// \return serialized json object
|
|
|
|
string print(Json::Value const& _input, Json::StreamWriterBuilder const& _builder)
|
|
|
|
{
|
|
|
|
stringstream stream;
|
|
|
|
unique_ptr<Json::StreamWriter> writer(_builder.newStreamWriter());
|
|
|
|
writer->write(_input, &stream);
|
|
|
|
return stream.str();
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Parse a JSON string (@a _input) with specified builder (@ _builder) and writes resulting JSON object to (@a _json)
|
|
|
|
/// \param _builder CharReaderBuilder that is used to create new Json::CharReaders
|
|
|
|
/// \param _input JSON input string
|
|
|
|
/// \param _json [out] resulting JSON object
|
|
|
|
/// \param _errs [out] Formatted error messages
|
|
|
|
/// \return \c true if the document was successfully parsed, \c false if an error occurred.
|
|
|
|
bool parse(Json::CharReaderBuilder& _builder, string const& _input, Json::Value& _json, string* _errs)
|
|
|
|
{
|
|
|
|
unique_ptr<Json::CharReader> reader(_builder.newCharReader());
|
|
|
|
return reader->parse(_input.c_str(), _input.c_str() + _input.length(), &_json, _errs);
|
|
|
|
}
|
|
|
|
|
2020-04-27 08:28:54 +00:00
|
|
|
/// Takes a JSON value (@ _json) and removes all its members with value 'null' recursively.
|
|
|
|
void removeNullMembersHelper(Json::Value& _json)
|
|
|
|
{
|
|
|
|
if (_json.type() == Json::ValueType::arrayValue)
|
|
|
|
for (auto& child: _json)
|
|
|
|
removeNullMembersHelper(child);
|
|
|
|
else if (_json.type() == Json::ValueType::objectValue)
|
|
|
|
for (auto const& key: _json.getMemberNames())
|
|
|
|
{
|
|
|
|
Json::Value& value = _json[key];
|
|
|
|
if (value.isNull())
|
|
|
|
_json.removeMember(key);
|
|
|
|
else
|
|
|
|
removeNullMembersHelper(value);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-02-07 01:05:20 +00:00
|
|
|
} // end anonymous namespace
|
|
|
|
|
2020-04-27 08:28:54 +00:00
|
|
|
Json::Value removeNullMembers(Json::Value _json)
|
|
|
|
{
|
|
|
|
removeNullMembersHelper(_json);
|
|
|
|
return _json;
|
|
|
|
}
|
|
|
|
|
2018-02-07 01:05:20 +00:00
|
|
|
string jsonPrettyPrint(Json::Value const& _input)
|
|
|
|
{
|
2021-07-07 11:18:24 +00:00
|
|
|
return jsonPrint(_input, JsonFormat{ JsonFormat::Pretty });
|
2018-02-07 01:05:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
string jsonCompactPrint(Json::Value const& _input)
|
|
|
|
{
|
2021-07-07 11:18:24 +00:00
|
|
|
return jsonPrint(_input, JsonFormat{ JsonFormat::Compact });
|
|
|
|
}
|
|
|
|
|
|
|
|
string jsonPrint(Json::Value const& _input, JsonFormat const& _format)
|
|
|
|
{
|
|
|
|
map<string, Json::Value> settings;
|
|
|
|
if (_format.format == JsonFormat::Pretty)
|
|
|
|
{
|
|
|
|
settings["indentation"] = string(_format.indent, ' ');
|
|
|
|
settings["enableYAMLCompatibility"] = true;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
settings["indentation"] = "";
|
|
|
|
StreamWriterBuilder writerBuilder(settings);
|
|
|
|
string result = print(_input, writerBuilder);
|
|
|
|
if (_format.format == JsonFormat::Pretty)
|
|
|
|
boost::replace_all(result, " \n", "\n");
|
|
|
|
return result;
|
2018-02-07 01:05:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool jsonParseStrict(string const& _input, Json::Value& _json, string* _errs /* = nullptr */)
|
|
|
|
{
|
|
|
|
static StrictModeCharReaderBuilder readerBuilder;
|
|
|
|
return parse(readerBuilder, _input, _json, _errs);
|
|
|
|
}
|
|
|
|
|
2019-12-11 16:31:36 +00:00
|
|
|
} // namespace solidity::util
|