Files
qt-creator/src/plugins/qmljseditor/qmljsmodelmanager.h

123 lines
4.1 KiB
C
Raw Normal View History

2009-09-04 16:51:11 +02: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).
2009-09-04 16:51:11 +02:00
**
** Contact: Nokia Corporation (qt-info@nokia.com)
**
** 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
** contact the sales department at http://qt.nokia.com/contact.
**
**************************************************************************/
2010-02-15 13:49:00 +01:00
#ifndef QMLJSMODELMANAGER_H
#define QMLJSMODELMANAGER_H
2009-09-04 16:51:11 +02:00
2010-06-09 15:56:03 +02:00
#include <qmljs/qmljsmodelmanagerinterface.h>
#include <qmljs/qmljsdocument.h>
2009-09-04 16:51:11 +02:00
#include <QFuture>
#include <QFutureSynchronizer>
#include <QMutex>
#include <QProcess>
2009-09-04 16:51:11 +02:00
namespace Core {
class ICore;
class MimeType;
2009-09-04 16:51:11 +02:00
}
namespace QmlJSEditor {
2009-09-04 16:51:11 +02:00
namespace Internal {
2010-06-09 15:56:03 +02:00
class ModelManager: public QmlJS::ModelManagerInterface
2009-09-04 16:51:11 +02:00
{
Q_OBJECT
public:
2010-02-15 13:49:00 +01:00
ModelManager(QObject *parent = 0);
2009-09-04 16:51:11 +02:00
virtual WorkingCopy workingCopy() const;
virtual QmlJS::Snapshot snapshot() const;
virtual void updateSourceFiles(const QStringList &files,
bool emitDocumentOnDiskChanged);
virtual void fileChangedOnDisk(const QString &path);
virtual void removeFiles(const QStringList &files);
2009-09-04 16:51:11 +02:00
virtual QList<ProjectInfo> projectInfos() const;
virtual ProjectInfo projectInfo(ProjectExplorer::Project *project) const;
virtual void updateProjectInfo(const ProjectInfo &pinfo);
void emitDocumentUpdated(QmlJS::Document::Ptr doc);
void emitLibraryInfoUpdated(const QString &path, const QmlJS::LibraryInfo &info);
void emitDocumentChangedOnDisk(QmlJS::Document::Ptr doc);
2009-09-04 16:51:11 +02:00
virtual QStringList importPaths() const;
virtual void loadPluginTypes(const QString &libraryPath, const QString &importPath, const QString &importUri);
2009-09-04 16:51:11 +02:00
Q_SIGNALS:
void projectPathChanged(const QString &projectPath);
void libraryInfoUpdated(const QString &path, const QmlJS::LibraryInfo &info);
2009-09-04 16:51:11 +02:00
private Q_SLOTS:
// this should be executed in the GUI thread.
void onDocumentUpdated(QmlJS::Document::Ptr doc);
void onLibraryInfoUpdated(const QString &path, const QmlJS::LibraryInfo &info);
void onLoadPluginTypes(const QString &libraryPath, const QString &importPath, const QString &importUri);
void qmlPluginTypeDumpDone(int exitCode);
void qmlPluginTypeDumpError(QProcess::ProcessError error);
2009-09-04 16:51:11 +02:00
protected:
QFuture<void> refreshSourceFiles(const QStringList &sourceFiles,
bool emitDocumentOnDiskChanged);
2009-09-04 16:51:11 +02:00
static void parse(QFutureInterface<void> &future,
WorkingCopy workingCopy,
2009-09-04 16:51:11 +02:00
QStringList files,
ModelManager *modelManager,
bool emitDocChangedOnDisk);
2009-09-04 16:51:11 +02:00
void loadQmlTypeDescriptions();
2010-09-08 10:11:44 +02:00
void loadQmlTypeDescriptions(const QString &path);
void updateImportPaths();
2009-09-04 16:51:11 +02:00
private:
static bool matchesMimeType(const Core::MimeType &fileMimeType, const Core::MimeType &knownMimeType);
mutable QMutex m_mutex;
2009-09-04 16:51:11 +02:00
Core::ICore *m_core;
QmlJS::Snapshot _snapshot;
QStringList m_allImportPaths;
QStringList m_defaultImportPaths;
QHash<QProcess *, QString> m_runningQmldumps;
2009-09-04 16:51:11 +02:00
QFutureSynchronizer<void> m_synchronizer;
// project integration
QMap<ProjectExplorer::Project *, ProjectInfo> m_projects;
2009-09-04 16:51:11 +02:00
};
} // namespace Internal
} // namespace QmlJSEditor
2009-09-04 16:51:11 +02:00
2010-02-15 13:49:00 +01:00
#endif // QMLJSMODELMANAGER_H