forked from qt-creator/qt-creator
Clang: Rename directory ipcsource to source
Now it's in accordance with clangrefactoringbackend/source and clangpchmanagerbackend/source. Change-Id: I939cfc72cffb8fcde0649f125e6efb6670d1cbc3 Reviewed-by: Tim Jenssen <tim.jenssen@qt.io>
This commit is contained in:
232
src/tools/clangbackend/source/codecompleter.cpp
Normal file
232
src/tools/clangbackend/source/codecompleter.cpp
Normal file
@@ -0,0 +1,232 @@
|
||||
/****************************************************************************
|
||||
**
|
||||
** Copyright (C) 2016 The Qt Company Ltd.
|
||||
** 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 "codecompleter.h"
|
||||
|
||||
#include "clangfilepath.h"
|
||||
#include "clangcodecompleteresults.h"
|
||||
#include "clangstring.h"
|
||||
#include "cursor.h"
|
||||
#include "clangexceptions.h"
|
||||
#include "codecompletionsextractor.h"
|
||||
#include "sourcelocation.h"
|
||||
#include "unsavedfile.h"
|
||||
#include "unsavedfiles.h"
|
||||
#include "clangdocument.h"
|
||||
#include "sourcerange.h"
|
||||
#include "clangunsavedfilesshallowarguments.h"
|
||||
#include "clangtranslationunitupdater.h"
|
||||
|
||||
#include <clang-c/Index.h>
|
||||
|
||||
namespace ClangBackEnd {
|
||||
|
||||
namespace {
|
||||
|
||||
CodeCompletions toCodeCompletions(const ClangCodeCompleteResults &results)
|
||||
{
|
||||
if (results.isNull())
|
||||
return CodeCompletions();
|
||||
|
||||
CodeCompletionsExtractor extractor(results.data());
|
||||
CodeCompletions codeCompletions = extractor.extractAll();
|
||||
|
||||
return codeCompletions;
|
||||
}
|
||||
|
||||
void filterUnknownContextResults(ClangCodeCompleteResults &results,
|
||||
const UnsavedFile &theUnsavedFile,
|
||||
uint line,
|
||||
uint column)
|
||||
{
|
||||
if (results.hasUnknownContext()) {
|
||||
bool positionIsOk = false;
|
||||
const uint position = theUnsavedFile.toUtf8Position(line, column - 1, &positionIsOk);
|
||||
if (positionIsOk && (theUnsavedFile.hasCharacterAt(position, '.')
|
||||
|| (theUnsavedFile.hasCharacterAt(position - 1, '-')
|
||||
&& theUnsavedFile.hasCharacterAt(position, '>')))) {
|
||||
results = {};
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
} // anonymous namespace
|
||||
|
||||
CodeCompleter::CodeCompleter(const TranslationUnit &translationUnit,
|
||||
const UnsavedFiles &unsavedFiles)
|
||||
: translationUnit(translationUnit)
|
||||
, unsavedFiles(unsavedFiles)
|
||||
{
|
||||
}
|
||||
|
||||
CodeCompletions CodeCompleter::complete(uint line, uint column,
|
||||
int funcNameStartLine,
|
||||
int funcNameStartColumn)
|
||||
{
|
||||
neededCorrection_ = CompletionCorrection::NoCorrection;
|
||||
|
||||
// Check if we have a smart pointer completion and get proper constructor signatures in results.
|
||||
// Results are empty when it's not a smart pointer or this completion failed.
|
||||
ClangCodeCompleteResults results = completeSmartPointerCreation(line,
|
||||
column,
|
||||
funcNameStartLine,
|
||||
funcNameStartColumn);
|
||||
|
||||
if (results.isNull() || results.isEmpty())
|
||||
results = completeHelper(line, column);
|
||||
|
||||
filterUnknownContextResults(results, unsavedFile(), line, column);
|
||||
tryDotArrowCorrectionIfNoResults(results, line, column);
|
||||
|
||||
return toCodeCompletions(results);
|
||||
}
|
||||
|
||||
CompletionCorrection CodeCompleter::neededCorrection() const
|
||||
{
|
||||
return neededCorrection_;
|
||||
}
|
||||
|
||||
// For given "make_unique<T>" / "make_shared<T>" / "QSharedPointer<T>::create" return "new T("
|
||||
// Otherwize return empty QString
|
||||
static QString tweakName(const QString &oldName)
|
||||
{
|
||||
QString fullName = oldName.trimmed();
|
||||
if (!fullName.contains('>'))
|
||||
return QString();
|
||||
|
||||
if (!fullName.endsWith('>')) {
|
||||
// This is the class<type>::method case - remove ::method part
|
||||
if (!fullName.endsWith("create") || !fullName.contains("QSharedPointer"))
|
||||
return QString();
|
||||
fullName = fullName.mid(0, fullName.lastIndexOf(':') - 1);
|
||||
} else if (!fullName.contains("make_unique") && !fullName.contains("make_shared")) {
|
||||
return QString();
|
||||
}
|
||||
int templateStart = fullName.indexOf('<');
|
||||
QString name = fullName.mid(0, templateStart);
|
||||
QString templatePart = fullName.mid(templateStart + 1,
|
||||
fullName.length() - templateStart - 2);
|
||||
return "new " + templatePart + "(";
|
||||
}
|
||||
|
||||
ClangCodeCompleteResults CodeCompleter::completeSmartPointerCreation(uint line,
|
||||
uint column,
|
||||
int funcNameStartLine,
|
||||
int funcNameStartColumn)
|
||||
{
|
||||
if (column <= 1 || funcNameStartLine == -1)
|
||||
return ClangCodeCompleteResults();
|
||||
|
||||
UnsavedFile &file = unsavedFiles.unsavedFile(translationUnit.filePath());
|
||||
if (!file.hasCharacterAt(line, column - 1, '('))
|
||||
return ClangCodeCompleteResults();
|
||||
|
||||
bool ok;
|
||||
const uint startPos = file.toUtf8Position(funcNameStartLine, funcNameStartColumn, &ok);
|
||||
const uint endPos = file.toUtf8Position(line, column - 1, &ok);
|
||||
|
||||
Utf8String content = file.fileContent();
|
||||
const QString oldName = content.mid(startPos, endPos - startPos);
|
||||
const QString updatedName = tweakName(oldName);
|
||||
if (updatedName.isEmpty())
|
||||
return ClangCodeCompleteResults();
|
||||
|
||||
column += updatedName.length();
|
||||
file.replaceAt(endPos + 1, 0, updatedName);
|
||||
|
||||
ClangCodeCompleteResults results = completeHelper(line, column);
|
||||
if (results.isEmpty()) {
|
||||
column -= updatedName.length();
|
||||
file.replaceAt(endPos + 1, updatedName.length(), QString());
|
||||
}
|
||||
return results;
|
||||
}
|
||||
|
||||
ClangCodeCompleteResults CodeCompleter::completeHelper(uint line, uint column)
|
||||
{
|
||||
const Utf8String nativeFilePath = FilePath::toNativeSeparators(translationUnit.filePath());
|
||||
UnsavedFilesShallowArguments unsaved = unsavedFiles.shallowArguments();
|
||||
|
||||
return clang_codeCompleteAt(translationUnit.cxTranslationUnit(),
|
||||
nativeFilePath.constData(),
|
||||
line,
|
||||
column,
|
||||
unsaved.data(),
|
||||
unsaved.count(),
|
||||
defaultOptions());
|
||||
}
|
||||
|
||||
uint CodeCompleter::defaultOptions() const
|
||||
{
|
||||
uint options = CXCodeComplete_IncludeMacros
|
||||
| CXCodeComplete_IncludeCodePatterns;
|
||||
|
||||
if (TranslationUnitUpdater::defaultParseOptions()
|
||||
& CXTranslationUnit_IncludeBriefCommentsInCodeCompletion) {
|
||||
options |= CXCodeComplete_IncludeBriefComments;
|
||||
}
|
||||
|
||||
return options;
|
||||
}
|
||||
|
||||
UnsavedFile &CodeCompleter::unsavedFile()
|
||||
{
|
||||
return unsavedFiles.unsavedFile(translationUnit.filePath());
|
||||
}
|
||||
|
||||
void CodeCompleter::tryDotArrowCorrectionIfNoResults(ClangCodeCompleteResults &results,
|
||||
uint line,
|
||||
uint column)
|
||||
{
|
||||
if (results.hasNoResultsForDotCompletion()) {
|
||||
const UnsavedFile &theUnsavedFile = unsavedFile();
|
||||
bool positionIsOk = false;
|
||||
const uint dotPosition = theUnsavedFile.toUtf8Position(line, column - 1, &positionIsOk);
|
||||
if (positionIsOk && theUnsavedFile.hasCharacterAt(dotPosition, '.'))
|
||||
results = completeWithArrowInsteadOfDot(line, column, dotPosition);
|
||||
}
|
||||
}
|
||||
|
||||
ClangCodeCompleteResults CodeCompleter::completeWithArrowInsteadOfDot(uint line,
|
||||
uint column,
|
||||
uint dotPosition)
|
||||
{
|
||||
ClangCodeCompleteResults results;
|
||||
const bool replaced = unsavedFile().replaceAt(dotPosition,
|
||||
1,
|
||||
Utf8StringLiteral("->"));
|
||||
|
||||
if (replaced) {
|
||||
results = completeHelper(line, column + 1);
|
||||
if (results.hasResults())
|
||||
neededCorrection_ = CompletionCorrection::DotToArrowCorrection;
|
||||
filterUnknownContextResults(results, unsavedFile(), line, column+1);
|
||||
}
|
||||
|
||||
return results;
|
||||
}
|
||||
|
||||
} // namespace ClangBackEnd
|
||||
|
||||
Reference in New Issue
Block a user