mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Improve the Error class with a constructor for secondaryLocation
Remove occurances of Error construction using the boost helpers.
This commit is contained in:
parent
2fa0e3c88a
commit
97173247c0
@ -715,8 +715,11 @@ LinkerObject const& Assembly::assemble() const
|
|||||||
|
|
||||||
if (!immutableReferencesBySub.empty())
|
if (!immutableReferencesBySub.empty())
|
||||||
throw
|
throw
|
||||||
langutil::Error(1284_error, langutil::Error::Type::CodeGenerationError) <<
|
langutil::Error(
|
||||||
util::errinfo_comment("Some immutables were read from but never assigned, possibly because of optimization.");
|
1284_error,
|
||||||
|
langutil::Error::Type::CodeGenerationError,
|
||||||
|
"Some immutables were read from but never assigned, possibly because of optimization."
|
||||||
|
);
|
||||||
|
|
||||||
if (!m_subs.empty() || !m_data.empty() || !m_auxiliaryData.empty())
|
if (!m_subs.empty() || !m_data.empty() || !m_auxiliaryData.empty())
|
||||||
// Append an INVALID here to help tests find miscompilation.
|
// Append an INVALID here to help tests find miscompilation.
|
||||||
|
@ -67,12 +67,7 @@ void ErrorReporter::error(ErrorId _errorId, Error::Type _type, SourceLocation co
|
|||||||
if (checkForExcessiveErrors(_type))
|
if (checkForExcessiveErrors(_type))
|
||||||
return;
|
return;
|
||||||
|
|
||||||
auto err = make_shared<Error>(_errorId, _type);
|
m_errorList.push_back(make_shared<Error>(_errorId, _type, _description, _location));
|
||||||
*err <<
|
|
||||||
errinfo_sourceLocation(_location) <<
|
|
||||||
util::errinfo_comment(_description);
|
|
||||||
|
|
||||||
m_errorList.push_back(err);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void ErrorReporter::error(ErrorId _errorId, Error::Type _type, SourceLocation const& _location, SecondarySourceLocation const& _secondaryLocation, string const& _description)
|
void ErrorReporter::error(ErrorId _errorId, Error::Type _type, SourceLocation const& _location, SecondarySourceLocation const& _secondaryLocation, string const& _description)
|
||||||
@ -80,13 +75,7 @@ void ErrorReporter::error(ErrorId _errorId, Error::Type _type, SourceLocation co
|
|||||||
if (checkForExcessiveErrors(_type))
|
if (checkForExcessiveErrors(_type))
|
||||||
return;
|
return;
|
||||||
|
|
||||||
auto err = make_shared<Error>(_errorId, _type);
|
m_errorList.push_back(make_shared<Error>(_errorId, _type, _description, _location, _secondaryLocation));
|
||||||
*err <<
|
|
||||||
errinfo_sourceLocation(_location) <<
|
|
||||||
errinfo_secondarySourceLocation(_secondaryLocation) <<
|
|
||||||
util::errinfo_comment(_description);
|
|
||||||
|
|
||||||
m_errorList.push_back(err);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
bool ErrorReporter::hasExcessiveErrors() const
|
bool ErrorReporter::hasExcessiveErrors() const
|
||||||
@ -101,11 +90,7 @@ bool ErrorReporter::checkForExcessiveErrors(Error::Type _type)
|
|||||||
m_warningCount++;
|
m_warningCount++;
|
||||||
|
|
||||||
if (m_warningCount == c_maxWarningsAllowed)
|
if (m_warningCount == c_maxWarningsAllowed)
|
||||||
{
|
m_errorList.push_back(make_shared<Error>(4591_error, Error::Type::Warning, "There are more than 256 warnings. Ignoring the rest."));
|
||||||
auto err = make_shared<Error>(4591_error, Error::Type::Warning);
|
|
||||||
*err << util::errinfo_comment("There are more than 256 warnings. Ignoring the rest.");
|
|
||||||
m_errorList.push_back(err);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (m_warningCount >= c_maxWarningsAllowed)
|
if (m_warningCount >= c_maxWarningsAllowed)
|
||||||
return true;
|
return true;
|
||||||
@ -116,9 +101,7 @@ bool ErrorReporter::checkForExcessiveErrors(Error::Type _type)
|
|||||||
|
|
||||||
if (m_errorCount > c_maxErrorsAllowed)
|
if (m_errorCount > c_maxErrorsAllowed)
|
||||||
{
|
{
|
||||||
auto err = make_shared<Error>(4013_error, Error::Type::Warning);
|
m_errorList.push_back(make_shared<Error>(4013_error, Error::Type::Warning, "There are more than 256 errors. Aborting."));
|
||||||
*err << util::errinfo_comment("There are more than 256 errors. Aborting.");
|
|
||||||
m_errorList.push_back(err);
|
|
||||||
BOOST_THROW_EXCEPTION(FatalError());
|
BOOST_THROW_EXCEPTION(FatalError());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -27,7 +27,12 @@ using namespace std;
|
|||||||
using namespace solidity;
|
using namespace solidity;
|
||||||
using namespace solidity::langutil;
|
using namespace solidity::langutil;
|
||||||
|
|
||||||
Error::Error(ErrorId _errorId, Type _type, SourceLocation const& _location, string const& _description):
|
Error::Error(
|
||||||
|
ErrorId _errorId, Error::Type _type,
|
||||||
|
std::string const& _description,
|
||||||
|
SourceLocation const& _location,
|
||||||
|
SecondarySourceLocation const& _secondaryLocation
|
||||||
|
):
|
||||||
m_errorId(_errorId),
|
m_errorId(_errorId),
|
||||||
m_type(_type)
|
m_type(_type)
|
||||||
{
|
{
|
||||||
@ -58,14 +63,8 @@ Error::Error(ErrorId _errorId, Type _type, SourceLocation const& _location, stri
|
|||||||
|
|
||||||
if (_location.isValid())
|
if (_location.isValid())
|
||||||
*this << errinfo_sourceLocation(_location);
|
*this << errinfo_sourceLocation(_location);
|
||||||
|
if (!_secondaryLocation.infos.empty())
|
||||||
|
*this << errinfo_secondarySourceLocation(_secondaryLocation);
|
||||||
if (!_description.empty())
|
if (!_description.empty())
|
||||||
*this << util::errinfo_comment(_description);
|
*this << util::errinfo_comment(_description);
|
||||||
}
|
}
|
||||||
|
|
||||||
Error::Error(ErrorId _errorId, Error::Type _type, std::string const& _description, SourceLocation const& _location):
|
|
||||||
Error(_errorId, _type)
|
|
||||||
{
|
|
||||||
if (_location.isValid())
|
|
||||||
*this << errinfo_sourceLocation(_location);
|
|
||||||
*this << util::errinfo_comment(_description);
|
|
||||||
}
|
|
||||||
|
@ -58,73 +58,6 @@ struct InvalidAstError: virtual util::Exception {};
|
|||||||
#define astAssert(CONDITION, DESCRIPTION) \
|
#define astAssert(CONDITION, DESCRIPTION) \
|
||||||
assertThrow(CONDITION, ::solidity::langutil::InvalidAstError, DESCRIPTION)
|
assertThrow(CONDITION, ::solidity::langutil::InvalidAstError, DESCRIPTION)
|
||||||
|
|
||||||
/**
|
|
||||||
* Unique identifiers are used to tag and track individual error cases.
|
|
||||||
* They are passed as the first parameter of error reporting functions.
|
|
||||||
* Suffix _error helps to find them in the sources.
|
|
||||||
* The struct ErrorId prevents incidental calls like typeError(3141) instead of typeError(3141_error).
|
|
||||||
* To create a new ID, one can add 0000_error and then run "python ./scripts/error_codes.py --fix"
|
|
||||||
* from the root of the repo.
|
|
||||||
*/
|
|
||||||
struct ErrorId
|
|
||||||
{
|
|
||||||
unsigned long long error = 0;
|
|
||||||
bool operator==(ErrorId const& _rhs) const { return error == _rhs.error; }
|
|
||||||
};
|
|
||||||
constexpr ErrorId operator"" _error(unsigned long long _error) { return ErrorId{ _error }; }
|
|
||||||
|
|
||||||
class Error: virtual public util::Exception
|
|
||||||
{
|
|
||||||
public:
|
|
||||||
enum class Type
|
|
||||||
{
|
|
||||||
CodeGenerationError,
|
|
||||||
DeclarationError,
|
|
||||||
DocstringParsingError,
|
|
||||||
ParserError,
|
|
||||||
TypeError,
|
|
||||||
SyntaxError,
|
|
||||||
Warning
|
|
||||||
};
|
|
||||||
|
|
||||||
Error(
|
|
||||||
ErrorId _errorId,
|
|
||||||
Type _type,
|
|
||||||
SourceLocation const& _location = SourceLocation(),
|
|
||||||
std::string const& _description = std::string()
|
|
||||||
);
|
|
||||||
|
|
||||||
Error(ErrorId _errorId, Type _type, std::string const& _description, SourceLocation const& _location = SourceLocation());
|
|
||||||
|
|
||||||
ErrorId errorId() const { return m_errorId; }
|
|
||||||
Type type() const { return m_type; }
|
|
||||||
std::string const& typeName() const { return m_typeName; }
|
|
||||||
|
|
||||||
/// helper functions
|
|
||||||
static Error const* containsErrorOfType(ErrorList const& _list, Error::Type _type)
|
|
||||||
{
|
|
||||||
for (auto e: _list)
|
|
||||||
{
|
|
||||||
if (e->type() == _type)
|
|
||||||
return e.get();
|
|
||||||
}
|
|
||||||
return nullptr;
|
|
||||||
}
|
|
||||||
static bool containsOnlyWarnings(ErrorList const& _list)
|
|
||||||
{
|
|
||||||
for (auto e: _list)
|
|
||||||
{
|
|
||||||
if (e->type() != Type::Warning)
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
private:
|
|
||||||
ErrorId m_errorId;
|
|
||||||
Type m_type;
|
|
||||||
std::string m_typeName;
|
|
||||||
};
|
|
||||||
|
|
||||||
using errorSourceLocationInfo = std::pair<std::string, SourceLocation>;
|
using errorSourceLocationInfo = std::pair<std::string, SourceLocation>;
|
||||||
|
|
||||||
class SecondarySourceLocation
|
class SecondarySourceLocation
|
||||||
@ -159,5 +92,80 @@ public:
|
|||||||
using errinfo_sourceLocation = boost::error_info<struct tag_sourceLocation, SourceLocation>;
|
using errinfo_sourceLocation = boost::error_info<struct tag_sourceLocation, SourceLocation>;
|
||||||
using errinfo_secondarySourceLocation = boost::error_info<struct tag_secondarySourceLocation, SecondarySourceLocation>;
|
using errinfo_secondarySourceLocation = boost::error_info<struct tag_secondarySourceLocation, SecondarySourceLocation>;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Unique identifiers are used to tag and track individual error cases.
|
||||||
|
* They are passed as the first parameter of error reporting functions.
|
||||||
|
* Suffix _error helps to find them in the sources.
|
||||||
|
* The struct ErrorId prevents incidental calls like typeError(3141) instead of typeError(3141_error).
|
||||||
|
* To create a new ID, one can add 0000_error and then run "python ./scripts/error_codes.py --fix"
|
||||||
|
* from the root of the repo.
|
||||||
|
*/
|
||||||
|
struct ErrorId
|
||||||
|
{
|
||||||
|
unsigned long long error = 0;
|
||||||
|
bool operator==(ErrorId const& _rhs) const { return error == _rhs.error; }
|
||||||
|
};
|
||||||
|
constexpr ErrorId operator"" _error(unsigned long long _error) { return ErrorId{ _error }; }
|
||||||
|
|
||||||
|
class Error: virtual public util::Exception
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
enum class Type
|
||||||
|
{
|
||||||
|
CodeGenerationError,
|
||||||
|
DeclarationError,
|
||||||
|
DocstringParsingError,
|
||||||
|
ParserError,
|
||||||
|
TypeError,
|
||||||
|
SyntaxError,
|
||||||
|
Warning
|
||||||
|
};
|
||||||
|
|
||||||
|
// TODO: remove this
|
||||||
|
Error(
|
||||||
|
ErrorId _errorId,
|
||||||
|
Type _type,
|
||||||
|
SourceLocation const& _location = SourceLocation(),
|
||||||
|
std::string const& _description = std::string()
|
||||||
|
):
|
||||||
|
Error(_errorId, _type, _description, _location)
|
||||||
|
{}
|
||||||
|
|
||||||
|
Error(
|
||||||
|
ErrorId _errorId,
|
||||||
|
Type _type,
|
||||||
|
std::string const& _description,
|
||||||
|
SourceLocation const& _location = SourceLocation(),
|
||||||
|
SecondarySourceLocation const& _secondaryLocation = SecondarySourceLocation()
|
||||||
|
);
|
||||||
|
|
||||||
|
ErrorId errorId() const { return m_errorId; }
|
||||||
|
Type type() const { return m_type; }
|
||||||
|
std::string const& typeName() const { return m_typeName; }
|
||||||
|
|
||||||
|
/// helper functions
|
||||||
|
static Error const* containsErrorOfType(ErrorList const& _list, Error::Type _type)
|
||||||
|
{
|
||||||
|
for (auto e: _list)
|
||||||
|
{
|
||||||
|
if (e->type() == _type)
|
||||||
|
return e.get();
|
||||||
|
}
|
||||||
|
return nullptr;
|
||||||
|
}
|
||||||
|
static bool containsOnlyWarnings(ErrorList const& _list)
|
||||||
|
{
|
||||||
|
for (auto e: _list)
|
||||||
|
{
|
||||||
|
if (e->type() != Type::Warning)
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
private:
|
||||||
|
ErrorId m_errorId;
|
||||||
|
Type m_type;
|
||||||
|
std::string m_typeName;
|
||||||
|
};
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user