2014-12-09 12:43:08 +00:00
|
|
|
/*
|
2016-11-18 23:13:20 +00:00
|
|
|
This file is part of solidity.
|
2014-12-09 12:43:08 +00:00
|
|
|
|
2016-11-18 23:13:20 +00:00
|
|
|
solidity is free software: you can redistribute it and/or modify
|
2014-12-09 12:43:08 +00:00
|
|
|
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.
|
|
|
|
|
2016-11-18 23:13:20 +00:00
|
|
|
solidity is distributed in the hope that it will be useful,
|
2014-12-09 12:43:08 +00:00
|
|
|
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
|
2016-11-18 23:13:20 +00:00
|
|
|
along with solidity. If not, see <http://www.gnu.org/licenses/>.
|
2014-12-09 12:43:08 +00:00
|
|
|
*/
|
|
|
|
/**
|
|
|
|
* @author Lefteris <lefteris@ethdev.com>
|
|
|
|
* @date 2014
|
2014-12-09 16:39:34 +00:00
|
|
|
* Solidity command line interface.
|
2014-12-09 12:43:08 +00:00
|
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
|
2016-03-01 21:56:39 +00:00
|
|
|
#include <libsolidity/interface/CompilerStack.h>
|
2019-02-13 11:07:20 +00:00
|
|
|
#include <libyul/AssemblyStack.h>
|
2018-11-14 13:59:30 +00:00
|
|
|
#include <liblangutil/EVMVersion.h>
|
2014-12-09 12:43:08 +00:00
|
|
|
|
2017-01-26 12:47:57 +00:00
|
|
|
#include <boost/program_options.hpp>
|
|
|
|
#include <boost/filesystem/path.hpp>
|
|
|
|
|
|
|
|
#include <memory>
|
|
|
|
|
2014-12-09 12:43:08 +00:00
|
|
|
namespace dev
|
|
|
|
{
|
|
|
|
namespace solidity
|
|
|
|
{
|
|
|
|
|
|
|
|
//forward declaration
|
|
|
|
enum class DocumentationType: uint8_t;
|
|
|
|
|
2014-12-09 16:39:34 +00:00
|
|
|
class CommandLineInterface
|
2014-12-09 12:43:08 +00:00
|
|
|
{
|
|
|
|
public:
|
2014-12-09 16:39:34 +00:00
|
|
|
/// Parse command line arguments and return false if we should not continue
|
2015-07-20 16:14:25 +00:00
|
|
|
bool parseArguments(int _argc, char** _argv);
|
2014-12-09 16:39:34 +00:00
|
|
|
/// Parse the files and create source code objects
|
|
|
|
bool processInput();
|
|
|
|
/// Perform actions on the input depending on provided compiler arguments
|
2017-03-10 18:11:01 +00:00
|
|
|
/// @returns true on success.
|
|
|
|
bool actOnInput();
|
2014-12-09 12:43:08 +00:00
|
|
|
|
|
|
|
private:
|
2015-09-11 17:35:01 +00:00
|
|
|
bool link();
|
|
|
|
void writeLinkedFiles();
|
2018-10-04 12:55:02 +00:00
|
|
|
/// @returns the ``// <identifier> -> name`` hint for library placeholders.
|
|
|
|
static std::string libraryPlaceholderHint(std::string const& _libraryName);
|
|
|
|
/// @returns the full object with library placeholder hints in hex.
|
|
|
|
static std::string objectWithLinkRefsHex(eth::LinkerObject const& _obj);
|
2015-09-11 17:35:01 +00:00
|
|
|
|
2019-02-13 11:07:20 +00:00
|
|
|
bool assemble(yul::AssemblyStack::Language _language, yul::AssemblyStack::Machine _targetMachine, bool _optimize);
|
2016-02-22 01:13:41 +00:00
|
|
|
|
2015-09-11 17:35:01 +00:00
|
|
|
void outputCompilationResults();
|
|
|
|
|
2015-04-23 12:40:42 +00:00
|
|
|
void handleCombinedJSON();
|
2015-01-05 14:46:40 +00:00
|
|
|
void handleAst(std::string const& _argStr);
|
2014-12-09 19:29:29 +00:00
|
|
|
void handleBinary(std::string const& _contract);
|
|
|
|
void handleOpcode(std::string const& _contract);
|
2019-03-04 22:26:46 +00:00
|
|
|
void handleIR(std::string const& _contract);
|
2019-06-18 16:11:04 +00:00
|
|
|
void handleEWasm(std::string const& _contract);
|
2014-12-09 19:29:29 +00:00
|
|
|
void handleBytecode(std::string const& _contract);
|
2015-05-04 14:21:44 +00:00
|
|
|
void handleSignatureHashes(std::string const& _contract);
|
2017-05-19 15:10:32 +00:00
|
|
|
void handleMetadata(std::string const& _contract);
|
2017-05-06 17:02:56 +00:00
|
|
|
void handleABI(std::string const& _contract);
|
2017-07-27 10:28:04 +00:00
|
|
|
void handleNatspec(bool _natspecDev, std::string const& _contract);
|
2015-05-22 12:19:58 +00:00
|
|
|
void handleGasEstimation(std::string const& _contract);
|
2015-10-21 14:43:31 +00:00
|
|
|
void handleFormal();
|
2014-12-09 12:43:08 +00:00
|
|
|
|
2016-01-25 18:42:17 +00:00
|
|
|
/// Fills @a m_sourceCodes initially and @a m_redirects.
|
2018-03-16 15:52:04 +00:00
|
|
|
bool readInputFilesAndConfigureRemappings();
|
2015-09-11 17:35:01 +00:00
|
|
|
/// Tries to read from the file @a _input or interprets _input literally if that fails.
|
|
|
|
/// It then tries to parse the contents and appends to m_libraries.
|
|
|
|
bool parseLibraryOption(std::string const& _input);
|
2015-07-20 16:14:25 +00:00
|
|
|
|
|
|
|
/// Create a file in the given directory
|
|
|
|
/// @arg _fileName the name of the file
|
|
|
|
/// @arg _data to be written
|
2015-07-21 13:29:15 +00:00
|
|
|
void createFile(std::string const& _fileName, std::string const& _data);
|
2015-07-20 16:14:25 +00:00
|
|
|
|
2017-05-22 20:39:38 +00:00
|
|
|
/// Create a json file in the given directory
|
|
|
|
/// @arg _fileName the name of the file (the extension will be replaced with .json)
|
2017-07-03 23:46:30 +00:00
|
|
|
/// @arg _json json string to be written
|
|
|
|
void createJson(std::string const& _fileName, std::string const& _json);
|
2017-05-22 20:39:38 +00:00
|
|
|
|
2017-03-10 18:11:01 +00:00
|
|
|
bool m_error = false; ///< If true, some error occurred.
|
|
|
|
|
2016-02-22 01:13:41 +00:00
|
|
|
bool m_onlyAssemble = false;
|
2017-05-23 08:37:51 +00:00
|
|
|
|
2015-09-11 17:35:01 +00:00
|
|
|
bool m_onlyLink = false;
|
|
|
|
|
2014-12-09 16:39:34 +00:00
|
|
|
/// Compiler arguments variable map
|
|
|
|
boost::program_options::variables_map m_args;
|
2014-12-09 12:43:08 +00:00
|
|
|
/// map of input files to source code strings
|
2014-12-09 16:39:34 +00:00
|
|
|
std::map<std::string, std::string> m_sourceCodes;
|
2018-08-09 18:37:49 +00:00
|
|
|
/// list of remappings
|
|
|
|
std::vector<dev::solidity::CompilerStack::Remapping> m_remappings;
|
2016-01-29 22:09:05 +00:00
|
|
|
/// list of allowed directories to read files from
|
|
|
|
std::vector<boost::filesystem::path> m_allowedDirectories;
|
2015-09-11 17:35:01 +00:00
|
|
|
/// map of library names to addresses
|
|
|
|
std::map<std::string, h160> m_libraries;
|
2014-12-09 16:39:34 +00:00
|
|
|
/// Solidity compiler stack
|
2015-01-29 00:29:43 +00:00
|
|
|
std::unique_ptr<dev::solidity::CompilerStack> m_compiler;
|
2018-03-01 11:06:36 +00:00
|
|
|
/// EVM version to use
|
2019-02-25 14:29:57 +00:00
|
|
|
langutil::EVMVersion m_evmVersion;
|
2018-11-26 23:21:53 +00:00
|
|
|
/// Whether or not to colorize diagnostics output.
|
|
|
|
bool m_coloredOutput = true;
|
2014-12-09 12:43:08 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|