Files
qt-creator/src/plugins/coreplugin/filemanager.cpp

1049 lines
34 KiB
C++
Raw Normal View History

/**************************************************************************
2008-12-02 12:01:29 +01:00
**
** This file is part of Qt Creator
**
2010-03-05 11:25:49 +01:00
** Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies).
2008-12-02 12:01:29 +01:00
**
** Contact: Nokia Corporation (qt-info@nokia.com)
2008-12-02 12:01:29 +01:00
**
** Commercial Usage
**
** Licensees holding valid Qt Commercial licenses may use this file in
** accordance with the Qt Commercial License Agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
** a written agreement between you and Nokia.
**
** GNU Lesser General Public License Usage
**
** 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.
**
** If you are unsure which license is appropriate for your use, please
2009-08-14 09:30:56 +02:00
** contact the sales department at http://qt.nokia.com/contact.
2008-12-02 12:01:29 +01:00
**
**************************************************************************/
2008-12-02 14:09:21 +01:00
2008-12-02 12:01:29 +01:00
#include "filemanager.h"
2008-12-09 15:25:01 +01:00
#include "editormanager.h"
#include "ieditor.h"
#include "icore.h"
2008-12-02 12:01:29 +01:00
#include "ifile.h"
#include "iversioncontrol.h"
#include "mimedatabase.h"
2008-12-02 12:01:29 +01:00
#include "saveitemsdialog.h"
#include "vcsmanager.h"
2008-12-09 15:25:01 +01:00
#include <utils/qtcassert.h>
#include <utils/pathchooser.h>
#include <utils/reloadpromptutils.h>
2008-12-09 15:25:01 +01:00
2008-12-02 12:01:29 +01:00
#include <QtCore/QSettings>
#include <QtCore/QFileInfo>
#include <QtCore/QFile>
#include <QtCore/QDir>
#include <QtCore/QTimer>
#include <QtCore/QFileSystemWatcher>
#include <QtCore/QDateTime>
2008-12-02 12:01:29 +01:00
#include <QtGui/QFileDialog>
#include <QtGui/QMessageBox>
#include <QtGui/QMainWindow>
2008-12-02 12:01:29 +01:00
/*!
\class FileManager
\mainclass
\inheaderfile filemanager.h
\brief Manages a set of IFile objects.
The FileManager service monitors a set of IFile's. Plugins should register
files they work with at the service. The files the IFile's point to will be
monitored at filesystem level. If a file changes, the status of the IFile's
will be adjusted accordingly. Furthermore, on application exit the user will
be asked to save all modified files.
Different IFile objects in the set can point to the same file in the
filesystem. The monitoring for a IFile can be blocked by blockFileChange(), and
2008-12-02 12:01:29 +01:00
enabled again by unblockFileChange().
The functions expectFileChange() and unexpectFileChange() mark a file change
as expected. On expected file changes all IFile objects are notified to reload
themselves.
2008-12-02 12:01:29 +01:00
The FileManager service also provides two convenience methods for saving
files: saveModifiedFiles() and saveModifiedFilesSilently(). Both take a list
of FileInterfaces as an argument, and return the list of files which were
_not_ saved.
The service also manages the list of recent files to be shown to the user
(see addToRecentFiles() and recentFiles()).
*/
static const char settingsGroupC[] = "RecentFiles";
static const char filesKeyC[] = "Files";
static const char directoryGroupC[] = "Directories";
static const char projectDirectoryKeyC[] = "Projects";
static const char useProjectDirectoryKeyC[] = "UseProjectsDirectory";
2008-12-02 12:01:29 +01:00
namespace Core {
namespace Internal {
struct FileStateItem
{
QDateTime modified;
QFile::Permissions permissions;
};
struct FileState
{
QMap<IFile *, FileStateItem> lastUpdatedState;
FileStateItem expected;
};
struct FileManagerPrivate {
explicit FileManagerPrivate(QObject *q, QMainWindow *mw);
QMap<QString, FileState> m_states;
QStringList m_changedFiles;
QList<IFile *> m_filesWithoutWatch;
QStringList m_recentFiles;
static const int m_maxRecentFiles = 7;
QString m_currentFile;
QMainWindow *m_mainWindow;
QFileSystemWatcher *m_fileWatcher;
bool m_blockActivated;
QString m_lastVisitedDirectory;
QString m_projectsDirectory;
bool m_useProjectsDirectory;
};
FileManagerPrivate::FileManagerPrivate(QObject *q, QMainWindow *mw) :
2008-12-02 12:01:29 +01:00
m_mainWindow(mw),
m_fileWatcher(new QFileSystemWatcher(q)),
m_blockActivated(false),
m_lastVisitedDirectory(QDir::currentPath()),
#ifdef Q_OS_MAC // Creator is in bizarre places when launched via finder.
m_useProjectsDirectory(true)
#else
m_useProjectsDirectory(false)
#endif
2008-12-02 12:01:29 +01:00
{
}
} // namespace Internal
FileManager::FileManager(QMainWindow *mw)
: QObject(mw),
d(new Internal::FileManagerPrivate(this, mw))
{
Core::ICore *core = Core::ICore::instance();
connect(d->m_fileWatcher, SIGNAL(fileChanged(QString)),
2009-01-20 17:14:00 +01:00
this, SLOT(changedFile(QString)));
connect(d->m_mainWindow, SIGNAL(windowActivated()),
2008-12-02 12:01:29 +01:00
this, SLOT(mainWindowActivated()));
connect(core, SIGNAL(contextChanged(Core::IContext*,QList<int>)),
2008-12-02 12:01:29 +01:00
this, SLOT(syncWithEditor(Core::IContext*)));
const QSettings *s = core->settings();
d->m_recentFiles = s->value(QLatin1String(settingsGroupC) + QLatin1Char('/') + QLatin1String(filesKeyC), QStringList()).toStringList();
for (QStringList::iterator it = d->m_recentFiles.begin(); it != d->m_recentFiles.end(); ) {
2008-12-02 12:01:29 +01:00
if (QFileInfo(*it).isFile()) {
++it;
} else {
it = d->m_recentFiles.erase(it);
2008-12-02 12:01:29 +01:00
}
}
const QString directoryGroup = QLatin1String(directoryGroupC) + QLatin1Char('/');
const QString settingsProjectDir = s->value(directoryGroup + QLatin1String(projectDirectoryKeyC),
QString()).toString();
if (!settingsProjectDir.isEmpty() && QFileInfo(settingsProjectDir).isDir()) {
d->m_projectsDirectory = settingsProjectDir;
} else {
d->m_projectsDirectory = Utils::PathChooser::homePath();
}
d->m_useProjectsDirectory = s->value(directoryGroup + QLatin1String(useProjectDirectoryKeyC),
d->m_useProjectsDirectory).toBool();
2008-12-02 12:01:29 +01:00
}
FileManager::~FileManager()
{
delete d;
}
2008-12-02 12:01:29 +01:00
/*!
\fn bool FileManager::addFiles(const QList<IFile *> &files)
Adds a list of IFile's to the collection.
Returns true if the file specified by \a files have not been yet part of the file list.
*/
bool FileManager::addFiles(const QList<IFile *> &files, bool addWatcher)
2008-12-02 12:01:29 +01:00
{
if (!addWatcher) {
// We keep those in a separate list
foreach(IFile *file, files)
connect(file, SIGNAL(destroyed(QObject *)), this, SLOT(fileDestroyed(QObject *)));
d->m_filesWithoutWatch.append(files);
return true;
}
2008-12-02 12:01:29 +01:00
bool filesAdded = false;
foreach (IFile *file, files) {
if (!file)
continue;
const QString &fixedFileName = fixFileName(file->fileName());
if (d->m_states.value(fixedFileName).lastUpdatedState.contains(file))
2008-12-02 12:01:29 +01:00
continue;
connect(file, SIGNAL(changed()), this, SLOT(checkForNewFileName()));
connect(file, SIGNAL(destroyed(QObject *)), this, SLOT(fileDestroyed(QObject *)));
filesAdded = true;
addFileInfo(file);
2008-12-02 12:01:29 +01:00
}
return filesAdded;
}
void FileManager::addFileInfo(IFile *file)
{
// We do want to insert the IFile into d->m_states even if the filename is empty
// Such that m_states always contains all IFiles
const QString fixedname = fixFileName(file->fileName());
Internal::FileStateItem item;
if (!fixedname.isEmpty()) {
const QFileInfo fi(file->fileName());
item.modified = fi.lastModified();
item.permissions = fi.permissions();
}
if (!d->m_states.contains(fixedname)) {
d->m_states.insert(fixedname, Internal::FileState());
if (!fixedname.isEmpty()) {
d->m_fileWatcher->addPath(fixedname);
}
}
d->m_states[fixedname].lastUpdatedState.insert(file, item);
}
void FileManager::updateFileInfo(IFile *file)
{
const QString fixedname = fixFileName(file->fileName());
// If the filename is empty there's nothing to do
if (fixedname.isEmpty())
return;
const QFileInfo fi(file->fileName());
Internal::FileStateItem item;
item.modified = fi.lastModified();
item.permissions = fi.permissions();
if (d->m_states.contains(fixedname) && d->m_states.value(fixedname).lastUpdatedState.contains(file))
d->m_states[fixedname].lastUpdatedState.insert(file, item);
}
///
/// Does not use file->fileName, as such is save to use
/// with renamed files and deleted files
void FileManager::removeFileInfo(IFile *file)
{
QString fileName;
QMap<QString, Internal::FileState>::const_iterator it, end;
end = d->m_states.constEnd();
for (it = d->m_states.constBegin(); it != end; ++it) {
if (it.value().lastUpdatedState.contains(file)) {
fileName = it.key();
break;
}
}
// The filename might be empty but not null
Q_ASSERT(fileName != QString::null);
removeFileInfo(fileName, file);
}
void FileManager::removeFileInfo(const QString &fileName, IFile *file)
{
const QString &fixedName = fixFileName(fileName);
d->m_states[fixedName].lastUpdatedState.remove(file);
if (d->m_states.value(fixedName).lastUpdatedState.isEmpty()) {
d->m_states.remove(fixedName);
if (!fixedName.isEmpty()) {
d->m_fileWatcher->removePath(fixedName);
}
}
}
2008-12-02 12:01:29 +01:00
/*!
\fn bool FileManager::addFile(IFile *files)
Adds a IFile object to the collection.
Returns true if the file specified by \a file has not been yet part of the file list.
*/
bool FileManager::addFile(IFile *file, bool addWatcher)
2008-12-02 12:01:29 +01:00
{
return addFiles(QList<IFile *>() << file, addWatcher);
2008-12-02 12:01:29 +01:00
}
void FileManager::fileDestroyed(QObject *obj)
{
// removeFileInfo works even if the file does not really exist anymore
2008-12-02 12:01:29 +01:00
IFile *file = static_cast<IFile*>(obj);
// Check the special unwatched first:
if (d->m_filesWithoutWatch.contains(file)) {
d->m_filesWithoutWatch.removeOne(file);
return;
}
removeFileInfo(file);
2008-12-02 12:01:29 +01:00
}
/*!
\fn bool FileManager::removeFile(IFile *file)
Removes a IFile object from the collection.
Returns true if the file specified by \a file has been part of the file list.
*/
bool FileManager::removeFile(IFile *file)
{
if (!file)
return false;
// Special casing unwatched files
if (d->m_filesWithoutWatch.contains(file)) {
disconnect(file, SIGNAL(destroyed(QObject *)), this, SLOT(fileDestroyed(QObject *)));
d->m_filesWithoutWatch.removeOne(file);
return true;
}
2008-12-02 12:01:29 +01:00
disconnect(file, SIGNAL(changed()), this, SLOT(checkForNewFileName()));
disconnect(file, SIGNAL(destroyed(QObject *)), this, SLOT(fileDestroyed(QObject *)));
removeFileInfo(file->fileName(), file);
2008-12-02 12:01:29 +01:00
return true;
}
void FileManager::checkForNewFileName()
{
IFile *file = qobject_cast<IFile *>(sender());
2008-12-09 15:25:01 +01:00
QTC_ASSERT(file, return);
const QString &fileName = fixFileName(file->fileName());
// check if the IFile is in the map
if (d->m_states.value(fileName).lastUpdatedState.contains(file)) {
// the file might have been deleted and written again, so guard against that
d->m_fileWatcher->removePath(fileName);
d->m_fileWatcher->addPath(fileName);
updateFileInfo(file);
return;
2008-12-02 12:01:29 +01:00
}
// Probably the name has changed...
// This also updates the state to the on disk state
removeFileInfo(file);
addFileInfo(file);
2008-12-02 12:01:29 +01:00
}
// TODO Rename to nativeFileName
QString FileManager::fixFileName(const QString &fileName)
{
QString s = fileName;
QFileInfo fi(s);
if (!fi.exists())
s = QDir::toNativeSeparators(s);
else
s = QDir::toNativeSeparators(fi.canonicalFilePath());
2008-12-02 12:01:29 +01:00
#ifdef Q_OS_WIN
s = s.toLower();
#endif
return s;
2008-12-02 12:01:29 +01:00
}
/*!
\fn bool FileManager::isFileManaged(const QString &fileName) const
Returns true if at least one IFile in the set points to \a fileName.
*/
bool FileManager::isFileManaged(const QString &fileName) const
{
if (fileName.isEmpty())
return false;
// TOOD check d->m_filesWithoutWatch
return !d->m_states.contains(fixFileName(fileName));
2008-12-02 12:01:29 +01:00
}
/*!
\fn QList<IFile*> FileManager::modifiedFiles() const
Returns the list of IFile's that have been modified.
*/
QList<IFile *> FileManager::modifiedFiles() const
{
QList<IFile *> modifiedFiles;
QMap<QString, Internal::FileState>::const_iterator it, end;
end = d->m_states.constEnd();
for(it = d->m_states.constBegin(); it != end; ++it) {
QMap<IFile *, Internal::FileStateItem>::const_iterator jt, jend;
jt = (*it).lastUpdatedState.constBegin();
jend = (*it).lastUpdatedState.constEnd();
for( ; jt != jend; ++jt)
if (jt.key()->isModified())
modifiedFiles << jt.key();
2008-12-02 12:01:29 +01:00
}
foreach(IFile *file, d->m_filesWithoutWatch) {
if (file->isModified())
modifiedFiles << file;
}
2008-12-02 12:01:29 +01:00
return modifiedFiles;
}
/*!
\fn void FileManager::blockFileChange(IFile *file)
Blocks the monitoring of the file the \a file argument points to.
*/
void FileManager::blockFileChange(IFile *file)
{
// Nothing to do
Q_UNUSED(file);
2008-12-02 12:01:29 +01:00
}
/*!
\fn void FileManager::unblockFileChange(IFile *file)
Enables the monitoring of the file the \a file argument points to, and update the status of the corresponding IFile's.
*/
void FileManager::unblockFileChange(IFile *file)
{
// We are updating the lastUpdated time to the current modification time
// in changedFile we'll compare the modification time with the last updated
// time, and if they are the same, then we don't deliver that notification
// to corresponding IFile
//
// Also we are updating the expected time of the file
// in changedFile we'll check if the modification time
// is the same as the saved one here
// If so then it's a expected change
updateFileInfo(file);
updateExpectedState(fixFileName(file->fileName()));
2008-12-02 12:01:29 +01:00
}
/*!
\fn void FileManager::expectFileChange(const QString &fileName)
Any subsequent change to \a fileName is treated as a expected file change.
\see FileManager::unexpectFileChange(const QString &fileName)
*/
void FileManager::expectFileChange(const QString &fileName)
2008-12-02 12:01:29 +01:00
{
// Nothing to do
Q_UNUSED(fileName);
}
/*!
\fn void FileManager::unexpectFileChange(const QString &fileName)
Any change to \a fileName are unexpected again.
\see FileManager::expectFileChange(const QString &fileName)
*/
void FileManager::unexpectFileChange(const QString &fileName)
{
// We are updating the expected time of the file
// And in changedFile we'll check if the modification time
// is the same as the saved one here
// If so then it's a expected change
updateExpectedState(fileName);
}
void FileManager::updateExpectedState(const QString &fileName)
{
const QString &fixedName = fixFileName(fileName);
if (fixedName.isEmpty())
return;
QFileInfo fi(fixedName);
if (d->m_states.contains(fixedName)) {
d->m_states[fixedName].expected.modified = fi.lastModified();
d->m_states[fixedName].expected.permissions = fi.permissions();
}
2008-12-02 12:01:29 +01:00
}
/*!
\fn QList<IFile*> FileManager::saveModifiedFilesSilently(const QList<IFile*> &files)
Tries to save the files listed in \a files . Returns the files that could not be saved.
*/
QList<IFile *> FileManager::saveModifiedFilesSilently(const QList<IFile *> &files)
{
return saveModifiedFiles(files, 0, true, QString());
}
/*!
\fn QList<IFile*> FileManager::saveModifiedFiles(const QList<IFile*> &files, bool *cancelled, const QString &message)
Asks the user whether to save the files listed in \a files . Returns the files that have not been saved.
*/
QList<IFile *> FileManager::saveModifiedFiles(const QList<IFile *> &files,
bool *cancelled, const QString &message,
const QString &alwaysSaveMessage,
bool *alwaysSave)
2008-12-02 12:01:29 +01:00
{
return saveModifiedFiles(files, cancelled, false, message, alwaysSaveMessage, alwaysSave);
2008-12-02 12:01:29 +01:00
}
static QMessageBox::StandardButton skipFailedPrompt(QWidget *parent, const QString &fileName)
{
return QMessageBox::question(parent,
FileManager::tr("Cannot save file"),
FileManager::tr("Cannot save changes to '%1'. Do you want to continue and lose your changes?").arg(fileName),
2008-12-02 12:01:29 +01:00
QMessageBox::YesToAll| QMessageBox::Yes|QMessageBox::No,
QMessageBox::No);
}
QList<IFile *> FileManager::saveModifiedFiles(const QList<IFile *> &files,
bool *cancelled,
bool silently,
const QString &message,
const QString &alwaysSaveMessage,
bool *alwaysSave)
2008-12-02 12:01:29 +01:00
{
if (cancelled)
(*cancelled) = false;
QList<IFile *> notSaved;
QMap<IFile *, QString> modifiedFilesMap;
QList<IFile *> modifiedFiles;
2008-12-02 12:01:29 +01:00
foreach (IFile *file, files) {
if (file->isModified()) {
QString name = file->fileName();
if (name.isEmpty())
name = file->suggestedFileName();
// There can be several FileInterfaces pointing to the same file
// Select one that is not readonly.
2009-12-09 15:30:23 +01:00
if (!(modifiedFilesMap.key(name, 0)
&& file->isReadOnly()))
modifiedFilesMap.insert(file, name);
2008-12-02 12:01:29 +01:00
}
}
modifiedFiles = modifiedFilesMap.keys();
2008-12-02 12:01:29 +01:00
if (!modifiedFiles.isEmpty()) {
QList<IFile *> filesToSave;
if (silently) {
filesToSave = modifiedFiles;
2008-12-02 12:01:29 +01:00
} else {
Internal::SaveItemsDialog dia(d->m_mainWindow, modifiedFiles);
2008-12-02 12:01:29 +01:00
if (!message.isEmpty())
dia.setMessage(message);
if (!alwaysSaveMessage.isNull())
dia.setAlwaysSaveMessage(alwaysSaveMessage);
2008-12-02 12:01:29 +01:00
if (dia.exec() != QDialog::Accepted) {
if (cancelled)
(*cancelled) = true;
if (alwaysSave)
*alwaysSave = dia.alwaysSaveChecked();
notSaved = modifiedFiles;
2008-12-02 12:01:29 +01:00
return notSaved;
}
if (alwaysSave)
*alwaysSave = dia.alwaysSaveChecked();
2008-12-02 12:01:29 +01:00
filesToSave = dia.itemsToSave();
}
bool yestoall = false;
Core::VCSManager *vcsManager = Core::ICore::instance()->vcsManager();
2008-12-02 12:01:29 +01:00
foreach (IFile *file, filesToSave) {
if (file->isReadOnly()) {
const QString directory = QFileInfo(file->fileName()).absolutePath();
if (IVersionControl *versionControl = vcsManager->findVersionControlForDirectory(directory))
2008-12-02 12:01:29 +01:00
versionControl->vcsOpen(file->fileName());
}
if (!file->isReadOnly() && !file->fileName().isEmpty()) {
blockFileChange(file);
const bool ok = file->save();
unblockFileChange(file);
if (!ok)
notSaved.append(file);
} else if (QFile::exists(file->fileName()) && !file->isSaveAsAllowed()) {
if (yestoall)
continue;
const QFileInfo fi(file->fileName());
switch (skipFailedPrompt(d->m_mainWindow, fi.fileName())) {
2008-12-02 12:01:29 +01:00
case QMessageBox::YesToAll:
yestoall = true;
break;
case QMessageBox::No:
if (cancelled)
*cancelled = true;
return filesToSave;
default:
break;
}
} else {
QString fileName = getSaveAsFileName(file);
bool ok = false;
if (!fileName.isEmpty()) {
blockFileChange(file);
ok = file->save(fileName);
file->checkPermissions();
2008-12-02 12:01:29 +01:00
unblockFileChange(file);
}
if (!ok)
notSaved.append(file);
}
}
}
return notSaved;
}
QString FileManager::getSaveFileNameWithExtension(const QString &title, const QString &pathIn,
2008-12-02 12:01:29 +01:00
const QString &fileFilter, const QString &extension)
{
QString fileName;
bool repeat;
do {
repeat = false;
const QString path = pathIn.isEmpty() ? fileDialogInitialDirectory() : pathIn;
fileName = QFileDialog::getSaveFileName(d->m_mainWindow, title, path, fileFilter);
2008-12-02 12:01:29 +01:00
if (!fileName.isEmpty() && !extension.isEmpty() && !fileName.endsWith(extension)) {
fileName.append(extension);
if (QFile::exists(fileName)) {
if (QMessageBox::warning(d->m_mainWindow, tr("Overwrite?"),
2008-12-02 12:01:29 +01:00
tr("An item named '%1' already exists at this location. Do you want to overwrite it?").arg(fileName),
QMessageBox::Yes | QMessageBox::No) == QMessageBox::No)
repeat = true;
}
}
} while (repeat);
if (!fileName.isEmpty())
setFileDialogLastVisitedDirectory(QFileInfo(fileName).absolutePath());
2008-12-02 12:01:29 +01:00
return fileName;
}
/*!
\fn QString FileManager::getSaveAsFileName(IFile *file)
Asks the user for a new file name (Save File As) for /arg file.
*/
QString FileManager::getSaveAsFileName(IFile *file)
{
if (!file)
return QLatin1String("");
QString absoluteFilePath = file->fileName();
const QFileInfo fi(absoluteFilePath);
QString fileName = fi.fileName();
QString path = fi.absolutePath();
if (absoluteFilePath.isEmpty()) {
fileName = file->suggestedFileName();
const QString defaultPath = file->defaultPath();
if (!defaultPath.isEmpty())
path = defaultPath;
}
QString filterString;
QString preferredSuffix;
2009-01-20 17:14:00 +01:00
if (const MimeType mt = Core::ICore::instance()->mimeDatabase()->findByFile(fi)) {
2008-12-02 12:01:29 +01:00
filterString = mt.filterString();
preferredSuffix = mt.preferredSuffix();
}
absoluteFilePath = getSaveFileNameWithExtension(tr("Save File As"),
path + QDir::separator() + fileName,
filterString,
preferredSuffix);
return absoluteFilePath;
}
/*!
\fn QString FileManager::getOpenFileNames(const QStringList &filters, QString *selectedFilter) const
Asks the user for a set of file names to be opened.
*/
QStringList FileManager::getOpenFileNames(const QString &filters,
const QString pathIn,
QString *selectedFilter)
{
const QString path = pathIn.isEmpty() ? fileDialogInitialDirectory() : pathIn;
const QStringList files = QFileDialog::getOpenFileNames(d->m_mainWindow,
tr("Open File"),
path, filters,
selectedFilter);
if (!files.isEmpty())
setFileDialogLastVisitedDirectory(QFileInfo(files.front()).absolutePath());
return files;
}
void FileManager::changedFile(const QString &fileName)
2008-12-02 12:01:29 +01:00
{
const bool wasempty = d->m_changedFiles.isEmpty();
const QString &fixedName = fixFileName(fileName);
if (!d->m_changedFiles.contains(fixedName))
d->m_changedFiles.append(fixedName);
if (wasempty && !d->m_changedFiles.isEmpty()) {
QTimer::singleShot(200, this, SLOT(checkForReload()));
2008-12-02 12:01:29 +01:00
}
}
void FileManager::mainWindowActivated()
{
//we need to do this asynchronously because
//opening a dialog ("Reload?") in a windowactivated event
//freezes on Mac
QTimer::singleShot(0, this, SLOT(checkForReload()));
2008-12-02 12:01:29 +01:00
}
void FileManager::checkForReload()
{
if (QApplication::activeWindow() != d->m_mainWindow)
return;
2008-12-02 12:01:29 +01:00
if (d->m_blockActivated)
return;
d->m_blockActivated = true;
IFile::ReloadSetting defaultBehavior = EditorManager::instance()->reloadSetting();
Utils::ReloadPromptAnswer previousAnswer = Utils::ReloadCurrent;
QList<IEditor*> editorsToClose;
QMap<IFile*, QString> filesToSave;
QStringList modifiedFileNames;
foreach (const QString &fileName, d->m_changedFiles) {
// Get the information from the filesystem
IFile::ChangeTrigger behavior = IFile::TriggerExternal;
IFile::ChangeType type = IFile::TypeContents;
QFileInfo fi(fileName);
if (!fi.exists()) {
type = IFile::TypeRemoved;
} else {
modifiedFileNames << fileName;
if (fi.lastModified() == d->m_states.value(fileName).expected.modified
&& fi.permissions() == d->m_states.value(fileName).expected.permissions) {
behavior = IFile::TriggerInternal;
}
}
const QMap<IFile *, Internal::FileStateItem> &lastUpdated =
d->m_states.value(fileName).lastUpdatedState;
QMap<IFile *, Internal::FileStateItem>::const_iterator it, end;
it = lastUpdated.constBegin();
end = lastUpdated.constEnd();
for ( ; it != end; ++it) {
IFile *file = it.key();
// Compare
if (it.value().modified == fi.lastModified()
&& it.value().permissions == fi.permissions()) {
// Already up to date
continue;
}
// we've got some modification
// check if it's contents or permissions:
if (it.value().modified == fi.lastModified()) {
// Only permission change
file->reload(IFile::FlagReload, IFile::TypePermissions);
// now we know it's a content change or file was removed
} else if (defaultBehavior == IFile::ReloadUnmodified
&& type == IFile::TypeContents && !file->isModified()) {
// content change, but unmodified (and settings say to reload in this case)
file->reload(IFile::FlagReload, type);
// file was removed or it's a content change and the default behavior for
// unmodified files didn't kick in
} else if (defaultBehavior == IFile::IgnoreAll) {
// content change or removed, but settings say ignore
file->reload(IFile::FlagIgnore, type);
// either the default behavior is to always ask,
// or the ReloadUnmodified default behavior didn't kick in,
// so do whatever the IFile wants us to do
} else {
// check if IFile wants us to ask
if (file->reloadBehavior(behavior, type) == IFile::BehaviorSilent) {
// content change or removed, IFile wants silent handling
file->reload(IFile::FlagReload, type);
// IFile wants us to ask
} else if (type == IFile::TypeContents) {
// content change, IFile wants to ask user
if (previousAnswer == Utils::ReloadNone) {
// answer already given, ignore
file->reload(IFile::FlagIgnore, IFile::TypeContents);
} else if (previousAnswer == Utils::ReloadAll) {
// answer already given, reload
file->reload(IFile::FlagReload, IFile::TypeContents);
} else {
// Ask about content change
previousAnswer = Utils::reloadPrompt(fileName, file->isModified(), QApplication::activeWindow());
switch (previousAnswer) {
case Utils::ReloadAll:
case Utils::ReloadCurrent:
file->reload(IFile::FlagReload, IFile::TypeContents);
break;
case Utils::ReloadSkipCurrent:
case Utils::ReloadNone:
file->reload(IFile::FlagIgnore, IFile::TypeContents);
break;
}
}
// IFile wants us to ask, and it's the TypeRemoved case
} else {
// Ask about removed file
bool unhandled = true;
while (unhandled) {
switch (Utils::fileDeletedPrompt(fileName, QApplication::activeWindow())) {
case Utils::FileDeletedSave:
filesToSave.insert(file, fileName);
unhandled = false;
break;
case Utils::FileDeletedSaveAs:
{
const QString &saveFileName = getSaveAsFileName(file);
if (!saveFileName.isEmpty()) {
filesToSave.insert(file, saveFileName);
unhandled = false;
}
break;
}
case Utils::FileDeletedClose:
editorsToClose << EditorManager::instance()->editorsForFile(file);
unhandled = false;
break;
}
}
}
2008-12-02 12:01:29 +01:00
}
updateFileInfo(file);
2008-12-02 12:01:29 +01:00
}
}
// cleanup
if (!modifiedFileNames.isEmpty()) {
d->m_fileWatcher->removePaths(modifiedFileNames);
d->m_fileWatcher->addPaths(modifiedFileNames);
}
d->m_changedFiles.clear();
// handle deleted files
EditorManager::instance()->closeEditors(editorsToClose, false);
QMapIterator<IFile *, QString> it(filesToSave);
while (it.hasNext()) {
it.next();
blockFileChange(it.key());
it.key()->save(it.value());
unblockFileChange(it.key());
}
d->m_blockActivated = false;
2008-12-02 12:01:29 +01:00
}
void FileManager::syncWithEditor(Core::IContext *context)
{
if (!context)
return;
Core::IEditor *editor = Core::EditorManager::instance()->currentEditor();
2008-12-02 12:01:29 +01:00
if (editor && (editor->widget() == context->widget()))
setCurrentFile(editor->file()->fileName());
}
/*!
\fn void FileManager::addToRecentFiles(const QString &fileName)
Adds the \a fileName to the list of recent files.
*/
void FileManager::addToRecentFiles(const QString &fileName)
{
if (fileName.isEmpty())
return;
QString prettyFileName(QDir::toNativeSeparators(fileName));
d->m_recentFiles.removeAll(prettyFileName);
if (d->m_recentFiles.count() > d->m_maxRecentFiles)
d->m_recentFiles.removeLast();
d->m_recentFiles.prepend(prettyFileName);
2008-12-02 12:01:29 +01:00
}
/*!
\fn QStringList FileManager::recentFiles() const
Returns the list of recent files.
*/
QStringList FileManager::recentFiles() const
{
return d->m_recentFiles;
2008-12-02 12:01:29 +01:00
}
void FileManager::saveRecentFiles()
{
QSettings *s = Core::ICore::instance()->settings();
s->beginGroup(QLatin1String(settingsGroupC));
s->setValue(QLatin1String(filesKeyC), d->m_recentFiles);
s->endGroup();
s->beginGroup(QLatin1String(directoryGroupC));
s->setValue(QLatin1String(projectDirectoryKeyC), d->m_projectsDirectory);
s->setValue(QLatin1String(useProjectDirectoryKeyC), d->m_useProjectsDirectory);
2008-12-02 12:01:29 +01:00
s->endGroup();
}
/*!
The current file is e.g. the file currently opened when an editor is active,
or the selected file in case a Project Explorer is active ...
2009-04-24 16:00:19 +02:00
\sa currentFile
2008-12-02 12:01:29 +01:00
*/
void FileManager::setCurrentFile(const QString &filePath)
{
if (d->m_currentFile == filePath)
2008-12-02 12:01:29 +01:00
return;
d->m_currentFile = filePath;
emit currentFileChanged(d->m_currentFile);
2008-12-02 12:01:29 +01:00
}
/*!
Returns the absolute path of the current file
The current file is e.g. the file currently opened when an editor is active,
or the selected file in case a Project Explorer is active ...
2009-04-24 16:00:19 +02:00
\sa setCurrentFile
2008-12-02 12:01:29 +01:00
*/
QString FileManager::currentFile() const
{
return d->m_currentFile;
2008-12-02 12:01:29 +01:00
}
/*!
Returns the initial directory for a new file dialog. If there is
a current file, use that, else use last visited directory.
\sa setFileDialogLastVisitedDirectory
*/
QString FileManager::fileDialogInitialDirectory() const
{
if (!d->m_currentFile.isEmpty())
return QFileInfo(d->m_currentFile).absolutePath();
return d->m_lastVisitedDirectory;
}
/*!
Returns the directory for projects. Defaults to HOME.
\sa setProjectsDirectory, setUseProjectsDirectory
*/
QString FileManager::projectsDirectory() const
{
return d->m_projectsDirectory;
}
/*!
Set the directory for projects.
\sa projectsDirectory, useProjectsDirectory
*/
void FileManager::setProjectsDirectory(const QString &dir)
{
d->m_projectsDirectory = dir;
}
/*!
Returns whether the directory for projects is to be
used or the user wants the current directory.
\sa setProjectsDirectory, setUseProjectsDirectory
*/
bool FileManager::useProjectsDirectory() const
{
return d->m_useProjectsDirectory;
}
/*!
Sets whether the directory for projects is to be used.
\sa projectsDirectory, useProjectsDirectory
*/
void FileManager::setUseProjectsDirectory(bool useProjectsDirectory)
{
d->m_useProjectsDirectory = useProjectsDirectory;
}
/*!
Returns last visited directory of a file dialog.
\sa setFileDialogLastVisitedDirectory, fileDialogInitialDirectory
*/
QString FileManager::fileDialogLastVisitedDirectory() const
{
return d->m_lastVisitedDirectory;
}
/*!
Set the last visited directory of a file dialog that will be remembered
for the next one.
\sa fileDialogLastVisitedDirectory, fileDialogInitialDirectory
*/
void FileManager::setFileDialogLastVisitedDirectory(const QString &directory)
{
d->m_lastVisitedDirectory = directory;
}
void FileManager::notifyFilesChangedInternally(const QStringList &files)
{
emit filesChangedInternally(files);
}
// -------------- FileChangeBlocker
FileChangeBlocker::FileChangeBlocker(const QString &fileName)
: m_fileName(fileName)
{
Core::FileManager *fm = Core::ICore::instance()->fileManager();
fm->expectFileChange(fileName);
}
FileChangeBlocker::~FileChangeBlocker()
{
Core::FileManager *fm = Core::ICore::instance()->fileManager();
fm->unexpectFileChange(m_fileName);
}
} // namespace Core