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
|
|
|
*/
|
2020-07-17 14:54:12 +00:00
|
|
|
// SPDX-License-Identifier: GPL-3.0
|
2017-05-10 09:54:23 +00:00
|
|
|
/**
|
|
|
|
* @author Lefteris <lefteris@ethdev.com>
|
|
|
|
* @date 2014
|
|
|
|
* Takes the parsed AST and produces the Natspec documentation:
|
|
|
|
* https://github.com/ethereum/wiki/wiki/Ethereum-Natural-Specification-Format
|
|
|
|
*
|
|
|
|
* Can generally deal with JSON files
|
|
|
|
*/
|
2014-12-04 16:19:47 +00:00
|
|
|
|
2017-05-10 09:56:21 +00:00
|
|
|
#include <libsolidity/interface/Natspec.h>
|
2018-12-17 18:24:42 +00:00
|
|
|
|
2015-10-20 22:21:52 +00:00
|
|
|
#include <libsolidity/ast/AST.h>
|
2021-02-25 12:57:34 +00:00
|
|
|
|
|
|
|
#include <boost/algorithm/string.hpp>
|
|
|
|
|
2014-12-03 16:46:04 +00:00
|
|
|
|
2015-10-26 14:13:36 +00:00
|
|
|
using namespace std;
|
2019-12-11 16:31:36 +00:00
|
|
|
using namespace solidity;
|
|
|
|
using namespace solidity::frontend;
|
2014-12-03 15:40:37 +00:00
|
|
|
|
2017-05-10 09:56:21 +00:00
|
|
|
Json::Value Natspec::userDocumentation(ContractDefinition const& _contractDef)
|
2014-12-03 15:40:37 +00:00
|
|
|
{
|
2021-09-15 18:09:03 +00:00
|
|
|
Json::Value doc{Json::objectValue};
|
2014-12-03 15:40:37 +00:00
|
|
|
|
2020-06-09 15:30:17 +00:00
|
|
|
doc["version"] = Json::Value(c_natspecVersion);
|
|
|
|
doc["kind"] = Json::Value("user");
|
2021-02-03 12:53:39 +00:00
|
|
|
doc["methods"] = Json::objectValue;
|
2020-06-09 15:30:17 +00:00
|
|
|
|
2018-03-06 18:26:49 +00:00
|
|
|
auto constructorDefinition(_contractDef.constructor());
|
|
|
|
if (constructorDefinition)
|
|
|
|
{
|
2020-03-24 22:44:39 +00:00
|
|
|
string const value = extractDoc(constructorDefinition->annotation().docTags, "notice");
|
2018-03-06 18:26:49 +00:00
|
|
|
if (!value.empty())
|
2020-04-30 11:06:05 +00:00
|
|
|
{
|
2018-03-06 18:26:49 +00:00
|
|
|
// add the constructor, only if we have any documentation to add
|
2021-09-15 18:09:03 +00:00
|
|
|
Json::Value user{Json::objectValue};
|
2020-04-30 11:06:05 +00:00
|
|
|
user["notice"] = Json::Value(value);
|
2021-02-03 12:53:39 +00:00
|
|
|
doc["methods"]["constructor"] = user;
|
2020-04-30 11:06:05 +00:00
|
|
|
}
|
2018-03-06 18:26:49 +00:00
|
|
|
}
|
|
|
|
|
2018-07-05 22:29:13 +00:00
|
|
|
string notice = extractDoc(_contractDef.annotation().docTags, "notice");
|
|
|
|
if (!notice.empty())
|
|
|
|
doc["notice"] = Json::Value(notice);
|
|
|
|
|
2015-08-31 16:44:29 +00:00
|
|
|
for (auto const& it: _contractDef.interfaceFunctions())
|
2015-10-26 14:13:36 +00:00
|
|
|
if (it.second->hasDeclaration())
|
2020-03-05 20:59:26 +00:00
|
|
|
{
|
2020-06-29 12:30:09 +00:00
|
|
|
string value;
|
|
|
|
|
2015-10-26 14:13:36 +00:00
|
|
|
if (auto const* f = dynamic_cast<FunctionDefinition const*>(&it.second->declaration()))
|
2020-06-29 12:30:09 +00:00
|
|
|
value = extractDoc(f->annotation().docTags, "notice");
|
2020-03-24 22:44:39 +00:00
|
|
|
else if (auto var = dynamic_cast<VariableDeclaration const*>(&it.second->declaration()))
|
2020-03-05 20:59:26 +00:00
|
|
|
{
|
2020-03-24 22:44:39 +00:00
|
|
|
solAssert(var->isStateVariable() && var->isPublic(), "");
|
2020-06-29 12:30:09 +00:00
|
|
|
value = extractDoc(var->annotation().docTags, "notice");
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!value.empty())
|
|
|
|
// since @notice is the only user tag if missing function should not appear
|
2021-02-03 12:53:39 +00:00
|
|
|
doc["methods"][it.second->externalSignature()]["notice"] = value;
|
2020-03-05 20:59:26 +00:00
|
|
|
}
|
2020-05-25 06:43:57 +00:00
|
|
|
|
2020-07-07 11:52:09 +00:00
|
|
|
for (auto const& event: _contractDef.interfaceEvents())
|
2020-05-25 06:43:57 +00:00
|
|
|
{
|
|
|
|
string value = extractDoc(event->annotation().docTags, "notice");
|
|
|
|
if (!value.empty())
|
2021-02-03 12:53:39 +00:00
|
|
|
doc["events"][event->functionType(true)->externalSignature()]["notice"] = value;
|
2020-05-25 06:43:57 +00:00
|
|
|
}
|
|
|
|
|
2021-02-03 12:53:39 +00:00
|
|
|
for (auto const& error: _contractDef.interfaceErrors())
|
|
|
|
{
|
|
|
|
string value = extractDoc(error->annotation().docTags, "notice");
|
|
|
|
if (!value.empty())
|
|
|
|
{
|
2021-09-15 18:09:03 +00:00
|
|
|
Json::Value errorDoc{Json::objectValue};
|
2021-02-03 12:53:39 +00:00
|
|
|
errorDoc["notice"] = value;
|
|
|
|
doc["errors"][error->functionType(true)->externalSignature()].append(move(errorDoc));
|
|
|
|
}
|
|
|
|
}
|
2014-12-03 15:40:37 +00:00
|
|
|
|
2016-11-15 01:04:00 +00:00
|
|
|
return doc;
|
2014-12-03 15:40:37 +00:00
|
|
|
}
|
|
|
|
|
2017-05-10 09:56:21 +00:00
|
|
|
Json::Value Natspec::devDocumentation(ContractDefinition const& _contractDef)
|
2014-12-03 15:40:37 +00:00
|
|
|
{
|
2021-02-25 12:57:34 +00:00
|
|
|
Json::Value doc = extractCustomDoc(_contractDef.annotation().docTags);
|
2014-12-03 16:46:04 +00:00
|
|
|
|
2020-06-09 15:30:17 +00:00
|
|
|
doc["version"] = Json::Value(c_natspecVersion);
|
|
|
|
doc["kind"] = Json::Value("dev");
|
|
|
|
|
2015-10-26 14:13:36 +00:00
|
|
|
auto author = extractDoc(_contractDef.annotation().docTags, "author");
|
|
|
|
if (!author.empty())
|
|
|
|
doc["author"] = author;
|
|
|
|
auto title = extractDoc(_contractDef.annotation().docTags, "title");
|
|
|
|
if (!title.empty())
|
|
|
|
doc["title"] = title;
|
2018-07-05 22:29:13 +00:00
|
|
|
auto dev = extractDoc(_contractDef.annotation().docTags, "dev");
|
|
|
|
if (!dev.empty())
|
|
|
|
doc["details"] = Json::Value(dev);
|
2014-12-10 12:13:12 +00:00
|
|
|
|
2021-02-03 12:53:39 +00:00
|
|
|
doc["methods"] = Json::objectValue;
|
2018-03-06 18:26:49 +00:00
|
|
|
auto constructorDefinition(_contractDef.constructor());
|
2018-09-18 16:04:11 +00:00
|
|
|
if (constructorDefinition)
|
|
|
|
{
|
2018-03-06 18:26:49 +00:00
|
|
|
Json::Value constructor(devDocumentation(constructorDefinition->annotation().docTags));
|
|
|
|
if (!constructor.empty())
|
|
|
|
// add the constructor, only if we have any documentation to add
|
2021-02-03 12:53:39 +00:00
|
|
|
doc["methods"]["constructor"] = constructor;
|
2018-03-06 18:26:49 +00:00
|
|
|
}
|
|
|
|
|
2015-08-31 16:44:29 +00:00
|
|
|
for (auto const& it: _contractDef.interfaceFunctions())
|
2014-12-03 16:46:04 +00:00
|
|
|
{
|
2015-10-26 14:13:36 +00:00
|
|
|
if (!it.second->hasDeclaration())
|
|
|
|
continue;
|
|
|
|
if (auto fun = dynamic_cast<FunctionDefinition const*>(&it.second->declaration()))
|
2014-12-03 16:46:04 +00:00
|
|
|
{
|
2018-03-06 18:26:49 +00:00
|
|
|
Json::Value method(devDocumentation(fun->annotation().docTags));
|
2020-05-12 13:30:42 +00:00
|
|
|
// add the function, only if we have any documentation to add
|
2021-02-09 12:04:10 +00:00
|
|
|
Json::Value jsonReturn = extractReturnParameterDocs(
|
|
|
|
fun->annotation().docTags,
|
|
|
|
fun->functionType(false)->returnParameterNames()
|
|
|
|
);
|
2019-10-13 01:11:56 +00:00
|
|
|
|
2020-05-12 13:30:42 +00:00
|
|
|
if (!jsonReturn.empty())
|
2021-02-03 12:53:39 +00:00
|
|
|
method["returns"] = move(jsonReturn);
|
2019-10-13 01:11:56 +00:00
|
|
|
|
2020-05-12 13:30:42 +00:00
|
|
|
if (!method.empty())
|
2021-02-03 12:53:39 +00:00
|
|
|
doc["methods"][it.second->externalSignature()] = move(method);
|
2019-10-21 22:05:34 +00:00
|
|
|
}
|
2014-12-03 16:46:04 +00:00
|
|
|
}
|
2019-10-13 01:11:56 +00:00
|
|
|
|
2020-03-24 22:44:39 +00:00
|
|
|
for (VariableDeclaration const* varDecl: _contractDef.stateVariables())
|
|
|
|
{
|
|
|
|
if (auto devDoc = devDocumentation(varDecl->annotation().docTags); !devDoc.empty())
|
2021-02-03 12:53:39 +00:00
|
|
|
doc["stateVariables"][varDecl->name()] = devDoc;
|
2020-03-05 20:59:26 +00:00
|
|
|
|
2021-02-09 12:04:10 +00:00
|
|
|
auto const assignIfNotEmpty = [&](string const& _name, Json::Value const& _content)
|
|
|
|
{
|
|
|
|
if (!_content.empty())
|
|
|
|
doc["stateVariables"][varDecl->name()][_name] = _content;
|
|
|
|
};
|
|
|
|
|
2020-03-24 22:44:39 +00:00
|
|
|
if (varDecl->annotation().docTags.count("return") == 1)
|
2021-02-09 12:04:10 +00:00
|
|
|
assignIfNotEmpty("return", extractDoc(varDecl->annotation().docTags, "return"));
|
|
|
|
|
|
|
|
if (FunctionTypePointer functionType = varDecl->functionType(false))
|
|
|
|
assignIfNotEmpty("returns", extractReturnParameterDocs(
|
|
|
|
varDecl->annotation().docTags,
|
|
|
|
functionType->returnParameterNames()
|
|
|
|
));
|
2014-12-03 16:46:04 +00:00
|
|
|
}
|
2019-10-13 01:11:56 +00:00
|
|
|
|
2020-05-25 06:43:57 +00:00
|
|
|
for (auto const& event: _contractDef.events())
|
|
|
|
if (auto devDoc = devDocumentation(event->annotation().docTags); !devDoc.empty())
|
2021-02-03 12:53:39 +00:00
|
|
|
doc["events"][event->functionType(true)->externalSignature()] = devDoc;
|
2020-05-25 06:43:57 +00:00
|
|
|
|
2021-02-03 12:53:39 +00:00
|
|
|
for (auto const& error: _contractDef.interfaceErrors())
|
|
|
|
if (auto devDoc = devDocumentation(error->annotation().docTags); !devDoc.empty())
|
|
|
|
doc["errors"][error->functionType(true)->externalSignature()].append(devDoc);
|
2014-12-03 16:46:04 +00:00
|
|
|
|
2016-11-15 01:04:00 +00:00
|
|
|
return doc;
|
2014-12-03 16:46:04 +00:00
|
|
|
}
|
|
|
|
|
2021-02-09 12:04:10 +00:00
|
|
|
Json::Value Natspec::extractReturnParameterDocs(std::multimap<std::string, DocTag> const& _tags, vector<string> const& _returnParameterNames)
|
2019-10-27 14:27:47 +00:00
|
|
|
{
|
|
|
|
Json::Value jsonReturn{Json::objectValue};
|
|
|
|
auto returnDocs = _tags.equal_range("return");
|
|
|
|
|
2021-02-09 12:04:10 +00:00
|
|
|
if (!_returnParameterNames.empty())
|
2019-10-27 14:27:47 +00:00
|
|
|
{
|
|
|
|
size_t n = 0;
|
|
|
|
for (auto i = returnDocs.first; i != returnDocs.second; i++)
|
|
|
|
{
|
2021-02-09 12:04:10 +00:00
|
|
|
string paramName = _returnParameterNames.at(n);
|
2019-10-27 14:27:47 +00:00
|
|
|
string content = i->second.content;
|
|
|
|
|
|
|
|
if (paramName.empty())
|
|
|
|
paramName = "_" + std::to_string(n);
|
|
|
|
else
|
|
|
|
{
|
|
|
|
//check to make sure the first word of the doc str is the same as the return name
|
|
|
|
auto nameEndPos = content.find_first_of(" \t");
|
|
|
|
solAssert(content.substr(0, nameEndPos) == paramName, "No return param name given: " + paramName);
|
|
|
|
content = content.substr(nameEndPos+1);
|
|
|
|
}
|
|
|
|
|
|
|
|
jsonReturn[paramName] = Json::Value(content);
|
|
|
|
n++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return jsonReturn;
|
|
|
|
}
|
2019-10-13 01:11:56 +00:00
|
|
|
|
2017-05-10 09:56:21 +00:00
|
|
|
string Natspec::extractDoc(multimap<string, DocTag> const& _tags, string const& _name)
|
2014-12-04 16:19:47 +00:00
|
|
|
{
|
2015-10-26 14:13:36 +00:00
|
|
|
string value;
|
|
|
|
auto range = _tags.equal_range(_name);
|
|
|
|
for (auto i = range.first; i != range.second; i++)
|
|
|
|
value += i->second.content;
|
|
|
|
return value;
|
2014-12-04 16:19:47 +00:00
|
|
|
}
|
2018-03-06 18:26:49 +00:00
|
|
|
|
2021-02-25 12:57:34 +00:00
|
|
|
Json::Value Natspec::extractCustomDoc(multimap<string, DocTag> const& _tags)
|
|
|
|
{
|
|
|
|
std::map<string, string> concatenated;
|
|
|
|
for (auto const& [tag, value]: _tags)
|
|
|
|
if (boost::starts_with(tag, "custom"))
|
|
|
|
concatenated[tag] += value.content;
|
2021-09-15 18:09:03 +00:00
|
|
|
// We do not want to create an object if there are no custom tags found.
|
|
|
|
if (concatenated.empty())
|
|
|
|
return Json::nullValue;
|
|
|
|
Json::Value result{Json::objectValue};
|
2021-02-25 12:57:34 +00:00
|
|
|
for (auto& [tag, value]: concatenated)
|
|
|
|
result[tag] = move(value);
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2019-02-14 10:37:24 +00:00
|
|
|
Json::Value Natspec::devDocumentation(std::multimap<std::string, DocTag> const& _tags)
|
2018-03-06 18:26:49 +00:00
|
|
|
{
|
2021-02-25 12:57:34 +00:00
|
|
|
Json::Value json = extractCustomDoc(_tags);
|
2018-03-06 18:26:49 +00:00
|
|
|
auto dev = extractDoc(_tags, "dev");
|
|
|
|
if (!dev.empty())
|
|
|
|
json["details"] = Json::Value(dev);
|
|
|
|
|
|
|
|
auto author = extractDoc(_tags, "author");
|
|
|
|
if (!author.empty())
|
|
|
|
json["author"] = author;
|
|
|
|
|
|
|
|
Json::Value params(Json::objectValue);
|
|
|
|
auto paramRange = _tags.equal_range("param");
|
|
|
|
for (auto i = paramRange.first; i != paramRange.second; ++i)
|
|
|
|
params[i->second.paramName] = Json::Value(i->second.content);
|
|
|
|
|
|
|
|
if (!params.empty())
|
|
|
|
json["params"] = params;
|
|
|
|
|
|
|
|
return json;
|
|
|
|
}
|