mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Merge pull request #2438 from ethereum/exceptions-cleanup
Cleanup assertions/exceptions includes
This commit is contained in:
commit
a95f057e37
@ -54,6 +54,4 @@ namespace dev
|
|||||||
} \
|
} \
|
||||||
while (false)
|
while (false)
|
||||||
|
|
||||||
using errinfo_comment = boost::error_info<struct tag_comment, std::string>;
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -76,8 +76,6 @@ using byte = uint8_t;
|
|||||||
#define DEV_QUOTED_HELPER(s) #s
|
#define DEV_QUOTED_HELPER(s) #s
|
||||||
#define DEV_QUOTED(s) DEV_QUOTED_HELPER(s)
|
#define DEV_QUOTED(s) DEV_QUOTED_HELPER(s)
|
||||||
|
|
||||||
#define DEV_IGNORE_EXCEPTIONS(X) try { X; } catch (...) {}
|
|
||||||
|
|
||||||
namespace dev
|
namespace dev
|
||||||
{
|
{
|
||||||
|
|
||||||
|
@ -30,11 +30,11 @@
|
|||||||
#include <termios.h>
|
#include <termios.h>
|
||||||
#endif
|
#endif
|
||||||
#include <boost/filesystem.hpp>
|
#include <boost/filesystem.hpp>
|
||||||
#include "Exceptions.h"
|
#include "Assertions.h"
|
||||||
|
|
||||||
using namespace std;
|
using namespace std;
|
||||||
using namespace dev;
|
using namespace dev;
|
||||||
|
|
||||||
|
|
||||||
template <typename _T>
|
template <typename _T>
|
||||||
inline _T contentsGeneric(std::string const& _file)
|
inline _T contentsGeneric(std::string const& _file)
|
||||||
{
|
{
|
||||||
@ -78,13 +78,24 @@ void dev::writeFile(std::string const& _file, bytesConstRef _data, bool _writeDe
|
|||||||
if (!fs::exists(p.parent_path()))
|
if (!fs::exists(p.parent_path()))
|
||||||
{
|
{
|
||||||
fs::create_directories(p.parent_path());
|
fs::create_directories(p.parent_path());
|
||||||
DEV_IGNORE_EXCEPTIONS(fs::permissions(p.parent_path(), fs::owner_all));
|
try
|
||||||
|
{
|
||||||
|
fs::permissions(p.parent_path(), fs::owner_all);
|
||||||
|
}
|
||||||
|
catch (...)
|
||||||
|
{
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
ofstream s(_file, ios::trunc | ios::binary);
|
ofstream s(_file, ios::trunc | ios::binary);
|
||||||
s.write(reinterpret_cast<char const*>(_data.data()), _data.size());
|
s.write(reinterpret_cast<char const*>(_data.data()), _data.size());
|
||||||
if (!s)
|
assertThrow(s, FileError, "Could not write to file: " + _file);
|
||||||
BOOST_THROW_EXCEPTION(FileError() << errinfo_comment("Could not write to file: " + _file));
|
try
|
||||||
DEV_IGNORE_EXCEPTIONS(fs::permissions(_file, fs::owner_read|fs::owner_write));
|
{
|
||||||
|
fs::permissions(_file, fs::owner_read|fs::owner_write);
|
||||||
|
}
|
||||||
|
catch (...)
|
||||||
|
{
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -56,9 +56,5 @@ DEV_SIMPLE_EXCEPTION(FileError);
|
|||||||
// error information to be added to exceptions
|
// error information to be added to exceptions
|
||||||
using errinfo_invalidSymbol = boost::error_info<struct tag_invalidSymbol, char>;
|
using errinfo_invalidSymbol = boost::error_info<struct tag_invalidSymbol, char>;
|
||||||
using errinfo_comment = boost::error_info<struct tag_comment, std::string>;
|
using errinfo_comment = boost::error_info<struct tag_comment, std::string>;
|
||||||
using errinfo_required = boost::error_info<struct tag_required, bigint>;
|
|
||||||
using errinfo_got = boost::error_info<struct tag_got, bigint>;
|
|
||||||
using errinfo_required_h256 = boost::error_info<struct tag_required_h256, h256>;
|
|
||||||
using errinfo_got_h256 = boost::error_info<struct tag_get_h256, h256>;
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -59,14 +59,11 @@ void Assembly::append(Assembly const& _a)
|
|||||||
|
|
||||||
void Assembly::append(Assembly const& _a, int _deposit)
|
void Assembly::append(Assembly const& _a, int _deposit)
|
||||||
{
|
{
|
||||||
if (_deposit > _a.m_deposit)
|
assertThrow(_deposit <= _a.m_deposit, InvalidDeposit, "");
|
||||||
BOOST_THROW_EXCEPTION(InvalidDeposit());
|
|
||||||
else
|
append(_a);
|
||||||
{
|
while (_deposit++ < _a.m_deposit)
|
||||||
append(_a);
|
append(Instruction::POP);
|
||||||
while (_deposit++ < _a.m_deposit)
|
|
||||||
append(Instruction::POP);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
unsigned Assembly::bytesRequired(unsigned subTagSize) const
|
unsigned Assembly::bytesRequired(unsigned subTagSize) const
|
||||||
|
@ -22,7 +22,7 @@
|
|||||||
|
|
||||||
#include <libevmasm/Instruction.h>
|
#include <libevmasm/Instruction.h>
|
||||||
|
|
||||||
#include <libsolidity/interface/Utils.h>
|
#include <libsolidity/interface/Exceptions.h>
|
||||||
|
|
||||||
using namespace std;
|
using namespace std;
|
||||||
using namespace dev;
|
using namespace dev;
|
||||||
|
@ -23,7 +23,7 @@
|
|||||||
#include <libsolidity/inlineasm/AsmAnalysisInfo.h>
|
#include <libsolidity/inlineasm/AsmAnalysisInfo.h>
|
||||||
#include <libsolidity/inlineasm/AsmData.h>
|
#include <libsolidity/inlineasm/AsmData.h>
|
||||||
|
|
||||||
#include <libsolidity/interface/Utils.h>
|
#include <libsolidity/interface/Exceptions.h>
|
||||||
|
|
||||||
#include <boost/range/adaptor/reversed.hpp>
|
#include <boost/range/adaptor/reversed.hpp>
|
||||||
|
|
||||||
|
@ -20,10 +20,8 @@
|
|||||||
* Solidity abstract syntax tree.
|
* Solidity abstract syntax tree.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <libsolidity/interface/Utils.h>
|
|
||||||
#include <libsolidity/ast/AST.h>
|
#include <libsolidity/ast/AST.h>
|
||||||
#include <libsolidity/ast/ASTVisitor.h>
|
#include <libsolidity/ast/ASTVisitor.h>
|
||||||
#include <libsolidity/interface/Exceptions.h>
|
|
||||||
#include <libsolidity/ast/AST_accept.h>
|
#include <libsolidity/ast/AST_accept.h>
|
||||||
|
|
||||||
#include <libdevcore/SHA3.h>
|
#include <libdevcore/SHA3.h>
|
||||||
|
@ -29,7 +29,6 @@
|
|||||||
#include <boost/noncopyable.hpp>
|
#include <boost/noncopyable.hpp>
|
||||||
#include <libevmasm/SourceLocation.h>
|
#include <libevmasm/SourceLocation.h>
|
||||||
#include <libevmasm/Instruction.h>
|
#include <libevmasm/Instruction.h>
|
||||||
#include <libsolidity/interface/Utils.h>
|
|
||||||
#include <libsolidity/ast/ASTForward.h>
|
#include <libsolidity/ast/ASTForward.h>
|
||||||
#include <libsolidity/parsing/Token.h>
|
#include <libsolidity/parsing/Token.h>
|
||||||
#include <libsolidity/ast/Types.h>
|
#include <libsolidity/ast/Types.h>
|
||||||
|
@ -24,7 +24,6 @@
|
|||||||
#include <boost/algorithm/string/join.hpp>
|
#include <boost/algorithm/string/join.hpp>
|
||||||
#include <libdevcore/UTF8.h>
|
#include <libdevcore/UTF8.h>
|
||||||
#include <libsolidity/ast/AST.h>
|
#include <libsolidity/ast/AST.h>
|
||||||
#include <libsolidity/interface/Exceptions.h>
|
|
||||||
#include <libsolidity/inlineasm/AsmData.h>
|
#include <libsolidity/inlineasm/AsmData.h>
|
||||||
#include <libsolidity/inlineasm/AsmPrinter.h>
|
#include <libsolidity/inlineasm/AsmPrinter.h>
|
||||||
|
|
||||||
|
@ -26,7 +26,6 @@
|
|||||||
#include <stack>
|
#include <stack>
|
||||||
#include <libsolidity/ast/ASTVisitor.h>
|
#include <libsolidity/ast/ASTVisitor.h>
|
||||||
#include <libsolidity/interface/Exceptions.h>
|
#include <libsolidity/interface/Exceptions.h>
|
||||||
#include <libsolidity/interface/Utils.h>
|
|
||||||
#include <libsolidity/ast/ASTAnnotations.h>
|
#include <libsolidity/ast/ASTAnnotations.h>
|
||||||
#include <json/json.h>
|
#include <json/json.h>
|
||||||
|
|
||||||
|
@ -22,7 +22,6 @@
|
|||||||
|
|
||||||
#include <libsolidity/ast/Types.h>
|
#include <libsolidity/ast/Types.h>
|
||||||
|
|
||||||
#include <libsolidity/interface/Utils.h>
|
|
||||||
#include <libsolidity/ast/AST.h>
|
#include <libsolidity/ast/AST.h>
|
||||||
|
|
||||||
#include <libdevcore/CommonIO.h>
|
#include <libdevcore/CommonIO.h>
|
||||||
|
@ -25,7 +25,7 @@
|
|||||||
#include <libsolidity/codegen/CompilerContext.h>
|
#include <libsolidity/codegen/CompilerContext.h>
|
||||||
#include <libsolidity/codegen/CompilerUtils.h>
|
#include <libsolidity/codegen/CompilerUtils.h>
|
||||||
#include <libsolidity/ast/Types.h>
|
#include <libsolidity/ast/Types.h>
|
||||||
#include <libsolidity/interface/Utils.h>
|
#include <libsolidity/interface/Exceptions.h>
|
||||||
#include <libsolidity/codegen/LValue.h>
|
#include <libsolidity/codegen/LValue.h>
|
||||||
|
|
||||||
using namespace std;
|
using namespace std;
|
||||||
|
@ -32,6 +32,7 @@
|
|||||||
#include <libsolidity/codegen/CompilerUtils.h>
|
#include <libsolidity/codegen/CompilerUtils.h>
|
||||||
#include <libsolidity/codegen/LValue.h>
|
#include <libsolidity/codegen/LValue.h>
|
||||||
#include <libevmasm/GasMeter.h>
|
#include <libevmasm/GasMeter.h>
|
||||||
|
|
||||||
using namespace std;
|
using namespace std;
|
||||||
|
|
||||||
namespace dev
|
namespace dev
|
||||||
|
@ -28,7 +28,7 @@
|
|||||||
#include <libevmasm/SourceLocation.h>
|
#include <libevmasm/SourceLocation.h>
|
||||||
#include <libsolidity/ast/ASTVisitor.h>
|
#include <libsolidity/ast/ASTVisitor.h>
|
||||||
#include <libsolidity/codegen/LValue.h>
|
#include <libsolidity/codegen/LValue.h>
|
||||||
#include <libsolidity/interface/Utils.h>
|
#include <libsolidity/interface/Exceptions.h>
|
||||||
|
|
||||||
namespace dev {
|
namespace dev {
|
||||||
namespace eth
|
namespace eth
|
||||||
|
@ -26,7 +26,6 @@
|
|||||||
#include <libsolidity/inlineasm/AsmAnalysisInfo.h>
|
#include <libsolidity/inlineasm/AsmAnalysisInfo.h>
|
||||||
|
|
||||||
#include <libsolidity/interface/ErrorReporter.h>
|
#include <libsolidity/interface/ErrorReporter.h>
|
||||||
#include <libsolidity/interface/Utils.h>
|
|
||||||
|
|
||||||
#include <boost/range/adaptor/reversed.hpp>
|
#include <boost/range/adaptor/reversed.hpp>
|
||||||
#include <boost/algorithm/string.hpp>
|
#include <boost/algorithm/string.hpp>
|
||||||
|
@ -22,7 +22,7 @@
|
|||||||
|
|
||||||
#include <libsolidity/inlineasm/AsmPrinter.h>
|
#include <libsolidity/inlineasm/AsmPrinter.h>
|
||||||
#include <libsolidity/inlineasm/AsmData.h>
|
#include <libsolidity/inlineasm/AsmData.h>
|
||||||
#include <libsolidity/interface/Utils.h>
|
#include <libsolidity/interface/Exceptions.h>
|
||||||
|
|
||||||
#include <boost/algorithm/string.hpp>
|
#include <boost/algorithm/string.hpp>
|
||||||
#include <boost/algorithm/string/replace.hpp>
|
#include <boost/algorithm/string/replace.hpp>
|
||||||
|
@ -25,7 +25,7 @@
|
|||||||
#include <libsolidity/inlineasm/AsmAnalysisInfo.h>
|
#include <libsolidity/inlineasm/AsmAnalysisInfo.h>
|
||||||
|
|
||||||
#include <libsolidity/interface/ErrorReporter.h>
|
#include <libsolidity/interface/ErrorReporter.h>
|
||||||
#include <libsolidity/interface/Utils.h>
|
#include <libsolidity/interface/Exceptions.h>
|
||||||
|
|
||||||
#include <boost/range/adaptor/reversed.hpp>
|
#include <boost/range/adaptor/reversed.hpp>
|
||||||
|
|
||||||
|
@ -21,7 +21,6 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
#include <libsolidity/interface/Exceptions.h>
|
#include <libsolidity/interface/Exceptions.h>
|
||||||
#include <libsolidity/interface/Utils.h>
|
|
||||||
|
|
||||||
using namespace std;
|
using namespace std;
|
||||||
using namespace dev;
|
using namespace dev;
|
||||||
|
@ -25,6 +25,7 @@
|
|||||||
#include <string>
|
#include <string>
|
||||||
#include <utility>
|
#include <utility>
|
||||||
#include <libdevcore/Exceptions.h>
|
#include <libdevcore/Exceptions.h>
|
||||||
|
#include <libdevcore/Assertions.h>
|
||||||
#include <libevmasm/SourceLocation.h>
|
#include <libevmasm/SourceLocation.h>
|
||||||
|
|
||||||
namespace dev
|
namespace dev
|
||||||
@ -39,6 +40,16 @@ struct InternalCompilerError: virtual Exception {};
|
|||||||
struct FatalError: virtual Exception {};
|
struct FatalError: virtual Exception {};
|
||||||
struct UnimplementedFeatureError: virtual Exception{};
|
struct UnimplementedFeatureError: virtual Exception{};
|
||||||
|
|
||||||
|
/// Assertion that throws an InternalCompilerError containing the given description if it is not met.
|
||||||
|
#define solAssert(CONDITION, DESCRIPTION) \
|
||||||
|
assertThrow(CONDITION, ::dev::solidity::InternalCompilerError, DESCRIPTION)
|
||||||
|
|
||||||
|
#define solUnimplementedAssert(CONDITION, DESCRIPTION) \
|
||||||
|
assertThrow(CONDITION, ::dev::solidity::UnimplementedFeatureError, DESCRIPTION)
|
||||||
|
|
||||||
|
#define solUnimplemented(DESCRIPTION) \
|
||||||
|
solUnimplementedAssert(false, DESCRIPTION)
|
||||||
|
|
||||||
class Error: virtual public Exception
|
class Error: virtual public Exception
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
|
@ -1,45 +0,0 @@
|
|||||||
/*
|
|
||||||
This file is part of solidity.
|
|
||||||
|
|
||||||
solidity 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.
|
|
||||||
|
|
||||||
solidity 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 solidity. If not, see <http://www.gnu.org/licenses/>.
|
|
||||||
*/
|
|
||||||
/**
|
|
||||||
* @author Christian <c@ethdev.com>
|
|
||||||
* @date 2014
|
|
||||||
* Solidity Utilities.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#pragma once
|
|
||||||
|
|
||||||
#include <libdevcore/Assertions.h>
|
|
||||||
#include <libsolidity/interface/Exceptions.h>
|
|
||||||
|
|
||||||
namespace dev
|
|
||||||
{
|
|
||||||
namespace solidity
|
|
||||||
{
|
|
||||||
struct InternalCompilerError;
|
|
||||||
struct UnimplementedFeatureError;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Assertion that throws an InternalCompilerError containing the given description if it is not met.
|
|
||||||
#define solAssert(CONDITION, DESCRIPTION) \
|
|
||||||
assertThrow(CONDITION, ::dev::solidity::InternalCompilerError, DESCRIPTION)
|
|
||||||
|
|
||||||
#define solUnimplementedAssert(CONDITION, DESCRIPTION) \
|
|
||||||
assertThrow(CONDITION, ::dev::solidity::UnimplementedFeatureError, DESCRIPTION)
|
|
||||||
|
|
||||||
#define solUnimplemented(DESCRIPTION) \
|
|
||||||
solUnimplementedAssert(false, DESCRIPTION)
|
|
@ -24,7 +24,7 @@
|
|||||||
#include <string>
|
#include <string>
|
||||||
#include <libdevcore/CommonData.h>
|
#include <libdevcore/CommonData.h>
|
||||||
#include <libdevcore/Common.h>
|
#include <libdevcore/Common.h>
|
||||||
#include <libsolidity/interface/Utils.h>
|
#include <libsolidity/interface/Exceptions.h>
|
||||||
#include <solidity/BuildInfo.h>
|
#include <solidity/BuildInfo.h>
|
||||||
|
|
||||||
using namespace dev;
|
using namespace dev;
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
|
|
||||||
#include <libsolidity/parsing/DocStringParser.h>
|
#include <libsolidity/parsing/DocStringParser.h>
|
||||||
#include <libsolidity/interface/ErrorReporter.h>
|
#include <libsolidity/interface/ErrorReporter.h>
|
||||||
#include <libsolidity/interface/Utils.h>
|
#include <libsolidity/interface/Exceptions.h>
|
||||||
|
|
||||||
#include <boost/range/irange.hpp>
|
#include <boost/range/irange.hpp>
|
||||||
#include <boost/range/algorithm.hpp>
|
#include <boost/range/algorithm.hpp>
|
||||||
|
@ -52,7 +52,7 @@
|
|||||||
|
|
||||||
#include <algorithm>
|
#include <algorithm>
|
||||||
#include <tuple>
|
#include <tuple>
|
||||||
#include <libsolidity/interface/Utils.h>
|
#include <libsolidity/interface/Exceptions.h>
|
||||||
#include <libsolidity/parsing/Scanner.h>
|
#include <libsolidity/parsing/Scanner.h>
|
||||||
|
|
||||||
using namespace std;
|
using namespace std;
|
||||||
|
@ -43,7 +43,6 @@
|
|||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include <libdevcore/Common.h>
|
#include <libdevcore/Common.h>
|
||||||
#include <libsolidity/interface/Utils.h>
|
|
||||||
#include <libsolidity/interface/Exceptions.h>
|
#include <libsolidity/interface/Exceptions.h>
|
||||||
#include <libdevcore/UndefMacros.h>
|
#include <libdevcore/UndefMacros.h>
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user