solidity/libsolidity/interface/Natspec.cpp

131 lines
3.9 KiB
C++
Raw Normal View History

2017-05-10 09:54:23 +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/>.
*/
/**
* @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
*/
2017-05-10 09:56:21 +00:00
#include <libsolidity/interface/Natspec.h>
2015-10-06 11:01:55 +00:00
#include <boost/range/irange.hpp>
2015-10-20 22:21:52 +00:00
#include <libsolidity/ast/AST.h>
#include <libsolidity/interface/CompilerStack.h>
2015-10-26 14:13:36 +00:00
using namespace std;
using namespace dev;
using namespace dev::solidity;
2017-05-10 09:56:21 +00:00
Json::Value Natspec::documentation(
2015-06-09 11:20:42 +00:00
ContractDefinition const& _contractDef,
DocumentationType _type
)
{
switch(_type)
{
2015-02-09 13:12:36 +00:00
case DocumentationType::NatspecUser:
2015-07-16 13:57:57 +00:00
return userDocumentation(_contractDef);
2015-02-09 13:12:36 +00:00
case DocumentationType::NatspecDev:
2015-07-16 13:57:57 +00:00
return devDocumentation(_contractDef);
}
BOOST_THROW_EXCEPTION(InternalCompilerError() << errinfo_comment("Unknown documentation type"));
}
2017-05-10 09:56:21 +00:00
Json::Value Natspec::userDocumentation(ContractDefinition const& _contractDef)
{
Json::Value doc;
Json::Value methods(Json::objectValue);
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())
if (auto const* f = dynamic_cast<FunctionDefinition const*>(&it.second->declaration()))
{
string value = extractDoc(f->annotation().docTags, "notice");
if (!value.empty())
{
Json::Value user;
// since @notice is the only user tag if missing function should not appear
user["notice"] = Json::Value(value);
methods[it.second->externalSignature()] = user;
}
}
doc["methods"] = methods;
return doc;
}
2017-05-10 09:56:21 +00:00
Json::Value Natspec::devDocumentation(ContractDefinition const& _contractDef)
{
Json::Value doc;
Json::Value methods(Json::objectValue);
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;
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())
continue;
Json::Value method;
2015-10-26 14:13:36 +00:00
if (auto fun = dynamic_cast<FunctionDefinition const*>(&it.second->declaration()))
{
2015-10-26 14:13:36 +00:00
auto dev = extractDoc(fun->annotation().docTags, "dev");
if (!dev.empty())
method["details"] = Json::Value(dev);
2015-10-26 14:13:36 +00:00
auto author = extractDoc(fun->annotation().docTags, "author");
if (!author.empty())
method["author"] = author;
2015-10-26 14:13:36 +00:00
auto ret = extractDoc(fun->annotation().docTags, "return");
if (!ret.empty())
method["return"] = ret;
Json::Value params(Json::objectValue);
2015-10-26 14:13:36 +00:00
auto paramRange = fun->annotation().docTags.equal_range("param");
for (auto i = paramRange.first; i != paramRange.second; ++i)
params[i->second.paramName] = Json::Value(i->second.content);
2015-10-26 14:13:36 +00:00
if (!params.empty())
method["params"] = params;
2015-10-26 14:13:36 +00:00
if (!method.empty())
// add the function, only if we have any documentation to add
methods[it.second->externalSignature()] = method;
}
}
doc["methods"] = methods;
return doc;
}
2017-05-10 09:56:21 +00:00
string Natspec::extractDoc(multimap<string, DocTag> const& _tags, string const& _name)
{
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;
}