2018-07-30 21:42:47 +03:00
|
|
|
/****************************************************************************
|
|
|
|
|
**
|
|
|
|
|
** Copyright (C) 2018 Sergey Morozov
|
|
|
|
|
** Contact: https://www.qt.io/licensing/
|
|
|
|
|
**
|
|
|
|
|
** This file is part of Qt Creator.
|
|
|
|
|
**
|
|
|
|
|
** Commercial License Usage
|
|
|
|
|
** Licensees holding valid commercial Qt licenses may use this file in
|
|
|
|
|
** accordance with the commercial license agreement provided with the
|
|
|
|
|
** Software or, alternatively, in accordance with the terms contained in
|
|
|
|
|
** a written agreement between you and The Qt Company. For licensing terms
|
|
|
|
|
** and conditions see https://www.qt.io/terms-conditions. For further
|
|
|
|
|
** information use the contact form at https://www.qt.io/contact-us.
|
|
|
|
|
**
|
|
|
|
|
** GNU General Public License Usage
|
|
|
|
|
** Alternatively, this file may be used under the terms of the GNU
|
|
|
|
|
** General Public License version 3 as published by the Free Software
|
|
|
|
|
** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
|
|
|
|
|
** included in the packaging of this file. Please review the following
|
|
|
|
|
** information to ensure the GNU General Public License requirements will
|
|
|
|
|
** be met: https://www.gnu.org/licenses/gpl-3.0.html.
|
|
|
|
|
**
|
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
|
|
#include "cppcheckrunner.h"
|
|
|
|
|
#include "cppchecktool.h"
|
|
|
|
|
|
|
|
|
|
#include <utils/hostosinfo.h>
|
|
|
|
|
#include <utils/qtcassert.h>
|
|
|
|
|
#include <utils/qtcprocess.h>
|
|
|
|
|
|
|
|
|
|
#include <coreplugin/messagemanager.h>
|
|
|
|
|
|
2019-05-28 18:59:45 +02:00
|
|
|
using namespace Utils;
|
|
|
|
|
|
2018-07-30 21:42:47 +03:00
|
|
|
namespace Cppcheck {
|
|
|
|
|
namespace Internal {
|
|
|
|
|
|
|
|
|
|
CppcheckRunner::CppcheckRunner(CppcheckTool &tool) :
|
|
|
|
|
m_tool(tool),
|
|
|
|
|
m_process(new Utils::QtcProcess(this))
|
|
|
|
|
{
|
|
|
|
|
if (Utils::HostOsInfo::hostOs() == Utils::OsTypeLinux) {
|
|
|
|
|
QProcess getConf;
|
2020-05-01 08:23:30 +02:00
|
|
|
getConf.start("getconf", {"ARG_MAX"});
|
2018-07-30 21:42:47 +03:00
|
|
|
getConf.waitForFinished(2000);
|
2018-09-25 21:08:52 +03:00
|
|
|
const QByteArray argMax = getConf.readAllStandardOutput().replace("\n", "");
|
2018-07-30 21:42:47 +03:00
|
|
|
m_maxArgumentsLength = std::max(argMax.toInt(), m_maxArgumentsLength);
|
|
|
|
|
}
|
|
|
|
|
|
2021-05-14 15:21:54 +02:00
|
|
|
connect(m_process, &QtcProcess::readyReadStandardOutput,
|
2018-07-30 21:42:47 +03:00
|
|
|
this, &CppcheckRunner::readOutput);
|
2021-05-14 15:21:54 +02:00
|
|
|
connect(m_process, &QtcProcess::readyReadStandardOutput,
|
2018-07-30 21:42:47 +03:00
|
|
|
this, &CppcheckRunner::readError);
|
2021-05-14 15:21:54 +02:00
|
|
|
connect(m_process, &QtcProcess::started,
|
2018-07-30 21:42:47 +03:00
|
|
|
this, &CppcheckRunner::handleStarted);
|
2021-05-14 15:21:54 +02:00
|
|
|
connect(m_process, &QtcProcess::finished,
|
2018-07-30 21:42:47 +03:00
|
|
|
this, &CppcheckRunner::handleFinished);
|
|
|
|
|
|
|
|
|
|
m_queueTimer.setSingleShot(true);
|
2018-09-25 21:08:52 +03:00
|
|
|
const int checkDelayInMs = 200;
|
2018-07-30 21:42:47 +03:00
|
|
|
m_queueTimer.setInterval(checkDelayInMs);
|
|
|
|
|
connect(&m_queueTimer, &QTimer::timeout,
|
|
|
|
|
this, &CppcheckRunner::checkQueued);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
CppcheckRunner::~CppcheckRunner()
|
|
|
|
|
{
|
|
|
|
|
stop();
|
|
|
|
|
m_queueTimer.stop();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void CppcheckRunner::reconfigure(const QString &binary, const QString &arguments)
|
|
|
|
|
{
|
|
|
|
|
m_binary = binary;
|
|
|
|
|
m_arguments = arguments;
|
|
|
|
|
}
|
|
|
|
|
|
2019-12-17 14:07:53 +01:00
|
|
|
void CppcheckRunner::addToQueue(const Utils::FilePaths &files,
|
2018-07-30 21:42:47 +03:00
|
|
|
const QString &additionalArguments)
|
|
|
|
|
{
|
2019-12-17 14:07:53 +01:00
|
|
|
Utils::FilePaths &existing = m_queue[additionalArguments];
|
2018-07-30 21:42:47 +03:00
|
|
|
if (existing.isEmpty()) {
|
|
|
|
|
existing = files;
|
|
|
|
|
} else {
|
|
|
|
|
std::copy_if(files.cbegin(), files.cend(), std::back_inserter(existing),
|
2019-05-28 13:49:26 +02:00
|
|
|
[&existing](const Utils::FilePath &file) { return !existing.contains(file); });
|
2018-07-30 21:42:47 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (m_isRunning) {
|
2018-09-22 14:22:03 +03:00
|
|
|
stop(existing);
|
2018-07-30 21:42:47 +03:00
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
m_queueTimer.start();
|
|
|
|
|
}
|
|
|
|
|
|
2019-12-17 14:07:53 +01:00
|
|
|
void CppcheckRunner::stop(const Utils::FilePaths &files)
|
2018-07-30 21:42:47 +03:00
|
|
|
{
|
2018-09-22 14:22:03 +03:00
|
|
|
if (!m_isRunning)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
if (files.isEmpty() || m_currentFiles == files)
|
2018-07-30 21:42:47 +03:00
|
|
|
m_process->kill();
|
|
|
|
|
}
|
|
|
|
|
|
2019-12-17 14:07:53 +01:00
|
|
|
void CppcheckRunner::removeFromQueue(const Utils::FilePaths &files)
|
2018-07-30 21:42:47 +03:00
|
|
|
{
|
|
|
|
|
if (m_queue.isEmpty())
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
if (files.isEmpty()) {
|
|
|
|
|
m_queue.clear();
|
|
|
|
|
} else {
|
|
|
|
|
for (auto it = m_queue.begin(), end = m_queue.end(); it != end;) {
|
2019-05-28 13:49:26 +02:00
|
|
|
for (const Utils::FilePath &file : files)
|
2018-07-30 21:42:47 +03:00
|
|
|
it.value().removeOne(file);
|
|
|
|
|
it = !it.value().isEmpty() ? ++it : m_queue.erase(it);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-12-17 14:07:53 +01:00
|
|
|
const Utils::FilePaths &CppcheckRunner::currentFiles() const
|
2018-07-30 21:42:47 +03:00
|
|
|
{
|
|
|
|
|
return m_currentFiles;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QString CppcheckRunner::currentCommand() const
|
|
|
|
|
{
|
2021-05-14 15:21:54 +02:00
|
|
|
return m_process->commandLine().toUserOutput();
|
2018-07-30 21:42:47 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void CppcheckRunner::checkQueued()
|
|
|
|
|
{
|
|
|
|
|
if (m_queue.isEmpty() || m_binary.isEmpty())
|
|
|
|
|
return;
|
|
|
|
|
|
2019-12-17 14:07:53 +01:00
|
|
|
Utils::FilePaths files = m_queue.begin().value();
|
2018-07-30 21:42:47 +03:00
|
|
|
QString arguments = m_arguments + ' ' + m_queue.begin().key();
|
|
|
|
|
m_currentFiles.clear();
|
|
|
|
|
int argumentsLength = arguments.length();
|
|
|
|
|
while (!files.isEmpty()) {
|
2019-05-10 11:48:14 +02:00
|
|
|
argumentsLength += files.first().toString().size() + 1; // +1 for separator
|
2018-07-30 21:42:47 +03:00
|
|
|
if (argumentsLength >= m_maxArgumentsLength)
|
|
|
|
|
break;
|
|
|
|
|
m_currentFiles.push_back(files.first());
|
|
|
|
|
arguments += ' ' + files.first().toString();
|
|
|
|
|
files.pop_front();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (files.isEmpty())
|
|
|
|
|
m_queue.erase(m_queue.begin());
|
|
|
|
|
else
|
|
|
|
|
m_queue.begin().value() = files;
|
|
|
|
|
|
2019-06-05 15:35:15 +02:00
|
|
|
m_process->setCommand(CommandLine(FilePath::fromString(m_binary), arguments, CommandLine::Raw));
|
2018-07-30 21:42:47 +03:00
|
|
|
m_process->start();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void CppcheckRunner::readOutput()
|
|
|
|
|
{
|
|
|
|
|
if (!m_isRunning) // workaround for QTBUG-30929
|
|
|
|
|
handleStarted();
|
|
|
|
|
|
2021-06-03 14:57:51 +02:00
|
|
|
const QByteArray output = m_process->readAllStandardOutput();
|
|
|
|
|
int start = 0;
|
|
|
|
|
int end;
|
|
|
|
|
do {
|
|
|
|
|
end = output.indexOf('\n', start);
|
|
|
|
|
m_tool.parseOutputLine(QString::fromUtf8(output.mid(start, end - start)));
|
|
|
|
|
start = end + 1;
|
|
|
|
|
} while (end >= 0);
|
2018-07-30 21:42:47 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void CppcheckRunner::readError()
|
|
|
|
|
{
|
|
|
|
|
if (!m_isRunning) // workaround for QTBUG-30929
|
|
|
|
|
handleStarted();
|
|
|
|
|
|
2021-06-03 14:57:51 +02:00
|
|
|
const QByteArray output = m_process->readAllStandardError();
|
|
|
|
|
int start = 0;
|
|
|
|
|
int end;
|
|
|
|
|
do {
|
|
|
|
|
end = output.indexOf('\n', start);
|
|
|
|
|
m_tool.parseErrorLine(QString::fromUtf8(output.mid(start, end - start)));
|
|
|
|
|
start = end + 1;
|
|
|
|
|
} while (end >= 0);
|
2018-07-30 21:42:47 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void CppcheckRunner::handleStarted()
|
|
|
|
|
{
|
|
|
|
|
if (m_isRunning)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
m_isRunning = true;
|
|
|
|
|
m_tool.startParsing();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void CppcheckRunner::handleFinished(int)
|
|
|
|
|
{
|
|
|
|
|
if (m_process->error() != QProcess::FailedToStart) {
|
|
|
|
|
readOutput();
|
|
|
|
|
readError();
|
|
|
|
|
m_tool.finishParsing();
|
|
|
|
|
} else {
|
|
|
|
|
const QString message = tr("Cppcheck failed to start: \"%1\".").arg(currentCommand());
|
2020-12-15 10:13:13 +01:00
|
|
|
Core::MessageManager::writeSilently(message);
|
2018-07-30 21:42:47 +03:00
|
|
|
}
|
|
|
|
|
m_currentFiles.clear();
|
|
|
|
|
m_process->close();
|
|
|
|
|
m_isRunning = false;
|
|
|
|
|
|
|
|
|
|
if (!m_queue.isEmpty())
|
|
|
|
|
checkQueued();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
} // namespace Internal
|
|
|
|
|
} // namespace Cppcheck
|