2012-10-02 09:12:39 +02:00
|
|
|
/****************************************************************************
|
2010-12-01 16:09:08 +01:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies).
|
|
|
|
|
** Contact: http://www.qt-project.org/legal
|
2010-12-01 16:09:08 +01:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
** This file is part of Qt Creator.
|
2010-12-01 16:09:08 +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
|
|
|
|
|
** a written agreement between you and Digia. For licensing terms and
|
|
|
|
|
** conditions see http://qt.digia.com/licensing. For further information
|
|
|
|
|
** use the contact form at http://qt.digia.com/contact-us.
|
2010-12-01 16:09:08 +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
|
|
|
|
|
** General Public License version 2.1 as published by the Free Software
|
|
|
|
|
** Foundation and appearing in the file LICENSE.LGPL included in the
|
|
|
|
|
** packaging of this file. Please review the following information to
|
|
|
|
|
** ensure the GNU Lesser General Public License version 2.1 requirements
|
|
|
|
|
** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
|
|
|
|
|
**
|
|
|
|
|
** In addition, as a special exception, Digia gives you certain additional
|
|
|
|
|
** rights. These rights are described in the Digia Qt LGPL Exception
|
2010-12-17 17:14:20 +01:00
|
|
|
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
|
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
****************************************************************************/
|
2010-12-01 16:09:08 +01:00
|
|
|
|
|
|
|
|
#include "fileinprojectfinder.h"
|
|
|
|
|
#include <utils/qtcassert.h>
|
|
|
|
|
|
2012-04-17 08:01:25 +02:00
|
|
|
#include <QDebug>
|
2012-02-15 10:42:41 +01:00
|
|
|
#include <QFileInfo>
|
|
|
|
|
#include <QUrl>
|
2010-12-01 16:09:08 +01:00
|
|
|
|
2012-04-16 11:33:18 +02:00
|
|
|
enum { debug = false };
|
|
|
|
|
|
2010-12-01 16:09:08 +01:00
|
|
|
namespace Utils {
|
|
|
|
|
|
2011-03-02 17:13:33 +01:00
|
|
|
/*!
|
|
|
|
|
\class Utils::FileInProjectFinder
|
2010-12-01 16:09:08 +01:00
|
|
|
|
2011-07-19 17:48:57 +02:00
|
|
|
\brief Helper class to find the 'original' file in the project directory for a given file url.
|
2010-12-01 16:09:08 +01:00
|
|
|
|
|
|
|
|
Often files are copied in the build + deploy process. findFile() searches for an existing file
|
|
|
|
|
in the project directory for a given file path:
|
|
|
|
|
|
|
|
|
|
E.g. following file paths:
|
2011-03-02 17:13:33 +01:00
|
|
|
\list
|
|
|
|
|
\i C:/app-build-desktop/qml/app/main.qml (shadow build directory)
|
|
|
|
|
\i /Users/x/app-build-desktop/App.app/Contents/Resources/qml/App/main.qml (folder on Mac OS X)
|
|
|
|
|
\endlist
|
|
|
|
|
|
|
|
|
|
should all be mapped to $PROJECTDIR/qml/app/main.qml
|
|
|
|
|
*/
|
|
|
|
|
|
2010-12-01 16:09:08 +01:00
|
|
|
FileInProjectFinder::FileInProjectFinder()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2011-10-11 15:17:44 +02:00
|
|
|
static QString stripTrailingSlashes(const QString &path)
|
|
|
|
|
{
|
|
|
|
|
QString newPath = path;
|
|
|
|
|
while (newPath.endsWith(QLatin1Char('/')))
|
|
|
|
|
newPath.remove(newPath.length() - 1, 1);
|
|
|
|
|
return newPath;
|
|
|
|
|
}
|
|
|
|
|
|
2010-12-01 16:09:08 +01:00
|
|
|
void FileInProjectFinder::setProjectDirectory(const QString &absoluteProjectPath)
|
|
|
|
|
{
|
2011-10-11 15:17:44 +02:00
|
|
|
const QString newProjectPath = stripTrailingSlashes(absoluteProjectPath);
|
2010-12-01 16:09:08 +01:00
|
|
|
|
2011-10-11 15:17:44 +02:00
|
|
|
if (newProjectPath == m_projectDir)
|
2010-12-01 16:09:08 +01:00
|
|
|
return;
|
|
|
|
|
|
2011-10-11 15:17:44 +02:00
|
|
|
const QFileInfo infoPath(newProjectPath);
|
|
|
|
|
QTC_CHECK(newProjectPath.isEmpty()
|
2011-10-12 13:49:26 +02:00
|
|
|
|| (infoPath.exists() && infoPath.isAbsolute()));
|
2010-12-01 16:09:08 +01:00
|
|
|
|
2011-10-11 15:17:44 +02:00
|
|
|
m_projectDir = newProjectPath;
|
2010-12-01 16:09:08 +01:00
|
|
|
m_cache.clear();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QString FileInProjectFinder::projectDirectory() const
|
|
|
|
|
{
|
|
|
|
|
return m_projectDir;
|
|
|
|
|
}
|
|
|
|
|
|
2011-03-23 14:19:06 +01:00
|
|
|
void FileInProjectFinder::setProjectFiles(const QStringList &projectFiles)
|
|
|
|
|
{
|
2011-10-11 15:17:44 +02:00
|
|
|
if (m_projectFiles == projectFiles)
|
|
|
|
|
return;
|
|
|
|
|
|
2011-03-23 14:19:06 +01:00
|
|
|
m_projectFiles = projectFiles;
|
|
|
|
|
m_cache.clear();
|
|
|
|
|
}
|
|
|
|
|
|
2011-10-11 15:21:00 +02:00
|
|
|
void FileInProjectFinder::setSysroot(const QString &sysroot)
|
|
|
|
|
{
|
|
|
|
|
QString newsys = sysroot;
|
|
|
|
|
while (newsys.endsWith(QLatin1Char('/')))
|
|
|
|
|
newsys.remove(newsys.length() - 1, 1);
|
|
|
|
|
|
|
|
|
|
if (m_sysroot == newsys)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
m_sysroot = newsys;
|
|
|
|
|
m_cache.clear();
|
|
|
|
|
}
|
|
|
|
|
|
2010-12-01 16:09:08 +01:00
|
|
|
/**
|
2011-07-19 17:48:57 +02:00
|
|
|
Returns the best match for the given file url in the project directory.
|
2010-12-01 16:09:08 +01:00
|
|
|
|
2011-07-19 17:48:57 +02:00
|
|
|
The method first checks whether the file inside the project directory exists.
|
2010-12-01 16:09:08 +01:00
|
|
|
If not, the leading directory in the path is stripped, and the - now shorter - path is
|
2011-10-11 15:21:00 +02:00
|
|
|
checked for existence, and so on. Second, it tries to locate the file in the sysroot
|
|
|
|
|
folder specified. Third, we walk the list of project files, and search for a file name match
|
|
|
|
|
there. If all fails, it returns the original path from the file url.
|
2010-12-01 16:09:08 +01:00
|
|
|
*/
|
2011-07-19 17:48:57 +02:00
|
|
|
QString FileInProjectFinder::findFile(const QUrl &fileUrl, bool *success) const
|
2010-12-01 16:09:08 +01:00
|
|
|
{
|
2012-04-16 11:33:18 +02:00
|
|
|
if (debug)
|
|
|
|
|
qDebug() << "FileInProjectFinder: trying to find file" << fileUrl.toString() << "...";
|
|
|
|
|
|
2011-07-21 15:32:20 +02:00
|
|
|
QString originalPath = fileUrl.toLocalFile();
|
|
|
|
|
if (originalPath.isEmpty()) // e.g. qrc://
|
2011-07-19 17:48:57 +02:00
|
|
|
originalPath = fileUrl.path();
|
|
|
|
|
|
|
|
|
|
if (originalPath.isEmpty()) {
|
2012-04-16 11:33:18 +02:00
|
|
|
if (debug)
|
|
|
|
|
qDebug() << "FileInProjectFinder: malformed url, returning";
|
2011-07-19 17:48:57 +02:00
|
|
|
if (success)
|
2011-07-28 13:04:34 +00:00
|
|
|
*success = false;
|
2011-07-19 17:48:57 +02:00
|
|
|
return originalPath;
|
|
|
|
|
}
|
|
|
|
|
|
2011-06-01 16:03:45 +02:00
|
|
|
if (!m_projectDir.isEmpty()) {
|
2012-04-16 11:33:18 +02:00
|
|
|
if (debug)
|
|
|
|
|
qDebug() << "FileInProjectFinder: checking project directory ...";
|
|
|
|
|
|
2011-07-15 12:07:20 +02:00
|
|
|
int prefixToIgnore = -1;
|
2011-06-01 16:03:45 +02:00
|
|
|
const QChar separator = QLatin1Char('/');
|
|
|
|
|
if (originalPath.startsWith(m_projectDir + separator)) {
|
2012-04-16 11:33:18 +02:00
|
|
|
|
2011-07-15 12:07:20 +02:00
|
|
|
#ifdef Q_OS_MAC
|
|
|
|
|
// starting with the project path is not sufficient if the file was
|
|
|
|
|
// copied in an insource build, e.g. into MyApp.app/Contents/Resources
|
|
|
|
|
static const QString appResourcePath = QString::fromLatin1(".app/Contents/Resources");
|
|
|
|
|
if (originalPath.contains(appResourcePath)) {
|
|
|
|
|
// the path is inside the project, but most probably as a resource of an insource build
|
|
|
|
|
// so ignore that path
|
|
|
|
|
prefixToIgnore = originalPath.indexOf(appResourcePath) + appResourcePath.length();
|
|
|
|
|
} else {
|
|
|
|
|
#endif
|
2012-04-16 11:33:18 +02:00
|
|
|
if (debug)
|
|
|
|
|
qDebug() << "FileInProjectFinder: found" << originalPath << "in project directory";
|
2011-07-15 12:07:20 +02:00
|
|
|
if (success)
|
|
|
|
|
*success = true;
|
|
|
|
|
return originalPath;
|
|
|
|
|
#ifdef Q_OS_MAC
|
|
|
|
|
}
|
|
|
|
|
#endif
|
2011-06-01 16:03:45 +02:00
|
|
|
}
|
2010-12-01 16:09:08 +01:00
|
|
|
|
2011-06-01 16:03:45 +02:00
|
|
|
if (m_cache.contains(originalPath)) {
|
2012-04-16 11:33:18 +02:00
|
|
|
if (debug)
|
|
|
|
|
qDebug() << "FileInProjectFinder: checking cache ...";
|
2011-07-15 12:07:20 +02:00
|
|
|
// check if cached path is still there
|
|
|
|
|
QString candidate = m_cache.value(originalPath);
|
|
|
|
|
QFileInfo candidateInfo(candidate);
|
|
|
|
|
if (candidateInfo.exists() && candidateInfo.isFile()) {
|
|
|
|
|
if (success)
|
|
|
|
|
*success = true;
|
2012-04-16 11:33:18 +02:00
|
|
|
if (debug)
|
|
|
|
|
qDebug() << "FileInProjectFinder: found" << candidate << "in the cache";
|
2011-07-15 12:07:20 +02:00
|
|
|
return candidate;
|
|
|
|
|
}
|
2011-06-01 16:03:45 +02:00
|
|
|
}
|
2010-12-01 16:09:08 +01:00
|
|
|
|
2012-04-16 11:33:18 +02:00
|
|
|
if (debug)
|
|
|
|
|
qDebug() << "FileInProjectFinder: checking stripped paths in project directory ...";
|
|
|
|
|
|
2011-06-01 16:03:45 +02:00
|
|
|
// Strip directories one by one from the beginning of the path,
|
|
|
|
|
// and see if the new relative path exists in the build directory.
|
2011-07-19 17:48:57 +02:00
|
|
|
if (prefixToIgnore < 0) {
|
|
|
|
|
if (!QFileInfo(originalPath).isAbsolute()
|
|
|
|
|
&& !originalPath.startsWith(separator)) {
|
|
|
|
|
prefixToIgnore = 0;
|
|
|
|
|
} else {
|
2011-07-15 12:07:20 +02:00
|
|
|
prefixToIgnore = originalPath.indexOf(separator);
|
2011-07-19 17:48:57 +02:00
|
|
|
}
|
|
|
|
|
}
|
2011-07-15 12:07:20 +02:00
|
|
|
while (prefixToIgnore != -1) {
|
|
|
|
|
QString candidate = originalPath;
|
|
|
|
|
candidate.remove(0, prefixToIgnore);
|
|
|
|
|
candidate.prepend(m_projectDir);
|
|
|
|
|
QFileInfo candidateInfo(candidate);
|
|
|
|
|
if (candidateInfo.exists() && candidateInfo.isFile()) {
|
|
|
|
|
if (success)
|
|
|
|
|
*success = true;
|
|
|
|
|
|
2012-04-16 11:33:18 +02:00
|
|
|
if (debug)
|
|
|
|
|
qDebug() << "FileInProjectFinder: found" << candidate << "in project directory";
|
|
|
|
|
|
2011-07-15 12:07:20 +02:00
|
|
|
m_cache.insert(originalPath, candidate);
|
|
|
|
|
return candidate;
|
2010-12-01 16:09:08 +01:00
|
|
|
}
|
2011-07-15 12:07:20 +02:00
|
|
|
prefixToIgnore = originalPath.indexOf(separator, prefixToIgnore + 1);
|
2010-12-01 16:09:08 +01:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2011-10-28 13:15:18 +02:00
|
|
|
// find (solely by filename) in project files
|
2012-04-16 11:33:18 +02:00
|
|
|
if (debug)
|
|
|
|
|
qDebug() << "FileInProjectFinder: checking project files ...";
|
|
|
|
|
|
2011-10-28 13:15:18 +02:00
|
|
|
const QString fileName = QFileInfo(originalPath).fileName();
|
|
|
|
|
foreach (const QString &f, m_projectFiles) {
|
|
|
|
|
if (QFileInfo(f).fileName() == fileName) {
|
|
|
|
|
m_cache.insert(originalPath, f);
|
|
|
|
|
if (success)
|
|
|
|
|
*success = true;
|
2012-04-16 11:33:18 +02:00
|
|
|
if (debug)
|
|
|
|
|
qDebug() << "FileInProjectFinder: found" << f << "in project files";
|
2011-10-28 13:15:18 +02:00
|
|
|
return f;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2012-04-16 11:33:18 +02:00
|
|
|
if (debug)
|
|
|
|
|
qDebug() << "FileInProjectFinder: checking absolute path in sysroot ...";
|
|
|
|
|
|
2011-10-11 15:21:00 +02:00
|
|
|
// check if absolute path is found in sysroot
|
|
|
|
|
if (!m_sysroot.isEmpty()) {
|
2011-10-15 13:36:39 +02:00
|
|
|
const QString sysrootPath = m_sysroot + originalPath;
|
2011-10-11 15:21:00 +02:00
|
|
|
if (QFileInfo(sysrootPath).exists() && QFileInfo(sysrootPath).isFile()) {
|
|
|
|
|
if (success)
|
|
|
|
|
*success = true;
|
|
|
|
|
m_cache.insert(originalPath, sysrootPath);
|
2012-04-16 11:33:18 +02:00
|
|
|
if (debug)
|
|
|
|
|
qDebug() << "FileInProjectFinder: found" << sysrootPath << "in sysroot";
|
2011-10-11 15:21:00 +02:00
|
|
|
return sysrootPath;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2010-12-01 16:09:08 +01:00
|
|
|
if (success)
|
|
|
|
|
*success = false;
|
|
|
|
|
|
2012-04-16 11:33:18 +02:00
|
|
|
if (debug)
|
|
|
|
|
qDebug() << "FileInProjectFinder: couldn't find file!";
|
2010-12-01 16:09:08 +01:00
|
|
|
return originalPath;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
} // namespace Utils
|