2015-08-31 12:40:14 +02:00
|
|
|
/****************************************************************************
|
|
|
|
|
**
|
2016-01-15 14:57:14 +01:00
|
|
|
** Copyright (C) 2016 The Qt Company Ltd.
|
|
|
|
|
** Contact: https://www.qt.io/licensing/
|
2015-08-31 12:40:14 +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:57:14 +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-08-31 12:40:14 +02:00
|
|
|
**
|
2016-01-15 14:57:14 +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-08-31 12:40:14 +02:00
|
|
|
**
|
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
|
|
#include "clangfilesystemwatcher.h"
|
|
|
|
|
|
2016-09-07 10:42:12 +02:00
|
|
|
#include "clangdocuments.h"
|
2015-08-31 12:40:14 +02:00
|
|
|
|
|
|
|
|
#include <utf8stringvector.h>
|
|
|
|
|
|
2015-09-30 15:16:18 +02:00
|
|
|
#include <QFileInfo>
|
2015-08-31 12:40:14 +02:00
|
|
|
#include <QStringList>
|
|
|
|
|
|
|
|
|
|
#include <algorithm>
|
|
|
|
|
#include <iterator>
|
|
|
|
|
|
|
|
|
|
namespace ClangBackEnd {
|
|
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
QStringList toStringList(const QSet<Utf8String> &files)
|
|
|
|
|
{
|
|
|
|
|
QStringList resultList;
|
2015-09-30 15:16:18 +02:00
|
|
|
resultList.reserve(files.size());
|
2015-08-31 12:40:14 +02:00
|
|
|
|
|
|
|
|
std::copy(files.cbegin(), files.cend(), std::back_inserter(resultList));
|
|
|
|
|
|
|
|
|
|
return resultList;
|
|
|
|
|
}
|
2015-09-30 15:16:18 +02:00
|
|
|
|
|
|
|
|
QStringList filterExistingFiles(QStringList &&filePaths)
|
|
|
|
|
{
|
|
|
|
|
auto fileExists = [] (const QString &filePath) {
|
|
|
|
|
return QFileInfo::exists(filePath);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
auto startOfNonExistingFilePaths = std::partition(filePaths.begin(),
|
|
|
|
|
filePaths.end(),
|
|
|
|
|
fileExists);
|
|
|
|
|
|
|
|
|
|
filePaths.erase(startOfNonExistingFilePaths, filePaths.end());
|
|
|
|
|
|
|
|
|
|
return filePaths;
|
|
|
|
|
}
|
2015-08-31 12:40:14 +02:00
|
|
|
}
|
|
|
|
|
|
2016-09-07 10:42:12 +02:00
|
|
|
ClangFileSystemWatcher::ClangFileSystemWatcher(Documents &documents)
|
|
|
|
|
: documents(documents)
|
2015-08-31 12:40:14 +02:00
|
|
|
{
|
|
|
|
|
connect(&watcher,
|
|
|
|
|
&QFileSystemWatcher::fileChanged,
|
|
|
|
|
this,
|
2016-09-09 08:58:40 +02:00
|
|
|
&ClangFileSystemWatcher::updateDocumentsWithChangedDependencies);
|
2015-08-31 12:40:14 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ClangFileSystemWatcher::addFiles(const QSet<Utf8String> &filePaths)
|
|
|
|
|
{
|
2015-09-30 15:16:18 +02:00
|
|
|
const auto existingFiles = filterExistingFiles(toStringList(filePaths));
|
|
|
|
|
|
|
|
|
|
if (!existingFiles.isEmpty())
|
|
|
|
|
watcher.addPaths(existingFiles);
|
2015-08-31 12:40:14 +02:00
|
|
|
}
|
|
|
|
|
|
2016-09-09 08:58:40 +02:00
|
|
|
void ClangFileSystemWatcher::updateDocumentsWithChangedDependencies(const QString &filePath)
|
2015-08-31 12:40:14 +02:00
|
|
|
{
|
2016-09-07 10:42:12 +02:00
|
|
|
documents.updateDocumentsWithChangedDependency(filePath);
|
2015-08-31 12:40:14 +02:00
|
|
|
|
2015-10-13 12:54:22 +02:00
|
|
|
emit fileChanged(filePath);
|
2015-08-31 12:40:14 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
} // namespace ClangBackEnd
|