2010-01-18 13:13:34 +01:00
|
|
|
/**************************************************************************
|
|
|
|
**
|
|
|
|
** This file is part of Qt Creator
|
|
|
|
**
|
|
|
|
** Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
|
|
|
|
**
|
|
|
|
** 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.
|
|
|
|
**
|
|
|
|
**************************************************************************/
|
|
|
|
#ifndef QMLDOCUMENT_H
|
|
|
|
#define QMLDOCUMENT_H
|
|
|
|
|
|
|
|
#include <QtCore/QList>
|
|
|
|
#include <QtCore/QMap>
|
|
|
|
#include <QtCore/QPair>
|
|
|
|
#include <QtCore/QSharedPointer>
|
|
|
|
#include <QtCore/QString>
|
|
|
|
|
|
|
|
#include "parser/qmljsengine_p.h"
|
2010-01-18 16:15:23 +01:00
|
|
|
#include "qmljs_global.h"
|
2010-01-18 13:13:34 +01:00
|
|
|
|
2010-01-18 16:15:23 +01:00
|
|
|
namespace QmlJS {
|
2010-01-18 13:13:34 +01:00
|
|
|
|
2010-02-02 15:55:17 +01:00
|
|
|
class Bind;
|
|
|
|
|
2010-01-18 16:15:23 +01:00
|
|
|
class QMLJS_EXPORT Document
|
2010-01-18 13:13:34 +01:00
|
|
|
{
|
|
|
|
public:
|
2010-01-18 16:15:23 +01:00
|
|
|
typedef QSharedPointer<Document> Ptr;
|
2010-01-18 13:13:34 +01:00
|
|
|
|
|
|
|
protected:
|
2010-01-18 16:15:23 +01:00
|
|
|
Document(const QString &fileName);
|
2010-01-18 13:13:34 +01:00
|
|
|
|
|
|
|
public:
|
2010-01-18 16:15:23 +01:00
|
|
|
~Document();
|
2010-01-18 13:13:34 +01:00
|
|
|
|
2010-01-18 16:15:23 +01:00
|
|
|
static Document::Ptr create(const QString &fileName);
|
2010-01-18 13:13:34 +01:00
|
|
|
|
2010-02-03 15:59:15 +01:00
|
|
|
AST::UiProgram *qmlProgram() const;
|
|
|
|
AST::Program *jsProgram() const;
|
|
|
|
AST::ExpressionNode *expression() const;
|
|
|
|
AST::Node *ast() const;
|
2010-01-19 10:16:57 +01:00
|
|
|
|
2010-02-03 15:59:15 +01:00
|
|
|
QList<DiagnosticMessage> diagnosticMessages() const;
|
2010-01-18 13:13:34 +01:00
|
|
|
|
|
|
|
QString source() const;
|
|
|
|
void setSource(const QString &source);
|
|
|
|
|
|
|
|
bool parseQml();
|
|
|
|
bool parseJavaScript();
|
2010-01-22 10:26:25 +01:00
|
|
|
bool parseExpression();
|
2010-01-18 13:13:34 +01:00
|
|
|
|
|
|
|
bool isParsedCorrectly() const
|
|
|
|
{ return _parsedCorrectly; }
|
|
|
|
|
2010-02-03 15:59:15 +01:00
|
|
|
Bind *bind() const;
|
2010-02-02 15:55:17 +01:00
|
|
|
|
2010-01-25 14:18:53 +01:00
|
|
|
int documentRevision() const;
|
|
|
|
void setDocumentRevision(int documentRevision);
|
|
|
|
|
2010-02-11 10:19:41 +01:00
|
|
|
QString fileName() const;
|
|
|
|
QString path() const;
|
|
|
|
QString componentName() const;
|
2010-01-18 13:13:34 +01:00
|
|
|
|
2010-02-08 21:37:59 +01:00
|
|
|
private:
|
|
|
|
bool parse_helper(int kind);
|
|
|
|
|
2010-01-18 13:13:34 +01:00
|
|
|
private:
|
|
|
|
QmlJS::Engine *_engine;
|
2010-02-03 15:59:15 +01:00
|
|
|
NodePool *_pool;
|
|
|
|
AST::Node *_ast;
|
|
|
|
Bind *_bind;
|
2010-01-25 14:18:53 +01:00
|
|
|
int _documentRevision;
|
|
|
|
bool _parsedCorrectly;
|
2010-01-18 13:13:34 +01:00
|
|
|
QList<QmlJS::DiagnosticMessage> _diagnosticMessages;
|
|
|
|
QString _fileName;
|
|
|
|
QString _path;
|
|
|
|
QString _componentName;
|
|
|
|
QString _source;
|
|
|
|
};
|
|
|
|
|
2010-01-26 17:23:18 +01:00
|
|
|
class QMLJS_EXPORT Snapshot
|
2010-01-18 13:13:34 +01:00
|
|
|
{
|
2010-01-26 17:23:18 +01:00
|
|
|
typedef QMap<QString, Document::Ptr> _Base;
|
|
|
|
QMap<QString, Document::Ptr> _documents;
|
|
|
|
|
2010-01-18 13:13:34 +01:00
|
|
|
public:
|
|
|
|
Snapshot();
|
|
|
|
~Snapshot();
|
|
|
|
|
2010-01-26 17:23:18 +01:00
|
|
|
typedef _Base::iterator iterator;
|
|
|
|
typedef _Base::const_iterator const_iterator;
|
|
|
|
|
|
|
|
const_iterator begin() const { return _documents.begin(); }
|
|
|
|
const_iterator end() const { return _documents.end(); }
|
|
|
|
|
2010-01-18 16:15:23 +01:00
|
|
|
void insert(const Document::Ptr &document);
|
2010-01-18 13:13:34 +01:00
|
|
|
|
2010-01-18 16:15:23 +01:00
|
|
|
Document::Ptr document(const QString &fileName) const
|
2010-01-26 17:23:18 +01:00
|
|
|
{ return _documents.value(fileName); }
|
2010-01-18 13:13:34 +01:00
|
|
|
|
2010-02-03 15:59:15 +01:00
|
|
|
QList<Document::Ptr> importedDocuments(const Document::Ptr &doc, const QString &importPath) const;
|
2010-01-18 16:15:23 +01:00
|
|
|
QMap<QString, Document::Ptr> componentsDefinedByImportedDocuments(const Document::Ptr &doc, const QString &importPath) const;
|
2010-01-18 13:13:34 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
} // end of namespace Qml
|
|
|
|
|
|
|
|
#endif // QMLDOCUMENT_H
|