1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128
|
/* $Id$
*
* Copyright (C) 2007-2009 FAUmachine Team <info@faumachine.org>.
* This program is free software. You can redistribute it and/or modify it
* under the terms of the GNU General Public License, either version 2 of
* the License, or (at your option) any later version. See COPYING.
*/
#include "frontend/reporting/ErrorRegistry.hpp"
namespace ast {
void
ErrorRegistry::addError(CompileError *error)
{
errors.push_back(error);
}
void
ErrorRegistry::addWarning(CompileError *warning)
{
if (ErrorRegistry::werror) {
errors.push_back(warning);
} else {
warnings.push_back(warning);
}
}
void
ErrorRegistry::addPotentialError(CompileError *error)
{
potentialErrors.push_back(error);
}
void
ErrorRegistry::rejectPotentials(void)
{
for (std::list<CompileError*>::const_iterator i =
ErrorRegistry::potentialErrors.begin();
i != ErrorRegistry::potentialErrors.end(); i++) {
delete *i;
}
potentialErrors.clear();
}
void
ErrorRegistry::acceptPotentials(void)
{
for (std::list<CompileError*>::const_iterator i =
potentialErrors.begin(); i != potentialErrors.end(); i++) {
errors.push_back(*i);
}
potentialErrors.clear();
}
bool
ErrorRegistry::hasErrors(void)
{
return not errors.empty();
}
bool
ErrorRegistry::hasWarnings(void)
{
return not warnings.empty();
}
void
ErrorRegistry::putWarnings(std::ostream &stream)
{
for (std::list<CompileError*>::const_iterator i =
warnings.begin(); i != warnings.end(); i++) {
stream << "WARNING> " << **i << std::endl;
}
}
void
ErrorRegistry::putErrors(std::ostream &stream)
{
for (std::list<CompileError*>::const_iterator i =
errors.begin(); i != errors.end(); i++) {
stream << "ERROR> " << **i << std::endl;
}
}
void
ErrorRegistry::flushAll(void)
{
ErrorRegistry::rejectPotentials();
for (std::list<CompileError*>::iterator i =
errors.begin(); i != errors.end(); i++) {
delete *i;
}
for (std::list<CompileError*>::iterator i =
warnings.begin(); i != warnings.end(); i++) {
delete *i;
}
warnings.clear();
errors.clear();
}
void
ErrorRegistry::setWerror(bool val)
{
assert(ErrorRegistry::warnings.empty());
ErrorRegistry::werror = true;
}
/* initialize/define statics */
std::list<CompileError*> ErrorRegistry::errors =
std::list<CompileError*>();
std::list<CompileError*> ErrorRegistry::warnings =
std::list<CompileError*>();
std::list<CompileError*> ErrorRegistry::potentialErrors =
std::list<CompileError*>();
bool ErrorRegistry::werror = false;
}; /* namespace ast */
|