cppcheck/lib/analyzerinfo.cpp

105 lines
3.2 KiB
C++

/*
* Cppcheck - A tool for static C/C++ code analysis
* Copyright (C) 2007-2016 Cppcheck team.
*
* 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
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "analyzerinfo.h"
#include "path.h"
#include <tinyxml2.h>
AnalyzerInformation::AnalyzerInformation() {}
AnalyzerInformation::~AnalyzerInformation()
{
close();
}
void AnalyzerInformation::close()
{
analyzerInfoFile.clear();
if (fout.is_open()) {
fout << "</analyzerinfo>\n";
fout.close();
}
}
static bool skipAnalysis(const std::string &analyzerInfoFile, unsigned long long checksum, std::list<ErrorLogger::ErrorMessage> *errors)
{
tinyxml2::XMLDocument doc;
tinyxml2::XMLError error = doc.LoadFile(analyzerInfoFile.c_str());
if (error != tinyxml2::XML_SUCCESS)
return false;
const tinyxml2::XMLElement * const rootNode = doc.FirstChildElement();
if (rootNode == nullptr)
return false;
const char *attr = rootNode->Attribute("checksum");
if (!attr || attr != std::to_string(checksum))
return false;
for (const tinyxml2::XMLElement *e = rootNode->FirstChildElement(); e; e = e->NextSiblingElement()) {
if (std::strcmp(e->Name(), "error") == 0)
errors->push_back(ErrorLogger::ErrorMessage(e));
}
return true;
}
bool AnalyzerInformation::analyzeFile(const std::string &buildDir, const std::string &sourcefile, unsigned long long checksum, std::list<ErrorLogger::ErrorMessage> *errors)
{
if (buildDir.empty() || sourcefile.empty())
return true;
close();
analyzerInfoFile = Path::fromNativeSeparators(buildDir);
if (analyzerInfoFile.back() != '/')
analyzerInfoFile += '/';
const std::string::size_type pos = sourcefile.rfind("/");
if (pos == std::string::npos)
analyzerInfoFile += sourcefile;
else
analyzerInfoFile += sourcefile.substr(pos+1);
analyzerInfoFile += ".analyzerinfo";
const std::string start = "<analyzerinfo checksum=\"" + std::to_string(checksum) + "\">";
if (skipAnalysis(analyzerInfoFile, checksum, errors)) {
return false;
}
fout.open(analyzerInfoFile);
if (fout.is_open()) {
fout << "<?xml version=\"1.0\"?>\n";
fout << start << '\n';
} else {
analyzerInfoFile.clear();
}
return true;
}
void AnalyzerInformation::reportErr(const ErrorLogger::ErrorMessage &msg, bool verbose)
{
if (fout.is_open())
fout << msg.toXML(verbose,2) << '\n';
}
void AnalyzerInformation::setFileInfo(const std::string &check, const std::string &fileInfo)
{
if (fout.is_open() && !fileInfo.empty())
fout << " <FileInfo check=\"" << check << "\">\n" << fileInfo << " </FileInfo>\n";
}