2011-11-29 14:19:28 +01:00
|
|
|
/**************************************************************************
|
|
|
|
**
|
2015-01-14 18:07:15 +01:00
|
|
|
** Copyright (C) 2015 Openismus GmbH.
|
2012-10-02 09:12:39 +02:00
|
|
|
** Authors: Peter Penz (ppenz@openismus.com)
|
|
|
|
** Patricia Santana Cruz (patriciasantanacruz@gmail.com)
|
2015-01-14 18:07:15 +01:00
|
|
|
** Contact: http://www.qt.io/licensing
|
2011-11-29 14:19:28 +01:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
** This file is part of Qt Creator.
|
2011-11-29 14:19:28 +01:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
** 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-01 13:21:18 +02:00
|
|
|
** use the contact form at http://www.qt.io/contact-us.
|
2011-11-29 14:19:28 +01:00
|
|
|
**
|
|
|
|
** GNU Lesser General Public License Usage
|
2012-10-02 09:12:39 +02:00
|
|
|
** Alternatively, this file may be used under the terms of the GNU Lesser
|
2014-10-01 13:21:18 +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.
|
2012-10-02 09:12:39 +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
|
2011-11-29 14:19:28 +01:00
|
|
|
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
****************************************************************************/
|
2011-11-29 14:19:28 +01:00
|
|
|
|
|
|
|
#include "autotoolsproject.h"
|
2012-04-24 15:49:09 +02:00
|
|
|
#include "autotoolsbuildconfiguration.h"
|
2011-11-29 14:19:28 +01:00
|
|
|
#include "autotoolsprojectconstants.h"
|
|
|
|
#include "autotoolsmanager.h"
|
|
|
|
#include "autotoolsprojectnode.h"
|
|
|
|
#include "autotoolsprojectfile.h"
|
|
|
|
#include "autotoolsopenprojectwizard.h"
|
|
|
|
#include "makestep.h"
|
|
|
|
#include "makefileparserthread.h"
|
|
|
|
|
|
|
|
#include <projectexplorer/abi.h>
|
2013-03-25 17:13:18 +01:00
|
|
|
#include <projectexplorer/toolchain.h>
|
2012-09-03 18:31:44 +02:00
|
|
|
#include <projectexplorer/kitmanager.h>
|
|
|
|
#include <projectexplorer/kitinformation.h>
|
2011-11-29 14:19:28 +01:00
|
|
|
#include <projectexplorer/buildconfiguration.h>
|
|
|
|
#include <projectexplorer/buildsteplist.h>
|
|
|
|
#include <projectexplorer/projectexplorerconstants.h>
|
2012-04-24 15:49:09 +02:00
|
|
|
#include <projectexplorer/target.h>
|
2013-03-25 17:13:18 +01:00
|
|
|
#include <projectexplorer/headerpath.h>
|
2011-11-29 14:19:28 +01:00
|
|
|
#include <extensionsystem/pluginmanager.h>
|
2014-09-15 00:12:27 +02:00
|
|
|
#include <cpptools/cppmodelmanager.h>
|
2011-11-29 14:19:28 +01:00
|
|
|
#include <coreplugin/icore.h>
|
2013-03-26 11:32:14 +01:00
|
|
|
#include <coreplugin/icontext.h>
|
2015-04-21 09:08:07 +03:00
|
|
|
#include <qtsupport/baseqtversion.h>
|
|
|
|
#include <qtsupport/qtkitinformation.h>
|
2011-11-29 14:19:28 +01:00
|
|
|
#include <utils/qtcassert.h>
|
2012-07-25 09:48:48 +02:00
|
|
|
#include <utils/filesystemwatcher.h>
|
2011-11-29 14:19:28 +01:00
|
|
|
|
2012-02-15 10:42:41 +01:00
|
|
|
#include <QFileInfo>
|
|
|
|
#include <QTimer>
|
|
|
|
#include <QPointer>
|
|
|
|
#include <QApplication>
|
|
|
|
#include <QCursor>
|
|
|
|
#include <QLabel>
|
|
|
|
#include <QPushButton>
|
|
|
|
#include <QVBoxLayout>
|
2011-11-29 14:19:28 +01:00
|
|
|
|
|
|
|
using namespace AutotoolsProjectManager;
|
|
|
|
using namespace AutotoolsProjectManager::Internal;
|
|
|
|
using namespace ProjectExplorer;
|
|
|
|
|
|
|
|
AutotoolsProject::AutotoolsProject(AutotoolsManager *manager, const QString &fileName) :
|
|
|
|
m_manager(manager),
|
|
|
|
m_fileName(fileName),
|
|
|
|
m_files(),
|
|
|
|
m_file(new AutotoolsProjectFile(this, m_fileName)),
|
|
|
|
m_rootNode(new AutotoolsProjectNode(this, m_file)),
|
|
|
|
m_fileWatcher(new Utils::FileSystemWatcher(this)),
|
|
|
|
m_watchedFiles(),
|
2012-04-24 15:49:09 +02:00
|
|
|
m_makefileParserThread(0)
|
2011-11-29 14:19:28 +01:00
|
|
|
{
|
2013-09-27 16:30:20 +02:00
|
|
|
setId(Constants::AUTOTOOLS_PROJECT_ID);
|
2011-11-29 14:19:28 +01:00
|
|
|
setProjectContext(Core::Context(Constants::PROJECT_CONTEXT));
|
2013-05-28 13:19:32 +02:00
|
|
|
setProjectLanguages(Core::Context(ProjectExplorer::Constants::LANG_CXX));
|
2011-11-29 14:19:28 +01:00
|
|
|
|
|
|
|
const QFileInfo fileInfo(m_fileName);
|
|
|
|
m_projectName = fileInfo.absoluteDir().dirName();
|
|
|
|
m_rootNode->setDisplayName(fileInfo.absoluteDir().dirName());
|
|
|
|
}
|
|
|
|
|
|
|
|
AutotoolsProject::~AutotoolsProject()
|
|
|
|
{
|
|
|
|
// Although ProjectExplorer::ProjectNode is a QObject, the ctor
|
|
|
|
// does not allow to specify the parent. Manually setting the
|
|
|
|
// parent would be possible, but we use the same approach as in the
|
|
|
|
// other project managers and delete the node manually (TBD).
|
|
|
|
//
|
|
|
|
delete m_rootNode;
|
|
|
|
m_rootNode = 0;
|
|
|
|
|
|
|
|
if (m_makefileParserThread != 0) {
|
|
|
|
m_makefileParserThread->wait();
|
|
|
|
delete m_makefileParserThread;
|
|
|
|
m_makefileParserThread = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
QString AutotoolsProject::displayName() const
|
|
|
|
{
|
|
|
|
return m_projectName;
|
|
|
|
}
|
|
|
|
|
2012-02-14 16:43:51 +01:00
|
|
|
Core::IDocument *AutotoolsProject::document() const
|
2011-11-29 14:19:28 +01:00
|
|
|
{
|
|
|
|
return m_file;
|
|
|
|
}
|
|
|
|
|
2012-01-13 13:36:45 +01:00
|
|
|
IProjectManager *AutotoolsProject::projectManager() const
|
2011-11-29 14:19:28 +01:00
|
|
|
{
|
|
|
|
return m_manager;
|
|
|
|
}
|
|
|
|
|
2013-08-13 10:35:03 +02:00
|
|
|
QString AutotoolsProject::defaultBuildDirectory(const QString &projectPath)
|
|
|
|
{
|
|
|
|
return QFileInfo(projectPath).absolutePath();
|
2011-11-29 14:19:28 +01:00
|
|
|
}
|
|
|
|
|
2012-01-13 13:36:45 +01:00
|
|
|
ProjectNode *AutotoolsProject::rootProjectNode() const
|
2011-11-29 14:19:28 +01:00
|
|
|
{
|
|
|
|
return m_rootNode;
|
|
|
|
}
|
|
|
|
|
|
|
|
QStringList AutotoolsProject::files(FilesMode fileMode) const
|
|
|
|
{
|
|
|
|
Q_UNUSED(fileMode);
|
|
|
|
return m_files;
|
|
|
|
}
|
|
|
|
|
|
|
|
// This function, is called at the very beginning, to
|
|
|
|
// restore the settings if there are some stored.
|
|
|
|
bool AutotoolsProject::fromMap(const QVariantMap &map)
|
|
|
|
{
|
|
|
|
if (!Project::fromMap(map))
|
|
|
|
return false;
|
|
|
|
|
2015-01-30 10:19:13 +01:00
|
|
|
connect(m_fileWatcher, &Utils::FileSystemWatcher::fileChanged,
|
|
|
|
this, &AutotoolsProject::onFileChanged);
|
2011-11-29 14:19:28 +01:00
|
|
|
|
|
|
|
// Load the project tree structure.
|
2012-07-17 15:56:43 +02:00
|
|
|
loadProjectTree();
|
2012-04-24 15:49:09 +02:00
|
|
|
|
2013-08-21 12:48:46 +02:00
|
|
|
Kit *defaultKit = KitManager::defaultKit();
|
2012-09-03 18:31:44 +02:00
|
|
|
if (!activeTarget() && defaultKit)
|
|
|
|
addTarget(createTarget(defaultKit));
|
2011-11-29 14:19:28 +01:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2012-07-17 15:56:43 +02:00
|
|
|
void AutotoolsProject::loadProjectTree()
|
2011-11-29 14:19:28 +01:00
|
|
|
{
|
|
|
|
if (m_makefileParserThread != 0) {
|
|
|
|
// The thread is still busy parsing a previus configuration.
|
|
|
|
// Wait until the thread has been finished and delete it.
|
|
|
|
// TODO: Discuss whether blocking is acceptable.
|
2015-07-09 13:30:40 +02:00
|
|
|
disconnect(m_makefileParserThread, &QThread::finished,
|
|
|
|
this, &AutotoolsProject::makefileParsingFinished);
|
2011-11-29 14:19:28 +01:00
|
|
|
m_makefileParserThread->wait();
|
|
|
|
delete m_makefileParserThread;
|
|
|
|
m_makefileParserThread = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Parse the makefile asynchronously in a thread
|
|
|
|
m_makefileParserThread = new MakefileParserThread(m_fileName);
|
|
|
|
|
2015-01-30 10:19:13 +01:00
|
|
|
connect(m_makefileParserThread, &MakefileParserThread::started,
|
|
|
|
this, &AutotoolsProject::makefileParsingStarted);
|
2011-11-29 14:19:28 +01:00
|
|
|
|
2015-01-30 10:19:13 +01:00
|
|
|
connect(m_makefileParserThread, &MakefileParserThread::finished,
|
|
|
|
this, &AutotoolsProject::makefileParsingFinished);
|
2011-11-29 14:19:28 +01:00
|
|
|
m_makefileParserThread->start();
|
|
|
|
}
|
|
|
|
|
|
|
|
void AutotoolsProject::makefileParsingStarted()
|
|
|
|
{
|
|
|
|
QApplication::setOverrideCursor(QCursor(Qt::WaitCursor));
|
|
|
|
}
|
|
|
|
|
|
|
|
void AutotoolsProject::makefileParsingFinished()
|
|
|
|
{
|
|
|
|
// The finished() signal is from a previous makefile-parser-thread
|
|
|
|
// and can be skipped. This can happen, if the thread has emitted the
|
|
|
|
// finished() signal during the execution of AutotoolsProject::loadProjectTree().
|
|
|
|
// In this case the signal is in the message queue already and deleting
|
|
|
|
// the thread of course does not remove the signal again.
|
|
|
|
if (sender() != m_makefileParserThread)
|
|
|
|
return;
|
|
|
|
|
|
|
|
QApplication::restoreOverrideCursor();
|
|
|
|
|
|
|
|
if (m_makefileParserThread->isCanceled()) {
|
|
|
|
// The parsing has been cancelled by the user. Don't show any
|
|
|
|
// project data at all.
|
|
|
|
m_makefileParserThread->deleteLater();
|
|
|
|
m_makefileParserThread = 0;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (m_makefileParserThread->hasError())
|
|
|
|
qWarning("Parsing of makefile contained errors.");
|
|
|
|
|
|
|
|
// Remove file watches for the current project state.
|
|
|
|
// The file watches will be added again after the parsing.
|
|
|
|
foreach (const QString& watchedFile, m_watchedFiles)
|
|
|
|
m_fileWatcher->removeFile(watchedFile);
|
|
|
|
|
|
|
|
m_watchedFiles.clear();
|
|
|
|
|
|
|
|
// Apply sources to m_files, which are returned at AutotoolsProject::files()
|
|
|
|
const QFileInfo fileInfo(m_fileName);
|
|
|
|
const QDir dir = fileInfo.absoluteDir();
|
|
|
|
QStringList files = m_makefileParserThread->sources();
|
|
|
|
foreach (const QString& file, files)
|
|
|
|
m_files.append(dir.absoluteFilePath(file));
|
|
|
|
|
|
|
|
// Watch for changes of Makefile.am files. If a Makefile.am file
|
|
|
|
// has been changed, the project tree must be reparsed.
|
|
|
|
const QStringList makefiles = m_makefileParserThread->makefiles();
|
2011-11-30 15:08:34 +01:00
|
|
|
foreach (const QString &makefile, makefiles) {
|
2011-11-29 14:19:28 +01:00
|
|
|
files.append(makefile);
|
|
|
|
|
|
|
|
const QString watchedFile = dir.absoluteFilePath(makefile);
|
|
|
|
m_fileWatcher->addFile(watchedFile, Utils::FileSystemWatcher::WatchAllChanges);
|
|
|
|
m_watchedFiles.append(watchedFile);
|
|
|
|
}
|
|
|
|
|
2011-11-30 15:08:34 +01:00
|
|
|
// Add configure.ac file to project and watch for changes.
|
2011-11-29 14:19:28 +01:00
|
|
|
const QLatin1String configureAc(QLatin1String("configure.ac"));
|
2012-04-03 11:53:55 +02:00
|
|
|
const QFile configureAcFile(fileInfo.absolutePath() + QLatin1Char('/') + configureAc);
|
2011-11-29 14:19:28 +01:00
|
|
|
if (configureAcFile.exists()) {
|
|
|
|
files.append(configureAc);
|
|
|
|
const QString configureAcFilePath = dir.absoluteFilePath(configureAc);
|
|
|
|
m_fileWatcher->addFile(configureAcFilePath, Utils::FileSystemWatcher::WatchAllChanges);
|
|
|
|
m_watchedFiles.append(configureAcFilePath);
|
|
|
|
}
|
|
|
|
|
|
|
|
buildFileNodeTree(dir, files);
|
|
|
|
updateCppCodeModel();
|
|
|
|
|
|
|
|
m_makefileParserThread->deleteLater();
|
|
|
|
m_makefileParserThread = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void AutotoolsProject::onFileChanged(const QString &file)
|
|
|
|
{
|
|
|
|
Q_UNUSED(file);
|
2012-07-17 15:56:43 +02:00
|
|
|
loadProjectTree();
|
2011-11-29 14:19:28 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
QStringList AutotoolsProject::buildTargets() const
|
|
|
|
{
|
|
|
|
QStringList targets;
|
|
|
|
targets.append(QLatin1String("all"));
|
|
|
|
targets.append(QLatin1String("clean"));
|
|
|
|
return targets;
|
|
|
|
}
|
|
|
|
|
|
|
|
void AutotoolsProject::buildFileNodeTree(const QDir &directory,
|
|
|
|
const QStringList &files)
|
|
|
|
{
|
|
|
|
// Get all existing nodes and remember them in a hash table.
|
|
|
|
// This allows to reuse existing nodes and to remove obsolete
|
|
|
|
// nodes later.
|
2012-01-13 13:36:45 +01:00
|
|
|
QHash<QString, Node *> nodeHash;
|
|
|
|
foreach (Node * node, nodes(m_rootNode))
|
2015-02-02 00:37:38 +02:00
|
|
|
nodeHash.insert(node->path().toString(), node);
|
2011-11-29 14:19:28 +01:00
|
|
|
|
|
|
|
// Add the sources to the filenode project tree. Sources
|
|
|
|
// inside the same directory are grouped into a folder-node.
|
|
|
|
const QString baseDir = directory.absolutePath();
|
|
|
|
|
2012-01-13 13:36:45 +01:00
|
|
|
QList<FileNode *> fileNodes;
|
|
|
|
FolderNode *parentFolder = 0;
|
|
|
|
FolderNode *oldParentFolder = 0;
|
2011-11-29 14:19:28 +01:00
|
|
|
|
2015-07-06 14:32:46 +02:00
|
|
|
foreach (const QString &file, files) {
|
2012-08-16 11:09:32 +02:00
|
|
|
if (file.endsWith(QLatin1String(".moc")))
|
2011-11-29 14:19:28 +01:00
|
|
|
continue;
|
|
|
|
|
2012-04-03 11:53:55 +02:00
|
|
|
QString subDir = baseDir + QLatin1Char('/') + file;
|
|
|
|
const int lastSlashPos = subDir.lastIndexOf(QLatin1Char('/'));
|
|
|
|
if (lastSlashPos != -1)
|
|
|
|
subDir.truncate(lastSlashPos);
|
2011-11-29 14:19:28 +01:00
|
|
|
|
|
|
|
// Add folder nodes, that are not already available
|
|
|
|
oldParentFolder = parentFolder;
|
|
|
|
parentFolder = 0;
|
|
|
|
if (nodeHash.contains(subDir)) {
|
2012-01-13 13:36:45 +01:00
|
|
|
QTC_ASSERT(nodeHash[subDir]->nodeType() == FolderNodeType, return);
|
|
|
|
parentFolder = static_cast<FolderNode *>(nodeHash[subDir]);
|
2011-11-29 14:19:28 +01:00
|
|
|
} else {
|
|
|
|
parentFolder = insertFolderNode(QDir(subDir), nodeHash);
|
|
|
|
if (parentFolder == 0) {
|
|
|
|
// No node gets created for the root folder
|
|
|
|
parentFolder = m_rootNode;
|
|
|
|
}
|
|
|
|
}
|
2015-07-06 14:32:46 +02:00
|
|
|
QTC_ASSERT(parentFolder, return);
|
|
|
|
if (oldParentFolder && (oldParentFolder != parentFolder) && !fileNodes.isEmpty()) {
|
2011-11-29 14:19:28 +01:00
|
|
|
// AutotoolsProjectNode::addFileNodes() is a very expensive operation. It is
|
|
|
|
// important to collect as much file nodes of the same parent folder as
|
|
|
|
// possible before invoking it.
|
2014-02-18 19:49:55 +01:00
|
|
|
oldParentFolder->addFileNodes(fileNodes);
|
2011-11-29 14:19:28 +01:00
|
|
|
fileNodes.clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Add file node
|
|
|
|
const QString filePath = directory.absoluteFilePath(file);
|
2013-03-24 00:43:54 +04:00
|
|
|
if (nodeHash.contains(filePath)) {
|
2011-11-29 14:19:28 +01:00
|
|
|
nodeHash.remove(filePath);
|
2015-02-02 00:37:38 +02:00
|
|
|
} else if (file == QLatin1String("Makefile.am") || file == QLatin1String("configure.ac")) {
|
|
|
|
fileNodes.append(new FileNode(Utils::FileName::fromString(filePath),
|
|
|
|
ProjectFileType, false));
|
2013-03-24 00:43:54 +04:00
|
|
|
} else {
|
2015-02-02 00:37:38 +02:00
|
|
|
fileNodes.append(new FileNode(Utils::FileName::fromString(filePath),
|
|
|
|
ResourceType, false));
|
2013-03-24 00:43:54 +04:00
|
|
|
}
|
2011-11-29 14:19:28 +01:00
|
|
|
}
|
|
|
|
|
2015-07-06 14:32:46 +02:00
|
|
|
if (parentFolder && !fileNodes.isEmpty())
|
2014-02-18 19:49:55 +01:00
|
|
|
parentFolder->addFileNodes(fileNodes);
|
2011-11-29 14:19:28 +01:00
|
|
|
|
|
|
|
// Remove unused file nodes and empty folder nodes
|
2012-01-13 13:36:45 +01:00
|
|
|
QHash<QString, Node *>::const_iterator it = nodeHash.constBegin();
|
2011-11-29 14:19:28 +01:00
|
|
|
while (it != nodeHash.constEnd()) {
|
2012-01-13 13:36:45 +01:00
|
|
|
if ((*it)->nodeType() == FileNodeType) {
|
|
|
|
FileNode *fileNode = static_cast<FileNode *>(*it);
|
|
|
|
FolderNode* parent = fileNode->parentFolderNode();
|
2014-02-18 19:49:55 +01:00
|
|
|
parent->removeFileNodes(QList<FileNode *>() << fileNode);
|
2011-11-29 14:19:28 +01:00
|
|
|
|
|
|
|
// Remove all empty parent folders
|
|
|
|
while (parent->subFolderNodes().isEmpty() && parent->fileNodes().isEmpty()) {
|
2012-01-13 13:36:45 +01:00
|
|
|
FolderNode *grandParent = parent->parentFolderNode();
|
2014-02-18 19:49:55 +01:00
|
|
|
grandParent->removeFolderNodes(QList<FolderNode *>() << parent);
|
2011-11-29 14:19:28 +01:00
|
|
|
parent = grandParent;
|
|
|
|
if (parent == m_rootNode)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
++it;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-01-13 13:36:45 +01:00
|
|
|
FolderNode *AutotoolsProject::insertFolderNode(const QDir &nodeDir, QHash<QString, Node *> &nodes)
|
2011-11-29 14:19:28 +01:00
|
|
|
{
|
2015-02-02 00:37:38 +02:00
|
|
|
const Utils::FileName nodePath = Utils::FileName::fromString(nodeDir.absolutePath());
|
|
|
|
QFileInfo rootInfo = m_rootNode->path().toFileInfo();
|
|
|
|
const Utils::FileName rootPath = Utils::FileName::fromString(rootInfo.absolutePath());
|
2011-11-29 14:19:28 +01:00
|
|
|
|
|
|
|
// Do not create a folder for the root node
|
|
|
|
if (rootPath == nodePath)
|
|
|
|
return 0;
|
|
|
|
|
2012-01-13 13:36:45 +01:00
|
|
|
FolderNode *folder = new FolderNode(nodePath);
|
2011-11-29 14:19:28 +01:00
|
|
|
QDir dir(nodeDir);
|
|
|
|
folder->setDisplayName(dir.dirName());
|
|
|
|
|
|
|
|
// Get parent-folder. If it does not exist, create it recursively.
|
|
|
|
// Take care that the m_rootNode is considered as top folder.
|
2012-01-13 13:36:45 +01:00
|
|
|
FolderNode *parentFolder = m_rootNode;
|
2011-11-29 14:19:28 +01:00
|
|
|
if ((rootPath != folder->path()) && dir.cdUp()) {
|
|
|
|
const QString parentDir = dir.absolutePath();
|
|
|
|
if (!nodes.contains(parentDir)) {
|
2012-01-13 13:36:45 +01:00
|
|
|
FolderNode *insertedFolder = insertFolderNode(parentDir, nodes);
|
2011-11-29 14:19:28 +01:00
|
|
|
if (insertedFolder != 0)
|
|
|
|
parentFolder = insertedFolder;
|
|
|
|
} else {
|
2012-01-13 13:36:45 +01:00
|
|
|
QTC_ASSERT(nodes[parentDir]->nodeType() == FolderNodeType, return 0);
|
|
|
|
parentFolder = static_cast<FolderNode *>(nodes[parentDir]);
|
2011-11-29 14:19:28 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-02-18 19:49:55 +01:00
|
|
|
parentFolder->addFolderNodes(QList<FolderNode *>() << folder);
|
2015-02-02 00:37:38 +02:00
|
|
|
nodes.insert(nodePath.toString(), folder);
|
2011-11-29 14:19:28 +01:00
|
|
|
|
|
|
|
return folder;
|
|
|
|
}
|
|
|
|
|
2012-01-13 13:36:45 +01:00
|
|
|
QList<Node *> AutotoolsProject::nodes(FolderNode *parent) const
|
2011-11-29 14:19:28 +01:00
|
|
|
{
|
2012-01-13 13:36:45 +01:00
|
|
|
QList<Node *> list;
|
2011-11-29 14:19:28 +01:00
|
|
|
QTC_ASSERT(parent != 0, return list);
|
|
|
|
|
2012-01-13 13:36:45 +01:00
|
|
|
foreach (FolderNode *folder, parent->subFolderNodes()) {
|
2011-11-29 14:19:28 +01:00
|
|
|
list.append(nodes(folder));
|
|
|
|
list.append(folder);
|
|
|
|
}
|
2012-01-13 13:36:45 +01:00
|
|
|
foreach (FileNode *file, parent->fileNodes())
|
2011-11-29 14:19:28 +01:00
|
|
|
list.append(file);
|
|
|
|
|
|
|
|
return list;
|
|
|
|
}
|
|
|
|
|
|
|
|
void AutotoolsProject::updateCppCodeModel()
|
|
|
|
{
|
2015-02-15 23:13:28 +02:00
|
|
|
CppTools::CppModelManager *modelManager = CppTools::CppModelManager::instance();
|
2011-11-29 14:19:28 +01:00
|
|
|
|
2014-08-19 12:00:31 +02:00
|
|
|
m_codeModelFuture.cancel();
|
2015-02-15 23:13:28 +02:00
|
|
|
CppTools::ProjectInfo pInfo(this);
|
2014-08-19 12:00:31 +02:00
|
|
|
CppTools::ProjectPartBuilder ppBuilder(pInfo);
|
|
|
|
|
2015-04-21 09:08:07 +03:00
|
|
|
CppTools::ProjectPart::QtVersion activeQtVersion = CppTools::ProjectPart::NoQt;
|
|
|
|
if (QtSupport::BaseQtVersion *qtVersion =
|
|
|
|
QtSupport::QtKitInformation::qtVersion(activeTarget()->kit())) {
|
|
|
|
if (qtVersion->qtVersion() < QtSupport::QtVersionNumber(5,0,0))
|
|
|
|
activeQtVersion = CppTools::ProjectPart::Qt4;
|
|
|
|
else
|
|
|
|
activeQtVersion = CppTools::ProjectPart::Qt5;
|
|
|
|
}
|
|
|
|
|
|
|
|
ppBuilder.setQtVersion(activeQtVersion);
|
2013-04-29 02:31:43 +04:00
|
|
|
const QStringList cflags = m_makefileParserThread->cflags();
|
|
|
|
QStringList cxxflags = m_makefileParserThread->cxxflags();
|
|
|
|
if (cxxflags.isEmpty())
|
|
|
|
cxxflags = cflags;
|
2014-08-19 12:00:31 +02:00
|
|
|
ppBuilder.setCFlags(cflags);
|
|
|
|
ppBuilder.setCxxFlags(cxxflags);
|
2012-04-24 15:49:09 +02:00
|
|
|
|
2014-08-19 12:00:31 +02:00
|
|
|
ppBuilder.setIncludePaths(m_makefileParserThread->includePaths());
|
|
|
|
ppBuilder.setDefines(m_makefileParserThread->defines());
|
2013-04-28 19:24:49 +04:00
|
|
|
|
2014-08-19 12:00:31 +02:00
|
|
|
const QList<Core::Id> languages = ppBuilder.createProjectPartsForFiles(m_files);
|
|
|
|
foreach (Core::Id language, languages)
|
|
|
|
setProjectLanguage(language, true);
|
2013-04-28 19:24:49 +04:00
|
|
|
|
2014-09-12 14:14:18 +02:00
|
|
|
pInfo.finish();
|
2014-08-19 12:00:31 +02:00
|
|
|
m_codeModelFuture = modelManager->updateProjectInfo(pInfo);
|
2011-11-29 14:19:28 +01:00
|
|
|
}
|