forked from qt-creator/qt-creator
...in preparation for concurrent processing of documents. Parsing and reparsing is handled by TranslationUnit. Since we will do this in a different thread, extract the core logic into the new class TranslationUnitUpdater, so that we can prepare the necessary data for the run and then later incorporate the results of the parse/reparse. Change-Id: Ic9d936d193ee6795a755f0cfc38c0b2a7bd402cc Reviewed-by: Tim Jenssen <tim.jenssen@qt.io>
133 lines
4.3 KiB
C++
133 lines
4.3 KiB
C++
/****************************************************************************
|
|
**
|
|
** 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 <clangtranslationunitupdater.h>
|
|
|
|
#include <clang-c/Index.h>
|
|
|
|
#include <gmock/gmock.h>
|
|
#include <gmock/gmock-matchers.h>
|
|
#include <gtest/gtest.h>
|
|
#include "gtest-qt-printing.h"
|
|
|
|
using ClangBackEnd::TranslationUnitUpdater;
|
|
using ClangBackEnd::TranslationUnitUpdateInput;
|
|
using ClangBackEnd::TranslationUnitUpdateResult;
|
|
|
|
using testing::Gt;
|
|
|
|
namespace {
|
|
|
|
class TranslationUnitUpdater : public ::testing::Test
|
|
{
|
|
protected:
|
|
void TearDown() override;
|
|
|
|
::TranslationUnitUpdater createUpdater(const TranslationUnitUpdateInput &input);
|
|
|
|
enum ReparseMode { SetReparseNeeded, DoNotSetReparseNeeded };
|
|
TranslationUnitUpdateInput createInput(ReparseMode reparseMode = DoNotSetReparseNeeded);
|
|
|
|
protected:
|
|
CXIndex cxIndex = nullptr;
|
|
CXTranslationUnit cxTranslationUnit = nullptr;
|
|
|
|
Utf8String filePath = Utf8StringLiteral(TESTDATA_DIR"/translationunits.cpp");
|
|
};
|
|
|
|
TEST_F(TranslationUnitUpdater, ParsesIfNeeded)
|
|
{
|
|
::TranslationUnitUpdater updater = createUpdater(createInput());
|
|
|
|
TranslationUnitUpdateResult result = updater.update(::TranslationUnitUpdater::UpdateMode::AsNeeded);
|
|
|
|
ASSERT_TRUE(cxTranslationUnit);
|
|
ASSERT_FALSE(result.reparsed);
|
|
}
|
|
|
|
TEST_F(TranslationUnitUpdater, ReparsesIfNeeded)
|
|
{
|
|
::TranslationUnitUpdater updater = createUpdater(createInput(SetReparseNeeded));
|
|
|
|
TranslationUnitUpdateResult result = updater.update(::TranslationUnitUpdater::UpdateMode::AsNeeded);
|
|
|
|
ASSERT_TRUE(result.reparsed);
|
|
}
|
|
|
|
TEST_F(TranslationUnitUpdater, UpdatesParseTimePoint)
|
|
{
|
|
::TranslationUnitUpdater updater = createUpdater(createInput());
|
|
const std::chrono::steady_clock::time_point now = std::chrono::steady_clock::now();
|
|
|
|
TranslationUnitUpdateResult result = updater.update(::TranslationUnitUpdater::UpdateMode::AsNeeded);
|
|
|
|
ASSERT_TRUE(result.parseTimePointIsSet);
|
|
ASSERT_THAT(result.parseTimePoint, Gt(now));
|
|
}
|
|
|
|
TEST_F(TranslationUnitUpdater, NotUpdatingParseTimePointForReparseOnly)
|
|
{
|
|
::TranslationUnitUpdater updater = createUpdater(createInput());
|
|
TranslationUnitUpdateResult result = updater.update(::TranslationUnitUpdater::UpdateMode::AsNeeded);
|
|
|
|
::TranslationUnitUpdater reparseUpdater = createUpdater(createInput(SetReparseNeeded));
|
|
result = reparseUpdater.update(::TranslationUnitUpdater::UpdateMode::AsNeeded);
|
|
|
|
ASSERT_TRUE(result.reparsed);
|
|
ASSERT_FALSE(result.parseTimePointIsSet);
|
|
}
|
|
|
|
TEST_F(TranslationUnitUpdater, UpdatesDependendOnFilesOnParse)
|
|
{
|
|
::TranslationUnitUpdater updater = createUpdater(createInput());
|
|
|
|
TranslationUnitUpdateResult result = updater.update(::TranslationUnitUpdater::UpdateMode::AsNeeded);
|
|
|
|
ASSERT_FALSE(result.dependedOnFilePaths.isEmpty());
|
|
}
|
|
|
|
void TranslationUnitUpdater::TearDown()
|
|
{
|
|
clang_disposeIndex(cxIndex);
|
|
}
|
|
|
|
::TranslationUnitUpdater
|
|
TranslationUnitUpdater::createUpdater(const TranslationUnitUpdateInput &input)
|
|
{
|
|
return ::TranslationUnitUpdater(cxIndex, cxTranslationUnit, input);
|
|
}
|
|
|
|
TranslationUnitUpdateInput
|
|
TranslationUnitUpdater::createInput(ReparseMode reparseMode)
|
|
{
|
|
TranslationUnitUpdateInput updateInput;
|
|
updateInput.filePath = filePath;
|
|
updateInput.reparseNeeded = reparseMode == SetReparseNeeded;
|
|
|
|
return updateInput;
|
|
}
|
|
|
|
} // anonymous
|