2017-05-11 13:26:35 +00:00
|
|
|
/*
|
|
|
|
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/>.
|
|
|
|
*/
|
2020-07-17 14:54:12 +00:00
|
|
|
// SPDX-License-Identifier: GPL-3.0
|
2017-05-11 13:26:35 +00:00
|
|
|
/**
|
|
|
|
* @author Rhett <roadriverrail@gmail.com>
|
|
|
|
* @date 2017
|
|
|
|
* Error helper class.
|
|
|
|
*/
|
|
|
|
|
2018-11-14 13:59:30 +00:00
|
|
|
#include <liblangutil/ErrorReporter.h>
|
2018-11-14 16:11:55 +00:00
|
|
|
#include <liblangutil/SourceLocation.h>
|
2020-04-08 17:38:30 +00:00
|
|
|
#include <cstdlib>
|
2017-05-11 13:26:35 +00:00
|
|
|
#include <memory>
|
|
|
|
|
|
|
|
using namespace std;
|
2019-12-11 16:31:36 +00:00
|
|
|
using namespace solidity;
|
|
|
|
using namespace solidity::langutil;
|
2017-05-11 13:26:35 +00:00
|
|
|
|
|
|
|
ErrorReporter& ErrorReporter::operator=(ErrorReporter const& _errorReporter)
|
|
|
|
{
|
|
|
|
if (&_errorReporter == this)
|
|
|
|
return *this;
|
|
|
|
m_errorList = _errorReporter.m_errorList;
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
2020-04-18 01:00:22 +00:00
|
|
|
void ErrorReporter::warning(ErrorId _error, string const& _description)
|
2017-05-11 13:26:35 +00:00
|
|
|
{
|
2020-04-18 01:00:22 +00:00
|
|
|
error(_error, Error::Type::Warning, SourceLocation(), _description);
|
2017-05-11 13:26:35 +00:00
|
|
|
}
|
|
|
|
|
2017-02-02 11:39:12 +00:00
|
|
|
void ErrorReporter::warning(
|
2020-04-18 01:00:22 +00:00
|
|
|
ErrorId _error,
|
2017-02-02 11:39:12 +00:00
|
|
|
SourceLocation const& _location,
|
|
|
|
string const& _description
|
|
|
|
)
|
2017-05-11 13:26:35 +00:00
|
|
|
{
|
2020-04-18 01:00:22 +00:00
|
|
|
error(_error, Error::Type::Warning, _location, _description);
|
2017-05-11 13:26:35 +00:00
|
|
|
}
|
|
|
|
|
2017-02-02 11:39:12 +00:00
|
|
|
void ErrorReporter::warning(
|
2020-04-18 01:00:22 +00:00
|
|
|
ErrorId _error,
|
2017-02-02 11:39:12 +00:00
|
|
|
SourceLocation const& _location,
|
|
|
|
string const& _description,
|
|
|
|
SecondarySourceLocation const& _secondaryLocation
|
|
|
|
)
|
|
|
|
{
|
2020-04-18 01:00:22 +00:00
|
|
|
error(_error, Error::Type::Warning, _location, _secondaryLocation, _description);
|
2017-02-02 11:39:12 +00:00
|
|
|
}
|
|
|
|
|
2020-05-28 02:32:46 +00:00
|
|
|
void ErrorReporter::error(ErrorId _errorId, Error::Type _type, SourceLocation const& _location, string const& _description)
|
2017-05-11 13:26:35 +00:00
|
|
|
{
|
2018-04-05 13:34:03 +00:00
|
|
|
if (checkForExcessiveErrors(_type))
|
|
|
|
return;
|
2017-12-12 08:54:33 +00:00
|
|
|
|
2020-10-31 02:40:41 +00:00
|
|
|
m_errorList.push_back(make_shared<Error>(_errorId, _type, _description, _location));
|
2017-05-11 13:26:35 +00:00
|
|
|
}
|
|
|
|
|
2020-05-28 02:32:46 +00:00
|
|
|
void ErrorReporter::error(ErrorId _errorId, Error::Type _type, SourceLocation const& _location, SecondarySourceLocation const& _secondaryLocation, string const& _description)
|
2017-05-11 13:26:35 +00:00
|
|
|
{
|
2018-04-05 13:34:03 +00:00
|
|
|
if (checkForExcessiveErrors(_type))
|
|
|
|
return;
|
2017-12-12 08:54:33 +00:00
|
|
|
|
2020-10-31 02:40:41 +00:00
|
|
|
m_errorList.push_back(make_shared<Error>(_errorId, _type, _description, _location, _secondaryLocation));
|
2017-05-11 13:26:35 +00:00
|
|
|
}
|
|
|
|
|
2019-05-27 14:13:27 +00:00
|
|
|
bool ErrorReporter::hasExcessiveErrors() const
|
|
|
|
{
|
|
|
|
return m_errorCount > c_maxErrorsAllowed;
|
|
|
|
}
|
|
|
|
|
2018-04-05 13:34:03 +00:00
|
|
|
bool ErrorReporter::checkForExcessiveErrors(Error::Type _type)
|
2017-12-12 08:54:33 +00:00
|
|
|
{
|
2018-04-05 13:34:03 +00:00
|
|
|
if (_type == Error::Type::Warning)
|
|
|
|
{
|
|
|
|
m_warningCount++;
|
|
|
|
|
|
|
|
if (m_warningCount == c_maxWarningsAllowed)
|
2020-10-31 02:40:41 +00:00
|
|
|
m_errorList.push_back(make_shared<Error>(4591_error, Error::Type::Warning, "There are more than 256 warnings. Ignoring the rest."));
|
2018-04-05 13:14:31 +00:00
|
|
|
|
2018-04-05 13:34:03 +00:00
|
|
|
if (m_warningCount >= c_maxWarningsAllowed)
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else
|
2017-12-12 08:54:33 +00:00
|
|
|
{
|
2018-04-05 13:34:03 +00:00
|
|
|
m_errorCount++;
|
|
|
|
|
|
|
|
if (m_errorCount > c_maxErrorsAllowed)
|
|
|
|
{
|
2020-10-31 02:40:41 +00:00
|
|
|
m_errorList.push_back(make_shared<Error>(4013_error, Error::Type::Warning, "There are more than 256 errors. Aborting."));
|
2018-04-05 13:34:03 +00:00
|
|
|
BOOST_THROW_EXCEPTION(FatalError());
|
|
|
|
}
|
2017-12-12 08:54:33 +00:00
|
|
|
}
|
2018-04-05 13:34:03 +00:00
|
|
|
|
|
|
|
return false;
|
2017-12-12 08:54:33 +00:00
|
|
|
}
|
2017-05-11 13:26:35 +00:00
|
|
|
|
2020-04-18 01:00:22 +00:00
|
|
|
void ErrorReporter::fatalError(ErrorId _error, Error::Type _type, SourceLocation const& _location, SecondarySourceLocation const& _secondaryLocation, string const& _description)
|
2019-03-04 13:30:08 +00:00
|
|
|
{
|
2020-04-18 01:00:22 +00:00
|
|
|
error(_error, _type, _location, _secondaryLocation, _description);
|
2019-03-04 13:30:08 +00:00
|
|
|
BOOST_THROW_EXCEPTION(FatalError());
|
|
|
|
}
|
|
|
|
|
2020-04-18 01:00:22 +00:00
|
|
|
void ErrorReporter::fatalError(ErrorId _error, Error::Type _type, SourceLocation const& _location, string const& _description)
|
2017-05-11 13:26:35 +00:00
|
|
|
{
|
2020-04-18 01:00:22 +00:00
|
|
|
error(_error, _type, _location, _description);
|
2017-05-11 13:26:35 +00:00
|
|
|
BOOST_THROW_EXCEPTION(FatalError());
|
|
|
|
}
|
|
|
|
|
|
|
|
ErrorList const& ErrorReporter::errors() const
|
|
|
|
{
|
|
|
|
return m_errorList;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ErrorReporter::clear()
|
|
|
|
{
|
|
|
|
m_errorList.clear();
|
|
|
|
}
|
|
|
|
|
2020-04-18 01:00:22 +00:00
|
|
|
void ErrorReporter::declarationError(ErrorId _error, SourceLocation const& _location, SecondarySourceLocation const& _secondaryLocation, string const& _description)
|
2017-05-11 13:26:35 +00:00
|
|
|
{
|
|
|
|
error(
|
2020-04-18 01:00:22 +00:00
|
|
|
_error,
|
2017-05-11 13:26:35 +00:00
|
|
|
Error::Type::DeclarationError,
|
|
|
|
_location,
|
|
|
|
_secondaryLocation,
|
|
|
|
_description
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2020-04-18 01:00:22 +00:00
|
|
|
void ErrorReporter::declarationError(ErrorId _error, SourceLocation const& _location, string const& _description)
|
2017-05-11 13:26:35 +00:00
|
|
|
{
|
|
|
|
error(
|
2020-04-18 01:00:22 +00:00
|
|
|
_error,
|
2017-05-11 13:26:35 +00:00
|
|
|
Error::Type::DeclarationError,
|
|
|
|
_location,
|
|
|
|
_description
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2020-04-18 01:00:22 +00:00
|
|
|
void ErrorReporter::fatalDeclarationError(ErrorId _error, SourceLocation const& _location, std::string const& _description)
|
2017-05-11 13:26:35 +00:00
|
|
|
{
|
|
|
|
fatalError(
|
2020-04-18 01:00:22 +00:00
|
|
|
_error,
|
2017-05-11 13:26:35 +00:00
|
|
|
Error::Type::DeclarationError,
|
|
|
|
_location,
|
|
|
|
_description);
|
|
|
|
}
|
|
|
|
|
2020-04-18 01:00:22 +00:00
|
|
|
void ErrorReporter::parserError(ErrorId _error, SourceLocation const& _location, string const& _description)
|
2017-05-11 13:26:35 +00:00
|
|
|
{
|
|
|
|
error(
|
2020-04-18 01:00:22 +00:00
|
|
|
_error,
|
2017-05-11 13:26:35 +00:00
|
|
|
Error::Type::ParserError,
|
|
|
|
_location,
|
|
|
|
_description
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2020-04-18 01:00:22 +00:00
|
|
|
void ErrorReporter::fatalParserError(ErrorId _error, SourceLocation const& _location, string const& _description)
|
2017-05-11 13:26:35 +00:00
|
|
|
{
|
|
|
|
fatalError(
|
2020-04-18 01:00:22 +00:00
|
|
|
_error,
|
2017-05-11 13:26:35 +00:00
|
|
|
Error::Type::ParserError,
|
|
|
|
_location,
|
|
|
|
_description
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2020-04-18 01:00:22 +00:00
|
|
|
void ErrorReporter::syntaxError(ErrorId _error, SourceLocation const& _location, string const& _description)
|
2017-05-11 13:26:35 +00:00
|
|
|
{
|
|
|
|
error(
|
2020-04-18 01:00:22 +00:00
|
|
|
_error,
|
2017-05-11 13:26:35 +00:00
|
|
|
Error::Type::SyntaxError,
|
|
|
|
_location,
|
|
|
|
_description
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2020-04-18 01:00:22 +00:00
|
|
|
void ErrorReporter::typeError(ErrorId _error, SourceLocation const& _location, SecondarySourceLocation const& _secondaryLocation, string const& _description)
|
2017-08-02 10:26:43 +00:00
|
|
|
{
|
|
|
|
error(
|
2020-04-18 01:00:22 +00:00
|
|
|
_error,
|
2017-08-02 10:26:43 +00:00
|
|
|
Error::Type::TypeError,
|
|
|
|
_location,
|
|
|
|
_secondaryLocation,
|
|
|
|
_description
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2020-04-18 01:00:22 +00:00
|
|
|
void ErrorReporter::typeError(ErrorId _error, SourceLocation const& _location, string const& _description)
|
2017-05-11 13:26:35 +00:00
|
|
|
{
|
|
|
|
error(
|
2020-04-18 01:00:22 +00:00
|
|
|
_error,
|
2017-05-11 13:26:35 +00:00
|
|
|
Error::Type::TypeError,
|
|
|
|
_location,
|
|
|
|
_description
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2020-04-18 01:00:22 +00:00
|
|
|
|
|
|
|
void ErrorReporter::fatalTypeError(ErrorId _error, SourceLocation const& _location, SecondarySourceLocation const& _secondaryLocation, string const& _description)
|
2019-03-04 13:30:08 +00:00
|
|
|
{
|
|
|
|
fatalError(
|
2020-04-18 01:00:22 +00:00
|
|
|
_error,
|
2019-03-04 13:30:08 +00:00
|
|
|
Error::Type::TypeError,
|
|
|
|
_location,
|
|
|
|
_secondaryLocation,
|
|
|
|
_description
|
|
|
|
);
|
|
|
|
}
|
2017-05-11 13:26:35 +00:00
|
|
|
|
2020-04-18 01:00:22 +00:00
|
|
|
void ErrorReporter::fatalTypeError(ErrorId _error, SourceLocation const& _location, string const& _description)
|
2017-05-11 13:26:35 +00:00
|
|
|
{
|
2020-04-18 01:00:22 +00:00
|
|
|
fatalError(
|
|
|
|
_error,
|
|
|
|
Error::Type::TypeError,
|
2017-05-11 13:26:35 +00:00
|
|
|
_location,
|
|
|
|
_description
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2020-04-18 01:00:22 +00:00
|
|
|
void ErrorReporter::docstringParsingError(ErrorId _error, string const& _description)
|
2017-05-11 13:26:35 +00:00
|
|
|
{
|
|
|
|
error(
|
2020-04-18 01:00:22 +00:00
|
|
|
_error,
|
2017-05-11 13:26:35 +00:00
|
|
|
Error::Type::DocstringParsingError,
|
|
|
|
SourceLocation(),
|
|
|
|
_description
|
|
|
|
);
|
|
|
|
}
|
2020-01-23 11:20:44 +00:00
|
|
|
|
2020-04-18 01:00:22 +00:00
|
|
|
void ErrorReporter::docstringParsingError(ErrorId _error, SourceLocation const& _location, string const& _description)
|
2020-01-23 11:20:44 +00:00
|
|
|
{
|
|
|
|
error(
|
2020-04-18 01:00:22 +00:00
|
|
|
_error,
|
2020-01-23 11:20:44 +00:00
|
|
|
Error::Type::DocstringParsingError,
|
|
|
|
_location,
|
|
|
|
_description
|
|
|
|
);
|
|
|
|
}
|