2008-12-18 22:28:57 +01:00
|
|
|
/*
|
2009-01-21 21:04:20 +01:00
|
|
|
* Cppcheck - A tool for static C/C++ code analysis
|
2009-05-30 07:48:12 +02:00
|
|
|
* Copyright (C) 2007-2009 Daniel Marjamäki and Cppcheck team.
|
2008-12-18 22:28:57 +01:00
|
|
|
*
|
|
|
|
* This program 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.
|
|
|
|
*
|
|
|
|
* This program 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
|
2009-09-27 17:08:31 +02:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2008-12-18 22:28:57 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "settings.h"
|
|
|
|
|
2009-03-06 07:22:07 +01:00
|
|
|
#include <algorithm>
|
2009-09-08 19:49:05 +02:00
|
|
|
#include <fstream>
|
2009-10-08 16:56:30 +02:00
|
|
|
#include <sstream>
|
2009-03-06 07:22:07 +01:00
|
|
|
|
2008-12-18 22:28:57 +01:00
|
|
|
Settings::Settings()
|
|
|
|
{
|
|
|
|
_debug = false;
|
|
|
|
_showAll = false;
|
|
|
|
_checkCodingStyle = false;
|
|
|
|
_errorsOnly = false;
|
|
|
|
_verbose = false;
|
2008-12-27 08:52:07 +01:00
|
|
|
_force = false;
|
2009-02-01 19:00:47 +01:00
|
|
|
_xml = false;
|
2009-01-28 18:26:19 +01:00
|
|
|
_unusedFunctions = false;
|
2009-02-22 19:38:10 +01:00
|
|
|
_jobs = 1;
|
2009-03-06 01:03:31 +01:00
|
|
|
_exitCode = 0;
|
2009-07-27 14:41:34 +02:00
|
|
|
_showtime = false;
|
2009-09-08 19:49:05 +02:00
|
|
|
_append = "";
|
2008-12-18 22:28:57 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
Settings::~Settings()
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
2009-03-06 07:22:07 +01:00
|
|
|
|
|
|
|
|
|
|
|
void Settings::autoDealloc(std::istream &istr)
|
|
|
|
{
|
|
|
|
std::string line;
|
2009-03-06 18:13:41 +01:00
|
|
|
while (getline(istr, line))
|
2009-03-06 07:22:07 +01:00
|
|
|
{
|
|
|
|
// Check if line has a valid classname..
|
|
|
|
if (line.empty())
|
|
|
|
continue;
|
|
|
|
|
|
|
|
// Add classname to list
|
|
|
|
_autoDealloc.push_back(line);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-10-08 16:56:30 +02:00
|
|
|
bool Settings::suppressions(std::istream &istr)
|
|
|
|
{
|
|
|
|
std::string line;
|
|
|
|
while (getline(istr, line))
|
|
|
|
{
|
|
|
|
// Skip empty lines
|
|
|
|
if (line.empty())
|
|
|
|
continue;
|
|
|
|
|
|
|
|
std::istringstream lineStream(line);
|
|
|
|
std::string id;
|
|
|
|
std::string file;
|
|
|
|
unsigned int lineNumber = 0;
|
|
|
|
if (std::getline(lineStream, id, ':'))
|
|
|
|
{
|
|
|
|
if (std::getline(lineStream, file, ':'))
|
|
|
|
{
|
|
|
|
lineStream >> lineNumber;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// We could perhaps check if the id is valid and return error if it is not
|
|
|
|
addSuppression(id, file, lineNumber);
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Settings::addSuppression(const std::string &errorId, const std::string &file, unsigned int line)
|
|
|
|
{
|
|
|
|
_suppressions[errorId][file].push_back(line);
|
|
|
|
_suppressions[errorId][file].sort();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Settings::isSuppressed(const std::string &errorId, const std::string &file, unsigned int line)
|
|
|
|
{
|
|
|
|
if (_suppressions.find(errorId) == _suppressions.end())
|
|
|
|
return false;
|
|
|
|
|
|
|
|
// Check are all errors of this type filtered out
|
|
|
|
if (_suppressions[errorId].find("") != _suppressions[errorId].end())
|
|
|
|
return true;
|
|
|
|
|
|
|
|
if (_suppressions[errorId].find(file) == _suppressions[errorId].end())
|
|
|
|
return false;
|
|
|
|
|
|
|
|
// Check should all errors in this file be filtered out
|
|
|
|
if (std::find(_suppressions[errorId][file].begin(), _suppressions[errorId][file].end(), 0) != _suppressions[errorId][file].end())
|
|
|
|
return true;
|
|
|
|
|
|
|
|
if (std::find(_suppressions[errorId][file].begin(), _suppressions[errorId][file].end(), line) == _suppressions[errorId][file].end())
|
|
|
|
return false;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2009-06-22 10:57:17 +02:00
|
|
|
void Settings::addAutoAllocClass(const std::string &name)
|
|
|
|
{
|
|
|
|
_autoDealloc.push_back(name);
|
|
|
|
}
|
2009-03-06 07:22:07 +01:00
|
|
|
|
|
|
|
bool Settings::isAutoDealloc(const char classname[]) const
|
|
|
|
{
|
|
|
|
return (std::find(_autoDealloc.begin(), _autoDealloc.end(), classname) != _autoDealloc.end());
|
|
|
|
}
|
|
|
|
|
2009-09-08 19:49:05 +02:00
|
|
|
|
|
|
|
void Settings::append(const std::string &filename)
|
|
|
|
{
|
|
|
|
_append = "\n";
|
|
|
|
std::ifstream fin(filename.c_str());
|
|
|
|
std::string line;
|
|
|
|
while (std::getline(fin, line))
|
|
|
|
{
|
|
|
|
_append += line + "\n";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string Settings::append() const
|
|
|
|
{
|
|
|
|
return _append;
|
|
|
|
}
|