Files
qt-creator/src/libs/cplusplus/SimpleLexer.cpp

170 lines
4.4 KiB
C++
Raw Normal View History

/**************************************************************************
2008-12-02 12:01:29 +01: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).
2008-12-02 12:01:29 +01:00
**
** Contact: Nokia Corporation (qt-info@nokia.com)
2008-12-02 12:01:29 +01:00
**
** 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
2009-08-14 09:30:56 +02:00
** contact the sales department at http://qt.nokia.com/contact.
2008-12-02 12:01:29 +01:00
**
**************************************************************************/
2008-12-02 12:01:29 +01:00
#include "SimpleLexer.h"
2008-12-02 14:09:21 +01:00
#include "ObjectiveCTypeQualifiers.h"
2008-12-02 12:01:29 +01:00
#include <Lexer.h>
#include <Token.h>
#include <QtDebug>
using namespace CPlusPlus;
SimpleLexer::SimpleLexer()
: _lastState(0),
_skipComments(false),
_qtMocRunEnabled(true),
_objCEnabled(false),
_endedJoined(false)
2009-02-04 11:36:17 +01:00
{
}
2008-12-02 12:01:29 +01:00
SimpleLexer::~SimpleLexer()
{ }
bool SimpleLexer::qtMocRunEnabled() const
2008-12-02 14:09:21 +01:00
{
return _qtMocRunEnabled;
}
2008-12-02 12:01:29 +01:00
void SimpleLexer::setQtMocRunEnabled(bool enabled)
2008-12-02 14:09:21 +01:00
{
_qtMocRunEnabled = enabled;
}
2008-12-02 12:01:29 +01:00
2009-01-09 16:55:25 +01:00
bool SimpleLexer::objCEnabled() const
{
2009-01-09 16:55:25 +01:00
return _objCEnabled;
}
2009-01-09 16:55:25 +01:00
void SimpleLexer::setObjCEnabled(bool onoff)
{
2009-01-09 16:55:25 +01:00
_objCEnabled = onoff;
}
2008-12-02 12:01:29 +01:00
bool SimpleLexer::skipComments() const
2008-12-02 14:09:21 +01:00
{
return _skipComments;
}
2008-12-02 12:01:29 +01:00
void SimpleLexer::setSkipComments(bool skipComments)
2008-12-02 14:09:21 +01:00
{
_skipComments = skipComments;
}
2008-12-02 12:01:29 +01:00
bool SimpleLexer::endedJoined() const
{
return _endedJoined;
}
2010-06-29 17:57:15 +02:00
QList<Token> SimpleLexer::operator()(const QString &text, int state)
2008-12-02 12:01:29 +01:00
{
2010-06-29 17:57:15 +02:00
QList<Token> tokens;
2008-12-02 12:01:29 +01:00
const QByteArray bytes = text.toLatin1();
const char *firstChar = bytes.constData();
const char *lastChar = firstChar + bytes.size();
Lexer lex(firstChar, lastChar);
lex.setQtMocRunEnabled(_qtMocRunEnabled);
2009-01-09 16:55:25 +01:00
lex.setObjCEnabled(_objCEnabled);
lex.setStartWithNewline(true);
2010-06-29 17:57:15 +02:00
lex.setObjCEnabled(_objCEnabled);
2008-12-02 12:01:29 +01:00
if (! _skipComments)
lex.setScanCommentTokens(true);
if (state != -1)
lex.setState(state & 0xff);
bool inPreproc = false;
for (;;) {
Token tk;
lex(&tk);
if (tk.is(T_EOF_SYMBOL)) {
_endedJoined = tk.joined();
2008-12-02 12:01:29 +01:00
break;
}
2008-12-02 12:01:29 +01:00
QStringRef spell = text.midRef(lex.tokenOffset(), lex.tokenLength());
2008-12-02 12:01:29 +01:00
lex.setScanAngleStringLiteralTokens(false);
if (tk.f.newline && tk.is(T_POUND))
2008-12-02 12:01:29 +01:00
inPreproc = true;
2010-06-29 17:57:15 +02:00
else if (inPreproc && tokens.size() == 1 && tk.is(T_IDENTIFIER) &&
spell == QLatin1String("include"))
2008-12-02 12:01:29 +01:00
lex.setScanAngleStringLiteralTokens(true);
else if (_objCEnabled
2010-06-29 17:57:15 +02:00
&& inPreproc && tokens.size() == 1 && tk.is(T_IDENTIFIER) &&
spell == QLatin1String("import"))
lex.setScanAngleStringLiteralTokens(true);
2008-12-02 12:01:29 +01:00
2010-06-29 17:57:15 +02:00
tokens.append(tk);
2008-12-02 12:01:29 +01:00
}
_lastState = lex.state();
return tokens;
}
2010-06-29 17:57:15 +02:00
int SimpleLexer::tokenAt(const QList<Token> &tokens, unsigned offset)
2010-06-29 17:47:59 +02:00
{
for (int index = tokens.size() - 1; index >= 0; --index) {
2010-06-29 17:57:15 +02:00
const Token &tk = tokens.at(index);
if (tk.begin() <= offset && tk.end() >= offset)
2010-06-29 17:47:59 +02:00
return index;
}
return -1;
}
2008-12-02 12:01:29 +01:00
2010-06-29 17:57:15 +02:00
Token SimpleLexer::tokenAt(const QString &text,
unsigned offset,
int state,
bool qtMocRunEnabled)
2010-06-29 17:47:59 +02:00
{
SimpleLexer tokenize;
tokenize.setQtMocRunEnabled(qtMocRunEnabled);
2010-06-29 17:57:15 +02:00
const QList<Token> tokens = tokenize(text, state);
2010-06-29 17:47:59 +02:00
const int tokenIdx = tokenAt(tokens, offset);
2010-06-29 17:57:15 +02:00
return (tokenIdx == -1) ? Token() : tokens.at(tokenIdx);
2010-06-29 17:47:59 +02:00
}
2010-06-29 17:57:15 +02:00
int SimpleLexer::tokenBefore(const QList<Token> &tokens, unsigned offset)
2010-06-29 17:47:59 +02:00
{
for (int index = tokens.size() - 1; index >= 0; --index) {
2010-06-29 17:57:15 +02:00
const Token &tk = tokens.at(index);
2010-07-06 10:57:39 +02:00
if (tk.begin() < offset)
2010-06-29 17:47:59 +02:00
return index;
}
return -1;
}