2019-07-03 19:37:55 +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/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <test/libsolidity/util/SoltestTypes.h>
|
|
|
|
|
|
|
|
#include <libdevcore/CommonData.h>
|
|
|
|
|
|
|
|
namespace dev
|
|
|
|
{
|
|
|
|
namespace solidity
|
|
|
|
{
|
|
|
|
namespace test
|
|
|
|
{
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Utility class that aids conversions from parsed strings to an
|
|
|
|
* isoltest-internal, ABI-based bytes representation and vice-versa.
|
|
|
|
*/
|
|
|
|
class BytesUtils
|
|
|
|
{
|
|
|
|
public:
|
2019-07-21 13:58:12 +00:00
|
|
|
/// Left-aligns and pads given _bytes and returns a new
|
|
|
|
/// bytes array.
|
|
|
|
static bytes alignLeft(bytes _bytes);
|
|
|
|
|
|
|
|
/// Right-aligns and pads given _bytes and returns a new
|
|
|
|
/// bytes array.
|
|
|
|
static bytes alignRight(bytes _bytes);
|
|
|
|
|
|
|
|
/// Applies given _alignment to _bytes and returns a new
|
|
|
|
/// bytes array.
|
|
|
|
/// TODO: Remove abiType reference from parameter list
|
|
|
|
/// and return the new alignment instead.
|
|
|
|
static bytes applyAlign(
|
|
|
|
Parameter::Alignment _alignment,
|
|
|
|
ABIType& _abiType,
|
|
|
|
bytes _bytes
|
|
|
|
);
|
|
|
|
|
2019-07-03 19:37:55 +00:00
|
|
|
/// Tries to convert \param _literal to an unpadded `bytes`
|
|
|
|
/// representation of the boolean number literal. Throws if conversion fails.
|
2019-07-21 13:58:12 +00:00
|
|
|
static bytes convertBoolean(std::string const& _literal);
|
2019-07-03 19:37:55 +00:00
|
|
|
|
|
|
|
/// Tries to convert \param _literal to an unpadded `bytes`
|
|
|
|
/// representation of the decimal number literal. Throws if conversion fails.
|
2019-07-21 13:58:12 +00:00
|
|
|
static bytes convertNumber(std::string const& _literal);
|
2019-07-03 19:37:55 +00:00
|
|
|
|
|
|
|
/// Tries to convert \param _literal to an unpadded `bytes`
|
|
|
|
/// representation of the hex literal. Throws if conversion fails.
|
2019-07-21 13:58:12 +00:00
|
|
|
static bytes convertHexNumber(std::string const& _literal);
|
2019-07-03 19:37:55 +00:00
|
|
|
|
|
|
|
/// Tries to convert \param _literal to an unpadded `bytes`
|
|
|
|
/// representation of the string literal. Throws if conversion fails.
|
2019-07-21 13:58:12 +00:00
|
|
|
static bytes convertString(std::string const& _literal);
|
2019-07-03 19:37:55 +00:00
|
|
|
|
|
|
|
/// Converts \param _bytes to a soltest-compliant and human-readable
|
|
|
|
/// string representation of a byte array which is assumed to hold
|
|
|
|
/// an unsigned value.
|
2019-07-21 13:58:12 +00:00
|
|
|
static std::string formatUnsigned(bytes const& _bytes);
|
2019-07-03 19:37:55 +00:00
|
|
|
|
|
|
|
/// Converts \param _bytes to a soltest-compliant and human-readable
|
|
|
|
/// string representation of a byte array which is assumed to hold
|
|
|
|
/// a signed value.
|
2019-07-21 13:58:12 +00:00
|
|
|
static std::string formatSigned(bytes const& _bytes);
|
2019-07-03 19:37:55 +00:00
|
|
|
|
|
|
|
/// Converts \param _bytes to a soltest-compliant and human-readable
|
|
|
|
/// string representation of a byte array which is assumed to hold
|
|
|
|
/// a boolean value.
|
2019-07-21 13:58:12 +00:00
|
|
|
static std::string formatBoolean(bytes const& _bytes);
|
2019-07-03 19:37:55 +00:00
|
|
|
|
|
|
|
/// Converts \param _bytes to a soltest-compliant and human-readable
|
|
|
|
/// string representation of a byte array which is assumed to hold
|
|
|
|
/// a hex value.
|
2019-07-21 13:58:12 +00:00
|
|
|
static std::string formatHex(bytes const& _bytes);
|
2019-07-03 19:37:55 +00:00
|
|
|
|
|
|
|
/// Converts \param _bytes to a soltest-compliant and human-readable
|
|
|
|
/// string representation of a byte array which is assumed to hold
|
|
|
|
/// a hexString value.
|
2019-07-21 13:58:12 +00:00
|
|
|
static std::string formatHexString(bytes const& _bytes);
|
2019-07-03 19:37:55 +00:00
|
|
|
|
2019-07-21 14:15:02 +00:00
|
|
|
/// Returns a string representation of given _bytes. Adds a newline
|
|
|
|
/// every 32 bytes to increase readability.
|
|
|
|
/// Used to print returned bytes from function calls to the commandline.
|
|
|
|
static std::string formatRawBytes(bytes const& _bytes);
|
|
|
|
|
2019-07-03 19:37:55 +00:00
|
|
|
/// Converts \param _bytes to a soltest-compliant and human-readable
|
|
|
|
/// string representation of a byte array which is assumed to hold
|
|
|
|
/// a string value.
|
2019-07-10 15:11:03 +00:00
|
|
|
std::string formatString(bytes const& _bytes, size_t _cutOff) const;
|
|
|
|
|
|
|
|
std::string formatString(bytes const& _bytes) const
|
|
|
|
{
|
|
|
|
return formatString(_bytes, _bytes.size());
|
|
|
|
}
|
2019-07-03 19:37:55 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|