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

131 lines
3.9 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)
**
2010-12-17 16:01:08 +01:00
** No Commercial Usage
2009-09-04 16:51:11 +02:00
**
2010-12-17 16:01:08 +01:00
** This file contains pre-release code and may not be distributed.
** You may use this file in accordance with the terms and conditions
** contained in the Technology Preview License Agreement accompanying
** this package.
2009-09-04 16:51:11 +02:00
**
** 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.
**
2010-12-17 16:01:08 +01:00
** In addition, as a special exception, Nokia gives you certain additional
** rights. These rights are described in the Nokia Qt LGPL Exception
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
**
** If you have questions regarding the use of this file, please contact
** Nokia at qt-info@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
#include "qmljstools_global.h"
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
QT_FORWARD_DECLARE_CLASS(QTimer)
2009-09-04 16:51:11 +02:00
namespace Core {
class ICore;
class MimeType;
2009-09-04 16:51:11 +02:00
}
namespace QmlJSTools {
2009-09-04 16:51:11 +02:00
namespace Internal {
class PluginDumper;
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
void delayedInitialization();
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 updateDocument(QmlJS::Document::Ptr doc);
void updateLibraryInfo(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);
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();
private slots:
void updateCppQmlTypes();
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;
2009-09-04 16:51:11 +02:00
QFutureSynchronizer<void> m_synchronizer;
QTimer *m_updateCppQmlTypesTimer;
// project integration
QMap<ProjectExplorer::Project *, ProjectInfo> m_projects;
PluginDumper *m_pluginDumper;
2009-09-04 16:51:11 +02:00
};
} // namespace Internal
} // namespace QmlJSTools
2009-09-04 16:51:11 +02:00
2010-02-15 13:49:00 +01:00
#endif // QMLJSMODELMANAGER_H