2015-05-08 15:48:17 +02:00
|
|
|
/****************************************************************************
|
|
|
|
|
**
|
|
|
|
|
** Copyright (C) 2015 The Qt Company Ltd.
|
|
|
|
|
** Contact: http://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 http://www.qt.io/terms-conditions. For further information
|
|
|
|
|
** use the contact form at http://www.qt.io/contact-us.
|
|
|
|
|
**
|
|
|
|
|
** GNU Lesser General Public License Usage
|
|
|
|
|
** Alternatively, this file may be used under the terms of the GNU Lesser
|
|
|
|
|
** General Public License version 2.1 or version 3 as published by the Free
|
|
|
|
|
** Software Foundation and appearing in the file LICENSE.LGPLv21 and
|
|
|
|
|
** LICENSE.LGPLv3 included in the packaging of this file. Please review the
|
|
|
|
|
** following information to ensure the GNU Lesser General Public License
|
|
|
|
|
** requirements will be met: https://www.gnu.org/licenses/lgpl.html and
|
|
|
|
|
** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
|
|
|
|
|
**
|
|
|
|
|
** In addition, as a special exception, The Qt Company gives you certain additional
|
|
|
|
|
** rights. These rights are described in The Qt Company LGPL Exception
|
|
|
|
|
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
|
|
|
|
**
|
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
2015-06-16 11:56:00 +02:00
|
|
|
#include "clangbackendipcintegration.h"
|
2015-05-08 15:48:17 +02:00
|
|
|
|
2015-07-06 12:05:02 +02:00
|
|
|
#include "clangcompletionassistprocessor.h"
|
2015-08-31 16:28:26 +02:00
|
|
|
#include "clangeditordocumentprocessor.h"
|
2015-05-08 15:48:17 +02:00
|
|
|
#include "clangmodelmanagersupport.h"
|
|
|
|
|
#include "clangutils.h"
|
|
|
|
|
#include "pchmanager.h"
|
|
|
|
|
|
|
|
|
|
#include <coreplugin/editormanager/editormanager.h>
|
|
|
|
|
#include <coreplugin/icore.h>
|
|
|
|
|
|
|
|
|
|
#include <cpptools/abstracteditorsupport.h>
|
|
|
|
|
#include <cpptools/baseeditordocumentprocessor.h>
|
|
|
|
|
#include <cpptools/editordocumenthandle.h>
|
|
|
|
|
|
|
|
|
|
#include <texteditor/codeassist/functionhintproposal.h>
|
|
|
|
|
#include <texteditor/codeassist/iassistprocessor.h>
|
|
|
|
|
#include <texteditor/texteditor.h>
|
|
|
|
|
|
2015-08-31 16:28:26 +02:00
|
|
|
#include <clangbackendipc/diagnosticschangedmessage.h>
|
|
|
|
|
|
2015-05-08 15:48:17 +02:00
|
|
|
#include <utils/hostosinfo.h>
|
|
|
|
|
#include <utils/qtcassert.h>
|
|
|
|
|
|
2015-08-19 12:36:43 +02:00
|
|
|
#include <clangbackendipc/cmbcodecompletedmessage.h>
|
|
|
|
|
#include <clangbackendipc/cmbcompletecodemessage.h>
|
|
|
|
|
#include <clangbackendipc/cmbechomessage.h>
|
|
|
|
|
#include <clangbackendipc/cmbregistertranslationunitsforcodecompletionmessage.h>
|
|
|
|
|
#include <clangbackendipc/cmbregisterprojectsforcodecompletionmessage.h>
|
|
|
|
|
#include <clangbackendipc/cmbunregistertranslationunitsforcodecompletionmessage.h>
|
|
|
|
|
#include <clangbackendipc/cmbunregisterprojectsforcodecompletionmessage.h>
|
|
|
|
|
#include <clangbackendipc/cmbmessages.h>
|
2015-08-31 16:28:26 +02:00
|
|
|
#include <clangbackendipc/requestdiagnosticsmessage.h>
|
|
|
|
|
#include <clangbackendipc/filecontainer.h>
|
2015-08-19 12:36:43 +02:00
|
|
|
#include <clangbackendipc/projectpartsdonotexistmessage.h>
|
|
|
|
|
#include <clangbackendipc/translationunitdoesnotexistmessage.h>
|
2015-05-08 15:48:17 +02:00
|
|
|
|
|
|
|
|
#include <cplusplus/Icons.h>
|
|
|
|
|
|
|
|
|
|
#include <QElapsedTimer>
|
|
|
|
|
#include <QLoggingCategory>
|
|
|
|
|
#include <QProcess>
|
|
|
|
|
|
|
|
|
|
static Q_LOGGING_CATEGORY(log, "qtc.clangcodemodel.ipc")
|
|
|
|
|
|
|
|
|
|
using namespace CPlusPlus;
|
|
|
|
|
using namespace ClangCodeModel;
|
|
|
|
|
using namespace ClangCodeModel::Internal;
|
2015-06-16 11:56:00 +02:00
|
|
|
using namespace ClangBackEnd;
|
2015-05-08 15:48:17 +02:00
|
|
|
using namespace TextEditor;
|
|
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
|
|
|
|
|
QString backendProcessPath()
|
|
|
|
|
{
|
2015-06-10 16:06:27 +02:00
|
|
|
return Core::ICore::libexecPath()
|
2015-06-16 11:56:00 +02:00
|
|
|
+ QStringLiteral("/clangbackend")
|
2015-05-08 15:48:17 +02:00
|
|
|
+ QStringLiteral(QTC_HOST_EXE_SUFFIX);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
} // anonymous namespace
|
|
|
|
|
|
|
|
|
|
IpcReceiver::IpcReceiver()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
IpcReceiver::~IpcReceiver()
|
|
|
|
|
{
|
|
|
|
|
deleteAndClearWaitingAssistProcessors();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void IpcReceiver::setAliveHandler(const IpcReceiver::AliveHandler &handler)
|
|
|
|
|
{
|
|
|
|
|
m_aliveHandler = handler;
|
|
|
|
|
}
|
|
|
|
|
|
2015-08-19 12:36:43 +02:00
|
|
|
void IpcReceiver::addExpectedCodeCompletedMessage(
|
2015-05-08 15:48:17 +02:00
|
|
|
quint64 ticket,
|
|
|
|
|
ClangCompletionAssistProcessor *processor)
|
|
|
|
|
{
|
|
|
|
|
QTC_ASSERT(processor, return);
|
|
|
|
|
QTC_CHECK(!m_assistProcessorsTable.contains(ticket));
|
|
|
|
|
m_assistProcessorsTable.insert(ticket, processor);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void IpcReceiver::deleteAndClearWaitingAssistProcessors()
|
|
|
|
|
{
|
|
|
|
|
qDeleteAll(m_assistProcessorsTable.begin(), m_assistProcessorsTable.end());
|
|
|
|
|
m_assistProcessorsTable.clear();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void IpcReceiver::deleteProcessorsOfEditorWidget(TextEditor::TextEditorWidget *textEditorWidget)
|
|
|
|
|
{
|
|
|
|
|
QMutableHashIterator<quint64, ClangCompletionAssistProcessor *> it(m_assistProcessorsTable);
|
|
|
|
|
while (it.hasNext()) {
|
|
|
|
|
it.next();
|
|
|
|
|
ClangCompletionAssistProcessor *assistProcessor = it.value();
|
|
|
|
|
if (assistProcessor->textEditorWidget() == textEditorWidget) {
|
|
|
|
|
delete assistProcessor;
|
|
|
|
|
it.remove();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void IpcReceiver::alive()
|
|
|
|
|
{
|
2015-08-19 12:36:43 +02:00
|
|
|
qCDebug(log) << "<<< AliveMessage";
|
2015-05-08 15:48:17 +02:00
|
|
|
QTC_ASSERT(m_aliveHandler, return);
|
|
|
|
|
m_aliveHandler();
|
|
|
|
|
}
|
|
|
|
|
|
2015-08-19 12:36:43 +02:00
|
|
|
void IpcReceiver::echo(const EchoMessage &message)
|
2015-05-08 15:48:17 +02:00
|
|
|
{
|
2015-08-19 12:36:43 +02:00
|
|
|
qCDebug(log) << "<<<" << message;
|
2015-05-08 15:48:17 +02:00
|
|
|
}
|
|
|
|
|
|
2015-08-19 12:36:43 +02:00
|
|
|
void IpcReceiver::codeCompleted(const CodeCompletedMessage &message)
|
2015-05-08 15:48:17 +02:00
|
|
|
{
|
2015-08-19 12:36:43 +02:00
|
|
|
qCDebug(log) << "<<< CodeCompletedMessage with" << message.codeCompletions().size() << "items";
|
2015-05-08 15:48:17 +02:00
|
|
|
|
2015-08-19 12:36:43 +02:00
|
|
|
const quint64 ticket = message.ticketNumber();
|
2015-05-08 15:48:17 +02:00
|
|
|
QScopedPointer<ClangCompletionAssistProcessor> processor(m_assistProcessorsTable.take(ticket));
|
2015-07-22 13:09:44 +02:00
|
|
|
if (processor) {
|
2015-08-19 12:36:43 +02:00
|
|
|
const bool finished = processor->handleAvailableAsyncCompletions(message.codeCompletions());
|
2015-07-22 13:09:44 +02:00
|
|
|
if (!finished)
|
|
|
|
|
processor.take();
|
|
|
|
|
}
|
2015-05-08 15:48:17 +02:00
|
|
|
}
|
|
|
|
|
|
2015-08-31 16:28:26 +02:00
|
|
|
void IpcReceiver::diagnosticsChanged(const DiagnosticsChangedMessage &message)
|
|
|
|
|
{
|
|
|
|
|
qCDebug(log) << "<<< DiagnosticsChangedMessage with" << message.diagnostics().size() << "items";
|
|
|
|
|
|
|
|
|
|
auto processor = ClangEditorDocumentProcessor::get(message.file().filePath());
|
|
|
|
|
|
|
|
|
|
if (processor && processor->projectPart()) {
|
|
|
|
|
const QString diagnosticsProjectPartId = message.file().projectPartId();
|
|
|
|
|
const QString documentProjectPartId = processor->projectPart()->id();
|
|
|
|
|
if (diagnosticsProjectPartId == documentProjectPartId)
|
2015-08-31 12:40:14 +02:00
|
|
|
processor->updateCodeWarnings(message.diagnostics(), message.file().documentRevision());
|
2015-08-31 16:28:26 +02:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2015-08-19 12:36:43 +02:00
|
|
|
void IpcReceiver::translationUnitDoesNotExist(const TranslationUnitDoesNotExistMessage &message)
|
2015-05-08 15:48:17 +02:00
|
|
|
{
|
2015-08-19 12:36:43 +02:00
|
|
|
QTC_CHECK(!"Got TranslationUnitDoesNotExistMessage");
|
|
|
|
|
qCDebug(log) << "<<< ERROR:" << message;
|
2015-05-08 15:48:17 +02:00
|
|
|
}
|
|
|
|
|
|
2015-08-19 12:36:43 +02:00
|
|
|
void IpcReceiver::projectPartsDoNotExist(const ProjectPartsDoNotExistMessage &message)
|
2015-05-08 15:48:17 +02:00
|
|
|
{
|
2015-08-19 12:36:43 +02:00
|
|
|
QTC_CHECK(!"Got ProjectPartsDoNotExistMessage");
|
|
|
|
|
qCDebug(log) << "<<< ERROR:" << message;
|
2015-05-08 15:48:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
class IpcSender : public IpcSenderInterface
|
|
|
|
|
{
|
|
|
|
|
public:
|
2015-06-16 11:56:00 +02:00
|
|
|
IpcSender(ClangBackEnd::ConnectionClient &connectionClient)
|
2015-05-08 15:48:17 +02:00
|
|
|
: m_connection(connectionClient)
|
|
|
|
|
{}
|
|
|
|
|
|
|
|
|
|
void end() override;
|
2015-08-19 12:36:43 +02:00
|
|
|
void registerTranslationUnitsForCodeCompletion(const ClangBackEnd::RegisterTranslationUnitForCodeCompletionMessage &message) override;
|
|
|
|
|
void unregisterTranslationUnitsForCodeCompletion(const ClangBackEnd::UnregisterTranslationUnitsForCodeCompletionMessage &message) override;
|
|
|
|
|
void registerProjectPartsForCodeCompletion(const ClangBackEnd::RegisterProjectPartsForCodeCompletionMessage &message) override;
|
|
|
|
|
void unregisterProjectPartsForCodeCompletion(const ClangBackEnd::UnregisterProjectPartsForCodeCompletionMessage &message) override;
|
|
|
|
|
void completeCode(const ClangBackEnd::CompleteCodeMessage &message) override;
|
2015-08-31 16:28:26 +02:00
|
|
|
void requestDiagnostics(const ClangBackEnd::RequestDiagnosticsMessage &message) override;
|
2015-05-08 15:48:17 +02:00
|
|
|
|
|
|
|
|
private:
|
2015-06-16 11:56:00 +02:00
|
|
|
ClangBackEnd::ConnectionClient &m_connection;
|
2015-05-08 15:48:17 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
void IpcSender::end()
|
|
|
|
|
{
|
|
|
|
|
QTC_CHECK(m_connection.isConnected());
|
2015-08-19 12:36:43 +02:00
|
|
|
m_connection.sendEndMessage();
|
2015-05-08 15:48:17 +02:00
|
|
|
}
|
|
|
|
|
|
2015-08-19 12:36:43 +02:00
|
|
|
void IpcSender::registerTranslationUnitsForCodeCompletion(const RegisterTranslationUnitForCodeCompletionMessage &message)
|
2015-05-08 15:48:17 +02:00
|
|
|
{
|
|
|
|
|
QTC_CHECK(m_connection.isConnected());
|
2015-08-19 12:36:43 +02:00
|
|
|
m_connection.serverProxy().registerTranslationUnitsForCodeCompletion(message);
|
2015-05-08 15:48:17 +02:00
|
|
|
}
|
|
|
|
|
|
2015-08-19 12:36:43 +02:00
|
|
|
void IpcSender::unregisterTranslationUnitsForCodeCompletion(const UnregisterTranslationUnitsForCodeCompletionMessage &message)
|
2015-05-08 15:48:17 +02:00
|
|
|
{
|
|
|
|
|
QTC_CHECK(m_connection.isConnected());
|
2015-08-19 12:36:43 +02:00
|
|
|
m_connection.serverProxy().unregisterTranslationUnitsForCodeCompletion(message);
|
2015-05-08 15:48:17 +02:00
|
|
|
}
|
|
|
|
|
|
2015-08-19 12:36:43 +02:00
|
|
|
void IpcSender::registerProjectPartsForCodeCompletion(const RegisterProjectPartsForCodeCompletionMessage &message)
|
2015-05-08 15:48:17 +02:00
|
|
|
{
|
|
|
|
|
QTC_CHECK(m_connection.isConnected());
|
2015-08-19 12:36:43 +02:00
|
|
|
m_connection.serverProxy().registerProjectPartsForCodeCompletion(message);
|
2015-05-08 15:48:17 +02:00
|
|
|
}
|
|
|
|
|
|
2015-08-19 12:36:43 +02:00
|
|
|
void IpcSender::unregisterProjectPartsForCodeCompletion(const UnregisterProjectPartsForCodeCompletionMessage &message)
|
2015-05-08 15:48:17 +02:00
|
|
|
{
|
|
|
|
|
QTC_CHECK(m_connection.isConnected());
|
2015-08-19 12:36:43 +02:00
|
|
|
m_connection.serverProxy().unregisterProjectPartsForCodeCompletion(message);
|
2015-05-08 15:48:17 +02:00
|
|
|
}
|
|
|
|
|
|
2015-08-19 12:36:43 +02:00
|
|
|
void IpcSender::completeCode(const CompleteCodeMessage &message)
|
2015-05-08 15:48:17 +02:00
|
|
|
{
|
|
|
|
|
QTC_CHECK(m_connection.isConnected());
|
2015-08-19 12:36:43 +02:00
|
|
|
m_connection.serverProxy().completeCode(message);
|
2015-05-08 15:48:17 +02:00
|
|
|
}
|
|
|
|
|
|
2015-08-31 16:28:26 +02:00
|
|
|
void IpcSender::requestDiagnostics(const RequestDiagnosticsMessage &message)
|
|
|
|
|
{
|
|
|
|
|
QTC_CHECK(m_connection.isConnected());
|
|
|
|
|
m_connection.serverProxy().requestDiagnostics(message);
|
|
|
|
|
}
|
|
|
|
|
|
2015-05-08 15:48:17 +02:00
|
|
|
IpcCommunicator::IpcCommunicator()
|
|
|
|
|
: m_connection(&m_ipcReceiver)
|
|
|
|
|
, m_ipcSender(new IpcSender(m_connection))
|
|
|
|
|
{
|
|
|
|
|
m_ipcReceiver.setAliveHandler([this]() { m_connection.resetProcessAliveTimer(); });
|
|
|
|
|
|
|
|
|
|
connect(Core::EditorManager::instance(), &Core::EditorManager::editorAboutToClose,
|
|
|
|
|
this, &IpcCommunicator::onEditorAboutToClose);
|
2015-07-14 10:15:52 +02:00
|
|
|
connect(Core::ICore::instance(), &Core::ICore::coreAboutToClose,
|
|
|
|
|
this, &IpcCommunicator::onCoreAboutToClose);
|
2015-05-08 15:48:17 +02:00
|
|
|
|
|
|
|
|
initializeBackend();
|
|
|
|
|
}
|
|
|
|
|
|
2015-08-19 12:36:43 +02:00
|
|
|
static bool areMessagesRegistered = false;
|
2015-05-08 15:48:17 +02:00
|
|
|
|
|
|
|
|
void IpcCommunicator::initializeBackend()
|
|
|
|
|
{
|
2015-08-19 12:36:43 +02:00
|
|
|
if (!areMessagesRegistered) {
|
|
|
|
|
areMessagesRegistered = true;
|
|
|
|
|
Messages::registerMessages();
|
2015-05-08 15:48:17 +02:00
|
|
|
}
|
|
|
|
|
|
2015-06-16 11:56:00 +02:00
|
|
|
const QString clangBackEndProcessPath = backendProcessPath();
|
|
|
|
|
qCDebug(log) << "Starting" << clangBackEndProcessPath;
|
|
|
|
|
QTC_ASSERT(QFileInfo(clangBackEndProcessPath).exists(), return);
|
2015-05-08 15:48:17 +02:00
|
|
|
|
2015-08-06 12:25:25 +02:00
|
|
|
m_connection.setProcessAliveTimerInterval(30 * 1000);
|
2015-06-16 11:56:00 +02:00
|
|
|
m_connection.setProcessPath(clangBackEndProcessPath);
|
2015-05-08 15:48:17 +02:00
|
|
|
|
|
|
|
|
connect(&m_connection, &ConnectionClient::processRestarted,
|
|
|
|
|
this, &IpcCommunicator::onBackendRestarted);
|
|
|
|
|
|
2015-07-28 16:04:49 +02:00
|
|
|
// TODO: Add a asynchron API to ConnectionClient, otherwise we might hang here
|
|
|
|
|
if (m_connection.connectToServer())
|
2015-05-08 15:48:17 +02:00
|
|
|
initializeBackendWithCurrentData();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void IpcCommunicator::registerEmptyProjectForProjectLessFiles()
|
|
|
|
|
{
|
|
|
|
|
QTC_CHECK(m_connection.isConnected());
|
2015-06-16 11:56:00 +02:00
|
|
|
registerProjectPartsForCodeCompletion({ClangBackEnd::ProjectPartContainer(
|
2015-05-08 15:48:17 +02:00
|
|
|
Utf8String(),
|
|
|
|
|
Utf8StringVector())});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void IpcCommunicator::registerCurrentProjectParts()
|
|
|
|
|
{
|
|
|
|
|
using namespace CppTools;
|
|
|
|
|
|
|
|
|
|
const QList<ProjectInfo> projectInfos = CppModelManager::instance()->projectInfos();
|
|
|
|
|
foreach (const ProjectInfo &projectInfo, projectInfos)
|
|
|
|
|
registerProjectsParts(projectInfo.projectParts());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void IpcCommunicator::registerCurrentUnsavedFiles()
|
|
|
|
|
{
|
|
|
|
|
using namespace CppTools;
|
|
|
|
|
|
|
|
|
|
const auto cppEditorDocuments = CppModelManager::instance()->cppEditorDocuments();
|
|
|
|
|
foreach (const CppEditorDocumentHandle *cppEditorDocument, cppEditorDocuments) {
|
|
|
|
|
if (cppEditorDocument->processor()->baseTextDocument()->isModified())
|
|
|
|
|
updateUnsavedFileFromCppEditorDocument(cppEditorDocument->filePath());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void IpcCommunicator::registerCurrrentCodeModelUiHeaders()
|
|
|
|
|
{
|
|
|
|
|
using namespace CppTools;
|
|
|
|
|
|
|
|
|
|
const auto editorSupports = CppModelManager::instance()->abstractEditorSupports();
|
|
|
|
|
foreach (const AbstractEditorSupport *es, editorSupports)
|
2015-08-31 12:40:14 +02:00
|
|
|
updateUnsavedFile(es->fileName(), es->contents(), es->revision());
|
2015-05-08 15:48:17 +02:00
|
|
|
}
|
|
|
|
|
|
2015-08-19 12:36:43 +02:00
|
|
|
static QStringList projectPartMessageLine(const CppTools::ProjectPart::Ptr &projectPart)
|
2015-05-08 15:48:17 +02:00
|
|
|
{
|
|
|
|
|
QStringList options = ClangCodeModel::Utils::createClangOptions(projectPart,
|
|
|
|
|
CppTools::ProjectFile::Unclassified); // No language option
|
|
|
|
|
if (PchInfo::Ptr pchInfo = PchManager::instance()->pchInfo(projectPart))
|
|
|
|
|
options += ClangCodeModel::Utils::createPCHInclusionOptions(pchInfo->fileName());
|
2015-08-31 16:28:26 +02:00
|
|
|
|
2015-05-08 15:48:17 +02:00
|
|
|
return options;
|
|
|
|
|
}
|
|
|
|
|
|
2015-06-16 11:56:00 +02:00
|
|
|
static ClangBackEnd::ProjectPartContainer toProjectPartContainer(
|
2015-05-08 15:48:17 +02:00
|
|
|
const CppTools::ProjectPart::Ptr &projectPart)
|
|
|
|
|
{
|
2015-08-19 12:36:43 +02:00
|
|
|
const QStringList arguments = projectPartMessageLine(projectPart);
|
2015-07-14 17:30:17 +02:00
|
|
|
return ClangBackEnd::ProjectPartContainer(projectPart->id(), Utf8StringVector(arguments));
|
2015-05-08 15:48:17 +02:00
|
|
|
}
|
|
|
|
|
|
2015-06-16 11:56:00 +02:00
|
|
|
static QVector<ClangBackEnd::ProjectPartContainer> toProjectPartContainers(
|
2015-05-08 15:48:17 +02:00
|
|
|
const QList<CppTools::ProjectPart::Ptr> projectParts)
|
|
|
|
|
{
|
2015-06-16 11:56:00 +02:00
|
|
|
QVector<ClangBackEnd::ProjectPartContainer> projectPartContainers;
|
2015-05-08 15:48:17 +02:00
|
|
|
projectPartContainers.reserve(projectParts.size());
|
|
|
|
|
foreach (const CppTools::ProjectPart::Ptr &projectPart, projectParts)
|
|
|
|
|
projectPartContainers << toProjectPartContainer(projectPart);
|
|
|
|
|
return projectPartContainers;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void IpcCommunicator::registerProjectsParts(const QList<CppTools::ProjectPart::Ptr> projectParts)
|
|
|
|
|
{
|
|
|
|
|
const auto projectPartContainers = toProjectPartContainers(projectParts);
|
|
|
|
|
registerProjectPartsForCodeCompletion(projectPartContainers);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void IpcCommunicator::updateUnsavedFileFromCppEditorDocument(const QString &filePath)
|
|
|
|
|
{
|
2015-08-31 12:40:14 +02:00
|
|
|
const auto document = CppTools::CppModelManager::instance()->cppEditorDocument(filePath);
|
|
|
|
|
|
|
|
|
|
updateUnsavedFile(filePath, document->contents(), document->revision());
|
2015-05-08 15:48:17 +02:00
|
|
|
}
|
|
|
|
|
|
2015-08-31 12:40:14 +02:00
|
|
|
void IpcCommunicator::updateUnsavedFile(const QString &filePath,
|
|
|
|
|
const QByteArray &contents,
|
|
|
|
|
uint documentRevision)
|
2015-05-08 15:48:17 +02:00
|
|
|
{
|
2015-07-14 17:30:17 +02:00
|
|
|
const QString projectPartId = Utils::projectPartIdForFile(filePath);
|
2015-05-08 15:48:17 +02:00
|
|
|
const bool hasUnsavedContent = true;
|
|
|
|
|
|
|
|
|
|
// TODO: Send new only if changed
|
2015-08-31 16:28:26 +02:00
|
|
|
registerFilesForCodeCompletion({{filePath,
|
|
|
|
|
projectPartId,
|
|
|
|
|
Utf8String::fromByteArray(contents),
|
2015-08-31 12:40:14 +02:00
|
|
|
hasUnsavedContent,
|
|
|
|
|
documentRevision}});
|
2015-08-31 16:28:26 +02:00
|
|
|
}
|
|
|
|
|
|
2015-08-31 12:40:14 +02:00
|
|
|
void IpcCommunicator::requestDiagnostics(const FileContainer &fileContainer)
|
2015-08-31 16:28:26 +02:00
|
|
|
{
|
|
|
|
|
registerFilesForCodeCompletion({fileContainer});
|
2015-08-31 12:40:14 +02:00
|
|
|
m_ipcSender->requestDiagnostics({fileContainer});
|
2015-05-08 15:48:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void IpcCommunicator::updateUnsavedFileIfNotCurrentDocument(Core::IDocument *document)
|
|
|
|
|
{
|
|
|
|
|
QTC_ASSERT(document, return);
|
|
|
|
|
|
|
|
|
|
if (Core::EditorManager::currentDocument() != document)
|
|
|
|
|
updateUnsavedFileFromCppEditorDocument(document->filePath().toString());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void IpcCommunicator::onBackendRestarted()
|
|
|
|
|
{
|
2015-06-16 11:56:00 +02:00
|
|
|
qWarning("Clang back end finished unexpectedly, restarted.");
|
2015-05-08 15:48:17 +02:00
|
|
|
qCDebug(log) << "Backend restarted, re-initializing with project data and unsaved files.";
|
|
|
|
|
|
|
|
|
|
m_ipcReceiver.deleteAndClearWaitingAssistProcessors();
|
|
|
|
|
initializeBackendWithCurrentData();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void IpcCommunicator::onEditorAboutToClose(Core::IEditor *editor)
|
|
|
|
|
{
|
|
|
|
|
if (auto *textEditor = qobject_cast<TextEditor::BaseTextEditor *>(editor))
|
|
|
|
|
m_ipcReceiver.deleteProcessorsOfEditorWidget(textEditor->editorWidget());
|
|
|
|
|
}
|
|
|
|
|
|
2015-07-14 10:15:52 +02:00
|
|
|
void IpcCommunicator::onCoreAboutToClose()
|
|
|
|
|
{
|
|
|
|
|
m_sendMode = IgnoreSendRequests;
|
|
|
|
|
}
|
|
|
|
|
|
2015-05-08 15:48:17 +02:00
|
|
|
void IpcCommunicator::initializeBackendWithCurrentData()
|
|
|
|
|
{
|
|
|
|
|
registerEmptyProjectForProjectLessFiles();
|
|
|
|
|
registerCurrentProjectParts();
|
|
|
|
|
registerCurrentUnsavedFiles();
|
|
|
|
|
registerCurrrentCodeModelUiHeaders();
|
|
|
|
|
|
|
|
|
|
emit backendReinitialized();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
IpcSenderInterface *IpcCommunicator::setIpcSender(IpcSenderInterface *ipcSender)
|
|
|
|
|
{
|
2015-08-19 12:36:43 +02:00
|
|
|
IpcSenderInterface *previousMessageSender = m_ipcSender.take();
|
2015-05-08 15:48:17 +02:00
|
|
|
m_ipcSender.reset(ipcSender);
|
2015-08-19 12:36:43 +02:00
|
|
|
return previousMessageSender;
|
2015-05-08 15:48:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void IpcCommunicator::killBackendProcess()
|
|
|
|
|
{
|
|
|
|
|
m_connection.processForTestOnly()->kill();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void IpcCommunicator::registerFilesForCodeCompletion(const FileContainers &fileContainers)
|
|
|
|
|
{
|
|
|
|
|
if (m_sendMode == IgnoreSendRequests)
|
|
|
|
|
return;
|
|
|
|
|
|
2015-08-19 12:36:43 +02:00
|
|
|
const RegisterTranslationUnitForCodeCompletionMessage message(fileContainers);
|
|
|
|
|
qCDebug(log) << ">>>" << message;
|
|
|
|
|
m_ipcSender->registerTranslationUnitsForCodeCompletion(message);
|
2015-05-08 15:48:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void IpcCommunicator::unregisterFilesForCodeCompletion(const FileContainers &fileContainers)
|
|
|
|
|
{
|
|
|
|
|
if (m_sendMode == IgnoreSendRequests)
|
|
|
|
|
return;
|
|
|
|
|
|
2015-08-19 12:36:43 +02:00
|
|
|
const UnregisterTranslationUnitsForCodeCompletionMessage message(fileContainers);
|
|
|
|
|
qCDebug(log) << ">>>" << message;
|
|
|
|
|
m_ipcSender->unregisterTranslationUnitsForCodeCompletion(message);
|
2015-05-08 15:48:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void IpcCommunicator::registerProjectPartsForCodeCompletion(
|
|
|
|
|
const ProjectPartContainers &projectPartContainers)
|
|
|
|
|
{
|
|
|
|
|
if (m_sendMode == IgnoreSendRequests)
|
|
|
|
|
return;
|
|
|
|
|
|
2015-08-19 12:36:43 +02:00
|
|
|
const RegisterProjectPartsForCodeCompletionMessage message(projectPartContainers);
|
|
|
|
|
qCDebug(log) << ">>>" << message;
|
|
|
|
|
m_ipcSender->registerProjectPartsForCodeCompletion(message);
|
2015-05-08 15:48:17 +02:00
|
|
|
}
|
|
|
|
|
|
2015-07-14 17:30:17 +02:00
|
|
|
void IpcCommunicator::unregisterProjectPartsForCodeCompletion(const QStringList &projectPartIds)
|
2015-05-08 15:48:17 +02:00
|
|
|
{
|
|
|
|
|
if (m_sendMode == IgnoreSendRequests)
|
|
|
|
|
return;
|
|
|
|
|
|
2015-08-19 12:36:43 +02:00
|
|
|
const UnregisterProjectPartsForCodeCompletionMessage message((Utf8StringVector(projectPartIds)));
|
|
|
|
|
qCDebug(log) << ">>>" << message;
|
|
|
|
|
m_ipcSender->unregisterProjectPartsForCodeCompletion(message);
|
2015-05-08 15:48:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void IpcCommunicator::completeCode(ClangCompletionAssistProcessor *assistProcessor,
|
|
|
|
|
const QString &filePath,
|
|
|
|
|
quint32 line,
|
|
|
|
|
quint32 column,
|
|
|
|
|
const QString &projectFilePath)
|
|
|
|
|
{
|
|
|
|
|
if (m_sendMode == IgnoreSendRequests)
|
|
|
|
|
return;
|
|
|
|
|
|
2015-08-19 12:36:43 +02:00
|
|
|
const CompleteCodeMessage message(filePath, line, column, projectFilePath);
|
|
|
|
|
qCDebug(log) << ">>>" << message;
|
|
|
|
|
m_ipcSender->completeCode(message);
|
|
|
|
|
m_ipcReceiver.addExpectedCodeCompletedMessage(message.ticketNumber(), assistProcessor);
|
2015-05-08 15:48:17 +02:00
|
|
|
}
|