2014-10-25 15:13:40 +00:00
|
|
|
/*
|
|
|
|
This file is part of cpp-ethereum.
|
|
|
|
|
|
|
|
cpp-ethereum 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.
|
|
|
|
|
|
|
|
cpp-ethereum 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 cpp-ethereum. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
/**
|
|
|
|
* @author Christian <c@ethdev.com>
|
|
|
|
* @date 2014
|
2014-10-25 16:30:43 +00:00
|
|
|
* Solidity commandline compiler.
|
2014-10-25 15:13:40 +00:00
|
|
|
*/
|
2014-10-10 14:37:54 +00:00
|
|
|
|
|
|
|
#include <string>
|
|
|
|
#include <iostream>
|
|
|
|
|
|
|
|
#include <libdevcore/Common.h>
|
|
|
|
#include <libdevcore/CommonData.h>
|
|
|
|
#include <libdevcore/CommonIO.h>
|
2014-11-11 16:41:48 +00:00
|
|
|
#include <libevmcore/Instruction.h>
|
2014-10-10 14:37:54 +00:00
|
|
|
#include <libsolidity/Scanner.h>
|
|
|
|
#include <libsolidity/Parser.h>
|
|
|
|
#include <libsolidity/ASTPrinter.h>
|
2014-10-13 13:07:21 +00:00
|
|
|
#include <libsolidity/NameAndTypeResolver.h>
|
2014-10-16 15:56:10 +00:00
|
|
|
#include <libsolidity/Exceptions.h>
|
2014-11-11 16:41:48 +00:00
|
|
|
#include <libsolidity/CompilerStack.h>
|
2014-10-23 17:22:30 +00:00
|
|
|
#include <libsolidity/SourceReferenceFormatter.h>
|
2014-10-10 14:37:54 +00:00
|
|
|
|
2014-10-25 14:52:22 +00:00
|
|
|
using namespace std;
|
2014-10-16 15:56:10 +00:00
|
|
|
using namespace dev;
|
|
|
|
using namespace solidity;
|
2014-10-10 14:37:54 +00:00
|
|
|
|
|
|
|
void help()
|
|
|
|
{
|
2014-10-25 14:52:22 +00:00
|
|
|
cout << "Usage solc [OPTIONS] <file>" << endl
|
|
|
|
<< "Options:" << endl
|
2014-11-06 15:30:50 +00:00
|
|
|
<< " -o,--optimize Optimize the bytecode for size." << endl
|
|
|
|
<< " -h,--help Show this help message and exit." << endl
|
2014-10-25 14:52:22 +00:00
|
|
|
<< " -V,--version Show the version and exit." << endl;
|
2014-10-10 14:37:54 +00:00
|
|
|
exit(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
void version()
|
|
|
|
{
|
2014-10-25 14:52:22 +00:00
|
|
|
cout << "solc, the solidity complier commandline interface " << dev::Version << endl
|
|
|
|
<< " by Christian <c@ethdev.com>, (c) 2014." << endl
|
|
|
|
<< "Build: " << DEV_QUOTED(ETH_BUILD_PLATFORM) << "/" << DEV_QUOTED(ETH_BUILD_TYPE) << endl;
|
2014-10-10 14:37:54 +00:00
|
|
|
exit(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
int main(int argc, char** argv)
|
|
|
|
{
|
2014-12-03 17:52:28 +00:00
|
|
|
vector<string> infiles;
|
2014-11-06 15:30:50 +00:00
|
|
|
bool optimize = false;
|
2014-10-10 14:37:54 +00:00
|
|
|
for (int i = 1; i < argc; ++i)
|
|
|
|
{
|
2014-10-25 14:52:22 +00:00
|
|
|
string arg = argv[i];
|
2014-11-06 15:30:50 +00:00
|
|
|
if (arg == "-o" || arg == "--optimize")
|
|
|
|
optimize = true;
|
|
|
|
else if (arg == "-h" || arg == "--help")
|
2014-10-10 14:37:54 +00:00
|
|
|
help();
|
|
|
|
else if (arg == "-V" || arg == "--version")
|
|
|
|
version();
|
|
|
|
else
|
2014-12-03 17:52:28 +00:00
|
|
|
infiles.push_back(argv[i]);
|
2014-10-10 14:37:54 +00:00
|
|
|
}
|
2014-12-03 17:52:28 +00:00
|
|
|
map<string, string> sourceCodes;
|
|
|
|
if (infiles.empty())
|
2014-10-10 14:37:54 +00:00
|
|
|
{
|
2014-10-25 14:52:22 +00:00
|
|
|
string s;
|
|
|
|
while (!cin.eof())
|
2014-10-10 14:37:54 +00:00
|
|
|
{
|
2014-10-25 14:52:22 +00:00
|
|
|
getline(cin, s);
|
2014-12-03 17:52:28 +00:00
|
|
|
sourceCodes["<stdin>"].append(s);
|
2014-10-10 14:37:54 +00:00
|
|
|
}
|
2014-10-16 12:08:54 +00:00
|
|
|
}
|
|
|
|
else
|
2014-12-03 17:52:28 +00:00
|
|
|
for (string const& infile: infiles)
|
|
|
|
sourceCodes[infile] = asString(dev::contents(infile));
|
2014-10-16 15:56:10 +00:00
|
|
|
|
2014-11-11 16:41:48 +00:00
|
|
|
CompilerStack compiler;
|
2014-10-16 15:56:10 +00:00
|
|
|
try
|
|
|
|
{
|
2014-12-03 17:52:28 +00:00
|
|
|
for (auto const& sourceCode: sourceCodes)
|
|
|
|
compiler.addSource(sourceCode.first, sourceCode.second);
|
|
|
|
compiler.compile(optimize);
|
2014-10-16 15:56:10 +00:00
|
|
|
}
|
2014-10-23 17:22:30 +00:00
|
|
|
catch (ParserError const& exception)
|
2014-10-16 12:08:54 +00:00
|
|
|
{
|
2014-12-03 17:52:28 +00:00
|
|
|
SourceReferenceFormatter::printExceptionInformation(cerr, exception, "Parser error", compiler);
|
2014-10-16 15:56:10 +00:00
|
|
|
return -1;
|
2014-10-10 14:37:54 +00:00
|
|
|
}
|
2014-10-23 17:22:30 +00:00
|
|
|
catch (DeclarationError const& exception)
|
2014-10-16 15:56:10 +00:00
|
|
|
{
|
2014-12-03 17:52:28 +00:00
|
|
|
SourceReferenceFormatter::printExceptionInformation(cerr, exception, "Declaration error", compiler);
|
2014-10-16 15:56:10 +00:00
|
|
|
return -1;
|
|
|
|
}
|
2014-10-23 17:22:30 +00:00
|
|
|
catch (TypeError const& exception)
|
2014-10-16 15:56:10 +00:00
|
|
|
{
|
2014-12-03 17:52:28 +00:00
|
|
|
SourceReferenceFormatter::printExceptionInformation(cerr, exception, "Type error", compiler);
|
2014-10-16 15:56:10 +00:00
|
|
|
return -1;
|
|
|
|
}
|
2014-10-25 14:52:22 +00:00
|
|
|
catch (CompilerError const& exception)
|
|
|
|
{
|
2014-12-03 17:52:28 +00:00
|
|
|
SourceReferenceFormatter::printExceptionInformation(cerr, exception, "Compiler error", compiler);
|
2014-10-25 14:52:22 +00:00
|
|
|
return -1;
|
|
|
|
}
|
2014-11-05 13:20:56 +00:00
|
|
|
catch (InternalCompilerError const& exception)
|
|
|
|
{
|
2014-12-03 17:52:28 +00:00
|
|
|
SourceReferenceFormatter::printExceptionInformation(cerr, exception, "Internal compiler error", compiler);
|
2014-11-05 13:20:56 +00:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
catch (Exception const& exception)
|
|
|
|
{
|
|
|
|
cerr << "Exception during compilation: " << boost::diagnostic_information(exception) << endl;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
catch (...)
|
|
|
|
{
|
|
|
|
cerr << "Unknown exception during compilation." << endl;
|
|
|
|
return -1;
|
|
|
|
}
|
2014-10-25 14:52:22 +00:00
|
|
|
|
2014-12-03 17:52:28 +00:00
|
|
|
cout << "Syntax trees:" << endl << endl;
|
|
|
|
for (auto const& sourceCode: sourceCodes)
|
|
|
|
{
|
|
|
|
cout << endl << "======= " << sourceCode.first << " =======" << endl;
|
|
|
|
ASTPrinter printer(compiler.getAST(sourceCode.first), sourceCode.second);
|
|
|
|
printer.print(cout);
|
|
|
|
}
|
|
|
|
vector<string> contracts = compiler.getContractNames();
|
|
|
|
cout << endl << "Contracts:" << endl;
|
|
|
|
for (string const& contract: contracts)
|
|
|
|
{
|
|
|
|
cout << endl << "======= " << contract << " =======" << endl
|
|
|
|
<< "EVM assembly:" << endl;
|
|
|
|
compiler.streamAssembly(cout, contract);
|
|
|
|
cout << "Opcodes:" << endl
|
|
|
|
<< eth::disassemble(compiler.getBytecode(contract)) << endl
|
|
|
|
<< "Binary: " << toHex(compiler.getBytecode(contract)) << endl
|
2014-12-05 14:27:07 +00:00
|
|
|
<< "Interface specification: " << compiler.getJsonDocumentation(contract, ABI_INTERFACE) << endl
|
|
|
|
<< "Natspec user documentation: " << compiler.getJsonDocumentation(contract, NATSPEC_USER) << endl
|
|
|
|
<< "Natspec developer documentation: " << compiler.getJsonDocumentation(contract, NATSPEC_DEV) << endl;
|
2014-12-03 17:52:28 +00:00
|
|
|
}
|
2014-10-20 10:41:56 +00:00
|
|
|
|
2014-10-10 14:37:54 +00:00
|
|
|
return 0;
|
|
|
|
}
|