2015-10-01 12:45:06 +02:00
|
|
|
/****************************************************************************
|
2015-06-01 18:51:55 +02:00
|
|
|
**
|
2016-01-15 14:58:39 +01:00
|
|
|
** Copyright (C) 2016 The Qt Company Ltd.
|
|
|
|
|
** Contact: https://www.qt.io/licensing/
|
2015-06-01 18:51:55 +02:00
|
|
|
**
|
|
|
|
|
** 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
|
2016-01-15 14:58:39 +01:00
|
|
|
** 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.
|
2015-06-01 18:51:55 +02:00
|
|
|
**
|
2016-01-15 14:58:39 +01:00
|
|
|
** 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.
|
2015-06-01 18:51:55 +02:00
|
|
|
**
|
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
|
|
#include "connectionclient.h"
|
|
|
|
|
|
2017-08-24 12:28:01 +02:00
|
|
|
#include "clangsupportdebugutils.h"
|
2016-08-17 15:29:37 +02:00
|
|
|
#include "processstartedevent.h"
|
|
|
|
|
#include "processexception.h"
|
|
|
|
|
|
|
|
|
|
#include <utils/hostosinfo.h>
|
2015-06-16 12:38:04 +02:00
|
|
|
|
|
|
|
|
#include <QCoreApplication>
|
2016-07-11 13:44:02 +02:00
|
|
|
#include <QMetaMethod>
|
2015-06-16 12:38:04 +02:00
|
|
|
#include <QProcess>
|
|
|
|
|
#include <QThread>
|
2015-06-01 18:51:55 +02:00
|
|
|
|
2015-06-16 11:56:00 +02:00
|
|
|
namespace ClangBackEnd {
|
2015-06-01 18:51:55 +02:00
|
|
|
|
2016-08-17 15:29:37 +02:00
|
|
|
ConnectionClient::ConnectionClient(const QString &connectionName)
|
|
|
|
|
: m_connectionName(connectionName)
|
2015-06-01 18:51:55 +02:00
|
|
|
{
|
2016-08-17 15:29:37 +02:00
|
|
|
m_processCreator.setObserver(this);
|
|
|
|
|
|
|
|
|
|
listenForConnections();
|
|
|
|
|
|
2017-06-12 20:03:34 +02:00
|
|
|
m_processAliveTimer.setInterval(10000);
|
2016-08-17 15:29:37 +02:00
|
|
|
resetTemporaryDirectory();
|
2015-06-01 18:51:55 +02:00
|
|
|
|
2016-09-23 14:40:21 +02:00
|
|
|
static const bool startAliveTimer = !qEnvironmentVariableIntValue("QTC_CLANG_NO_ALIVE_TIMER");
|
2015-09-21 13:21:55 +02:00
|
|
|
|
2016-07-11 13:44:02 +02:00
|
|
|
if (startAliveTimer)
|
|
|
|
|
connectAliveTimer();
|
2015-06-01 18:51:55 +02:00
|
|
|
|
2016-08-17 15:29:37 +02:00
|
|
|
connectNewConnection();
|
2015-06-01 18:51:55 +02:00
|
|
|
}
|
|
|
|
|
|
2016-08-17 15:29:37 +02:00
|
|
|
ConnectionClient::~ConnectionClient()
|
2015-06-01 18:51:55 +02:00
|
|
|
{
|
2016-08-17 15:29:37 +02:00
|
|
|
QLocalServer::removeServer(connectionName());
|
2015-06-01 18:51:55 +02:00
|
|
|
}
|
|
|
|
|
|
2016-08-17 15:29:37 +02:00
|
|
|
void ConnectionClient::startProcessAndConnectToServerAsynchronously()
|
2015-06-01 18:51:55 +02:00
|
|
|
{
|
2016-08-17 15:29:37 +02:00
|
|
|
m_processIsStarting = true;
|
2015-06-01 18:51:55 +02:00
|
|
|
|
2016-08-17 15:29:37 +02:00
|
|
|
m_processFuture = m_processCreator.createProcess();
|
2015-06-01 18:51:55 +02:00
|
|
|
}
|
|
|
|
|
|
2017-11-27 16:13:25 +01:00
|
|
|
void ConnectionClient::disconnectFromServer()
|
|
|
|
|
{
|
|
|
|
|
if (m_localSocket)
|
|
|
|
|
m_localSocket->disconnectFromServer();
|
|
|
|
|
}
|
|
|
|
|
|
2015-06-01 18:51:55 +02:00
|
|
|
bool ConnectionClient::isConnected() const
|
|
|
|
|
{
|
2016-08-17 15:29:37 +02:00
|
|
|
return m_localSocket && m_localSocket->state() == QLocalSocket::ConnectedState;
|
2015-06-01 18:51:55 +02:00
|
|
|
}
|
|
|
|
|
|
2015-08-19 12:36:43 +02:00
|
|
|
void ConnectionClient::ensureMessageIsWritten()
|
2015-06-18 13:04:38 +02:00
|
|
|
{
|
2016-08-17 15:29:37 +02:00
|
|
|
while (isConnected() && m_localSocket->bytesToWrite() > 0)
|
|
|
|
|
m_localSocket->waitForBytesWritten(50);
|
2015-06-18 13:04:38 +02:00
|
|
|
}
|
|
|
|
|
|
2015-08-19 12:36:43 +02:00
|
|
|
void ConnectionClient::sendEndMessage()
|
2015-06-01 18:51:55 +02:00
|
|
|
{
|
2016-07-04 14:55:58 +02:00
|
|
|
sendEndCommand();
|
2016-08-17 15:29:37 +02:00
|
|
|
m_localSocket->flush();
|
2015-08-19 12:36:43 +02:00
|
|
|
ensureMessageIsWritten();
|
2015-06-01 18:51:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ConnectionClient::resetProcessAliveTimer()
|
|
|
|
|
{
|
2017-06-12 20:03:34 +02:00
|
|
|
m_isAliveTimerResetted = true;
|
|
|
|
|
m_processAliveTimer.start();
|
2015-06-01 18:51:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ConnectionClient::setProcessAliveTimerInterval(int processTimerInterval)
|
|
|
|
|
{
|
2017-06-12 20:03:34 +02:00
|
|
|
m_processAliveTimer.setInterval(processTimerInterval);
|
2015-06-01 18:51:55 +02:00
|
|
|
}
|
|
|
|
|
|
2016-08-04 15:26:53 +02:00
|
|
|
const QTemporaryDir &ConnectionClient::temporaryDirectory() const
|
|
|
|
|
{
|
2016-08-17 15:29:37 +02:00
|
|
|
return m_processCreator.temporaryDirectory();
|
2016-08-04 15:26:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
LinePrefixer &ConnectionClient::stdErrPrefixer()
|
|
|
|
|
{
|
2017-06-12 20:03:34 +02:00
|
|
|
return m_stdErrPrefixer;
|
2016-08-04 15:26:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
LinePrefixer &ConnectionClient::stdOutPrefixer()
|
|
|
|
|
{
|
2017-06-12 20:03:34 +02:00
|
|
|
return m_stdOutPrefixer;
|
2016-08-04 15:26:53 +02:00
|
|
|
}
|
|
|
|
|
|
2016-08-17 15:29:37 +02:00
|
|
|
QString ConnectionClient::connectionName() const
|
2015-06-01 18:51:55 +02:00
|
|
|
{
|
2016-08-17 15:29:37 +02:00
|
|
|
return m_connectionName;
|
|
|
|
|
}
|
2015-07-28 16:04:49 +02:00
|
|
|
|
2016-08-17 15:29:37 +02:00
|
|
|
bool ConnectionClient::event(QEvent *event)
|
|
|
|
|
{
|
|
|
|
|
if (event->type() == int(ProcessStartedEvent::ProcessStarted)) {
|
|
|
|
|
getProcessFromFuture();
|
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
};
|
2016-07-11 13:44:02 +02:00
|
|
|
|
2016-08-17 15:29:37 +02:00
|
|
|
return false;
|
2015-06-01 18:51:55 +02:00
|
|
|
}
|
|
|
|
|
|
2016-07-11 13:44:02 +02:00
|
|
|
void ConnectionClient::restartProcessAsynchronously()
|
2015-06-01 18:51:55 +02:00
|
|
|
{
|
2016-08-17 15:29:37 +02:00
|
|
|
getProcessFromFuture();
|
|
|
|
|
|
|
|
|
|
finishProcess(std::move(m_process));
|
|
|
|
|
resetTemporaryDirectory(); // clear left-over preambles
|
|
|
|
|
|
|
|
|
|
startProcessAndConnectToServerAsynchronously();
|
2015-06-01 18:51:55 +02:00
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ConnectionClient::restartProcessIfTimerIsNotResettedAndSocketIsEmpty()
|
|
|
|
|
{
|
2017-06-12 20:03:34 +02:00
|
|
|
if (m_isAliveTimerResetted) {
|
|
|
|
|
m_isAliveTimerResetted = false;
|
2015-06-01 18:51:55 +02:00
|
|
|
return; // Already reset, but we were scheduled after.
|
|
|
|
|
}
|
|
|
|
|
|
2016-08-17 15:29:37 +02:00
|
|
|
if (!m_localSocket || m_localSocket->bytesAvailable() > 0)
|
2015-06-01 18:51:55 +02:00
|
|
|
return; // We come first, the incoming data was not yet processed.
|
|
|
|
|
|
2017-11-27 16:13:25 +01:00
|
|
|
disconnectFromServer();
|
2016-07-11 13:44:02 +02:00
|
|
|
restartProcessAsynchronously();
|
2015-06-01 18:51:55 +02:00
|
|
|
}
|
|
|
|
|
|
2016-07-11 13:44:02 +02:00
|
|
|
void ConnectionClient::endProcess(QProcess *process)
|
2015-06-01 18:51:55 +02:00
|
|
|
{
|
2016-08-17 15:29:37 +02:00
|
|
|
if (isProcessRunning(process) && isConnected()) {
|
2015-08-19 12:36:43 +02:00
|
|
|
sendEndMessage();
|
2016-07-11 13:44:02 +02:00
|
|
|
process->waitForFinished();
|
2015-06-01 18:51:55 +02:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2016-07-11 13:44:02 +02:00
|
|
|
void ConnectionClient::terminateProcess(QProcess *process)
|
2015-06-01 18:51:55 +02:00
|
|
|
{
|
2016-08-17 15:29:37 +02:00
|
|
|
if (!Utils::HostOsInfo::isWindowsHost() && isProcessRunning()) {
|
2016-07-11 13:44:02 +02:00
|
|
|
process->terminate();
|
2016-08-17 15:29:37 +02:00
|
|
|
process->waitForFinished(1000);
|
2015-06-01 18:51:55 +02:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2016-07-11 13:44:02 +02:00
|
|
|
void ConnectionClient::killProcess(QProcess *process)
|
2015-06-01 18:51:55 +02:00
|
|
|
{
|
2016-08-17 15:29:37 +02:00
|
|
|
if (isProcessRunning(process)) {
|
2016-07-11 13:44:02 +02:00
|
|
|
process->kill();
|
2016-08-17 15:29:37 +02:00
|
|
|
process->waitForFinished(1000);
|
2015-06-01 18:51:55 +02:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2016-08-17 15:29:37 +02:00
|
|
|
void ConnectionClient::finishConnection()
|
2016-07-11 13:44:02 +02:00
|
|
|
{
|
2016-08-17 15:29:37 +02:00
|
|
|
if (m_localSocket) {
|
|
|
|
|
if (m_localSocket->state() != QLocalSocket::UnconnectedState)
|
|
|
|
|
m_localSocket->disconnectFromServer();
|
|
|
|
|
m_localSocket = nullptr;
|
|
|
|
|
}
|
2016-07-11 13:44:02 +02:00
|
|
|
}
|
|
|
|
|
|
2015-06-25 12:53:59 +02:00
|
|
|
void ConnectionClient::printLocalSocketError(QLocalSocket::LocalSocketError socketError)
|
2015-06-01 18:51:55 +02:00
|
|
|
{
|
2016-08-17 15:29:37 +02:00
|
|
|
if (m_localSocket && socketError != QLocalSocket::ServerNotFoundError)
|
|
|
|
|
qWarning() << outputName() << "LocalSocket Error:" << m_localSocket->errorString();
|
2015-06-01 18:51:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ConnectionClient::printStandardOutput()
|
|
|
|
|
{
|
2017-06-12 20:03:34 +02:00
|
|
|
qDebug("%s", m_stdOutPrefixer.prefix(m_process->readAllStandardOutput()).constData());
|
2015-06-01 18:51:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ConnectionClient::printStandardError()
|
|
|
|
|
{
|
2017-06-12 20:03:34 +02:00
|
|
|
qDebug("%s", m_stdErrPrefixer.prefix(m_process->readAllStandardError()).constData());
|
2015-06-01 18:51:55 +02:00
|
|
|
}
|
|
|
|
|
|
2016-08-17 15:29:37 +02:00
|
|
|
void ConnectionClient::resetTemporaryDirectory()
|
2016-10-21 10:22:38 +02:00
|
|
|
{
|
2016-08-17 15:29:37 +02:00
|
|
|
m_processCreator.resetTemporaryDirectory();
|
2016-10-21 10:22:38 +02:00
|
|
|
}
|
|
|
|
|
|
2016-08-17 15:29:37 +02:00
|
|
|
void ConnectionClient::initializeProcess(QProcess *process)
|
2016-07-11 13:44:02 +02:00
|
|
|
{
|
2016-08-17 15:29:37 +02:00
|
|
|
connectStandardOutputAndError(process);
|
2016-07-11 13:44:02 +02:00
|
|
|
|
2016-08-17 15:29:37 +02:00
|
|
|
resetProcessAliveTimer();
|
2016-07-11 13:44:02 +02:00
|
|
|
}
|
|
|
|
|
|
2016-10-07 12:11:01 +02:00
|
|
|
void ConnectionClient::connectLocalSocketDisconnected()
|
|
|
|
|
{
|
2016-08-17 15:29:37 +02:00
|
|
|
connect(m_localSocket,
|
2016-10-07 12:11:01 +02:00
|
|
|
&QLocalSocket::disconnected,
|
|
|
|
|
this,
|
|
|
|
|
&ConnectionClient::disconnectedFromLocalSocket);
|
2016-08-17 15:29:37 +02:00
|
|
|
connect(m_localSocket,
|
|
|
|
|
&QLocalSocket::disconnected,
|
|
|
|
|
this,
|
|
|
|
|
&ConnectionClient::restartProcessAsynchronously);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ConnectionClient::disconnectLocalSocketDisconnected()
|
|
|
|
|
{
|
|
|
|
|
if (m_localSocket) {
|
|
|
|
|
disconnect(m_localSocket,
|
|
|
|
|
&QLocalSocket::disconnected,
|
|
|
|
|
this,
|
|
|
|
|
&ConnectionClient::restartProcessAsynchronously);
|
|
|
|
|
}
|
2016-10-07 12:11:01 +02:00
|
|
|
}
|
|
|
|
|
|
2015-06-01 18:51:55 +02:00
|
|
|
void ConnectionClient::finishProcess()
|
|
|
|
|
{
|
2017-06-12 20:03:34 +02:00
|
|
|
finishProcess(std::move(m_process));
|
2016-08-17 15:29:37 +02:00
|
|
|
emit processFinished();
|
2016-07-11 13:44:02 +02:00
|
|
|
}
|
2015-07-28 16:04:49 +02:00
|
|
|
|
2016-08-17 15:29:37 +02:00
|
|
|
bool ConnectionClient::isProcessRunning()
|
2016-07-11 13:44:02 +02:00
|
|
|
{
|
2016-08-17 15:29:37 +02:00
|
|
|
getProcessFromFuture();
|
|
|
|
|
|
|
|
|
|
return isProcessRunning(m_process.get());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ConnectionClient::finishProcess(QProcessUniquePointer &&process)
|
|
|
|
|
{
|
|
|
|
|
disconnectLocalSocketDisconnected();
|
|
|
|
|
|
2016-07-11 13:44:02 +02:00
|
|
|
if (process) {
|
2017-06-12 20:03:34 +02:00
|
|
|
m_processAliveTimer.stop();
|
2015-06-01 18:51:55 +02:00
|
|
|
|
2016-07-11 13:44:02 +02:00
|
|
|
endProcess(process.get());
|
2016-08-17 15:29:37 +02:00
|
|
|
finishConnection();
|
2016-07-11 13:44:02 +02:00
|
|
|
terminateProcess(process.get());
|
|
|
|
|
killProcess(process.get());
|
2015-06-01 18:51:55 +02:00
|
|
|
|
2018-02-08 15:12:00 +01:00
|
|
|
resetState();
|
2016-08-17 15:29:37 +02:00
|
|
|
} else {
|
|
|
|
|
finishConnection();
|
2016-07-11 13:44:02 +02:00
|
|
|
}
|
2015-06-01 18:51:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool ConnectionClient::waitForEcho()
|
|
|
|
|
{
|
2016-08-17 15:29:37 +02:00
|
|
|
return m_localSocket->waitForReadyRead();
|
2015-06-01 18:51:55 +02:00
|
|
|
}
|
|
|
|
|
|
2016-07-11 13:44:02 +02:00
|
|
|
bool ConnectionClient::waitForConnected()
|
|
|
|
|
{
|
|
|
|
|
bool isConnected = false;
|
|
|
|
|
|
|
|
|
|
for (int counter = 0; counter < 100; counter++) {
|
2016-08-17 15:29:37 +02:00
|
|
|
isConnected = m_localSocket && m_localSocket->waitForConnected(20);
|
2016-07-11 13:44:02 +02:00
|
|
|
if (isConnected)
|
|
|
|
|
return isConnected;
|
|
|
|
|
else {
|
|
|
|
|
QThread::msleep(30);
|
2020-11-27 13:12:23 +01:00
|
|
|
QCoreApplication::processEvents();
|
2016-07-11 13:44:02 +02:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2016-08-17 15:29:37 +02:00
|
|
|
if (m_localSocket)
|
|
|
|
|
qWarning() << outputName() << "cannot connect:" << m_localSocket->errorString();
|
2016-07-11 13:44:02 +02:00
|
|
|
|
|
|
|
|
return isConnected;
|
|
|
|
|
}
|
|
|
|
|
|
2015-06-01 18:51:55 +02:00
|
|
|
|
2016-08-17 15:29:37 +02:00
|
|
|
QProcess *ConnectionClient::processForTestOnly()
|
2015-06-01 18:51:55 +02:00
|
|
|
{
|
2016-08-17 15:29:37 +02:00
|
|
|
getProcessFromFuture();
|
|
|
|
|
|
2017-06-12 20:03:34 +02:00
|
|
|
return m_process.get();
|
2015-06-01 18:51:55 +02:00
|
|
|
}
|
|
|
|
|
|
2016-07-04 14:55:58 +02:00
|
|
|
QIODevice *ConnectionClient::ioDevice()
|
|
|
|
|
{
|
2016-08-17 15:29:37 +02:00
|
|
|
return m_localSocket;
|
2015-06-01 18:51:55 +02:00
|
|
|
}
|
|
|
|
|
|
2016-08-17 15:29:37 +02:00
|
|
|
bool ConnectionClient::isProcessRunning(QProcess *process)
|
2015-06-01 18:51:55 +02:00
|
|
|
{
|
2016-08-17 15:29:37 +02:00
|
|
|
return process && process->state() == QProcess::Running;
|
2015-06-01 18:51:55 +02:00
|
|
|
}
|
|
|
|
|
|
2016-07-11 13:44:02 +02:00
|
|
|
void ConnectionClient::connectStandardOutputAndError(QProcess *process) const
|
|
|
|
|
{
|
|
|
|
|
connect(process, &QProcess::readyReadStandardOutput, this, &ConnectionClient::printStandardOutput);
|
|
|
|
|
connect(process, &QProcess::readyReadStandardError, this, &ConnectionClient::printStandardError);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ConnectionClient::connectLocalSocketError() const
|
2015-06-01 18:51:55 +02:00
|
|
|
{
|
2020-09-10 11:39:00 +02:00
|
|
|
void (QLocalSocket::*LocalSocketErrorFunction)(QLocalSocket::LocalSocketError)
|
2020-02-19 09:07:12 +01:00
|
|
|
#if QT_VERSION < QT_VERSION_CHECK(5, 15, 0)
|
|
|
|
|
= &QLocalSocket::error;
|
|
|
|
|
#else
|
|
|
|
|
= &QLocalSocket::errorOccurred;
|
|
|
|
|
#endif
|
|
|
|
|
|
2016-08-17 15:29:37 +02:00
|
|
|
connect(m_localSocket,
|
2020-02-19 09:07:12 +01:00
|
|
|
LocalSocketErrorFunction,
|
2016-07-11 13:44:02 +02:00
|
|
|
this,
|
|
|
|
|
&ConnectionClient::printLocalSocketError);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ConnectionClient::connectAliveTimer()
|
|
|
|
|
{
|
2017-06-12 20:03:34 +02:00
|
|
|
connect(&m_processAliveTimer,
|
2016-07-11 13:44:02 +02:00
|
|
|
&QTimer::timeout,
|
|
|
|
|
this,
|
|
|
|
|
&ConnectionClient::restartProcessIfTimerIsNotResettedAndSocketIsEmpty);
|
2015-06-01 18:51:55 +02:00
|
|
|
}
|
|
|
|
|
|
2016-08-17 15:29:37 +02:00
|
|
|
void ConnectionClient::connectNewConnection()
|
2015-06-01 18:51:55 +02:00
|
|
|
{
|
2016-08-17 15:29:37 +02:00
|
|
|
QObject::connect(&m_localServer,
|
|
|
|
|
&QLocalServer::newConnection,
|
|
|
|
|
this,
|
|
|
|
|
&ConnectionClient::handleNewConnection);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ConnectionClient::handleNewConnection()
|
|
|
|
|
{
|
|
|
|
|
m_localSocket = m_localServer.nextPendingConnection();
|
|
|
|
|
|
|
|
|
|
connectLocalSocketError();
|
|
|
|
|
connectLocalSocketDisconnected();
|
|
|
|
|
|
|
|
|
|
newConnectedServer(m_localSocket);
|
|
|
|
|
|
|
|
|
|
emit connectedToLocalSocket();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ConnectionClient::getProcessFromFuture()
|
|
|
|
|
{
|
|
|
|
|
try {
|
|
|
|
|
if (m_processFuture.valid()) {
|
|
|
|
|
m_process = m_processFuture.get();
|
|
|
|
|
m_processIsStarting = false;
|
|
|
|
|
|
|
|
|
|
initializeProcess(m_process.get());
|
|
|
|
|
}
|
|
|
|
|
} catch (const ProcessException &processExeption) {
|
|
|
|
|
qWarning() << "Clang backend process is not working."
|
|
|
|
|
<< QLatin1String(processExeption.what());
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ConnectionClient::listenForConnections()
|
|
|
|
|
{
|
|
|
|
|
bool isListing = m_localServer.listen(connectionName());
|
|
|
|
|
|
|
|
|
|
if (!isListing)
|
|
|
|
|
qWarning() << "ConnectionClient: QLocalServer is not listing for connections!";
|
2015-06-01 18:51:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ConnectionClient::setProcessPath(const QString &processPath)
|
|
|
|
|
{
|
2016-08-17 15:29:37 +02:00
|
|
|
m_processCreator.setProcessPath(processPath);
|
2015-06-01 18:51:55 +02:00
|
|
|
}
|
|
|
|
|
|
2015-06-16 11:56:00 +02:00
|
|
|
} // namespace ClangBackEnd
|
2015-06-01 18:51:55 +02:00
|
|
|
|