solidity/liblangutil/Exceptions.cpp

99 lines
2.6 KiB
C++
Raw Normal View History

2015-10-15 09:50:25 +00:00
/*
This file is part of solidity.
2015-10-15 09:50:25 +00:00
solidity is free software: you can redistribute it and/or modify
2015-10-15 09:50:25 +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.
solidity is distributed in the hope that it will be useful,
2015-10-15 09:50:25 +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
along with solidity. If not, see <http://www.gnu.org/licenses/>.
2015-10-15 09:50:25 +00:00
*/
// SPDX-License-Identifier: GPL-3.0
2015-10-15 09:50:25 +00:00
/**
2015-10-15 12:36:23 +00:00
* @author Liana <liana@ethdev.com>
2015-10-15 09:50:25 +00:00
* @date 2015
* Solidity exception hierarchy.
*/
#include <liblangutil/Exceptions.h>
2015-10-15 09:50:25 +00:00
#include <boost/algorithm/string/case_conv.hpp>
#include <boost/algorithm/string/trim.hpp>
2017-02-24 18:31:20 +00:00
using namespace std;
2019-12-11 16:31:36 +00:00
using namespace solidity;
using namespace solidity::langutil;
2015-10-15 09:50:25 +00:00
Error::Error(
ErrorId _errorId, Error::Type _type,
std::string const& _description,
SourceLocation const& _location,
SecondarySourceLocation const& _secondaryLocation
):
2020-05-28 02:32:46 +00:00
m_errorId(_errorId),
2017-03-03 17:44:28 +00:00
m_type(_type)
2015-10-15 09:50:25 +00:00
{
2019-11-11 16:09:59 +00:00
switch (m_type)
2015-10-15 09:50:25 +00:00
{
case Type::CodeGenerationError:
m_typeName = "CodeGenerationError";
break;
2015-10-21 14:43:31 +00:00
case Type::DeclarationError:
m_typeName = "DeclarationError";
2015-10-21 14:43:31 +00:00
break;
case Type::DocstringParsingError:
m_typeName = "DocstringParsingError";
2015-10-21 14:43:31 +00:00
break;
2021-06-30 12:48:45 +00:00
case Type::Info:
m_typeName = "Info";
break;
2015-10-21 14:43:31 +00:00
case Type::ParserError:
m_typeName = "ParserError";
2015-10-21 14:43:31 +00:00
break;
case Type::SyntaxError:
m_typeName = "SyntaxError";
break;
2015-10-21 14:43:31 +00:00
case Type::TypeError:
m_typeName = "TypeError";
2015-10-21 14:43:31 +00:00
break;
case Type::Warning:
m_typeName = "Warning";
break;
2015-10-15 09:50:25 +00:00
}
2017-03-03 17:44:28 +00:00
if (_location.isValid())
2017-03-03 17:44:28 +00:00
*this << errinfo_sourceLocation(_location);
if (!_secondaryLocation.infos.empty())
*this << errinfo_secondarySourceLocation(_secondaryLocation);
2017-03-03 17:44:28 +00:00
if (!_description.empty())
2019-12-11 16:31:36 +00:00
*this << util::errinfo_comment(_description);
2015-10-15 09:50:25 +00:00
}
2021-12-01 11:30:36 +00:00
SourceLocation const* Error::sourceLocation() const noexcept
{
return boost::get_error_info<errinfo_sourceLocation>(*this);
}
SecondarySourceLocation const* Error::secondarySourceLocation() const noexcept
{
return boost::get_error_info<errinfo_secondarySourceLocation>(*this);
}
optional<Error::Severity> Error::severityFromString(string _input)
{
boost::algorithm::to_lower(_input);
boost::algorithm::trim(_input);
for (Severity severity: {Severity::Error, Severity::Warning, Severity::Info})
if (_input == formatErrorSeverityLowercase(severity))
return severity;
return nullopt;
}