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
|
2011-01-09 20:33:36 +01:00
|
|
|
* Copyright (C) 2007-2011 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-12-04 19:35:58 +01:00
|
|
|
#include <stdexcept>
|
2010-07-08 12:06:27 +02:00
|
|
|
#include <iostream>
|
2010-07-09 10:18:35 +02:00
|
|
|
#include <cctype> // std::isdigit, std::isalnum, etc
|
2010-07-31 08:52:28 +02:00
|
|
|
#include <set>
|
2011-02-12 21:55:45 +01:00
|
|
|
#include <stack>
|
2009-03-06 07:22:07 +01:00
|
|
|
|
2008-12-18 22:28:57 +01:00
|
|
|
Settings::Settings()
|
|
|
|
{
|
2010-08-27 20:28:00 +02:00
|
|
|
debug = debugwarnings = false;
|
2008-12-18 22:28:57 +01:00
|
|
|
_checkCodingStyle = false;
|
|
|
|
_errorsOnly = false;
|
2009-12-06 19:38:53 +01:00
|
|
|
_inlineSuppressions = false;
|
2008-12-18 22:28:57 +01:00
|
|
|
_verbose = false;
|
2008-12-27 08:52:07 +01:00
|
|
|
_force = false;
|
2009-02-01 19:00:47 +01:00
|
|
|
_xml = false;
|
2010-12-02 17:32:51 +01:00
|
|
|
_xml_version = 1;
|
2009-02-22 19:38:10 +01:00
|
|
|
_jobs = 1;
|
2009-03-06 01:03:31 +01:00
|
|
|
_exitCode = 0;
|
2010-04-12 22:13:42 +02:00
|
|
|
_showtime = 0; // TODO: use enum
|
2009-09-08 19:49:05 +02:00
|
|
|
_append = "";
|
2010-01-18 20:23:50 +01:00
|
|
|
_terminate = false;
|
2010-04-17 09:23:54 +02:00
|
|
|
inconclusive = false;
|
2011-04-10 15:55:08 +02:00
|
|
|
experimental = false;
|
2010-05-21 19:35:18 +02:00
|
|
|
test_2_pass = false;
|
2010-08-12 21:03:33 +02:00
|
|
|
reportProgress = false;
|
2010-08-07 13:08:36 +02:00
|
|
|
ifcfg = false;
|
2008-12-18 22:28:57 +01:00
|
|
|
}
|
2009-03-06 07:22:07 +01:00
|
|
|
|
2010-07-23 23:12:56 +02:00
|
|
|
std::string Settings::Suppressions::parseFile(std::istream &istr)
|
2009-10-08 16:56:30 +02:00
|
|
|
{
|
2010-07-09 12:42:08 +02:00
|
|
|
// Change '\r' to '\n' in the istr
|
|
|
|
std::string filedata;
|
2009-10-08 16:56:30 +02:00
|
|
|
std::string line;
|
2010-07-09 12:42:08 +02:00
|
|
|
while (std::getline(istr, line))
|
|
|
|
filedata += line + "\n";
|
|
|
|
while (filedata.find("\r") != std::string::npos)
|
|
|
|
filedata[filedata.find("\r")] = '\n';
|
|
|
|
|
|
|
|
// Parse filedata..
|
|
|
|
std::istringstream istr2(filedata);
|
|
|
|
while (std::getline(istr2, line))
|
2009-10-08 16:56:30 +02:00
|
|
|
{
|
|
|
|
// Skip empty lines
|
2010-04-02 07:30:58 +02:00
|
|
|
if (line.empty())
|
2009-10-08 16:56:30 +02:00
|
|
|
continue;
|
2010-10-26 21:22:11 +02:00
|
|
|
|
|
|
|
// Skip comments
|
|
|
|
if (line.length() >= 2 && line[0] == '/' && line[1] == '/')
|
|
|
|
continue;
|
2009-10-08 16:56:30 +02:00
|
|
|
|
2011-02-16 10:26:16 +01:00
|
|
|
const std::string errmsg(addSuppressionLine(line));
|
|
|
|
if (!errmsg.empty())
|
|
|
|
return errmsg;
|
|
|
|
}
|
|
|
|
|
|
|
|
return "";
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string Settings::Suppressions::addSuppressionLine(const std::string &line)
|
|
|
|
{
|
|
|
|
std::istringstream lineStream(line);
|
|
|
|
std::string id;
|
|
|
|
std::string file;
|
|
|
|
unsigned int lineNumber = 0;
|
|
|
|
if (std::getline(lineStream, id, ':'))
|
|
|
|
{
|
|
|
|
if (std::getline(lineStream, file))
|
2009-10-08 16:56:30 +02:00
|
|
|
{
|
2011-02-16 10:26:16 +01:00
|
|
|
// If there is not a dot after the last colon in "file" then
|
|
|
|
// the colon is a separator and the contents after the colon
|
|
|
|
// is a line number..
|
2010-08-04 20:28:41 +02:00
|
|
|
|
2011-02-16 10:26:16 +01:00
|
|
|
// Get position of last colon
|
|
|
|
const std::string::size_type pos = file.rfind(":");
|
2010-08-03 17:52:03 +02:00
|
|
|
|
2011-02-16 10:26:16 +01:00
|
|
|
// if a colon is found and there is no dot after it..
|
|
|
|
if (pos != std::string::npos &&
|
|
|
|
file.find(".", pos) == std::string::npos)
|
|
|
|
{
|
|
|
|
// Try to parse out the line number
|
|
|
|
try
|
|
|
|
{
|
|
|
|
std::istringstream istr1(file.substr(pos+1));
|
|
|
|
istr1 >> lineNumber;
|
|
|
|
}
|
|
|
|
catch (...)
|
|
|
|
{
|
|
|
|
lineNumber = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (lineNumber > 0)
|
2010-08-03 17:52:03 +02:00
|
|
|
{
|
2011-02-16 10:26:16 +01:00
|
|
|
file.erase(pos);
|
2010-08-03 17:52:03 +02:00
|
|
|
}
|
2009-10-08 16:56:30 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-02-16 10:26:16 +01:00
|
|
|
// We could perhaps check if the id is valid and return error if it is not
|
|
|
|
const std::string errmsg(addSuppression(id, file, lineNumber));
|
|
|
|
if (!errmsg.empty())
|
|
|
|
return errmsg;
|
|
|
|
|
2010-07-23 23:12:56 +02:00
|
|
|
return "";
|
2009-10-08 16:56:30 +02:00
|
|
|
}
|
|
|
|
|
2011-02-08 12:13:50 +01:00
|
|
|
bool Settings::Suppressions::FileMatcher::match(const std::string &pattern, const std::string &name)
|
|
|
|
{
|
|
|
|
const char *p = pattern.c_str();
|
|
|
|
const char *n = name.c_str();
|
2011-02-12 21:55:45 +01:00
|
|
|
std::stack<std::pair<const char *, const char *> > backtrack;
|
2011-02-08 12:13:50 +01:00
|
|
|
|
2011-02-12 22:01:32 +01:00
|
|
|
for (;;)
|
|
|
|
{
|
2011-02-08 12:13:50 +01:00
|
|
|
bool matching = true;
|
2011-02-12 22:01:32 +01:00
|
|
|
while (*p != '\0' && matching)
|
|
|
|
{
|
|
|
|
switch (*p)
|
|
|
|
{
|
|
|
|
case '*':
|
|
|
|
// Step forward until we match the next character after *
|
|
|
|
while (*n != '\0' && *n != p[1])
|
|
|
|
{
|
|
|
|
n++;
|
|
|
|
}
|
|
|
|
if (*n != '\0')
|
|
|
|
{
|
|
|
|
// If this isn't the last possibility, save it for later
|
|
|
|
backtrack.push(std::make_pair(p, n));
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case '?':
|
|
|
|
// Any character matches unless we're at the end of the name
|
|
|
|
if (*n != '\0')
|
|
|
|
{
|
|
|
|
n++;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
matching = false;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
// Non-wildcard characters match literally
|
|
|
|
if (*n == *p)
|
|
|
|
{
|
|
|
|
n++;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
matching = false;
|
|
|
|
}
|
|
|
|
break;
|
2011-02-08 12:13:50 +01:00
|
|
|
}
|
|
|
|
p++;
|
|
|
|
}
|
|
|
|
|
|
|
|
// If we haven't failed matching and we've reached the end of the name, then success
|
2011-02-12 22:01:32 +01:00
|
|
|
if (matching && *n == '\0')
|
|
|
|
{
|
2011-02-08 12:13:50 +01:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// If there are no other paths to tray, then fail
|
2011-02-12 22:01:32 +01:00
|
|
|
if (backtrack.empty())
|
|
|
|
{
|
2011-02-08 12:13:50 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Restore pointers from backtrack stack
|
2011-02-12 21:55:45 +01:00
|
|
|
p = backtrack.top().first;
|
|
|
|
n = backtrack.top().second;
|
|
|
|
backtrack.pop();
|
2011-02-08 12:13:50 +01:00
|
|
|
|
|
|
|
// Advance name pointer by one because the current position didn't work
|
|
|
|
n++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-02-08 09:45:17 +01:00
|
|
|
std::string Settings::Suppressions::FileMatcher::addFile(const std::string &name, unsigned int line)
|
|
|
|
{
|
2011-02-12 22:01:32 +01:00
|
|
|
if (name.find_first_of("*?") != std::string::npos)
|
|
|
|
{
|
|
|
|
for (std::string::const_iterator i = name.begin(); i != name.end(); ++i)
|
|
|
|
{
|
|
|
|
if (*i == '*')
|
|
|
|
{
|
2011-02-08 12:13:50 +01:00
|
|
|
std::string::const_iterator j = i + 1;
|
2011-02-12 22:01:32 +01:00
|
|
|
if (j != name.end() && (*j == '*' || *j == '?'))
|
|
|
|
{
|
2011-02-08 12:13:50 +01:00
|
|
|
return "Failed to add suppression. Syntax error in glob.";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2011-02-16 02:12:15 +01:00
|
|
|
_globs[name][line] = false;
|
2011-02-12 22:01:32 +01:00
|
|
|
}
|
2011-02-16 00:05:27 +01:00
|
|
|
else if (name.empty())
|
|
|
|
{
|
2011-02-16 02:12:15 +01:00
|
|
|
_globs["*"][0U] = false;
|
2011-02-16 00:05:27 +01:00
|
|
|
}
|
2011-02-12 22:01:32 +01:00
|
|
|
else
|
|
|
|
{
|
2011-02-16 02:12:15 +01:00
|
|
|
_files[name][line] = false;
|
2011-02-08 12:13:50 +01:00
|
|
|
}
|
2011-02-08 09:45:17 +01:00
|
|
|
return "";
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Settings::Suppressions::FileMatcher::isSuppressed(const std::string &file, unsigned int line)
|
|
|
|
{
|
2011-02-16 02:12:15 +01:00
|
|
|
if (isSuppressedLocal(file, line))
|
|
|
|
return true;
|
2011-02-08 12:13:50 +01:00
|
|
|
|
2011-02-16 02:12:15 +01:00
|
|
|
for (std::map<std::string, std::map<unsigned int, bool> >::iterator g = _globs.begin(); g != _globs.end(); ++g)
|
2011-02-12 22:01:32 +01:00
|
|
|
{
|
|
|
|
if (match(g->first, file))
|
|
|
|
{
|
2011-02-16 02:12:15 +01:00
|
|
|
if (g->second.find(0U) != g->second.end())
|
|
|
|
{
|
|
|
|
g->second[0U] = true;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
std::map<unsigned int, bool>::iterator l = g->second.find(line);
|
|
|
|
if (l != g->second.end())
|
|
|
|
{
|
|
|
|
l->second = true;
|
|
|
|
return true;
|
|
|
|
}
|
2011-02-08 12:13:50 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-02-16 02:12:15 +01:00
|
|
|
return false;
|
|
|
|
}
|
2011-02-08 09:45:17 +01:00
|
|
|
|
2011-02-16 02:12:15 +01:00
|
|
|
bool Settings::Suppressions::FileMatcher::isSuppressedLocal(const std::string &file, unsigned int line)
|
|
|
|
{
|
|
|
|
std::map<std::string, std::map<unsigned int, bool> >::iterator f = _files.find(file);
|
|
|
|
if (f != _files.end())
|
|
|
|
{
|
|
|
|
if (f->second.find(0U) != f->second.end())
|
|
|
|
{
|
|
|
|
f->second[0U] = true;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
std::map<unsigned int, bool>::iterator l = f->second.find(line);
|
|
|
|
if (l != f->second.end())
|
|
|
|
{
|
|
|
|
l->second = true;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
2011-02-08 09:45:17 +01:00
|
|
|
|
2011-02-16 02:12:15 +01:00
|
|
|
return false;
|
2011-02-08 09:45:17 +01:00
|
|
|
}
|
|
|
|
|
2010-07-23 23:12:56 +02:00
|
|
|
std::string Settings::Suppressions::addSuppression(const std::string &errorId, const std::string &file, unsigned int line)
|
2009-10-08 16:56:30 +02:00
|
|
|
{
|
2010-07-08 12:06:27 +02:00
|
|
|
// Check that errorId is valid..
|
|
|
|
if (errorId.empty())
|
|
|
|
{
|
2010-07-23 23:12:56 +02:00
|
|
|
return "Failed to add suppression. No id.";
|
2010-07-08 12:06:27 +02:00
|
|
|
}
|
2011-03-10 10:00:48 +01:00
|
|
|
if (errorId != "*")
|
2010-07-08 12:06:27 +02:00
|
|
|
{
|
2011-03-10 10:00:48 +01:00
|
|
|
for (std::string::size_type pos = 0; pos < errorId.length(); ++pos)
|
2010-07-08 12:06:27 +02:00
|
|
|
{
|
2011-03-10 10:00:48 +01:00
|
|
|
if (errorId[pos] < 0 || !std::isalnum(errorId[pos]))
|
|
|
|
{
|
|
|
|
return "Failed to add suppression. Invalid id \"" + errorId + "\"";
|
|
|
|
}
|
|
|
|
if (pos == 0 && std::isdigit(errorId[pos]))
|
|
|
|
{
|
|
|
|
return "Failed to add suppression. Invalid id \"" + errorId + "\"";
|
|
|
|
}
|
2010-07-08 12:06:27 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-02-08 09:45:17 +01:00
|
|
|
return _suppressions[errorId].addFile(file, line);
|
2009-10-08 16:56:30 +02:00
|
|
|
}
|
|
|
|
|
2009-12-28 11:23:58 +01:00
|
|
|
bool Settings::Suppressions::isSuppressed(const std::string &errorId, const std::string &file, unsigned int line)
|
2009-10-08 16:56:30 +02:00
|
|
|
{
|
2011-03-10 10:00:48 +01:00
|
|
|
if (errorId != "unmatchedSuppression" && _suppressions.find("*") != _suppressions.end())
|
|
|
|
if (_suppressions["*"].isSuppressed(file, line))
|
|
|
|
return true;
|
|
|
|
|
2010-04-02 07:30:58 +02:00
|
|
|
if (_suppressions.find(errorId) == _suppressions.end())
|
2009-10-08 16:56:30 +02:00
|
|
|
return false;
|
|
|
|
|
2011-02-08 09:45:17 +01:00
|
|
|
return _suppressions[errorId].isSuppressed(file, line);
|
2009-10-08 16:56:30 +02:00
|
|
|
}
|
|
|
|
|
2011-02-16 02:12:15 +01:00
|
|
|
bool Settings::Suppressions::isSuppressedLocal(const std::string &errorId, const std::string &file, unsigned int line)
|
|
|
|
{
|
2011-03-10 10:00:48 +01:00
|
|
|
if (errorId != "unmatchedSuppression" && _suppressions.find("*") != _suppressions.end())
|
|
|
|
if (_suppressions["*"].isSuppressedLocal(file, line))
|
|
|
|
return true;
|
|
|
|
|
2011-02-16 02:12:15 +01:00
|
|
|
if (_suppressions.find(errorId) == _suppressions.end())
|
|
|
|
return false;
|
|
|
|
|
|
|
|
return _suppressions[errorId].isSuppressedLocal(file, line);
|
|
|
|
}
|
|
|
|
|
2011-02-17 09:46:14 +01:00
|
|
|
std::list<Settings::Suppressions::SuppressionEntry> Settings::Suppressions::getUnmatchedLocalSuppressions(const std::string &file) const
|
2011-02-16 02:12:15 +01:00
|
|
|
{
|
|
|
|
std::list<SuppressionEntry> r;
|
|
|
|
for (std::map<std::string, FileMatcher>::const_iterator i = _suppressions.begin(); i != _suppressions.end(); ++i)
|
|
|
|
{
|
2011-02-17 09:46:14 +01:00
|
|
|
std::map<std::string, std::map<unsigned int, bool> >::const_iterator f = i->second._files.find(file);
|
|
|
|
if (f != i->second._files.end())
|
2011-02-16 02:12:15 +01:00
|
|
|
{
|
|
|
|
for (std::map<unsigned int, bool>::const_iterator l = f->second.begin(); l != f->second.end(); ++l)
|
|
|
|
{
|
|
|
|
if (!l->second)
|
|
|
|
{
|
|
|
|
r.push_back(SuppressionEntry(i->first, f->first, l->first));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::list<Settings::Suppressions::SuppressionEntry> Settings::Suppressions::getUnmatchedGlobalSuppressions() const
|
|
|
|
{
|
|
|
|
std::list<SuppressionEntry> r;
|
|
|
|
for (std::map<std::string, FileMatcher>::const_iterator i = _suppressions.begin(); i != _suppressions.end(); ++i)
|
|
|
|
{
|
|
|
|
for (std::map<std::string, std::map<unsigned int, bool> >::const_iterator g = i->second._globs.begin(); g != i->second._globs.end(); ++g)
|
|
|
|
{
|
|
|
|
for (std::map<unsigned int, bool>::const_iterator l = g->second.begin(); l != g->second.end(); ++l)
|
|
|
|
{
|
|
|
|
if (!l->second)
|
|
|
|
{
|
|
|
|
r.push_back(SuppressionEntry(i->first, g->first, l->first));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
2010-07-23 13:29:16 +02:00
|
|
|
std::string Settings::addEnabled(const std::string &str)
|
2009-11-30 22:48:58 +01:00
|
|
|
{
|
2009-12-04 21:31:14 +01:00
|
|
|
// Enable parameters may be comma separated...
|
2010-04-02 07:30:58 +02:00
|
|
|
if (str.find(",") != std::string::npos)
|
2009-12-04 21:31:14 +01:00
|
|
|
{
|
|
|
|
std::string::size_type prevPos = 0;
|
|
|
|
std::string::size_type pos = 0;
|
2010-04-02 07:30:58 +02:00
|
|
|
while ((pos = str.find(",", pos)) != std::string::npos)
|
2009-12-04 21:31:14 +01:00
|
|
|
{
|
2010-04-02 07:30:58 +02:00
|
|
|
if (pos == prevPos)
|
2010-07-23 13:29:16 +02:00
|
|
|
return std::string("cppcheck: --enable parameter is empty");
|
|
|
|
const std::string errmsg(addEnabled(str.substr(prevPos, pos - prevPos)));
|
|
|
|
if (!errmsg.empty())
|
|
|
|
return errmsg;
|
2009-12-04 21:31:14 +01:00
|
|
|
++pos;
|
|
|
|
prevPos = pos;
|
|
|
|
}
|
2010-04-02 07:30:58 +02:00
|
|
|
if (prevPos >= str.length())
|
2010-07-23 13:29:16 +02:00
|
|
|
return std::string("cppcheck: --enable parameter is empty");
|
|
|
|
return addEnabled(str.substr(prevPos));
|
2009-12-04 21:31:14 +01:00
|
|
|
}
|
|
|
|
|
2009-12-04 20:12:34 +01:00
|
|
|
bool handled = false;
|
|
|
|
|
2010-04-02 07:30:58 +02:00
|
|
|
if (str == "all")
|
2010-04-10 14:05:33 +02:00
|
|
|
handled = _checkCodingStyle = true;
|
2010-04-02 07:30:58 +02:00
|
|
|
else if (str == "style")
|
2009-12-04 20:12:34 +01:00
|
|
|
handled = _checkCodingStyle = true;
|
2009-12-04 19:35:58 +01:00
|
|
|
|
|
|
|
std::set<std::string> id;
|
2010-09-03 13:30:49 +02:00
|
|
|
id.insert("missingInclude");
|
|
|
|
id.insert("unusedFunction");
|
2011-01-05 21:20:21 +01:00
|
|
|
id.insert("information");
|
2009-12-04 19:35:58 +01:00
|
|
|
|
2010-04-02 07:30:58 +02:00
|
|
|
if (str == "all")
|
2009-11-30 22:48:58 +01:00
|
|
|
{
|
2009-12-04 19:35:58 +01:00
|
|
|
std::set<std::string>::const_iterator it;
|
2010-04-02 07:30:58 +02:00
|
|
|
for (it = id.begin(); it != id.end(); ++it)
|
2009-12-04 19:35:58 +01:00
|
|
|
_enabled[*it] = true;
|
|
|
|
}
|
2010-04-02 07:30:58 +02:00
|
|
|
else if (id.find(str) != id.end())
|
2009-12-04 19:35:58 +01:00
|
|
|
{
|
|
|
|
_enabled[str] = true;
|
2009-11-30 22:48:58 +01:00
|
|
|
}
|
2010-04-02 07:30:58 +02:00
|
|
|
else if (!handled)
|
2009-11-30 22:48:58 +01:00
|
|
|
{
|
2010-04-02 07:30:58 +02:00
|
|
|
if (str.empty())
|
2010-07-23 13:29:16 +02:00
|
|
|
return std::string("cppcheck: --enable parameter is empty");
|
2009-12-05 19:28:20 +01:00
|
|
|
else
|
2010-07-23 13:29:16 +02:00
|
|
|
return std::string("cppcheck: there is no --enable parameter with the name '" + str + "'");
|
2009-11-30 22:48:58 +01:00
|
|
|
}
|
2010-07-23 13:29:16 +02:00
|
|
|
|
|
|
|
return std::string("");
|
2009-11-30 22:48:58 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
bool Settings::isEnabled(const std::string &str) const
|
|
|
|
{
|
2009-12-04 19:35:58 +01:00
|
|
|
return bool(_enabled.find(str) != _enabled.end());
|
2009-11-30 22:48:58 +01:00
|
|
|
}
|
|
|
|
|
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;
|
2010-04-02 07:30:58 +02:00
|
|
|
while (std::getline(fin, line))
|
2009-09-08 19:49:05 +02:00
|
|
|
{
|
|
|
|
_append += line + "\n";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string Settings::append() const
|
|
|
|
{
|
|
|
|
return _append;
|
|
|
|
}
|