aboutsummaryrefslogtreecommitdiffstats
path: root/packages/sol-doc/src/solidity_doc_generator.ts
blob: bb2f4cea6803118e131b3a51afacbbc47a056e8b (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
import * as _ from 'lodash';

import { MethodAbi } from 'ethereum-types';

import { Compiler, CompilerOptions } from '@0xproject/sol-compiler';
import { DocAgnosticFormat } from '@0xproject/types';
import { logUtils } from '@0xproject/utils';

/**
 * Compiles solidity files to both their ABI and devdoc outputs, and transforms
 * those outputs into the types that feed into documentation generation tools.
 */
export class SolidityDocGenerator {
    private readonly _compilerOptions: CompilerOptions;
    /**
     * Instantiate the generator.
     * @param contractsDir the directory in which to find the contracts to be compiled
     */
    constructor(contractsDir: string) {
        // instantiate sol-compiler, passing in options to say we want abi and devdoc
        this._compilerOptions = {
            contractsDir,
            contracts: '*',
            compilerSettings: {
                outputSelection: {
                    ['*']: {
                        ['*']: ['abi', 'devdoc'],
                    },
                },
            },
        };
    }
    /**
     * Invoke the compiler and transform its outputs.
     * @param contractsToCompile list of contracts for which to generate doc objects
     * @return doc objects for use with documentation generation tools.
     */
    public async generateAsync(contractsToCompile: string[]): Promise<DocAgnosticFormat> {
        const shouldOverrideCatchAllContractsConfig = !_.isUndefined(contractsToCompile);
        if (shouldOverrideCatchAllContractsConfig) {
            this._compilerOptions.contracts = contractsToCompile;
        }

        const doc: DocAgnosticFormat = {};

        const compiler = new Compiler(this._compilerOptions);
        const compilerOutputs = await compiler.getCompilerOutputsAsync();
        for (const compilerOutput of compilerOutputs) {
            const solidityModules = _.keys(compilerOutput.contracts);
            for (const solidityModule of solidityModules) {
                const compiledSolidityModule = compilerOutput.contracts[solidityModule];

                const contracts = _.keys(compiledSolidityModule);
                for (const contract of contracts) {
                    const compiledContract = compiledSolidityModule[contract];
                    if (_.isUndefined(compiledContract.abi)) {
                        throw new Error('compiled contract did not contain ABI output.');
                    }
                    if (_.isUndefined(compiledContract.devdoc)) {
                        throw new Error('compiled contract did not contain devdoc output.');
                    }

                    logUtils.log(
                        `TODO: extract data from ${contract}'s abi (eg name, which is "${
                            (compiledContract.abi[0] as MethodAbi).name
                        }", etc) and devdoc (eg title, which is "${
                            compiledContract.devdoc.title
                        }") outputs, and insert it into \`doc\``,
                    );
                }
            }
        }

        return doc;
    }
}