2022-08-19 15:59:36 +02:00
|
|
|
// Copyright (C) 2016 The Qt Company Ltd.
|
2022-12-21 10:12:09 +01:00
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
|
2013-01-14 23:11:10 +04:00
|
|
|
|
2016-03-18 07:55:01 +01:00
|
|
|
#pragma once
|
2013-01-14 23:11:10 +04:00
|
|
|
|
|
|
|
|
#include "pythonformattoken.h"
|
|
|
|
|
|
|
|
|
|
#include <QString>
|
|
|
|
|
|
2022-07-15 11:49:34 +02:00
|
|
|
namespace Python::Internal {
|
2013-01-14 23:11:10 +04:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @brief The Scanner class - scans source code for highlighting only
|
|
|
|
|
*/
|
|
|
|
|
class Scanner
|
|
|
|
|
{
|
2018-11-23 23:23:01 +01:00
|
|
|
public:
|
2016-08-03 00:07:44 +02:00
|
|
|
Scanner(const Scanner &other) = delete;
|
|
|
|
|
void operator=(const Scanner &other) = delete;
|
2013-01-14 23:11:10 +04:00
|
|
|
|
|
|
|
|
enum State {
|
|
|
|
|
State_Default,
|
|
|
|
|
State_String,
|
|
|
|
|
State_MultiLineString
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
Scanner(const QChar *text, const int length);
|
|
|
|
|
|
|
|
|
|
void setState(int state);
|
|
|
|
|
int state() const;
|
|
|
|
|
FormatToken read();
|
|
|
|
|
QString value(const FormatToken& tk) const;
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
FormatToken onDefaultState();
|
|
|
|
|
|
|
|
|
|
void checkEscapeSequence(QChar quoteChar);
|
|
|
|
|
FormatToken readStringLiteral(QChar quoteChar);
|
|
|
|
|
FormatToken readMultiLineStringLiteral(QChar quoteChar);
|
|
|
|
|
FormatToken readIdentifier();
|
|
|
|
|
FormatToken readNumber();
|
|
|
|
|
FormatToken readFloatNumber();
|
|
|
|
|
FormatToken readComment();
|
|
|
|
|
FormatToken readDoxygenComment();
|
|
|
|
|
FormatToken readWhiteSpace();
|
|
|
|
|
FormatToken readOperator();
|
2020-07-03 14:14:05 +02:00
|
|
|
FormatToken readBrace(bool isOpening);
|
2013-01-14 23:11:10 +04:00
|
|
|
|
|
|
|
|
void clearState();
|
|
|
|
|
void saveState(State state, QChar savedData);
|
|
|
|
|
void parseState(State &state, QChar &savedData) const;
|
|
|
|
|
|
2016-08-03 00:07:44 +02:00
|
|
|
void setAnchor() { m_markedPosition = m_position; }
|
|
|
|
|
void move() { ++m_position; }
|
|
|
|
|
int length() const { return m_position - m_markedPosition; }
|
|
|
|
|
int anchor() const { return m_markedPosition; }
|
|
|
|
|
bool isEnd() const { return m_position >= m_textLength; }
|
|
|
|
|
|
|
|
|
|
QChar peek(int offset = 0) const
|
|
|
|
|
{
|
|
|
|
|
int pos = m_position + offset;
|
|
|
|
|
if (pos >= m_textLength)
|
|
|
|
|
return QLatin1Char('\0');
|
|
|
|
|
return m_text[pos];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const QChar *m_text;
|
|
|
|
|
const int m_textLength;
|
|
|
|
|
int m_position = 0;
|
|
|
|
|
int m_markedPosition = 0;
|
|
|
|
|
|
2013-01-14 23:11:10 +04:00
|
|
|
int m_state;
|
|
|
|
|
};
|
|
|
|
|
|
2022-07-15 11:49:34 +02:00
|
|
|
} // Python::Internal
|