2010-01-04 11:39:56 +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.
|
|
|
|
|
**
|
|
|
|
|
**************************************************************************/
|
|
|
|
|
|
2009-09-28 14:49:39 +02:00
|
|
|
#ifndef QSCRIPTINCREMENTALSCANNER_H
|
|
|
|
|
#define QSCRIPTINCREMENTALSCANNER_H
|
|
|
|
|
|
2010-01-18 14:12:04 +01:00
|
|
|
#include <qmljs/qml_global.h>
|
|
|
|
|
|
2009-09-28 14:49:39 +02:00
|
|
|
#include <QtCore/QList>
|
|
|
|
|
#include <QtCore/QSet>
|
|
|
|
|
#include <QtCore/QString>
|
|
|
|
|
|
2010-01-18 14:12:04 +01:00
|
|
|
namespace QmlJS {
|
2009-09-28 14:49:39 +02:00
|
|
|
|
2010-01-18 14:12:04 +01:00
|
|
|
class QML_EXPORT QScriptIncrementalScanner
|
2009-09-28 14:49:39 +02:00
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
|
|
struct Token {
|
|
|
|
|
int offset;
|
|
|
|
|
int length;
|
|
|
|
|
enum Kind {
|
|
|
|
|
Keyword,
|
2009-10-07 16:31:08 +02:00
|
|
|
Identifier,
|
2009-09-28 14:49:39 +02:00
|
|
|
String,
|
|
|
|
|
Comment,
|
|
|
|
|
Number,
|
|
|
|
|
LeftParenthesis,
|
|
|
|
|
RightParenthesis,
|
|
|
|
|
LeftBrace,
|
|
|
|
|
RightBrace,
|
|
|
|
|
LeftBracket,
|
|
|
|
|
RightBracket,
|
2009-10-07 16:31:08 +02:00
|
|
|
Operator,
|
|
|
|
|
Semicolon,
|
|
|
|
|
Colon,
|
|
|
|
|
Comma,
|
|
|
|
|
Dot
|
2009-09-28 14:49:39 +02:00
|
|
|
} kind;
|
|
|
|
|
|
2009-10-07 16:31:08 +02:00
|
|
|
inline Token(int o, int l, Kind k): offset(o), length(l), kind(k) {}
|
2010-01-12 14:30:54 +01:00
|
|
|
inline int begin() const { return offset; }
|
2009-10-07 16:31:08 +02:00
|
|
|
inline int end() const { return offset + length; }
|
2009-11-16 12:38:47 +01:00
|
|
|
inline bool is(int k) const { return k == kind; }
|
|
|
|
|
inline bool isNot(int k) const { return k != kind; }
|
2009-09-28 14:49:39 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
public:
|
2009-10-07 16:31:08 +02:00
|
|
|
QScriptIncrementalScanner();
|
2009-09-28 14:49:39 +02:00
|
|
|
virtual ~QScriptIncrementalScanner();
|
|
|
|
|
|
2009-10-07 16:31:08 +02:00
|
|
|
void setKeywords(const QSet<QString> keywords)
|
|
|
|
|
{ m_keywords = keywords;; }
|
2009-09-28 14:49:39 +02:00
|
|
|
|
|
|
|
|
void reset();
|
|
|
|
|
|
2009-11-16 12:38:47 +01:00
|
|
|
QList<QScriptIncrementalScanner::Token> operator()(const QString &text, int startState = 0);
|
2009-09-28 14:49:39 +02:00
|
|
|
|
|
|
|
|
int endState() const
|
|
|
|
|
{ return m_endState; }
|
|
|
|
|
|
|
|
|
|
int firstNonSpace() const
|
|
|
|
|
{ return m_firstNonSpace; }
|
|
|
|
|
|
|
|
|
|
QList<QScriptIncrementalScanner::Token> tokens() const
|
|
|
|
|
{ return m_tokens; }
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
void blockEnd(int state, int firstNonSpace)
|
|
|
|
|
{ m_endState = state; m_firstNonSpace = firstNonSpace; }
|
2009-10-07 16:31:08 +02:00
|
|
|
void insertString(int start)
|
|
|
|
|
{ insertToken(start, 1, Token::String, false); }
|
|
|
|
|
void insertComment(int start, int length)
|
|
|
|
|
{ insertToken(start, length, Token::Comment, false); }
|
|
|
|
|
void insertCharToken(int start, const char c);
|
|
|
|
|
void insertIdentifier(int start)
|
|
|
|
|
{ insertToken(start, 1, Token::Identifier, false); }
|
|
|
|
|
void insertNumber(int start)
|
|
|
|
|
{ insertToken(start, 1, Token::Number, false); }
|
|
|
|
|
void insertToken(int start, int length, Token::Kind kind, bool forceNewToken);
|
|
|
|
|
void scanForKeywords(const QString &text);
|
2009-09-28 14:49:39 +02:00
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
QSet<QString> m_keywords;
|
|
|
|
|
int m_endState;
|
|
|
|
|
int m_firstNonSpace;
|
|
|
|
|
QList<QScriptIncrementalScanner::Token> m_tokens;
|
|
|
|
|
};
|
|
|
|
|
|
2010-01-18 14:12:04 +01:00
|
|
|
} // namespace QmlJS
|
2009-09-28 14:49:39 +02:00
|
|
|
|
|
|
|
|
#endif // QSCRIPTINCREMENTALSCANNER_H
|