2014-08-19 15:59:29 +02:00
|
|
|
/****************************************************************************
|
|
|
|
|
**
|
2015-01-14 18:07:15 +01:00
|
|
|
** Copyright (C) 2015 The Qt Company Ltd.
|
|
|
|
|
** Contact: http://www.qt.io/licensing
|
2014-08-19 15:59:29 +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
|
2015-01-14 18:07:15 +01:00
|
|
|
** a written agreement between you and The Qt Company. For licensing terms and
|
|
|
|
|
** conditions see http://www.qt.io/terms-conditions. For further information
|
2014-10-16 12:00:23 +02:00
|
|
|
** use the contact form at http://www.qt.io/contact-us.
|
2014-08-19 15:59:29 +02:00
|
|
|
**
|
|
|
|
|
** GNU Lesser General Public License Usage
|
|
|
|
|
** Alternatively, this file may be used under the terms of the GNU Lesser
|
2014-10-16 12:00:23 +02:00
|
|
|
** 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.
|
2014-08-19 15:59:29 +02:00
|
|
|
**
|
2015-01-14 18:07:15 +01:00
|
|
|
** In addition, as a special exception, The Qt Company gives you certain additional
|
|
|
|
|
** rights. These rights are described in The Qt Company LGPL Exception
|
2014-08-19 15:59:29 +02:00
|
|
|
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
|
|
|
|
**
|
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
|
|
#include "clangeditordocumentparser.h"
|
|
|
|
|
#include "clangutils.h"
|
|
|
|
|
#include "pchinfo.h"
|
|
|
|
|
#include "pchmanager.h"
|
|
|
|
|
|
2014-09-15 00:12:27 +02:00
|
|
|
#include <cpptools/cppmodelmanager.h>
|
2014-08-19 15:59:29 +02:00
|
|
|
#include <cpptools/cppprojects.h>
|
|
|
|
|
#include <cpptools/cppworkingcopy.h>
|
|
|
|
|
|
|
|
|
|
#include <utils/hostosinfo.h>
|
|
|
|
|
#include <utils/qtcassert.h>
|
|
|
|
|
|
2014-10-23 13:08:07 +02:00
|
|
|
#include <QLoggingCategory>
|
|
|
|
|
|
|
|
|
|
static Q_LOGGING_CATEGORY(log, "qtc.clangcodemodel.clangeditordocumentparser")
|
2014-08-19 15:59:29 +02:00
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
|
2015-05-08 15:48:17 +02:00
|
|
|
QStringList createOptions(const QString &filePath,
|
|
|
|
|
const CppTools::ProjectPart::Ptr &part,
|
|
|
|
|
bool includeSpellCheck = false)
|
2014-08-19 15:59:29 +02:00
|
|
|
{
|
|
|
|
|
using namespace ClangCodeModel;
|
|
|
|
|
|
|
|
|
|
QStringList options;
|
|
|
|
|
if (part.isNull())
|
|
|
|
|
return options;
|
|
|
|
|
|
2015-05-08 15:48:17 +02:00
|
|
|
if (includeSpellCheck)
|
|
|
|
|
options += QLatin1String("-fspell-checking");
|
|
|
|
|
|
2014-08-19 15:59:29 +02:00
|
|
|
options += ClangCodeModel::Utils::createClangOptions(part, filePath);
|
|
|
|
|
|
|
|
|
|
if (Internal::PchInfo::Ptr pchInfo = Internal::PchManager::instance()->pchInfo(part))
|
|
|
|
|
options.append(ClangCodeModel::Utils::createPCHInclusionOptions(pchInfo->fileName()));
|
|
|
|
|
|
|
|
|
|
return options;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QString commandLine(const QStringList &options, const QString &fileName)
|
|
|
|
|
{
|
|
|
|
|
const QStringList allOptions = QStringList(options)
|
|
|
|
|
<< QLatin1String("-fsyntax-only") << fileName;
|
|
|
|
|
QStringList allOptionsQuoted;
|
|
|
|
|
foreach (const QString &option, allOptions)
|
|
|
|
|
allOptionsQuoted.append(QLatin1Char('\'') + option + QLatin1Char('\''));
|
|
|
|
|
return ::Utils::HostOsInfo::withExecutableSuffix(QLatin1String("clang"))
|
|
|
|
|
+ QLatin1Char(' ') + allOptionsQuoted.join(QLatin1Char(' '));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
} // anonymous namespace
|
|
|
|
|
|
|
|
|
|
namespace ClangCodeModel {
|
|
|
|
|
|
|
|
|
|
ClangEditorDocumentParser::ClangEditorDocumentParser(const QString &filePath)
|
|
|
|
|
: BaseEditorDocumentParser(filePath)
|
|
|
|
|
, m_marker(new ClangCodeModel::SemanticMarker)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2015-07-10 12:34:40 +02:00
|
|
|
void ClangEditorDocumentParser::updateHelper(CppTools::WorkingCopy workingCopy)
|
2014-08-19 15:59:29 +02:00
|
|
|
{
|
|
|
|
|
QTC_ASSERT(m_marker, return);
|
|
|
|
|
|
2015-07-07 15:02:14 +02:00
|
|
|
// Determine project part
|
|
|
|
|
State state_ = state();
|
|
|
|
|
state_.projectPart = determineProjectPart(filePath(), configuration(), state_);
|
|
|
|
|
setState(state_);
|
2014-08-19 15:59:29 +02:00
|
|
|
|
2015-07-07 15:02:14 +02:00
|
|
|
// Determine command line arguments
|
|
|
|
|
const QStringList options = createOptions(filePath(), state_.projectPart, true);
|
2014-10-23 13:08:07 +02:00
|
|
|
qCDebug(log, "Reparse options (cmd line equivalent): %s",
|
|
|
|
|
commandLine(options, filePath()).toUtf8().constData());
|
2014-08-19 15:59:29 +02:00
|
|
|
|
2015-07-07 15:02:14 +02:00
|
|
|
// Run
|
|
|
|
|
QTime t; t.start();
|
|
|
|
|
QMutexLocker lock(m_marker->mutex());
|
2014-08-19 15:59:29 +02:00
|
|
|
m_marker->setFileName(filePath());
|
|
|
|
|
m_marker->setCompilationOptions(options);
|
|
|
|
|
const Internal::UnsavedFiles unsavedFiles = Utils::createUnsavedFiles(workingCopy);
|
|
|
|
|
m_marker->reparse(unsavedFiles);
|
2014-10-23 13:08:07 +02:00
|
|
|
qCDebug(log) << "Reparse took" << t.elapsed() << "ms.";
|
2014-08-19 15:59:29 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QList<Diagnostic> ClangEditorDocumentParser::diagnostics() const
|
|
|
|
|
{
|
|
|
|
|
QTC_ASSERT(m_marker, return QList<Diagnostic>());
|
|
|
|
|
QMutexLocker(m_marker->mutex());
|
|
|
|
|
return m_marker->diagnostics();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QList<SemanticMarker::Range> ClangEditorDocumentParser::ifdefedOutBlocks() const
|
|
|
|
|
{
|
|
|
|
|
QTC_ASSERT(m_marker, return QList<SemanticMarker::Range>());
|
|
|
|
|
QMutexLocker(m_marker->mutex());
|
|
|
|
|
return m_marker->ifdefedOutBlocks();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SemanticMarker::Ptr ClangEditorDocumentParser::semanticMarker() const
|
|
|
|
|
{
|
|
|
|
|
return m_marker;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
} // namespace ClangCodeModel
|