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>
|
2010-01-18 16:15:23 +01:00
|
|
|
#include <qmljs/qmljsdocument.h>
|
2009-12-02 17:59:27 +01:00
|
|
|
|
2009-09-04 16:51:11 +02:00
|
|
|
#include <QFuture>
|
|
|
|
|
#include <QFutureSynchronizer>
|
2009-09-04 17:54:38 +02:00
|
|
|
#include <QMutex>
|
2010-06-09 14:27:30 +02:00
|
|
|
#include <QProcess>
|
2009-09-04 16:51:11 +02:00
|
|
|
|
|
|
|
|
namespace Core {
|
|
|
|
|
class ICore;
|
2010-01-20 16:43:50 +01:00
|
|
|
class MimeType;
|
2009-09-04 16:51:11 +02:00
|
|
|
}
|
|
|
|
|
|
2010-01-15 17:20:03 +01: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
|
|
|
|
2010-09-24 14:05:34 +02:00
|
|
|
virtual WorkingCopy workingCopy() const;
|
2010-01-18 16:15:23 +01:00
|
|
|
virtual QmlJS::Snapshot snapshot() const;
|
2010-09-24 14:05:34 +02:00
|
|
|
|
2010-04-16 13:08:59 +02:00
|
|
|
virtual void updateSourceFiles(const QStringList &files,
|
|
|
|
|
bool emitDocumentOnDiskChanged);
|
2010-04-16 12:42:12 +02:00
|
|
|
virtual void fileChangedOnDisk(const QString &path);
|
2010-05-18 13:40:35 +02:00
|
|
|
virtual void removeFiles(const QStringList &files);
|
2009-09-04 16:51:11 +02:00
|
|
|
|
2010-06-22 12:54:19 +02:00
|
|
|
virtual QList<ProjectInfo> projectInfos() const;
|
2010-09-27 11:16:43 +01:00
|
|
|
virtual ProjectInfo projectInfo(ProjectExplorer::Project *project) const;
|
2010-06-22 12:54:19 +02:00
|
|
|
virtual void updateProjectInfo(const ProjectInfo &pinfo);
|
|
|
|
|
|
2010-01-18 16:15:23 +01:00
|
|
|
void emitDocumentUpdated(QmlJS::Document::Ptr doc);
|
2010-03-18 15:43:33 +01:00
|
|
|
void emitLibraryInfoUpdated(const QString &path, const QmlJS::LibraryInfo &info);
|
2010-04-16 12:42:12 +02:00
|
|
|
void emitDocumentChangedOnDisk(QmlJS::Document::Ptr doc);
|
2009-09-04 16:51:11 +02:00
|
|
|
|
2010-03-16 16:34:33 +01:00
|
|
|
virtual QStringList importPaths() const;
|
|
|
|
|
|
2010-08-25 14:15:57 +02:00
|
|
|
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);
|
2010-03-18 15:43:33 +01:00
|
|
|
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.
|
2010-01-18 16:15:23 +01:00
|
|
|
void onDocumentUpdated(QmlJS::Document::Ptr doc);
|
2010-03-18 15:43:33 +01:00
|
|
|
void onLibraryInfoUpdated(const QString &path, const QmlJS::LibraryInfo &info);
|
2010-08-25 14:15:57 +02:00
|
|
|
void onLoadPluginTypes(const QString &libraryPath, const QString &importPath, const QString &importUri);
|
2010-06-09 14:27:30 +02:00
|
|
|
void qmlPluginTypeDumpDone(int exitCode);
|
2010-09-15 14:13:33 +02:00
|
|
|
void qmlPluginTypeDumpError(QProcess::ProcessError error);
|
2009-09-04 16:51:11 +02:00
|
|
|
|
|
|
|
|
protected:
|
2010-04-16 13:08:59 +02:00
|
|
|
QFuture<void> refreshSourceFiles(const QStringList &sourceFiles,
|
|
|
|
|
bool emitDocumentOnDiskChanged);
|
2009-09-04 16:51:11 +02:00
|
|
|
|
|
|
|
|
static void parse(QFutureInterface<void> &future,
|
2010-09-24 14:05:34 +02:00
|
|
|
WorkingCopy workingCopy,
|
2009-09-04 16:51:11 +02:00
|
|
|
QStringList files,
|
2010-04-16 12:42:12 +02:00
|
|
|
ModelManager *modelManager,
|
|
|
|
|
bool emitDocChangedOnDisk);
|
2009-09-04 16:51:11 +02:00
|
|
|
|
2010-03-01 13:01:05 +01:00
|
|
|
void loadQmlTypeDescriptions();
|
2010-09-08 10:11:44 +02:00
|
|
|
void loadQmlTypeDescriptions(const QString &path);
|
2010-03-01 13:01:05 +01:00
|
|
|
|
2010-06-22 12:54:19 +02:00
|
|
|
void updateImportPaths();
|
|
|
|
|
|
2009-09-04 16:51:11 +02:00
|
|
|
private:
|
2010-01-20 16:43:50 +01:00
|
|
|
static bool matchesMimeType(const Core::MimeType &fileMimeType, const Core::MimeType &knownMimeType);
|
|
|
|
|
|
2009-09-04 17:54:38 +02:00
|
|
|
mutable QMutex m_mutex;
|
2009-09-04 16:51:11 +02:00
|
|
|
Core::ICore *m_core;
|
2010-01-18 16:15:23 +01:00
|
|
|
QmlJS::Snapshot _snapshot;
|
2010-06-22 12:54:19 +02:00
|
|
|
QStringList m_allImportPaths;
|
2010-03-16 16:34:33 +01:00
|
|
|
QStringList m_defaultImportPaths;
|
2010-06-09 14:27:30 +02:00
|
|
|
QHash<QProcess *, QString> m_runningQmldumps;
|
2009-09-04 16:51:11 +02:00
|
|
|
|
|
|
|
|
QFutureSynchronizer<void> m_synchronizer;
|
2010-06-22 12:54:19 +02:00
|
|
|
|
|
|
|
|
// project integration
|
|
|
|
|
QMap<ProjectExplorer::Project *, ProjectInfo> m_projects;
|
2009-09-04 16:51:11 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
} // namespace Internal
|
2010-01-15 17:20:03 +01:00
|
|
|
} // namespace QmlJSEditor
|
2009-09-04 16:51:11 +02:00
|
|
|
|
2010-02-15 13:49:00 +01:00
|
|
|
#endif // QMLJSMODELMANAGER_H
|