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
|
|
|
|
2014-12-09 16:39:34 +00:00
|
|
|
#include "CommandLineInterface.h"
|
2015-08-19 23:09:39 +00:00
|
|
|
#include <iostream>
|
|
|
|
#include <boost/exception/all.hpp>
|
|
|
|
|
|
|
|
using namespace std;
|
2014-12-08 15:42:56 +00:00
|
|
|
|
2014-10-10 14:37:54 +00:00
|
|
|
int main(int argc, char** argv)
|
|
|
|
{
|
2014-12-09 16:39:34 +00:00
|
|
|
dev::solidity::CommandLineInterface cli;
|
|
|
|
if (!cli.parseArguments(argc, argv))
|
|
|
|
return 1;
|
|
|
|
if (!cli.processInput())
|
|
|
|
return 1;
|
2015-08-19 23:09:39 +00:00
|
|
|
try
|
|
|
|
{
|
|
|
|
cli.actOnInput();
|
|
|
|
}
|
|
|
|
catch (boost::exception const& _exception)
|
|
|
|
{
|
|
|
|
cerr << "Exception during output generation: " << boost::diagnostic_information(_exception) << endl;
|
|
|
|
return 1;
|
|
|
|
}
|
2014-12-08 14:05:23 +00:00
|
|
|
|
2014-10-10 14:37:54 +00:00
|
|
|
return 0;
|
|
|
|
}
|