2009-09-04 16:51:11 +02:00
|
|
|
/**************************************************************************
|
|
|
|
|
**
|
|
|
|
|
** This file is part of Qt Creator
|
|
|
|
|
**
|
2011-01-11 16:28:15 +01:00
|
|
|
** Copyright (c) 2011 Nokia Corporation and/or its subsidiary(-ies).
|
2009-09-04 16:51:11 +02:00
|
|
|
**
|
2011-04-13 08:42:33 +02:00
|
|
|
** Contact: Nokia Corporation (info@qt.nokia.com)
|
2009-09-04 16:51:11 +02:00
|
|
|
**
|
|
|
|
|
**
|
|
|
|
|
** GNU Lesser General Public License Usage
|
|
|
|
|
**
|
2011-04-13 08:42:33 +02:00
|
|
|
** 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.
|
2009-09-04 16:51:11 +02:00
|
|
|
**
|
2010-12-17 16:01:08 +01:00
|
|
|
** In addition, as a special exception, Nokia gives you certain additional
|
2011-04-13 08:42:33 +02:00
|
|
|
** rights. These rights are described in the Nokia Qt LGPL Exception
|
2010-12-17 16:01:08 +01:00
|
|
|
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
|
|
|
|
**
|
2011-04-13 08:42:33 +02:00
|
|
|
** Other Usage
|
|
|
|
|
**
|
|
|
|
|
** Alternatively, this file may be used in accordance with the terms and
|
|
|
|
|
** conditions contained in a signed written agreement between you and Nokia.
|
|
|
|
|
**
|
2010-12-17 16:01:08 +01:00
|
|
|
** If you have questions regarding the use of this file, please contact
|
2011-05-06 15:05:37 +02:00
|
|
|
** Nokia at info@qt.nokia.com.
|
2009-09-04 16:51:11 +02:00
|
|
|
**
|
|
|
|
|
**************************************************************************/
|
|
|
|
|
|
2010-02-15 13:49:00 +01:00
|
|
|
#ifndef QMLJSMODELMANAGER_H
|
|
|
|
|
#define QMLJSMODELMANAGER_H
|
2009-09-04 16:51:11 +02:00
|
|
|
|
2010-11-11 10:05:05 +01:00
|
|
|
#include "qmljstools_global.h"
|
|
|
|
|
|
2010-06-09 15:56:03 +02:00
|
|
|
#include <qmljs/qmljsmodelmanagerinterface.h>
|
2011-01-20 14:03:07 +01:00
|
|
|
|
2011-01-06 10:01:45 +01:00
|
|
|
#include <cplusplus/ModelManagerInterface.h>
|
2009-12-02 17:59:27 +01:00
|
|
|
|
2011-01-20 14:03:07 +01:00
|
|
|
#include <QtCore/QFuture>
|
|
|
|
|
#include <QtCore/QFutureSynchronizer>
|
|
|
|
|
#include <QtCore/QMutex>
|
2009-09-04 16:51:11 +02:00
|
|
|
|
2010-12-03 10:13:15 +01:00
|
|
|
QT_FORWARD_DECLARE_CLASS(QTimer)
|
|
|
|
|
|
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-11-11 10:05:05 +01:00
|
|
|
namespace QmlJSTools {
|
2009-09-04 16:51:11 +02:00
|
|
|
namespace Internal {
|
|
|
|
|
|
2010-11-10 15:07:53 +01:00
|
|
|
class PluginDumper;
|
|
|
|
|
|
2010-11-11 10:05:05 +01:00
|
|
|
class QMLJSTOOLS_EXPORT 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-12-03 10:13:15 +01:00
|
|
|
void delayedInitialization();
|
|
|
|
|
|
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-10-15 10:06:59 +02:00
|
|
|
void updateDocument(QmlJS::Document::Ptr doc);
|
|
|
|
|
void updateLibraryInfo(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;
|
|
|
|
|
|
2011-02-08 13:29:21 +01:00
|
|
|
virtual void loadPluginTypes(const QString &libraryPath, const QString &importPath,
|
|
|
|
|
const QString &importUri, const QString &importVersion);
|
2010-08-25 14:15:57 +02:00
|
|
|
|
2011-01-06 10:01:45 +01:00
|
|
|
virtual CppQmlTypeHash cppQmlTypes() const;
|
2011-04-12 09:14:31 +02:00
|
|
|
virtual BuiltinPackagesHash builtinPackages() const;
|
2011-01-06 10:01:45 +01:00
|
|
|
|
2009-09-04 16:51:11 +02:00
|
|
|
Q_SIGNALS:
|
|
|
|
|
void projectPathChanged(const QString &projectPath);
|
|
|
|
|
|
|
|
|
|
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();
|
|
|
|
|
|
2010-12-03 10:13:15 +01:00
|
|
|
private slots:
|
2011-01-06 10:01:45 +01:00
|
|
|
void queueCppQmlTypeUpdate(const CPlusPlus::Document::Ptr &doc);
|
|
|
|
|
void startCppQmlTypeUpdate();
|
2010-12-03 10:13:15 +01:00
|
|
|
|
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);
|
2011-01-06 10:01:45 +01:00
|
|
|
static void updateCppQmlTypes(ModelManager *qmlModelManager, CPlusPlus::CppModelManagerInterface *cppModelManager, QSet<QString> files);
|
2010-01-20 16:43:50 +01:00
|
|
|
|
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;
|
2009-09-04 16:51:11 +02:00
|
|
|
|
|
|
|
|
QFutureSynchronizer<void> m_synchronizer;
|
2011-01-06 10:01:45 +01:00
|
|
|
|
2010-12-03 10:13:15 +01:00
|
|
|
QTimer *m_updateCppQmlTypesTimer;
|
2011-01-06 10:01:45 +01:00
|
|
|
QSet<QString> m_queuedCppDocuments;
|
|
|
|
|
CppQmlTypeHash m_cppTypes;
|
|
|
|
|
mutable QMutex m_cppTypesMutex;
|
2010-06-22 12:54:19 +02:00
|
|
|
|
|
|
|
|
// project integration
|
|
|
|
|
QMap<ProjectExplorer::Project *, ProjectInfo> m_projects;
|
2010-11-10 15:07:53 +01:00
|
|
|
|
|
|
|
|
PluginDumper *m_pluginDumper;
|
2009-09-04 16:51:11 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
} // namespace Internal
|
2010-11-11 10:05:05 +01:00
|
|
|
} // namespace QmlJSTools
|
2009-09-04 16:51:11 +02:00
|
|
|
|
2010-02-15 13:49:00 +01:00
|
|
|
#endif // QMLJSMODELMANAGER_H
|