aboutsummaryrefslogtreecommitdiffstats
path: root/libsolidity/interface/InterfaceHandler.cpp
blob: 6c1bb0c4d76a5b9c78b96a8b803e6b1f4e8e995e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197

#include <libsolidity/interface/InterfaceHandler.h>
#include <boost/range/irange.hpp>
#include <libsolidity/ast/AST.h>
#include <libsolidity/interface/CompilerStack.h>

using namespace std;
using namespace dev;
using namespace dev::solidity;

Json::Value InterfaceHandler::documentation(
    ContractDefinition const& _contractDef,
    DocumentationType _type
)
{
    switch(_type)
    {
    case DocumentationType::NatspecUser:
        return userDocumentation(_contractDef);
    case DocumentationType::NatspecDev:
        return devDocumentation(_contractDef);
    case DocumentationType::ABIInterface:
        return abiInterface(_contractDef);
    }

    BOOST_THROW_EXCEPTION(InternalCompilerError() << errinfo_comment("Unknown documentation type"));
}

Json::Value InterfaceHandler::abiInterface(ContractDefinition const& _contractDef)
{
    Json::Value abi(Json::arrayValue);

    for (auto it: _contractDef.interfaceFunctions())
    {
        auto externalFunctionType = it.second->interfaceFunctionType();
        Json::Value method;
        method["type"] = "function";
        method["name"] = it.second->declaration().name();
        method["constant"] = it.second->isConstant();
        method["payable"] = it.second->isPayable();
        method["inputs"] = formatTypeList(
            externalFunctionType->parameterNames(),
            externalFunctionType->parameterTypes(),
            _contractDef.isLibrary()
        );
        method["outputs"] = formatTypeList(
            externalFunctionType->returnParameterNames(),
            externalFunctionType->returnParameterTypes(),
            _contractDef.isLibrary()
        );
        abi.append(method);
    }
    if (_contractDef.constructor())
    {
        Json::Value method;
        method["type"] = "constructor";
        auto externalFunction = FunctionType(*_contractDef.constructor(), false).interfaceFunctionType();
        solAssert(!!externalFunction, "");
        method["payable"] = externalFunction->isPayable();
        method["inputs"] = formatTypeList(
            externalFunction->parameterNames(),
            externalFunction->parameterTypes(),
            _contractDef.isLibrary()
        );
        abi.append(method);
    }
    if (_contractDef.fallbackFunction())
    {
        auto externalFunctionType = FunctionType(*_contractDef.fallbackFunction(), false).interfaceFunctionType();
        solAssert(!!externalFunctionType, "");
        Json::Value method;
        method["type"] = "fallback";
        method["payable"] = externalFunctionType->isPayable();
        abi.append(method);
    }
    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())
        {
            solAssert(!!p->annotation().type->interfaceType(false), "");
            Json::Value input;
            input["name"] = p->name();
            input["type"] = p->annotation().type->interfaceType(false)->canonicalName(false);
            input["indexed"] = p->isIndexed();
            params.append(input);
        }
        event["inputs"] = params;
        abi.append(event);
    }

    return abi;
}

Json::Value InterfaceHandler::userDocumentation(ContractDefinition const& _contractDef)
{
    Json::Value doc;
    Json::Value methods(Json::objectValue);

    for (auto const& it: _contractDef.interfaceFunctions())
        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;
}

Json::Value InterfaceHandler::devDocumentation(ContractDefinition const& _contractDef)
{
    Json::Value doc;
    Json::Value methods(Json::objectValue);

    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;

    for (auto const& it: _contractDef.interfaceFunctions())
    {
        if (!it.second->hasDeclaration())
            continue;
        Json::Value method;
        if (auto fun = dynamic_cast<FunctionDefinition const*>(&it.second->declaration()))
        {
            auto dev = extractDoc(fun->annotation().docTags, "dev");
            if (!dev.empty())
                method["details"] = Json::Value(dev);

            auto author = extractDoc(fun->annotation().docTags, "author");
            if (!author.empty())
                method["author"] = author;

            auto ret = extractDoc(fun->annotation().docTags, "return");
            if (!ret.empty())
                method["return"] = ret;

            Json::Value params(Json::objectValue);
            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);

            if (!params.empty())
                method["params"] = params;

            if (!method.empty())
                // add the function, only if we have any documentation to add
                methods[it.second->externalSignature()] = method;
        }
    }
    doc["methods"] = methods;

    return doc;
}

Json::Value InterfaceHandler::formatTypeList(
    vector<string> const& _names,
    vector<TypePointer> const& _types,
    bool _forLibrary
)
{
    Json::Value params(Json::arrayValue);
    solAssert(_names.size() == _types.size(), "Names and types vector size does not match");
    for (unsigned i = 0; i < _names.size(); ++i)
    {
        solAssert(_types[i], "");
        Json::Value param;
        param["name"] = _names[i];
        param["type"] = _types[i]->canonicalName(_forLibrary);
        params.append(param);
    }
    return params;
}

string InterfaceHandler::extractDoc(multimap<string, DocTag> const& _tags, string const& _name)
{
    string value;
    auto range = _tags.equal_range(_name);
    for (auto i = range.first; i != range.second; i++)
        value += i->second.content;
    return value;
}