2014-12-09 12:43:08 +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 Lefteris <lefteris@ethdev.com>
|
2015-01-09 07:05:52 +00:00
|
|
|
* @author Gav Wood <g@ethdev.com>
|
2014-12-09 12:43:08 +00:00
|
|
|
* @date 2014
|
2014-12-09 16:39:34 +00:00
|
|
|
* Solidity command line interface.
|
2014-12-09 12:43:08 +00:00
|
|
|
*/
|
2014-12-09 16:39:34 +00:00
|
|
|
#include "CommandLineInterface.h"
|
2014-12-09 12:43:08 +00:00
|
|
|
|
|
|
|
#include <string>
|
|
|
|
#include <iostream>
|
|
|
|
#include <fstream>
|
|
|
|
|
|
|
|
#include <boost/filesystem.hpp>
|
|
|
|
|
|
|
|
#include "BuildInfo.h"
|
|
|
|
#include <libdevcore/Common.h>
|
|
|
|
#include <libdevcore/CommonData.h>
|
|
|
|
#include <libdevcore/CommonIO.h>
|
|
|
|
#include <libevmcore/Instruction.h>
|
|
|
|
#include <libsolidity/Scanner.h>
|
|
|
|
#include <libsolidity/Parser.h>
|
|
|
|
#include <libsolidity/ASTPrinter.h>
|
2015-01-05 14:46:40 +00:00
|
|
|
#include <libsolidity/ASTJsonConverter.h>
|
2014-12-09 12:43:08 +00:00
|
|
|
#include <libsolidity/NameAndTypeResolver.h>
|
|
|
|
#include <libsolidity/Exceptions.h>
|
|
|
|
#include <libsolidity/CompilerStack.h>
|
|
|
|
#include <libsolidity/SourceReferenceFormatter.h>
|
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
namespace po = boost::program_options;
|
|
|
|
|
|
|
|
namespace dev
|
|
|
|
{
|
|
|
|
namespace solidity
|
|
|
|
{
|
|
|
|
|
2014-12-16 22:55:38 +00:00
|
|
|
// LTODO: Maybe some argument class pairing names with
|
|
|
|
// extensions and other attributes would be a better choice here?
|
2015-01-09 07:16:35 +00:00
|
|
|
static string const g_argAbiStr = "json-abi";
|
2015-01-09 07:05:52 +00:00
|
|
|
static string const g_argSolAbiStr = "sol-abi";
|
2014-12-16 23:17:38 +00:00
|
|
|
static string const g_argAsmStr = "asm";
|
|
|
|
static string const g_argAstStr = "ast";
|
2015-01-05 14:46:40 +00:00
|
|
|
static string const g_argAstJson = "ast-json";
|
2014-12-16 23:17:38 +00:00
|
|
|
static string const g_argBinaryStr = "binary";
|
|
|
|
static string const g_argOpcodesStr = "opcodes";
|
|
|
|
static string const g_argNatspecDevStr = "natspec-dev";
|
|
|
|
static string const g_argNatspecUserStr = "natspec-user";
|
2014-12-16 22:55:38 +00:00
|
|
|
|
2014-12-09 12:43:08 +00:00
|
|
|
static void version()
|
|
|
|
{
|
2015-01-09 07:05:52 +00:00
|
|
|
cout << "solc, the solidity compiler commandline interface " << dev::Version << endl
|
2014-12-09 12:43:08 +00:00
|
|
|
<< " by Christian <c@ethdev.com> and Lefteris <lefteris@ethdev.com>, (c) 2014." << endl
|
|
|
|
<< "Build: " << DEV_QUOTED(ETH_BUILD_PLATFORM) << "/" << DEV_QUOTED(ETH_BUILD_TYPE) << endl;
|
|
|
|
exit(0);
|
|
|
|
}
|
|
|
|
|
2014-12-16 22:55:38 +00:00
|
|
|
static inline bool argToStdout(po::variables_map const& _args, string const& _name)
|
2014-12-09 12:43:08 +00:00
|
|
|
{
|
|
|
|
return _args.count(_name) && _args[_name].as<OutputType>() != OutputType::FILE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool needStdout(po::variables_map const& _args)
|
|
|
|
{
|
2015-01-05 14:46:40 +00:00
|
|
|
|
2015-01-09 07:05:52 +00:00
|
|
|
return
|
|
|
|
argToStdout(_args, g_argAbiStr) || argToStdout(_args, g_argSolAbiStr) ||
|
2015-01-05 14:46:40 +00:00
|
|
|
argToStdout(_args, g_argNatspecUserStr) || argToStdout(_args, g_argAstJson) ||
|
2015-01-09 07:05:52 +00:00
|
|
|
argToStdout(_args, g_argNatspecDevStr) || argToStdout(_args, g_argAsmStr) ||
|
|
|
|
argToStdout(_args, g_argOpcodesStr) || argToStdout(_args, g_argBinaryStr);
|
2014-12-09 12:43:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline bool outputToFile(OutputType type)
|
|
|
|
{
|
2014-12-09 16:39:34 +00:00
|
|
|
return type == OutputType::FILE || type == OutputType::BOTH;
|
2014-12-09 12:43:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline bool outputToStdout(OutputType type)
|
|
|
|
{
|
2014-12-09 16:39:34 +00:00
|
|
|
return type == OutputType::STDOUT || type == OutputType::BOTH;
|
2014-12-09 12:43:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static std::istream& operator>>(std::istream& _in, OutputType& io_output)
|
|
|
|
{
|
|
|
|
std::string token;
|
|
|
|
_in >> token;
|
|
|
|
if (token == "stdout")
|
|
|
|
io_output = OutputType::STDOUT;
|
|
|
|
else if (token == "file")
|
|
|
|
io_output = OutputType::FILE;
|
|
|
|
else if (token == "both")
|
|
|
|
io_output = OutputType::BOTH;
|
|
|
|
else
|
|
|
|
throw boost::program_options::invalid_option_value(token);
|
|
|
|
return _in;
|
|
|
|
}
|
|
|
|
|
2014-12-09 19:29:29 +00:00
|
|
|
void CommandLineInterface::handleBinary(string const& _contract)
|
2014-12-09 12:43:08 +00:00
|
|
|
{
|
2014-12-16 22:55:38 +00:00
|
|
|
auto choice = m_args[g_argBinaryStr].as<OutputType>();
|
2014-12-09 19:29:29 +00:00
|
|
|
if (outputToStdout(choice))
|
2014-12-09 12:43:08 +00:00
|
|
|
{
|
2014-12-09 19:29:29 +00:00
|
|
|
cout << "Binary: " << endl;
|
|
|
|
cout << toHex(m_compiler.getBytecode(_contract)) << endl;
|
|
|
|
}
|
2014-12-09 12:43:08 +00:00
|
|
|
|
2014-12-09 19:29:29 +00:00
|
|
|
if (outputToFile(choice))
|
|
|
|
{
|
|
|
|
ofstream outFile(_contract + ".binary");
|
|
|
|
outFile << toHex(m_compiler.getBytecode(_contract));
|
|
|
|
outFile.close();
|
|
|
|
}
|
|
|
|
}
|
2014-12-09 17:17:54 +00:00
|
|
|
|
2014-12-09 19:29:29 +00:00
|
|
|
void CommandLineInterface::handleOpcode(string const& _contract)
|
|
|
|
{
|
2014-12-16 22:55:38 +00:00
|
|
|
auto choice = m_args[g_argOpcodesStr].as<OutputType>();
|
2014-12-09 19:29:29 +00:00
|
|
|
if (outputToStdout(choice))
|
|
|
|
{
|
|
|
|
cout << "Opcodes: " << endl;
|
2014-12-16 22:31:22 +00:00
|
|
|
cout << eth::disassemble(m_compiler.getBytecode(_contract));
|
2014-12-09 19:29:29 +00:00
|
|
|
cout << endl;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (outputToFile(choice))
|
|
|
|
{
|
|
|
|
ofstream outFile(_contract + ".opcode");
|
2014-12-16 22:31:22 +00:00
|
|
|
outFile << eth::disassemble(m_compiler.getBytecode(_contract));
|
2014-12-09 19:29:29 +00:00
|
|
|
outFile.close();
|
2014-12-09 12:43:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-12-09 19:29:29 +00:00
|
|
|
void CommandLineInterface::handleBytecode(string const& _contract)
|
|
|
|
{
|
2014-12-16 22:55:38 +00:00
|
|
|
if (m_args.count(g_argOpcodesStr))
|
2014-12-09 19:29:29 +00:00
|
|
|
handleOpcode(_contract);
|
2014-12-16 22:55:38 +00:00
|
|
|
if (m_args.count(g_argBinaryStr))
|
2014-12-09 19:29:29 +00:00
|
|
|
handleBinary(_contract);
|
|
|
|
}
|
|
|
|
|
2015-01-09 07:05:52 +00:00
|
|
|
void CommandLineInterface::handleMeta(DocumentationType _type, string const& _contract)
|
2014-12-09 12:43:08 +00:00
|
|
|
{
|
|
|
|
std::string argName;
|
|
|
|
std::string suffix;
|
|
|
|
std::string title;
|
|
|
|
switch(_type)
|
|
|
|
{
|
|
|
|
case DocumentationType::ABI_INTERFACE:
|
2014-12-16 22:55:38 +00:00
|
|
|
argName = g_argAbiStr;
|
2014-12-09 12:43:08 +00:00
|
|
|
suffix = ".abi";
|
2015-01-09 07:09:30 +00:00
|
|
|
title = "Contract JSON ABI";
|
2014-12-09 12:43:08 +00:00
|
|
|
break;
|
2015-01-09 07:05:52 +00:00
|
|
|
case DocumentationType::ABI_SOLIDITY_INTERFACE:
|
|
|
|
argName = g_argSolAbiStr;
|
|
|
|
suffix = ".sol";
|
|
|
|
title = "Contract Solidity ABI";
|
|
|
|
break;
|
2014-12-09 12:43:08 +00:00
|
|
|
case DocumentationType::NATSPEC_USER:
|
2015-01-09 07:05:52 +00:00
|
|
|
argName = g_argNatspecUserStr;
|
2014-12-09 12:43:08 +00:00
|
|
|
suffix = ".docuser";
|
|
|
|
title = "User Documentation";
|
|
|
|
break;
|
|
|
|
case DocumentationType::NATSPEC_DEV:
|
2014-12-16 22:55:38 +00:00
|
|
|
argName = g_argNatspecDevStr;
|
2014-12-09 12:43:08 +00:00
|
|
|
suffix = ".docdev";
|
|
|
|
title = "Developer Documentation";
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
// should never happen
|
|
|
|
BOOST_THROW_EXCEPTION(InternalCompilerError() << errinfo_comment("Unknown documentation _type"));
|
|
|
|
}
|
|
|
|
|
|
|
|
if (m_args.count(argName))
|
|
|
|
{
|
|
|
|
auto choice = m_args[argName].as<OutputType>();
|
|
|
|
if (outputToStdout(choice))
|
|
|
|
{
|
|
|
|
cout << title << endl;
|
2015-01-09 07:09:30 +00:00
|
|
|
cout << m_compiler.getMetadata(_contract, _type) << endl;
|
2014-12-09 12:43:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (outputToFile(choice))
|
|
|
|
{
|
|
|
|
ofstream outFile(_contract + suffix);
|
2015-01-09 07:05:52 +00:00
|
|
|
outFile << m_compiler.getMetadata(_contract, _type);
|
2014-12-09 12:43:08 +00:00
|
|
|
outFile.close();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-12-09 16:39:34 +00:00
|
|
|
bool CommandLineInterface::parseArguments(int argc, char** argv)
|
|
|
|
{
|
|
|
|
#define OUTPUT_TYPE_STR "Legal values:\n" \
|
|
|
|
"\tstdout: Print it to standard output\n" \
|
|
|
|
"\tfile: Print it to a file with same name\n" \
|
|
|
|
"\tboth: Print both to a file and the stdout\n"
|
|
|
|
// Declare the supported options.
|
|
|
|
po::options_description desc("Allowed options");
|
|
|
|
desc.add_options()
|
|
|
|
("help", "Show help message and exit")
|
|
|
|
("version", "Show version and exit")
|
|
|
|
("optimize", po::value<bool>()->default_value(false), "Optimize bytecode for size")
|
|
|
|
("input-file", po::value<vector<string>>(), "input file")
|
2014-12-16 22:55:38 +00:00
|
|
|
(g_argAstStr.c_str(), po::value<OutputType>(),
|
2014-12-09 16:39:34 +00:00
|
|
|
"Request to output the AST of the contract. " OUTPUT_TYPE_STR)
|
2015-01-05 14:46:40 +00:00
|
|
|
(g_argAstJson.c_str(), po::value<OutputType>(),
|
|
|
|
"Request to output the AST of the contract in JSON format. " OUTPUT_TYPE_STR)
|
2014-12-16 22:55:38 +00:00
|
|
|
(g_argAsmStr.c_str(), po::value<OutputType>(),
|
|
|
|
"Request to output the EVM assembly of the contract. " OUTPUT_TYPE_STR)
|
|
|
|
(g_argOpcodesStr.c_str(), po::value<OutputType>(),
|
|
|
|
"Request to output the Opcodes of the contract. " OUTPUT_TYPE_STR)
|
|
|
|
(g_argBinaryStr.c_str(), po::value<OutputType>(),
|
|
|
|
"Request to output the contract in binary (hexadecimal). " OUTPUT_TYPE_STR)
|
|
|
|
(g_argAbiStr.c_str(), po::value<OutputType>(),
|
2015-01-09 07:05:52 +00:00
|
|
|
"Request to output the contract's JSON ABI interface. " OUTPUT_TYPE_STR)
|
|
|
|
(g_argSolAbiStr.c_str(), po::value<OutputType>(),
|
|
|
|
"Request to output the contract's Solidity ABI interface. " OUTPUT_TYPE_STR)
|
2014-12-16 22:55:38 +00:00
|
|
|
(g_argNatspecUserStr.c_str(), po::value<OutputType>(),
|
|
|
|
"Request to output the contract's Natspec user documentation. " OUTPUT_TYPE_STR)
|
|
|
|
(g_argNatspecDevStr.c_str(), po::value<OutputType>(),
|
|
|
|
"Request to output the contract's Natspec developer documentation. " OUTPUT_TYPE_STR);
|
2014-12-09 16:39:34 +00:00
|
|
|
#undef OUTPUT_TYPE_STR
|
2014-12-09 12:43:08 +00:00
|
|
|
|
2014-12-09 16:39:34 +00:00
|
|
|
// All positional options should be interpreted as input files
|
|
|
|
po::positional_options_description p;
|
|
|
|
p.add("input-file", -1);
|
2014-12-09 12:43:08 +00:00
|
|
|
|
2014-12-09 16:39:34 +00:00
|
|
|
// parse the compiler arguments
|
|
|
|
try
|
|
|
|
{
|
|
|
|
po::store(po::command_line_parser(argc, argv).options(desc).positional(p).allow_unregistered().run(), m_args);
|
|
|
|
}
|
2014-12-17 16:08:57 +00:00
|
|
|
catch (po::error const& _exception)
|
2014-12-09 16:39:34 +00:00
|
|
|
{
|
2014-12-17 16:08:57 +00:00
|
|
|
cout << _exception.what() << endl;
|
2014-12-09 16:39:34 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
po::notify(m_args);
|
2014-12-09 12:43:08 +00:00
|
|
|
|
2014-12-09 16:39:34 +00:00
|
|
|
if (m_args.count("help"))
|
|
|
|
{
|
|
|
|
cout << desc;
|
|
|
|
return false;
|
|
|
|
}
|
2014-12-09 12:43:08 +00:00
|
|
|
|
2014-12-09 16:39:34 +00:00
|
|
|
if (m_args.count("version"))
|
|
|
|
{
|
|
|
|
version();
|
|
|
|
return false;
|
|
|
|
}
|
2014-12-09 12:43:08 +00:00
|
|
|
|
2014-12-09 16:39:34 +00:00
|
|
|
return true;
|
2014-12-09 12:43:08 +00:00
|
|
|
}
|
|
|
|
|
2014-12-09 16:39:34 +00:00
|
|
|
bool CommandLineInterface::processInput()
|
2014-12-09 12:43:08 +00:00
|
|
|
{
|
|
|
|
if (!m_args.count("input-file"))
|
|
|
|
{
|
|
|
|
string s;
|
|
|
|
while (!cin.eof())
|
|
|
|
{
|
|
|
|
getline(cin, s);
|
|
|
|
m_sourceCodes["<stdin>"].append(s);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
for (string const& infile: m_args["input-file"].as<vector<string>>())
|
2014-12-10 23:22:35 +00:00
|
|
|
{
|
|
|
|
auto path = boost::filesystem::path(infile);
|
|
|
|
if (!boost::filesystem::exists(path))
|
|
|
|
{
|
|
|
|
cout << "Skipping non existant input file \"" << infile << "\"" << endl;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!boost::filesystem::is_regular_file(path))
|
|
|
|
{
|
|
|
|
cout << "\"" << infile << "\" is not a valid file. Skipping" << endl;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2014-12-09 12:43:08 +00:00
|
|
|
m_sourceCodes[infile] = asString(dev::contents(infile));
|
2014-12-10 23:22:35 +00:00
|
|
|
}
|
2014-12-09 12:43:08 +00:00
|
|
|
|
|
|
|
try
|
|
|
|
{
|
|
|
|
for (auto const& sourceCode: m_sourceCodes)
|
|
|
|
m_compiler.addSource(sourceCode.first, sourceCode.second);
|
2014-12-09 16:39:34 +00:00
|
|
|
// TODO: Perhaps we should not compile unless requested
|
2014-12-09 12:43:08 +00:00
|
|
|
m_compiler.compile(m_args["optimize"].as<bool>());
|
|
|
|
}
|
2014-12-17 16:08:57 +00:00
|
|
|
catch (ParserError const& _exception)
|
2014-12-09 12:43:08 +00:00
|
|
|
{
|
2014-12-17 16:08:57 +00:00
|
|
|
SourceReferenceFormatter::printExceptionInformation(cerr, _exception, "Parser error", m_compiler);
|
2014-12-09 12:43:08 +00:00
|
|
|
return false;
|
|
|
|
}
|
2014-12-17 16:08:57 +00:00
|
|
|
catch (DeclarationError const& _exception)
|
2014-12-09 12:43:08 +00:00
|
|
|
{
|
2014-12-17 16:08:57 +00:00
|
|
|
SourceReferenceFormatter::printExceptionInformation(cerr, _exception, "Declaration error", m_compiler);
|
2014-12-09 12:43:08 +00:00
|
|
|
return false;
|
|
|
|
}
|
2014-12-17 16:08:57 +00:00
|
|
|
catch (TypeError const& _exception)
|
2014-12-09 12:43:08 +00:00
|
|
|
{
|
2014-12-17 16:08:57 +00:00
|
|
|
SourceReferenceFormatter::printExceptionInformation(cerr, _exception, "Type error", m_compiler);
|
2014-12-09 12:43:08 +00:00
|
|
|
return false;
|
|
|
|
}
|
2014-12-17 16:08:57 +00:00
|
|
|
catch (CompilerError const& _exception)
|
2014-12-09 12:43:08 +00:00
|
|
|
{
|
2014-12-17 16:08:57 +00:00
|
|
|
SourceReferenceFormatter::printExceptionInformation(cerr, _exception, "Compiler error", m_compiler);
|
2014-12-09 12:43:08 +00:00
|
|
|
return false;
|
|
|
|
}
|
2014-12-17 16:08:57 +00:00
|
|
|
catch (InternalCompilerError const& _exception)
|
2014-12-09 12:43:08 +00:00
|
|
|
{
|
2014-12-17 15:23:18 +00:00
|
|
|
cerr << "Internal compiler error during compilation:" << endl
|
2014-12-17 16:08:57 +00:00
|
|
|
<< boost::diagnostic_information(_exception);
|
2014-12-09 12:43:08 +00:00
|
|
|
return false;
|
|
|
|
}
|
2014-12-17 16:08:57 +00:00
|
|
|
catch (Exception const& _exception)
|
2014-12-09 12:43:08 +00:00
|
|
|
{
|
2014-12-17 16:08:57 +00:00
|
|
|
cerr << "Exception during compilation: " << boost::diagnostic_information(_exception) << endl;
|
2014-12-09 12:43:08 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
catch (...)
|
|
|
|
{
|
|
|
|
cerr << "Unknown exception during compilation." << endl;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2014-12-09 16:39:34 +00:00
|
|
|
return true;
|
2014-12-09 12:43:08 +00:00
|
|
|
}
|
|
|
|
|
2015-01-05 14:46:40 +00:00
|
|
|
void CommandLineInterface::handleAst(std::string const& _argStr)
|
2014-12-09 12:43:08 +00:00
|
|
|
{
|
2015-01-05 14:46:40 +00:00
|
|
|
std::string title;
|
|
|
|
std::string suffix;
|
|
|
|
|
|
|
|
if (_argStr == g_argAstStr)
|
|
|
|
{
|
|
|
|
title = "Syntax trees:";
|
|
|
|
suffix = ".ast";
|
|
|
|
}
|
|
|
|
else if (_argStr == g_argAstJson)
|
|
|
|
{
|
|
|
|
title = "JSON AST:";
|
|
|
|
suffix = ".json";
|
|
|
|
}
|
|
|
|
else
|
|
|
|
BOOST_THROW_EXCEPTION(InternalCompilerError() << errinfo_comment("Illegal argStr for AST"));
|
|
|
|
|
2014-12-09 12:43:08 +00:00
|
|
|
// do we need AST output?
|
2015-01-05 14:46:40 +00:00
|
|
|
if (m_args.count(_argStr))
|
2014-12-09 12:43:08 +00:00
|
|
|
{
|
2015-01-05 14:46:40 +00:00
|
|
|
auto choice = m_args[_argStr].as<OutputType>();
|
2014-12-09 12:43:08 +00:00
|
|
|
if (outputToStdout(choice))
|
|
|
|
{
|
2015-01-05 14:46:40 +00:00
|
|
|
cout << title << endl << endl;
|
2014-12-09 12:43:08 +00:00
|
|
|
for (auto const& sourceCode: m_sourceCodes)
|
|
|
|
{
|
|
|
|
cout << endl << "======= " << sourceCode.first << " =======" << endl;
|
2015-01-05 14:46:40 +00:00
|
|
|
if (_argStr == g_argAstStr)
|
|
|
|
{
|
|
|
|
ASTPrinter printer(m_compiler.getAST(sourceCode.first), sourceCode.second);
|
|
|
|
printer.print(cout);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ASTJsonConverter converter(m_compiler.getAST(sourceCode.first));
|
|
|
|
converter.print(cout);
|
|
|
|
}
|
2014-12-09 12:43:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (outputToFile(choice))
|
|
|
|
{
|
|
|
|
for (auto const& sourceCode: m_sourceCodes)
|
|
|
|
{
|
|
|
|
boost::filesystem::path p(sourceCode.first);
|
|
|
|
ofstream outFile(p.stem().string() + ".ast");
|
2015-01-05 14:46:40 +00:00
|
|
|
if (_argStr == g_argAstStr)
|
|
|
|
{
|
|
|
|
ASTPrinter printer(m_compiler.getAST(sourceCode.first), sourceCode.second);
|
|
|
|
printer.print(outFile);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ASTJsonConverter converter(m_compiler.getAST(sourceCode.first));
|
|
|
|
converter.print(outFile);
|
|
|
|
}
|
2014-12-09 12:43:08 +00:00
|
|
|
outFile.close();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-01-05 14:46:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void CommandLineInterface::actOnInput()
|
|
|
|
{
|
|
|
|
// do we need AST output?
|
|
|
|
handleAst(g_argAstStr);
|
|
|
|
handleAst(g_argAstJson);
|
2014-12-09 12:43:08 +00:00
|
|
|
|
|
|
|
vector<string> contracts = m_compiler.getContractNames();
|
|
|
|
for (string const& contract: contracts)
|
|
|
|
{
|
|
|
|
if (needStdout(m_args))
|
|
|
|
cout << endl << "======= " << contract << " =======" << endl;
|
|
|
|
|
|
|
|
// do we need EVM assembly?
|
2014-12-16 22:55:38 +00:00
|
|
|
if (m_args.count(g_argAsmStr))
|
2014-12-09 12:43:08 +00:00
|
|
|
{
|
2014-12-16 22:55:38 +00:00
|
|
|
auto choice = m_args[g_argAsmStr].as<OutputType>();
|
2014-12-09 16:39:34 +00:00
|
|
|
if (outputToStdout(choice))
|
2014-12-09 12:43:08 +00:00
|
|
|
{
|
|
|
|
cout << "EVM assembly:" << endl;
|
|
|
|
m_compiler.streamAssembly(cout, contract);
|
|
|
|
}
|
|
|
|
|
2014-12-09 16:39:34 +00:00
|
|
|
if (outputToFile(choice))
|
2014-12-09 12:43:08 +00:00
|
|
|
{
|
|
|
|
ofstream outFile(contract + ".evm");
|
|
|
|
m_compiler.streamAssembly(outFile, contract);
|
|
|
|
outFile.close();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-12-09 19:29:29 +00:00
|
|
|
handleBytecode(contract);
|
2015-01-09 07:05:52 +00:00
|
|
|
handleMeta(DocumentationType::ABI_INTERFACE, contract);
|
|
|
|
handleMeta(DocumentationType::ABI_SOLIDITY_INTERFACE, contract);
|
|
|
|
handleMeta(DocumentationType::NATSPEC_DEV, contract);
|
|
|
|
handleMeta(DocumentationType::NATSPEC_USER, contract);
|
2014-12-09 12:43:08 +00:00
|
|
|
} // end of contracts iteration
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|