solidity/libsolidity/interface/ABI.cpp

200 lines
6.3 KiB
C++
Raw Normal View History

2017-05-10 09:54:23 +00:00
/*
2019-02-13 15:56:46 +00:00
This file is part of solidity.
2017-05-10 09:54:23 +00:00
2019-02-13 15:56:46 +00:00
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.
2017-05-10 09:54:23 +00:00
2019-02-13 15:56:46 +00:00
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.
2017-05-10 09:54:23 +00:00
2019-02-13 15:56:46 +00:00
You should have received a copy of the GNU General Public License
along with solidity. If not, see <http://www.gnu.org/licenses/>.
2017-05-10 09:54:23 +00:00
*/
/**
* Utilities to handle the Contract ABI (https://solidity.readthedocs.io/en/develop/abi-spec.html)
2017-05-10 09:54:23 +00:00
*/
#include <libsolidity/interface/ABI.h>
2018-12-17 18:24:42 +00:00
2017-05-10 09:54:23 +00:00
#include <libsolidity/ast/AST.h>
using namespace std;
using namespace dev;
using namespace dev::solidity;
namespace
{
bool anyDataStoredInStorage(TypePointers const& _pointers)
{
for (TypePointer const& pointer: _pointers)
if (pointer->dataStoredIn(DataLocation::Storage))
return true;
return false;
}
}
2017-05-10 09:54:23 +00:00
Json::Value ABI::generate(ContractDefinition const& _contractDef)
{
Json::Value abi(Json::arrayValue);
for (auto it: _contractDef.interfaceFunctions())
{
2019-07-02 14:04:52 +00:00
if (_contractDef.isLibrary() && (
it.second->stateMutability() > StateMutability::View ||
anyDataStoredInStorage(it.second->parameterTypes() + it.second->returnParameterTypes())
))
continue;
2019-07-02 14:04:52 +00:00
FunctionType const* externalFunctionType = it.second->interfaceFunctionType();
2017-08-25 09:39:53 +00:00
solAssert(!!externalFunctionType, "");
2017-05-10 09:54:23 +00:00
Json::Value method;
method["type"] = "function";
method["name"] = it.second->declaration().name();
// TODO: deprecate constant in a future release
2017-08-25 09:39:53 +00:00
method["constant"] = externalFunctionType->stateMutability() == StateMutability::Pure || it.second->stateMutability() == StateMutability::View;
method["payable"] = externalFunctionType->isPayable();
method["stateMutability"] = stateMutabilityToString(externalFunctionType->stateMutability());
2017-05-10 09:54:23 +00:00
method["inputs"] = formatTypeList(
externalFunctionType->parameterNames(),
externalFunctionType->parameterTypes(),
2019-07-02 14:04:52 +00:00
it.second->parameterTypes(),
2017-05-10 09:54:23 +00:00
_contractDef.isLibrary()
);
method["outputs"] = formatTypeList(
externalFunctionType->returnParameterNames(),
externalFunctionType->returnParameterTypes(),
2019-07-02 14:04:52 +00:00
it.second->returnParameterTypes(),
2017-05-10 09:54:23 +00:00
_contractDef.isLibrary()
);
2019-07-02 14:04:52 +00:00
abi.append(std::move(method));
2017-05-10 09:54:23 +00:00
}
if (_contractDef.constructor())
{
2019-07-02 14:04:52 +00:00
FunctionType constrType(*_contractDef.constructor(), false);
FunctionType const* externalFunctionType = constrType.interfaceFunctionType();
2017-08-25 09:39:53 +00:00
solAssert(!!externalFunctionType, "");
2017-05-10 09:54:23 +00:00
Json::Value method;
method["type"] = "constructor";
2017-08-25 09:39:53 +00:00
method["payable"] = externalFunctionType->isPayable();
method["stateMutability"] = stateMutabilityToString(externalFunctionType->stateMutability());
2017-05-10 09:54:23 +00:00
method["inputs"] = formatTypeList(
2017-08-25 09:39:53 +00:00
externalFunctionType->parameterNames(),
externalFunctionType->parameterTypes(),
2019-07-02 14:04:52 +00:00
constrType.parameterTypes(),
2017-05-10 09:54:23 +00:00
_contractDef.isLibrary()
);
2019-07-02 14:04:52 +00:00
abi.append(std::move(method));
2017-05-10 09:54:23 +00:00
}
if (_contractDef.fallbackFunction())
{
2019-07-02 14:04:52 +00:00
FunctionType const* externalFunctionType = FunctionType(*_contractDef.fallbackFunction(), false).interfaceFunctionType();
2017-05-10 09:54:23 +00:00
solAssert(!!externalFunctionType, "");
Json::Value method;
method["type"] = "fallback";
method["payable"] = externalFunctionType->isPayable();
method["stateMutability"] = stateMutabilityToString(externalFunctionType->stateMutability());
2019-07-02 14:04:52 +00:00
abi.append(std::move(method));
2017-05-10 09:54:23 +00:00
}
for (auto const& it: _contractDef.interfaceEvents())
{
Json::Value event;
event["type"] = "event";
event["name"] = it->name();
event["anonymous"] = it->isAnonymous();
Json::Value params(Json::arrayValue);
for (auto const& p: it->parameters())
{
2019-07-02 14:04:52 +00:00
Type const* type = p->annotation().type->interfaceType(false);
solAssert(type, "");
2017-05-10 09:54:23 +00:00
Json::Value input;
2019-07-02 14:04:52 +00:00
auto param = formatType(p->name(), *type, *p->annotation().type, false);
param["indexed"] = p->isIndexed();
2019-07-02 14:04:52 +00:00
params.append(std::move(param));
2017-05-10 09:54:23 +00:00
}
2019-07-02 14:04:52 +00:00
event["inputs"] = std::move(params);
abi.append(std::move(event));
2017-05-10 09:54:23 +00:00
}
return abi;
}
Json::Value ABI::formatTypeList(
vector<string> const& _names,
2019-07-02 14:04:52 +00:00
vector<TypePointer> const& _encodingTypes,
vector<TypePointer> const& _solidityTypes,
2017-05-10 09:54:23 +00:00
bool _forLibrary
)
{
Json::Value params(Json::arrayValue);
2019-07-02 14:04:52 +00:00
solAssert(_names.size() == _encodingTypes.size(), "Names and types vector size does not match");
solAssert(_names.size() == _solidityTypes.size(), "");
2017-05-10 09:54:23 +00:00
for (unsigned i = 0; i < _names.size(); ++i)
{
2019-07-02 14:04:52 +00:00
solAssert(_encodingTypes[i], "");
params.append(formatType(_names[i], *_encodingTypes[i], *_solidityTypes[i], _forLibrary));
2017-05-10 09:54:23 +00:00
}
return params;
}
2019-07-02 14:04:52 +00:00
Json::Value ABI::formatType(
string const& _name,
Type const& _encodingType,
Type const& _solidityType,
bool _forLibrary
)
{
Json::Value ret;
ret["name"] = _name;
2019-07-02 14:04:52 +00:00
ret["internalType"] = _solidityType.toString(true);
string suffix = (_forLibrary && _encodingType.dataStoredIn(DataLocation::Storage)) ? " storage" : "";
if (_encodingType.isValueType() || (_forLibrary && _encodingType.dataStoredIn(DataLocation::Storage)))
ret["type"] = _encodingType.canonicalName() + suffix;
else if (ArrayType const* arrayType = dynamic_cast<ArrayType const*>(&_encodingType))
{
if (arrayType->isByteArray())
2019-07-02 14:04:52 +00:00
ret["type"] = _encodingType.canonicalName() + suffix;
else
{
string suffix;
if (arrayType->isDynamicallySized())
suffix = "[]";
else
suffix = string("[") + arrayType->length().str() + "]";
solAssert(arrayType->baseType(), "");
2019-07-02 14:04:52 +00:00
Json::Value subtype = formatType(
"",
*arrayType->baseType(),
*dynamic_cast<ArrayType const&>(_solidityType).baseType(),
_forLibrary
);
if (subtype.isMember("components"))
{
ret["type"] = subtype["type"].asString() + suffix;
ret["components"] = subtype["components"];
}
else
ret["type"] = subtype["type"].asString() + suffix;
}
}
2019-07-02 14:04:52 +00:00
else if (StructType const* structType = dynamic_cast<StructType const*>(&_encodingType))
{
ret["type"] = "tuple";
ret["components"] = Json::arrayValue;
for (auto const& member: structType->members(nullptr))
{
solAssert(member.type, "");
2019-07-02 14:04:52 +00:00
Type const* t = member.type->interfaceType(_forLibrary);
solAssert(t, "");
ret["components"].append(formatType(member.name, *t, *member.type, _forLibrary));
}
}
else
solAssert(false, "Invalid type.");
return ret;
}