2010-08-21 23:59:56 +00:00
|
|
|
// Scintilla source code edit control
|
|
|
|
/** @file LexCPP.cxx
|
|
|
|
** Lexer for C++, C, Java, and JavaScript.
|
2011-03-22 00:16:49 +00:00
|
|
|
** Further folding features and configuration properties added by "Udo Lechner" <dlchnr(at)gmx(dot)net>
|
2010-08-21 23:59:56 +00:00
|
|
|
**/
|
|
|
|
// Copyright 1998-2005 by Neil Hodgson <neilh@scintilla.org>
|
|
|
|
// The License.txt file describes the conditions under which this software may be distributed.
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdarg.h>
|
|
|
|
#include <assert.h>
|
2015-06-07 21:19:26 +00:00
|
|
|
#include <ctype.h>
|
2010-08-21 23:59:56 +00:00
|
|
|
|
2019-05-04 18:14:48 +00:00
|
|
|
#include <utility>
|
2010-08-21 23:59:56 +00:00
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
|
|
|
#include <map>
|
|
|
|
#include <algorithm>
|
2019-07-21 13:26:02 +00:00
|
|
|
#include <iterator>
|
2010-08-21 23:59:56 +00:00
|
|
|
|
|
|
|
#include "ILexer.h"
|
|
|
|
#include "Scintilla.h"
|
|
|
|
#include "SciLexer.h"
|
|
|
|
|
2019-05-04 18:14:48 +00:00
|
|
|
#include "StringCopy.h"
|
2010-08-21 23:59:56 +00:00
|
|
|
#include "WordList.h"
|
|
|
|
#include "LexAccessor.h"
|
|
|
|
#include "Accessor.h"
|
|
|
|
#include "StyleContext.h"
|
|
|
|
#include "CharacterSet.h"
|
|
|
|
#include "LexerModule.h"
|
|
|
|
#include "OptionSet.h"
|
2011-03-22 00:16:49 +00:00
|
|
|
#include "SparseState.h"
|
2013-08-28 00:44:27 +00:00
|
|
|
#include "SubStyles.h"
|
2010-08-21 23:59:56 +00:00
|
|
|
|
|
|
|
using namespace Scintilla;
|
|
|
|
|
2015-06-07 21:19:26 +00:00
|
|
|
namespace {
|
|
|
|
// Use an unnamed namespace to protect the functions and classes from name conflicts
|
|
|
|
|
2019-07-21 13:26:02 +00:00
|
|
|
constexpr bool IsSpaceEquiv(int state) noexcept {
|
2010-08-21 23:59:56 +00:00
|
|
|
return (state <= SCE_C_COMMENTDOC) ||
|
|
|
|
// including SCE_C_DEFAULT, SCE_C_COMMENT, SCE_C_COMMENTLINE
|
|
|
|
(state == SCE_C_COMMENTLINEDOC) || (state == SCE_C_COMMENTDOCKEYWORD) ||
|
|
|
|
(state == SCE_C_COMMENTDOCKEYWORDERROR);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Preconditions: sc.currentPos points to a character after '+' or '-'.
|
|
|
|
// The test for pos reaching 0 should be redundant,
|
|
|
|
// and is in only for safety measures.
|
|
|
|
// Limitation: this code will give the incorrect answer for code like
|
|
|
|
// a = b+++/ptn/...
|
|
|
|
// Putting a space between the '++' post-inc operator and the '+' binary op
|
|
|
|
// fixes this, and is highly recommended for readability anyway.
|
2019-05-04 18:14:48 +00:00
|
|
|
bool FollowsPostfixOperator(const StyleContext &sc, LexAccessor &styler) {
|
|
|
|
Sci_Position pos = sc.currentPos;
|
2010-08-21 23:59:56 +00:00
|
|
|
while (--pos > 0) {
|
2019-05-04 18:14:48 +00:00
|
|
|
const char ch = styler[pos];
|
2010-08-21 23:59:56 +00:00
|
|
|
if (ch == '+' || ch == '-') {
|
|
|
|
return styler[pos - 1] == ch;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2019-05-04 18:14:48 +00:00
|
|
|
bool followsReturnKeyword(const StyleContext &sc, LexAccessor &styler) {
|
2011-03-22 00:16:49 +00:00
|
|
|
// Don't look at styles, so no need to flush.
|
2019-05-04 18:14:48 +00:00
|
|
|
Sci_Position pos = sc.currentPos;
|
|
|
|
const Sci_Position currentLine = styler.GetLine(pos);
|
|
|
|
const Sci_Position lineStartPos = styler.LineStart(currentLine);
|
2011-03-22 00:16:49 +00:00
|
|
|
while (--pos > lineStartPos) {
|
2019-05-04 18:14:48 +00:00
|
|
|
const char ch = styler.SafeGetCharAt(pos);
|
2011-03-22 00:16:49 +00:00
|
|
|
if (ch != ' ' && ch != '\t') {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
const char *retBack = "nruter";
|
|
|
|
const char *s = retBack;
|
|
|
|
while (*s
|
|
|
|
&& pos >= lineStartPos
|
|
|
|
&& styler.SafeGetCharAt(pos) == *s) {
|
|
|
|
s++;
|
|
|
|
pos--;
|
|
|
|
}
|
|
|
|
return !*s;
|
|
|
|
}
|
|
|
|
|
2019-07-21 13:26:02 +00:00
|
|
|
constexpr bool IsSpaceOrTab(int ch) noexcept {
|
2015-06-07 21:19:26 +00:00
|
|
|
return ch == ' ' || ch == '\t';
|
|
|
|
}
|
|
|
|
|
2019-05-04 18:14:48 +00:00
|
|
|
bool OnlySpaceOrTab(const std::string &s) noexcept {
|
|
|
|
for (const char ch : s) {
|
|
|
|
if (!IsSpaceOrTab(ch))
|
2015-06-07 21:19:26 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::vector<std::string> StringSplit(const std::string &text, int separator) {
|
|
|
|
std::vector<std::string> vs(text.empty() ? 0 : 1);
|
2019-05-04 18:14:48 +00:00
|
|
|
for (const char ch : text) {
|
|
|
|
if (ch == separator) {
|
|
|
|
vs.emplace_back();
|
2015-06-07 21:19:26 +00:00
|
|
|
} else {
|
2019-05-04 18:14:48 +00:00
|
|
|
vs.back() += ch;
|
2015-06-07 21:19:26 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return vs;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct BracketPair {
|
|
|
|
std::vector<std::string>::iterator itBracket;
|
|
|
|
std::vector<std::string>::iterator itEndBracket;
|
|
|
|
};
|
|
|
|
|
|
|
|
BracketPair FindBracketPair(std::vector<std::string> &tokens) {
|
|
|
|
BracketPair bp;
|
|
|
|
std::vector<std::string>::iterator itTok = std::find(tokens.begin(), tokens.end(), "(");
|
|
|
|
bp.itBracket = tokens.end();
|
|
|
|
bp.itEndBracket = tokens.end();
|
|
|
|
if (itTok != tokens.end()) {
|
|
|
|
bp.itBracket = itTok;
|
|
|
|
size_t nest = 0;
|
|
|
|
while (itTok != tokens.end()) {
|
|
|
|
if (*itTok == "(") {
|
|
|
|
nest++;
|
|
|
|
} else if (*itTok == ")") {
|
|
|
|
nest--;
|
|
|
|
if (nest == 0) {
|
|
|
|
bp.itEndBracket = itTok;
|
|
|
|
return bp;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
++itTok;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
bp.itBracket = tokens.end();
|
|
|
|
return bp;
|
|
|
|
}
|
|
|
|
|
|
|
|
void highlightTaskMarker(StyleContext &sc, LexAccessor &styler,
|
2019-05-04 18:14:48 +00:00
|
|
|
int activity, const WordList &markerList, bool caseSensitive){
|
2015-06-07 21:19:26 +00:00
|
|
|
if ((isoperator(sc.chPrev) || IsASpace(sc.chPrev)) && markerList.Length()) {
|
|
|
|
const int lengthMarker = 50;
|
2019-05-04 18:14:48 +00:00
|
|
|
char marker[lengthMarker+1] = "";
|
2019-07-21 13:26:02 +00:00
|
|
|
const Sci_Position currPos = sc.currentPos;
|
2015-06-07 21:19:26 +00:00
|
|
|
int i = 0;
|
|
|
|
while (i < lengthMarker) {
|
2019-05-04 18:14:48 +00:00
|
|
|
const char ch = styler.SafeGetCharAt(currPos + i);
|
2015-06-07 21:19:26 +00:00
|
|
|
if (IsASpace(ch) || isoperator(ch)) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (caseSensitive)
|
|
|
|
marker[i] = ch;
|
|
|
|
else
|
2019-05-04 18:14:48 +00:00
|
|
|
marker[i] = MakeLowerCase(ch);
|
2015-06-07 21:19:26 +00:00
|
|
|
i++;
|
|
|
|
}
|
|
|
|
marker[i] = '\0';
|
|
|
|
if (markerList.InList(marker)) {
|
|
|
|
sc.SetState(SCE_C_TASKMARKER|activity);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
struct EscapeSequence {
|
|
|
|
int digitsLeft;
|
|
|
|
CharacterSet setHexDigits;
|
|
|
|
CharacterSet setOctDigits;
|
|
|
|
CharacterSet setNoneNumeric;
|
|
|
|
CharacterSet *escapeSetValid;
|
|
|
|
EscapeSequence() {
|
|
|
|
digitsLeft = 0;
|
2019-07-21 13:26:02 +00:00
|
|
|
escapeSetValid = nullptr;
|
2015-06-07 21:19:26 +00:00
|
|
|
setHexDigits = CharacterSet(CharacterSet::setDigits, "ABCDEFabcdef");
|
|
|
|
setOctDigits = CharacterSet(CharacterSet::setNone, "01234567");
|
|
|
|
}
|
|
|
|
void resetEscapeState(int nextChar) {
|
|
|
|
digitsLeft = 0;
|
|
|
|
escapeSetValid = &setNoneNumeric;
|
|
|
|
if (nextChar == 'U') {
|
|
|
|
digitsLeft = 9;
|
|
|
|
escapeSetValid = &setHexDigits;
|
|
|
|
} else if (nextChar == 'u') {
|
|
|
|
digitsLeft = 5;
|
|
|
|
escapeSetValid = &setHexDigits;
|
|
|
|
} else if (nextChar == 'x') {
|
|
|
|
digitsLeft = 5;
|
|
|
|
escapeSetValid = &setHexDigits;
|
|
|
|
} else if (setOctDigits.Contains(nextChar)) {
|
|
|
|
digitsLeft = 3;
|
|
|
|
escapeSetValid = &setOctDigits;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
bool atEscapeEnd(int currChar) const {
|
|
|
|
return (digitsLeft <= 0) || !escapeSetValid->Contains(currChar);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2019-05-04 18:14:48 +00:00
|
|
|
std::string GetRestOfLine(LexAccessor &styler, Sci_Position start, bool allowSpace) {
|
2010-08-21 23:59:56 +00:00
|
|
|
std::string restOfLine;
|
2019-05-04 18:14:48 +00:00
|
|
|
Sci_Position line = styler.GetLine(start);
|
|
|
|
Sci_Position pos = start;
|
|
|
|
Sci_Position endLine = styler.LineEnd(line);
|
2013-08-28 00:44:27 +00:00
|
|
|
char ch = styler.SafeGetCharAt(start, '\n');
|
2019-05-04 18:14:48 +00:00
|
|
|
while (pos < endLine) {
|
|
|
|
if (ch == '\\' && ((pos + 1) == endLine)) {
|
|
|
|
// Continuation line
|
|
|
|
line++;
|
|
|
|
pos = styler.LineStart(line);
|
|
|
|
endLine = styler.LineEnd(line);
|
|
|
|
ch = styler.SafeGetCharAt(pos, '\n');
|
|
|
|
} else {
|
|
|
|
const char chNext = styler.SafeGetCharAt(pos + 1, '\n');
|
|
|
|
if (ch == '/' && (chNext == '/' || chNext == '*'))
|
|
|
|
break;
|
|
|
|
if (allowSpace || (ch != ' ')) {
|
|
|
|
restOfLine += ch;
|
|
|
|
}
|
|
|
|
pos++;
|
|
|
|
ch = chNext;
|
|
|
|
}
|
2010-08-21 23:59:56 +00:00
|
|
|
}
|
|
|
|
return restOfLine;
|
|
|
|
}
|
|
|
|
|
2019-07-21 13:26:02 +00:00
|
|
|
constexpr bool IsStreamCommentStyle(int style) noexcept {
|
2010-08-21 23:59:56 +00:00
|
|
|
return style == SCE_C_COMMENT ||
|
|
|
|
style == SCE_C_COMMENTDOC ||
|
|
|
|
style == SCE_C_COMMENTDOCKEYWORD ||
|
|
|
|
style == SCE_C_COMMENTDOCKEYWORDERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct PPDefinition {
|
2019-05-04 18:14:48 +00:00
|
|
|
Sci_Position line;
|
2010-08-21 23:59:56 +00:00
|
|
|
std::string key;
|
|
|
|
std::string value;
|
2013-08-28 00:44:27 +00:00
|
|
|
bool isUndef;
|
2015-06-07 21:19:26 +00:00
|
|
|
std::string arguments;
|
2019-05-04 18:14:48 +00:00
|
|
|
PPDefinition(Sci_Position line_, const std::string &key_, const std::string &value_, bool isUndef_ = false, const std::string &arguments_="") :
|
2015-06-07 21:19:26 +00:00
|
|
|
line(line_), key(key_), value(value_), isUndef(isUndef_), arguments(arguments_) {
|
2010-08-21 23:59:56 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2019-07-21 13:26:02 +00:00
|
|
|
const int inactiveFlag = 0x40;
|
|
|
|
|
2010-08-21 23:59:56 +00:00
|
|
|
class LinePPState {
|
2019-07-21 13:26:02 +00:00
|
|
|
// Track the state of preprocessor conditionals to allow showing active and inactive
|
|
|
|
// code in different styles.
|
|
|
|
// Only works up to 31 levels of conditional nesting.
|
|
|
|
|
|
|
|
// state is a bit mask with 1 bit per level
|
|
|
|
// bit is 1 for level if section inactive, so any bits set = inactive style
|
|
|
|
int state = 0;
|
|
|
|
// ifTaken is a bit mask with 1 bit per level
|
|
|
|
// bit is 1 for level if some branch at this level has been taken
|
|
|
|
int ifTaken = 0;
|
|
|
|
// level is the nesting level of #if constructs
|
|
|
|
int level = -1;
|
|
|
|
static const int maximumNestingLevel = 31;
|
2019-05-04 18:14:48 +00:00
|
|
|
bool ValidLevel() const noexcept {
|
2019-07-21 13:26:02 +00:00
|
|
|
return level >= 0 && level < maximumNestingLevel;
|
2010-08-21 23:59:56 +00:00
|
|
|
}
|
2019-05-04 18:14:48 +00:00
|
|
|
int maskLevel() const noexcept {
|
|
|
|
if (level >= 0) {
|
|
|
|
return 1 << level;
|
|
|
|
} else {
|
|
|
|
return 1;
|
|
|
|
}
|
2010-08-21 23:59:56 +00:00
|
|
|
}
|
|
|
|
public:
|
2019-07-21 13:26:02 +00:00
|
|
|
LinePPState() noexcept {
|
|
|
|
}
|
|
|
|
bool IsActive() const noexcept {
|
|
|
|
return state == 0;
|
2010-08-21 23:59:56 +00:00
|
|
|
}
|
2019-05-04 18:14:48 +00:00
|
|
|
bool IsInactive() const noexcept {
|
2010-08-21 23:59:56 +00:00
|
|
|
return state != 0;
|
|
|
|
}
|
2019-07-21 13:26:02 +00:00
|
|
|
int ActiveState() const noexcept {
|
|
|
|
return state ? inactiveFlag : 0;
|
|
|
|
}
|
2019-05-04 18:14:48 +00:00
|
|
|
bool CurrentIfTaken() const noexcept {
|
2010-08-21 23:59:56 +00:00
|
|
|
return (ifTaken & maskLevel()) != 0;
|
|
|
|
}
|
2019-05-04 18:14:48 +00:00
|
|
|
void StartSection(bool on) noexcept {
|
2010-08-21 23:59:56 +00:00
|
|
|
level++;
|
|
|
|
if (ValidLevel()) {
|
|
|
|
if (on) {
|
|
|
|
state &= ~maskLevel();
|
|
|
|
ifTaken |= maskLevel();
|
|
|
|
} else {
|
|
|
|
state |= maskLevel();
|
|
|
|
ifTaken &= ~maskLevel();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-05-04 18:14:48 +00:00
|
|
|
void EndSection() noexcept {
|
2010-08-21 23:59:56 +00:00
|
|
|
if (ValidLevel()) {
|
|
|
|
state &= ~maskLevel();
|
|
|
|
ifTaken &= ~maskLevel();
|
|
|
|
}
|
|
|
|
level--;
|
|
|
|
}
|
2019-05-04 18:14:48 +00:00
|
|
|
void InvertCurrentLevel() noexcept {
|
2010-08-21 23:59:56 +00:00
|
|
|
if (ValidLevel()) {
|
|
|
|
state ^= maskLevel();
|
|
|
|
ifTaken |= maskLevel();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
// Hold the preprocessor state for each line seen.
|
|
|
|
// Currently one entry per line but could become sparse with just one entry per preprocessor line.
|
|
|
|
class PPStates {
|
|
|
|
std::vector<LinePPState> vlls;
|
|
|
|
public:
|
2019-05-04 18:14:48 +00:00
|
|
|
LinePPState ForLine(Sci_Position line) const {
|
2010-08-21 23:59:56 +00:00
|
|
|
if ((line > 0) && (vlls.size() > static_cast<size_t>(line))) {
|
|
|
|
return vlls[line];
|
|
|
|
} else {
|
|
|
|
return LinePPState();
|
|
|
|
}
|
|
|
|
}
|
2019-05-04 18:14:48 +00:00
|
|
|
void Add(Sci_Position line, LinePPState lls) {
|
2010-08-21 23:59:56 +00:00
|
|
|
vlls.resize(line+1);
|
|
|
|
vlls[line] = lls;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
// An individual named option for use in an OptionSet
|
|
|
|
|
|
|
|
// Options used for LexerCPP
|
|
|
|
struct OptionsCPP {
|
|
|
|
bool stylingWithinPreprocessor;
|
|
|
|
bool identifiersAllowDollars;
|
|
|
|
bool trackPreprocessor;
|
|
|
|
bool updatePreprocessor;
|
2015-06-07 21:19:26 +00:00
|
|
|
bool verbatimStringsAllowEscapes;
|
2011-07-17 22:30:49 +00:00
|
|
|
bool triplequotedStrings;
|
2013-08-28 00:44:27 +00:00
|
|
|
bool hashquotedStrings;
|
2015-06-07 21:19:26 +00:00
|
|
|
bool backQuotedStrings;
|
|
|
|
bool escapeSequence;
|
2010-09-05 22:56:27 +00:00
|
|
|
bool fold;
|
2011-03-22 00:16:49 +00:00
|
|
|
bool foldSyntaxBased;
|
2010-08-21 23:59:56 +00:00
|
|
|
bool foldComment;
|
2011-03-22 00:16:49 +00:00
|
|
|
bool foldCommentMultiline;
|
2010-08-21 23:59:56 +00:00
|
|
|
bool foldCommentExplicit;
|
2011-03-22 00:16:49 +00:00
|
|
|
std::string foldExplicitStart;
|
|
|
|
std::string foldExplicitEnd;
|
|
|
|
bool foldExplicitAnywhere;
|
2010-08-21 23:59:56 +00:00
|
|
|
bool foldPreprocessor;
|
2019-05-04 18:14:48 +00:00
|
|
|
bool foldPreprocessorAtElse;
|
2010-08-21 23:59:56 +00:00
|
|
|
bool foldCompact;
|
|
|
|
bool foldAtElse;
|
|
|
|
OptionsCPP() {
|
|
|
|
stylingWithinPreprocessor = false;
|
|
|
|
identifiersAllowDollars = true;
|
|
|
|
trackPreprocessor = true;
|
|
|
|
updatePreprocessor = true;
|
2015-06-07 21:19:26 +00:00
|
|
|
verbatimStringsAllowEscapes = false;
|
2011-07-17 22:30:49 +00:00
|
|
|
triplequotedStrings = false;
|
2013-08-28 00:44:27 +00:00
|
|
|
hashquotedStrings = false;
|
2015-06-07 21:19:26 +00:00
|
|
|
backQuotedStrings = false;
|
|
|
|
escapeSequence = false;
|
2010-09-05 22:56:27 +00:00
|
|
|
fold = false;
|
2011-03-22 00:16:49 +00:00
|
|
|
foldSyntaxBased = true;
|
2010-08-21 23:59:56 +00:00
|
|
|
foldComment = false;
|
2011-03-22 00:16:49 +00:00
|
|
|
foldCommentMultiline = true;
|
2010-08-21 23:59:56 +00:00
|
|
|
foldCommentExplicit = true;
|
2011-03-22 00:16:49 +00:00
|
|
|
foldExplicitStart = "";
|
|
|
|
foldExplicitEnd = "";
|
|
|
|
foldExplicitAnywhere = false;
|
2010-08-21 23:59:56 +00:00
|
|
|
foldPreprocessor = false;
|
2019-05-04 18:14:48 +00:00
|
|
|
foldPreprocessorAtElse = false;
|
2010-08-21 23:59:56 +00:00
|
|
|
foldCompact = false;
|
|
|
|
foldAtElse = false;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2015-06-07 21:19:26 +00:00
|
|
|
const char *const cppWordLists[] = {
|
2010-08-21 23:59:56 +00:00
|
|
|
"Primary keywords and identifiers",
|
|
|
|
"Secondary keywords and identifiers",
|
|
|
|
"Documentation comment keywords",
|
|
|
|
"Global classes and typedefs",
|
|
|
|
"Preprocessor definitions",
|
2015-06-07 21:19:26 +00:00
|
|
|
"Task marker and error marker keywords",
|
2019-07-21 13:26:02 +00:00
|
|
|
nullptr,
|
2010-08-21 23:59:56 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct OptionSetCPP : public OptionSet<OptionsCPP> {
|
|
|
|
OptionSetCPP() {
|
|
|
|
DefineProperty("styling.within.preprocessor", &OptionsCPP::stylingWithinPreprocessor,
|
|
|
|
"For C++ code, determines whether all preprocessor code is styled in the "
|
|
|
|
"preprocessor style (0, the default) or only from the initial # to the end "
|
|
|
|
"of the command word(1).");
|
|
|
|
|
|
|
|
DefineProperty("lexer.cpp.allow.dollars", &OptionsCPP::identifiersAllowDollars,
|
|
|
|
"Set to 0 to disallow the '$' character in identifiers with the cpp lexer.");
|
|
|
|
|
|
|
|
DefineProperty("lexer.cpp.track.preprocessor", &OptionsCPP::trackPreprocessor,
|
|
|
|
"Set to 1 to interpret #if/#else/#endif to grey out code that is not active.");
|
|
|
|
|
|
|
|
DefineProperty("lexer.cpp.update.preprocessor", &OptionsCPP::updatePreprocessor,
|
|
|
|
"Set to 1 to update preprocessor definitions when #define found.");
|
|
|
|
|
2015-06-07 21:19:26 +00:00
|
|
|
DefineProperty("lexer.cpp.verbatim.strings.allow.escapes", &OptionsCPP::verbatimStringsAllowEscapes,
|
|
|
|
"Set to 1 to allow verbatim strings to contain escape sequences.");
|
2019-05-04 18:14:48 +00:00
|
|
|
|
2011-07-17 22:30:49 +00:00
|
|
|
DefineProperty("lexer.cpp.triplequoted.strings", &OptionsCPP::triplequotedStrings,
|
|
|
|
"Set to 1 to enable highlighting of triple-quoted strings.");
|
|
|
|
|
2013-08-28 00:44:27 +00:00
|
|
|
DefineProperty("lexer.cpp.hashquoted.strings", &OptionsCPP::hashquotedStrings,
|
|
|
|
"Set to 1 to enable highlighting of hash-quoted strings.");
|
|
|
|
|
2015-06-07 21:19:26 +00:00
|
|
|
DefineProperty("lexer.cpp.backquoted.strings", &OptionsCPP::backQuotedStrings,
|
|
|
|
"Set to 1 to enable highlighting of back-quoted raw strings .");
|
|
|
|
|
|
|
|
DefineProperty("lexer.cpp.escape.sequence", &OptionsCPP::escapeSequence,
|
|
|
|
"Set to 1 to enable highlighting of escape sequences in strings");
|
|
|
|
|
2010-09-05 22:56:27 +00:00
|
|
|
DefineProperty("fold", &OptionsCPP::fold);
|
|
|
|
|
2011-03-22 00:16:49 +00:00
|
|
|
DefineProperty("fold.cpp.syntax.based", &OptionsCPP::foldSyntaxBased,
|
|
|
|
"Set this property to 0 to disable syntax based folding.");
|
|
|
|
|
2010-08-21 23:59:56 +00:00
|
|
|
DefineProperty("fold.comment", &OptionsCPP::foldComment,
|
|
|
|
"This option enables folding multi-line comments and explicit fold points when using the C++ lexer. "
|
|
|
|
"Explicit fold points allows adding extra folding by placing a //{ comment at the start and a //} "
|
|
|
|
"at the end of a section that should fold.");
|
|
|
|
|
2011-03-22 00:16:49 +00:00
|
|
|
DefineProperty("fold.cpp.comment.multiline", &OptionsCPP::foldCommentMultiline,
|
|
|
|
"Set this property to 0 to disable folding multi-line comments when fold.comment=1.");
|
|
|
|
|
2010-08-21 23:59:56 +00:00
|
|
|
DefineProperty("fold.cpp.comment.explicit", &OptionsCPP::foldCommentExplicit,
|
|
|
|
"Set this property to 0 to disable folding explicit fold points when fold.comment=1.");
|
|
|
|
|
2011-03-22 00:16:49 +00:00
|
|
|
DefineProperty("fold.cpp.explicit.start", &OptionsCPP::foldExplicitStart,
|
|
|
|
"The string to use for explicit fold start points, replacing the standard //{.");
|
|
|
|
|
|
|
|
DefineProperty("fold.cpp.explicit.end", &OptionsCPP::foldExplicitEnd,
|
|
|
|
"The string to use for explicit fold end points, replacing the standard //}.");
|
|
|
|
|
|
|
|
DefineProperty("fold.cpp.explicit.anywhere", &OptionsCPP::foldExplicitAnywhere,
|
|
|
|
"Set this property to 1 to enable explicit fold points anywhere, not just in line comments.");
|
|
|
|
|
2019-05-04 18:14:48 +00:00
|
|
|
DefineProperty("fold.cpp.preprocessor.at.else", &OptionsCPP::foldPreprocessorAtElse,
|
|
|
|
"This option enables folding on a preprocessor #else or #endif line of an #if statement.");
|
|
|
|
|
2010-08-21 23:59:56 +00:00
|
|
|
DefineProperty("fold.preprocessor", &OptionsCPP::foldPreprocessor,
|
|
|
|
"This option enables folding preprocessor directives when using the C++ lexer. "
|
|
|
|
"Includes C#'s explicit #region and #endregion folding directives.");
|
|
|
|
|
|
|
|
DefineProperty("fold.compact", &OptionsCPP::foldCompact);
|
|
|
|
|
|
|
|
DefineProperty("fold.at.else", &OptionsCPP::foldAtElse,
|
|
|
|
"This option enables C++ folding on a \"} else {\" line of an if statement.");
|
|
|
|
|
|
|
|
DefineWordListSets(cppWordLists);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2015-06-07 21:19:26 +00:00
|
|
|
const char styleSubable[] = {SCE_C_IDENTIFIER, SCE_C_COMMENTDOCKEYWORD, 0};
|
|
|
|
|
2019-05-04 18:14:48 +00:00
|
|
|
LexicalClass lexicalClasses[] = {
|
|
|
|
// Lexer Cpp SCLEX_CPP SCE_C_:
|
|
|
|
0, "SCE_C_DEFAULT", "default", "White space",
|
|
|
|
1, "SCE_C_COMMENT", "comment", "Comment: /* */.",
|
|
|
|
2, "SCE_C_COMMENTLINE", "comment line", "Line Comment: //.",
|
|
|
|
3, "SCE_C_COMMENTDOC", "comment documentation", "Doc comment: block comments beginning with /** or /*!",
|
|
|
|
4, "SCE_C_NUMBER", "literal numeric", "Number",
|
|
|
|
5, "SCE_C_WORD", "keyword", "Keyword",
|
|
|
|
6, "SCE_C_STRING", "literal string", "Double quoted string",
|
|
|
|
7, "SCE_C_CHARACTER", "literal string character", "Single quoted string",
|
|
|
|
8, "SCE_C_UUID", "literal uuid", "UUIDs (only in IDL)",
|
|
|
|
9, "SCE_C_PREPROCESSOR", "preprocessor", "Preprocessor",
|
|
|
|
10, "SCE_C_OPERATOR", "operator", "Operators",
|
|
|
|
11, "SCE_C_IDENTIFIER", "identifier", "Identifiers",
|
|
|
|
12, "SCE_C_STRINGEOL", "error literal string", "End of line where string is not closed",
|
|
|
|
13, "SCE_C_VERBATIM", "literal string multiline raw", "Verbatim strings for C#",
|
|
|
|
14, "SCE_C_REGEX", "literal regex", "Regular expressions for JavaScript",
|
|
|
|
15, "SCE_C_COMMENTLINEDOC", "comment documentation line", "Doc Comment Line: line comments beginning with /// or //!.",
|
|
|
|
16, "SCE_C_WORD2", "identifier", "Keywords2",
|
|
|
|
17, "SCE_C_COMMENTDOCKEYWORD", "comment documentation keyword", "Comment keyword",
|
|
|
|
18, "SCE_C_COMMENTDOCKEYWORDERROR", "error comment documentation keyword", "Comment keyword error",
|
|
|
|
19, "SCE_C_GLOBALCLASS", "identifier", "Global class",
|
|
|
|
20, "SCE_C_STRINGRAW", "literal string multiline raw", "Raw strings for C++0x",
|
|
|
|
21, "SCE_C_TRIPLEVERBATIM", "literal string multiline raw", "Triple-quoted strings for Vala",
|
|
|
|
22, "SCE_C_HASHQUOTEDSTRING", "literal string", "Hash-quoted strings for Pike",
|
|
|
|
23, "SCE_C_PREPROCESSORCOMMENT", "comment preprocessor", "Preprocessor stream comment",
|
|
|
|
24, "SCE_C_PREPROCESSORCOMMENTDOC", "comment preprocessor documentation", "Preprocessor stream doc comment",
|
|
|
|
25, "SCE_C_USERLITERAL", "literal", "User defined literals",
|
|
|
|
26, "SCE_C_TASKMARKER", "comment taskmarker", "Task Marker",
|
|
|
|
27, "SCE_C_ESCAPESEQUENCE", "literal string escapesequence", "Escape sequence",
|
|
|
|
};
|
|
|
|
|
2019-07-21 13:26:02 +00:00
|
|
|
const int sizeLexicalClasses = static_cast<int>(std::size(lexicalClasses));
|
|
|
|
|
2015-06-07 21:19:26 +00:00
|
|
|
}
|
2013-08-28 00:44:27 +00:00
|
|
|
|
2019-05-04 18:14:48 +00:00
|
|
|
class LexerCPP : public ILexer4 {
|
2010-08-21 23:59:56 +00:00
|
|
|
bool caseSensitive;
|
|
|
|
CharacterSet setWord;
|
|
|
|
CharacterSet setNegationOp;
|
2019-05-04 18:14:48 +00:00
|
|
|
CharacterSet setAddOp;
|
|
|
|
CharacterSet setMultOp;
|
2010-08-21 23:59:56 +00:00
|
|
|
CharacterSet setRelOp;
|
|
|
|
CharacterSet setLogicalOp;
|
2015-06-07 21:19:26 +00:00
|
|
|
CharacterSet setWordStart;
|
2010-08-21 23:59:56 +00:00
|
|
|
PPStates vlls;
|
|
|
|
std::vector<PPDefinition> ppDefineHistory;
|
|
|
|
WordList keywords;
|
|
|
|
WordList keywords2;
|
|
|
|
WordList keywords3;
|
|
|
|
WordList keywords4;
|
|
|
|
WordList ppDefinitions;
|
2015-06-07 21:19:26 +00:00
|
|
|
WordList markerList;
|
|
|
|
struct SymbolValue {
|
|
|
|
std::string value;
|
|
|
|
std::string arguments;
|
2019-07-21 13:26:02 +00:00
|
|
|
SymbolValue() noexcept = default;
|
|
|
|
SymbolValue(const std::string &value_, const std::string &arguments_) : value(value_), arguments(arguments_) {
|
2015-06-07 21:19:26 +00:00
|
|
|
}
|
|
|
|
SymbolValue &operator = (const std::string &value_) {
|
|
|
|
value = value_;
|
|
|
|
arguments.clear();
|
|
|
|
return *this;
|
|
|
|
}
|
2019-05-04 18:14:48 +00:00
|
|
|
bool IsMacro() const noexcept {
|
2015-06-07 21:19:26 +00:00
|
|
|
return !arguments.empty();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
typedef std::map<std::string, SymbolValue> SymbolTable;
|
|
|
|
SymbolTable preprocessorDefinitionsStart;
|
2010-08-21 23:59:56 +00:00
|
|
|
OptionsCPP options;
|
|
|
|
OptionSetCPP osCPP;
|
2015-06-07 21:19:26 +00:00
|
|
|
EscapeSequence escapeSeq;
|
2011-03-22 00:16:49 +00:00
|
|
|
SparseState<std::string> rawStringTerminators;
|
2013-08-28 00:44:27 +00:00
|
|
|
enum { ssIdentifier, ssDocKeyword };
|
|
|
|
SubStyles subStyles;
|
2019-05-04 18:14:48 +00:00
|
|
|
std::string returnBuffer;
|
2010-08-21 23:59:56 +00:00
|
|
|
public:
|
2015-06-07 21:19:26 +00:00
|
|
|
explicit LexerCPP(bool caseSensitive_) :
|
2010-08-21 23:59:56 +00:00
|
|
|
caseSensitive(caseSensitive_),
|
|
|
|
setWord(CharacterSet::setAlphaNum, "._", 0x80, true),
|
|
|
|
setNegationOp(CharacterSet::setNone, "!"),
|
2019-05-04 18:14:48 +00:00
|
|
|
setAddOp(CharacterSet::setNone, "+-"),
|
|
|
|
setMultOp(CharacterSet::setNone, "*/%"),
|
2010-08-21 23:59:56 +00:00
|
|
|
setRelOp(CharacterSet::setNone, "=!<>"),
|
2013-08-28 00:44:27 +00:00
|
|
|
setLogicalOp(CharacterSet::setNone, "|&"),
|
2019-07-21 13:26:02 +00:00
|
|
|
subStyles(styleSubable, 0x80, 0x40, inactiveFlag) {
|
2010-08-21 23:59:56 +00:00
|
|
|
}
|
2019-07-21 13:26:02 +00:00
|
|
|
// Deleted so LexerCPP objects can not be copied.
|
|
|
|
LexerCPP(const LexerCPP &) = delete;
|
|
|
|
LexerCPP(LexerCPP &&) = delete;
|
|
|
|
void operator=(const LexerCPP &) = delete;
|
|
|
|
void operator=(LexerCPP &&) = delete;
|
2013-08-28 00:44:27 +00:00
|
|
|
virtual ~LexerCPP() {
|
2010-08-21 23:59:56 +00:00
|
|
|
}
|
2019-07-21 13:26:02 +00:00
|
|
|
void SCI_METHOD Release() noexcept override {
|
2010-08-21 23:59:56 +00:00
|
|
|
delete this;
|
|
|
|
}
|
2019-07-21 13:26:02 +00:00
|
|
|
int SCI_METHOD Version() const noexcept override {
|
2019-05-04 18:14:48 +00:00
|
|
|
return lvRelease4;
|
2010-08-21 23:59:56 +00:00
|
|
|
}
|
2019-05-04 18:14:48 +00:00
|
|
|
const char * SCI_METHOD PropertyNames() override {
|
2010-08-21 23:59:56 +00:00
|
|
|
return osCPP.PropertyNames();
|
|
|
|
}
|
2019-05-04 18:14:48 +00:00
|
|
|
int SCI_METHOD PropertyType(const char *name) override {
|
2010-08-21 23:59:56 +00:00
|
|
|
return osCPP.PropertyType(name);
|
|
|
|
}
|
2019-05-04 18:14:48 +00:00
|
|
|
const char * SCI_METHOD DescribeProperty(const char *name) override {
|
2010-08-21 23:59:56 +00:00
|
|
|
return osCPP.DescribeProperty(name);
|
|
|
|
}
|
2019-05-04 18:14:48 +00:00
|
|
|
Sci_Position SCI_METHOD PropertySet(const char *key, const char *val) override;
|
|
|
|
const char * SCI_METHOD DescribeWordListSets() override {
|
2010-08-21 23:59:56 +00:00
|
|
|
return osCPP.DescribeWordListSets();
|
|
|
|
}
|
2019-05-04 18:14:48 +00:00
|
|
|
Sci_Position SCI_METHOD WordListSet(int n, const char *wl) override;
|
|
|
|
void SCI_METHOD Lex(Sci_PositionU startPos, Sci_Position length, int initStyle, IDocument *pAccess) override;
|
|
|
|
void SCI_METHOD Fold(Sci_PositionU startPos, Sci_Position length, int initStyle, IDocument *pAccess) override;
|
2010-08-21 23:59:56 +00:00
|
|
|
|
2019-07-21 13:26:02 +00:00
|
|
|
void * SCI_METHOD PrivateCall(int, void *) noexcept override {
|
|
|
|
return nullptr;
|
2010-08-21 23:59:56 +00:00
|
|
|
}
|
|
|
|
|
2019-07-21 13:26:02 +00:00
|
|
|
int SCI_METHOD LineEndTypesSupported() noexcept override {
|
2013-08-28 00:44:27 +00:00
|
|
|
return SC_LINE_END_TYPE_UNICODE;
|
2015-06-07 21:19:26 +00:00
|
|
|
}
|
2013-08-28 00:44:27 +00:00
|
|
|
|
2019-05-04 18:14:48 +00:00
|
|
|
int SCI_METHOD AllocateSubStyles(int styleBase, int numberStyles) override {
|
2013-08-28 00:44:27 +00:00
|
|
|
return subStyles.Allocate(styleBase, numberStyles);
|
|
|
|
}
|
2019-05-04 18:14:48 +00:00
|
|
|
int SCI_METHOD SubStylesStart(int styleBase) override {
|
2013-08-28 00:44:27 +00:00
|
|
|
return subStyles.Start(styleBase);
|
|
|
|
}
|
2019-05-04 18:14:48 +00:00
|
|
|
int SCI_METHOD SubStylesLength(int styleBase) override {
|
2013-08-28 00:44:27 +00:00
|
|
|
return subStyles.Length(styleBase);
|
|
|
|
}
|
2019-05-04 18:14:48 +00:00
|
|
|
int SCI_METHOD StyleFromSubStyle(int subStyle) override {
|
|
|
|
const int styleBase = subStyles.BaseStyle(MaskActive(subStyle));
|
2019-07-21 13:26:02 +00:00
|
|
|
const int inactive = subStyle & inactiveFlag;
|
|
|
|
return styleBase | inactive;
|
2015-06-07 21:19:26 +00:00
|
|
|
}
|
2019-07-21 13:26:02 +00:00
|
|
|
int SCI_METHOD PrimaryStyleFromStyle(int style) noexcept override {
|
2015-06-07 21:19:26 +00:00
|
|
|
return MaskActive(style);
|
2019-05-04 18:14:48 +00:00
|
|
|
}
|
|
|
|
void SCI_METHOD FreeSubStyles() override {
|
2013-08-28 00:44:27 +00:00
|
|
|
subStyles.Free();
|
|
|
|
}
|
2019-05-04 18:14:48 +00:00
|
|
|
void SCI_METHOD SetIdentifiers(int style, const char *identifiers) override {
|
2013-08-28 00:44:27 +00:00
|
|
|
subStyles.SetIdentifiers(style, identifiers);
|
|
|
|
}
|
2019-07-21 13:26:02 +00:00
|
|
|
int SCI_METHOD DistanceToSecondaryStyles() noexcept override {
|
|
|
|
return inactiveFlag;
|
2013-08-28 00:44:27 +00:00
|
|
|
}
|
2019-07-21 13:26:02 +00:00
|
|
|
const char * SCI_METHOD GetSubStyleBases() noexcept override {
|
2013-08-28 00:44:27 +00:00
|
|
|
return styleSubable;
|
|
|
|
}
|
2019-05-04 18:14:48 +00:00
|
|
|
int SCI_METHOD NamedStyles() override {
|
|
|
|
return std::max(subStyles.LastAllocated() + 1,
|
2019-07-21 13:26:02 +00:00
|
|
|
sizeLexicalClasses) +
|
|
|
|
inactiveFlag;
|
2019-05-04 18:14:48 +00:00
|
|
|
}
|
|
|
|
const char * SCI_METHOD NameOfStyle(int style) override {
|
|
|
|
if (style >= NamedStyles())
|
|
|
|
return "";
|
2019-07-21 13:26:02 +00:00
|
|
|
if (style < sizeLexicalClasses)
|
2019-05-04 18:14:48 +00:00
|
|
|
return lexicalClasses[style].name;
|
|
|
|
// TODO: inactive and substyles
|
|
|
|
return "";
|
|
|
|
}
|
|
|
|
const char * SCI_METHOD TagsOfStyle(int style) override {
|
|
|
|
if (style >= NamedStyles())
|
|
|
|
return "Excess";
|
|
|
|
returnBuffer.clear();
|
|
|
|
const int firstSubStyle = subStyles.FirstAllocated();
|
|
|
|
if (firstSubStyle >= 0) {
|
|
|
|
const int lastSubStyle = subStyles.LastAllocated();
|
|
|
|
if (((style >= firstSubStyle) && (style <= (lastSubStyle))) ||
|
2019-07-21 13:26:02 +00:00
|
|
|
((style >= firstSubStyle + inactiveFlag) && (style <= (lastSubStyle + inactiveFlag)))) {
|
2019-05-04 18:14:48 +00:00
|
|
|
int styleActive = style;
|
|
|
|
if (style > lastSubStyle) {
|
|
|
|
returnBuffer = "inactive ";
|
2019-07-21 13:26:02 +00:00
|
|
|
styleActive -= inactiveFlag;
|
2019-05-04 18:14:48 +00:00
|
|
|
}
|
|
|
|
const int styleMain = StyleFromSubStyle(styleActive);
|
|
|
|
returnBuffer += lexicalClasses[styleMain].tags;
|
|
|
|
return returnBuffer.c_str();
|
|
|
|
}
|
|
|
|
}
|
2019-07-21 13:26:02 +00:00
|
|
|
if (style < sizeLexicalClasses)
|
2019-05-04 18:14:48 +00:00
|
|
|
return lexicalClasses[style].tags;
|
2019-07-21 13:26:02 +00:00
|
|
|
if (style >= inactiveFlag) {
|
2019-05-04 18:14:48 +00:00
|
|
|
returnBuffer = "inactive ";
|
2019-07-21 13:26:02 +00:00
|
|
|
const int styleActive = style - inactiveFlag;
|
|
|
|
if (styleActive < sizeLexicalClasses)
|
2019-05-04 18:14:48 +00:00
|
|
|
returnBuffer += lexicalClasses[styleActive].tags;
|
|
|
|
else
|
|
|
|
returnBuffer = "";
|
|
|
|
return returnBuffer.c_str();
|
|
|
|
}
|
|
|
|
return "";
|
|
|
|
}
|
|
|
|
const char * SCI_METHOD DescriptionOfStyle(int style) override {
|
|
|
|
if (style >= NamedStyles())
|
|
|
|
return "";
|
2019-07-21 13:26:02 +00:00
|
|
|
if (style < sizeLexicalClasses)
|
2019-05-04 18:14:48 +00:00
|
|
|
return lexicalClasses[style].description;
|
|
|
|
// TODO: inactive and substyles
|
|
|
|
return "";
|
|
|
|
}
|
2013-08-28 00:44:27 +00:00
|
|
|
|
2019-05-04 18:14:48 +00:00
|
|
|
static ILexer4 *LexerFactoryCPP() {
|
2010-08-21 23:59:56 +00:00
|
|
|
return new LexerCPP(true);
|
|
|
|
}
|
2019-05-04 18:14:48 +00:00
|
|
|
static ILexer4 *LexerFactoryCPPInsensitive() {
|
2010-08-21 23:59:56 +00:00
|
|
|
return new LexerCPP(false);
|
|
|
|
}
|
2019-07-21 13:26:02 +00:00
|
|
|
constexpr static int MaskActive(int style) noexcept {
|
|
|
|
return style & ~inactiveFlag;
|
2011-07-17 22:30:49 +00:00
|
|
|
}
|
2015-06-07 21:19:26 +00:00
|
|
|
void EvaluateTokens(std::vector<std::string> &tokens, const SymbolTable &preprocessorDefinitions);
|
|
|
|
std::vector<std::string> Tokenize(const std::string &expr) const;
|
|
|
|
bool EvaluateExpression(const std::string &expr, const SymbolTable &preprocessorDefinitions);
|
2010-08-21 23:59:56 +00:00
|
|
|
};
|
|
|
|
|
2019-05-04 18:14:48 +00:00
|
|
|
Sci_Position SCI_METHOD LexerCPP::PropertySet(const char *key, const char *val) {
|
2010-08-21 23:59:56 +00:00
|
|
|
if (osCPP.PropertySet(&options, key, val)) {
|
2013-08-28 00:44:27 +00:00
|
|
|
if (strcmp(key, "lexer.cpp.allow.dollars") == 0) {
|
|
|
|
setWord = CharacterSet(CharacterSet::setAlphaNum, "._", 0x80, true);
|
|
|
|
if (options.identifiersAllowDollars) {
|
|
|
|
setWord.Add('$');
|
|
|
|
}
|
|
|
|
}
|
2010-08-21 23:59:56 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2019-05-04 18:14:48 +00:00
|
|
|
Sci_Position SCI_METHOD LexerCPP::WordListSet(int n, const char *wl) {
|
2019-07-21 13:26:02 +00:00
|
|
|
WordList *wordListN = nullptr;
|
2010-08-21 23:59:56 +00:00
|
|
|
switch (n) {
|
|
|
|
case 0:
|
|
|
|
wordListN = &keywords;
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
wordListN = &keywords2;
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
wordListN = &keywords3;
|
|
|
|
break;
|
|
|
|
case 3:
|
|
|
|
wordListN = &keywords4;
|
|
|
|
break;
|
|
|
|
case 4:
|
|
|
|
wordListN = &ppDefinitions;
|
|
|
|
break;
|
2015-06-07 21:19:26 +00:00
|
|
|
case 5:
|
|
|
|
wordListN = &markerList;
|
|
|
|
break;
|
2010-08-21 23:59:56 +00:00
|
|
|
}
|
2019-05-04 18:14:48 +00:00
|
|
|
Sci_Position firstModification = -1;
|
2010-08-21 23:59:56 +00:00
|
|
|
if (wordListN) {
|
|
|
|
WordList wlNew;
|
|
|
|
wlNew.Set(wl);
|
|
|
|
if (*wordListN != wlNew) {
|
|
|
|
wordListN->Set(wl);
|
|
|
|
firstModification = 0;
|
|
|
|
if (n == 4) {
|
|
|
|
// Rebuild preprocessorDefinitions
|
|
|
|
preprocessorDefinitionsStart.clear();
|
2013-08-28 00:44:27 +00:00
|
|
|
for (int nDefinition = 0; nDefinition < ppDefinitions.Length(); nDefinition++) {
|
|
|
|
const char *cpDefinition = ppDefinitions.WordAt(nDefinition);
|
|
|
|
const char *cpEquals = strchr(cpDefinition, '=');
|
2010-08-21 23:59:56 +00:00
|
|
|
if (cpEquals) {
|
|
|
|
std::string name(cpDefinition, cpEquals - cpDefinition);
|
|
|
|
std::string val(cpEquals+1);
|
2019-05-04 18:14:48 +00:00
|
|
|
const size_t bracket = name.find('(');
|
|
|
|
const size_t bracketEnd = name.find(')');
|
2015-06-07 21:19:26 +00:00
|
|
|
if ((bracket != std::string::npos) && (bracketEnd != std::string::npos)) {
|
|
|
|
// Macro
|
|
|
|
std::string args = name.substr(bracket + 1, bracketEnd - bracket - 1);
|
|
|
|
name = name.substr(0, bracket);
|
|
|
|
preprocessorDefinitionsStart[name] = SymbolValue(val, args);
|
|
|
|
} else {
|
|
|
|
preprocessorDefinitionsStart[name] = val;
|
|
|
|
}
|
2010-08-21 23:59:56 +00:00
|
|
|
} else {
|
|
|
|
std::string name(cpDefinition);
|
|
|
|
std::string val("1");
|
|
|
|
preprocessorDefinitionsStart[name] = val;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return firstModification;
|
|
|
|
}
|
|
|
|
|
2019-05-04 18:14:48 +00:00
|
|
|
void SCI_METHOD LexerCPP::Lex(Sci_PositionU startPos, Sci_Position length, int initStyle, IDocument *pAccess) {
|
2010-08-21 23:59:56 +00:00
|
|
|
LexAccessor styler(pAccess);
|
|
|
|
|
|
|
|
CharacterSet setOKBeforeRE(CharacterSet::setNone, "([{=,:;!%^&*|?~+-");
|
|
|
|
CharacterSet setCouldBePostOp(CharacterSet::setNone, "+-");
|
|
|
|
|
|
|
|
CharacterSet setDoxygen(CharacterSet::setAlpha, "$@\\&<>#{}[]");
|
|
|
|
|
2015-06-07 21:19:26 +00:00
|
|
|
setWordStart = CharacterSet(CharacterSet::setAlpha, "_", 0x80, true);
|
2010-08-21 23:59:56 +00:00
|
|
|
|
2013-08-28 00:44:27 +00:00
|
|
|
CharacterSet setInvalidRawFirst(CharacterSet::setNone, " )\\\t\v\f\n");
|
|
|
|
|
2010-08-21 23:59:56 +00:00
|
|
|
if (options.identifiersAllowDollars) {
|
|
|
|
setWordStart.Add('$');
|
|
|
|
}
|
|
|
|
|
|
|
|
int chPrevNonWhite = ' ';
|
|
|
|
int visibleChars = 0;
|
|
|
|
bool lastWordWasUUID = false;
|
|
|
|
int styleBeforeDCKeyword = SCE_C_DEFAULT;
|
2015-06-07 21:19:26 +00:00
|
|
|
int styleBeforeTaskMarker = SCE_C_DEFAULT;
|
2010-08-21 23:59:56 +00:00
|
|
|
bool continuationLine = false;
|
|
|
|
bool isIncludePreprocessor = false;
|
2013-08-28 00:44:27 +00:00
|
|
|
bool isStringInPreprocessor = false;
|
|
|
|
bool inRERange = false;
|
2015-06-07 21:19:26 +00:00
|
|
|
bool seenDocKeyBrace = false;
|
2010-08-21 23:59:56 +00:00
|
|
|
|
2019-05-04 18:14:48 +00:00
|
|
|
Sci_Position lineCurrent = styler.GetLine(startPos);
|
2013-08-28 00:44:27 +00:00
|
|
|
if ((MaskActive(initStyle) == SCE_C_PREPROCESSOR) ||
|
|
|
|
(MaskActive(initStyle) == SCE_C_COMMENTLINE) ||
|
|
|
|
(MaskActive(initStyle) == SCE_C_COMMENTLINEDOC)) {
|
2010-08-21 23:59:56 +00:00
|
|
|
// Set continuationLine if last character of previous line is '\'
|
|
|
|
if (lineCurrent > 0) {
|
2019-05-04 18:14:48 +00:00
|
|
|
const Sci_Position endLinePrevious = styler.LineEnd(lineCurrent - 1);
|
2013-08-28 00:44:27 +00:00
|
|
|
if (endLinePrevious > 0) {
|
|
|
|
continuationLine = styler.SafeGetCharAt(endLinePrevious-1) == '\\';
|
2010-08-21 23:59:56 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// look back to set chPrevNonWhite properly for better regex colouring
|
|
|
|
if (startPos > 0) {
|
2019-05-04 18:14:48 +00:00
|
|
|
Sci_Position back = startPos;
|
2013-08-28 00:44:27 +00:00
|
|
|
while (--back && IsSpaceEquiv(MaskActive(styler.StyleAt(back))))
|
2010-08-21 23:59:56 +00:00
|
|
|
;
|
2013-08-28 00:44:27 +00:00
|
|
|
if (MaskActive(styler.StyleAt(back)) == SCE_C_OPERATOR) {
|
2010-08-21 23:59:56 +00:00
|
|
|
chPrevNonWhite = styler.SafeGetCharAt(back);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-05-04 18:14:48 +00:00
|
|
|
StyleContext sc(startPos, length, initStyle, styler);
|
2010-08-21 23:59:56 +00:00
|
|
|
LinePPState preproc = vlls.ForLine(lineCurrent);
|
|
|
|
|
|
|
|
bool definitionsChanged = false;
|
|
|
|
|
|
|
|
// Truncate ppDefineHistory before current line
|
|
|
|
|
|
|
|
if (!options.updatePreprocessor)
|
|
|
|
ppDefineHistory.clear();
|
|
|
|
|
2019-05-04 18:14:48 +00:00
|
|
|
std::vector<PPDefinition>::iterator itInvalid = std::find_if(ppDefineHistory.begin(), ppDefineHistory.end(),
|
|
|
|
[lineCurrent](const PPDefinition &p) { return p.line >= lineCurrent; });
|
2010-08-21 23:59:56 +00:00
|
|
|
if (itInvalid != ppDefineHistory.end()) {
|
|
|
|
ppDefineHistory.erase(itInvalid, ppDefineHistory.end());
|
|
|
|
definitionsChanged = true;
|
|
|
|
}
|
|
|
|
|
2015-06-07 21:19:26 +00:00
|
|
|
SymbolTable preprocessorDefinitions = preprocessorDefinitionsStart;
|
2019-05-04 18:14:48 +00:00
|
|
|
for (const PPDefinition &ppDef : ppDefineHistory) {
|
|
|
|
if (ppDef.isUndef)
|
|
|
|
preprocessorDefinitions.erase(ppDef.key);
|
2013-08-28 00:44:27 +00:00
|
|
|
else
|
2019-05-04 18:14:48 +00:00
|
|
|
preprocessorDefinitions[ppDef.key] = SymbolValue(ppDef.value, ppDef.arguments);
|
2010-08-21 23:59:56 +00:00
|
|
|
}
|
|
|
|
|
2011-03-22 00:16:49 +00:00
|
|
|
std::string rawStringTerminator = rawStringTerminators.ValueAt(lineCurrent-1);
|
|
|
|
SparseState<std::string> rawSTNew(lineCurrent);
|
2010-08-21 23:59:56 +00:00
|
|
|
|
2019-07-21 13:26:02 +00:00
|
|
|
int activitySet = preproc.ActiveState();
|
2010-08-21 23:59:56 +00:00
|
|
|
|
2013-08-28 00:44:27 +00:00
|
|
|
const WordClassifier &classifierIdentifiers = subStyles.Classifier(SCE_C_IDENTIFIER);
|
|
|
|
const WordClassifier &classifierDocKeyWords = subStyles.Classifier(SCE_C_COMMENTDOCKEYWORD);
|
|
|
|
|
2019-07-21 13:26:02 +00:00
|
|
|
Sci_PositionU lineEndNext = styler.LineEnd(lineCurrent);
|
2013-08-28 00:44:27 +00:00
|
|
|
|
|
|
|
for (; sc.More();) {
|
2010-08-21 23:59:56 +00:00
|
|
|
|
|
|
|
if (sc.atLineStart) {
|
2013-08-28 00:44:27 +00:00
|
|
|
// Using MaskActive() is not needed in the following statement.
|
|
|
|
// Inside inactive preprocessor declaration, state will be reset anyway at the end of this block.
|
2011-03-22 00:16:49 +00:00
|
|
|
if ((sc.state == SCE_C_STRING) || (sc.state == SCE_C_CHARACTER)) {
|
2010-08-21 23:59:56 +00:00
|
|
|
// Prevent SCE_C_STRINGEOL from leaking back to previous line which
|
2015-06-07 21:19:26 +00:00
|
|
|
// ends with a line continuation by locking in the state up to this position.
|
2011-03-22 00:16:49 +00:00
|
|
|
sc.SetState(sc.state);
|
2010-08-21 23:59:56 +00:00
|
|
|
}
|
2013-08-28 00:44:27 +00:00
|
|
|
if ((MaskActive(sc.state) == SCE_C_PREPROCESSOR) && (!continuationLine)) {
|
|
|
|
sc.SetState(SCE_C_DEFAULT|activitySet);
|
|
|
|
}
|
2015-06-07 21:19:26 +00:00
|
|
|
// Reset states to beginning of colourise so no surprises
|
2010-08-21 23:59:56 +00:00
|
|
|
// if different sets of lines lexed.
|
|
|
|
visibleChars = 0;
|
|
|
|
lastWordWasUUID = false;
|
|
|
|
isIncludePreprocessor = false;
|
2013-08-28 00:44:27 +00:00
|
|
|
inRERange = false;
|
2010-08-21 23:59:56 +00:00
|
|
|
if (preproc.IsInactive()) {
|
2019-07-21 13:26:02 +00:00
|
|
|
activitySet = inactiveFlag;
|
2010-08-21 23:59:56 +00:00
|
|
|
sc.SetState(sc.state | activitySet);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (sc.atLineEnd) {
|
|
|
|
lineCurrent++;
|
2013-08-28 00:44:27 +00:00
|
|
|
lineEndNext = styler.LineEnd(lineCurrent);
|
2010-08-21 23:59:56 +00:00
|
|
|
vlls.Add(lineCurrent, preproc);
|
2011-03-22 00:16:49 +00:00
|
|
|
if (rawStringTerminator != "") {
|
|
|
|
rawSTNew.Set(lineCurrent-1, rawStringTerminator);
|
|
|
|
}
|
2010-08-21 23:59:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Handle line continuation generically.
|
|
|
|
if (sc.ch == '\\') {
|
2019-07-21 13:26:02 +00:00
|
|
|
if ((sc.currentPos+1) >= lineEndNext) {
|
2013-08-28 00:44:27 +00:00
|
|
|
lineCurrent++;
|
|
|
|
lineEndNext = styler.LineEnd(lineCurrent);
|
|
|
|
vlls.Add(lineCurrent, preproc);
|
2019-05-04 18:14:48 +00:00
|
|
|
if (rawStringTerminator != "") {
|
|
|
|
rawSTNew.Set(lineCurrent-1, rawStringTerminator);
|
|
|
|
}
|
2010-08-21 23:59:56 +00:00
|
|
|
sc.Forward();
|
|
|
|
if (sc.ch == '\r' && sc.chNext == '\n') {
|
2013-08-28 00:44:27 +00:00
|
|
|
// Even in UTF-8, \r and \n are separate
|
2010-08-21 23:59:56 +00:00
|
|
|
sc.Forward();
|
|
|
|
}
|
|
|
|
continuationLine = true;
|
2013-08-28 00:44:27 +00:00
|
|
|
sc.Forward();
|
2010-08-21 23:59:56 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-09-05 22:56:27 +00:00
|
|
|
const bool atLineEndBeforeSwitch = sc.atLineEnd;
|
|
|
|
|
2010-08-21 23:59:56 +00:00
|
|
|
// Determine if the current state should terminate.
|
2011-07-17 22:30:49 +00:00
|
|
|
switch (MaskActive(sc.state)) {
|
2010-08-21 23:59:56 +00:00
|
|
|
case SCE_C_OPERATOR:
|
|
|
|
sc.SetState(SCE_C_DEFAULT|activitySet);
|
|
|
|
break;
|
|
|
|
case SCE_C_NUMBER:
|
|
|
|
// We accept almost anything because of hex. and number suffixes
|
2015-06-07 21:19:26 +00:00
|
|
|
if (sc.ch == '_') {
|
|
|
|
sc.ChangeState(SCE_C_USERLITERAL|activitySet);
|
|
|
|
} else if (!(setWord.Contains(sc.ch)
|
|
|
|
|| (sc.ch == '\'')
|
2013-08-28 00:44:27 +00:00
|
|
|
|| ((sc.ch == '+' || sc.ch == '-') && (sc.chPrev == 'e' || sc.chPrev == 'E' ||
|
|
|
|
sc.chPrev == 'p' || sc.chPrev == 'P')))) {
|
2010-08-21 23:59:56 +00:00
|
|
|
sc.SetState(SCE_C_DEFAULT|activitySet);
|
|
|
|
}
|
|
|
|
break;
|
2015-06-07 21:19:26 +00:00
|
|
|
case SCE_C_USERLITERAL:
|
|
|
|
if (!(setWord.Contains(sc.ch)))
|
|
|
|
sc.SetState(SCE_C_DEFAULT|activitySet);
|
|
|
|
break;
|
2010-08-21 23:59:56 +00:00
|
|
|
case SCE_C_IDENTIFIER:
|
2013-08-28 00:44:27 +00:00
|
|
|
if (sc.atLineStart || sc.atLineEnd || !setWord.Contains(sc.ch) || (sc.ch == '.')) {
|
2010-08-21 23:59:56 +00:00
|
|
|
char s[1000];
|
|
|
|
if (caseSensitive) {
|
|
|
|
sc.GetCurrent(s, sizeof(s));
|
|
|
|
} else {
|
|
|
|
sc.GetCurrentLowered(s, sizeof(s));
|
|
|
|
}
|
|
|
|
if (keywords.InList(s)) {
|
|
|
|
lastWordWasUUID = strcmp(s, "uuid") == 0;
|
|
|
|
sc.ChangeState(SCE_C_WORD|activitySet);
|
|
|
|
} else if (keywords2.InList(s)) {
|
|
|
|
sc.ChangeState(SCE_C_WORD2|activitySet);
|
|
|
|
} else if (keywords4.InList(s)) {
|
|
|
|
sc.ChangeState(SCE_C_GLOBALCLASS|activitySet);
|
2013-08-28 00:44:27 +00:00
|
|
|
} else {
|
|
|
|
int subStyle = classifierIdentifiers.ValueFor(s);
|
|
|
|
if (subStyle >= 0) {
|
|
|
|
sc.ChangeState(subStyle|activitySet);
|
|
|
|
}
|
2010-08-21 23:59:56 +00:00
|
|
|
}
|
2011-03-22 00:16:49 +00:00
|
|
|
const bool literalString = sc.ch == '\"';
|
|
|
|
if (literalString || sc.ch == '\'') {
|
|
|
|
size_t lenS = strlen(s);
|
2013-08-28 00:44:27 +00:00
|
|
|
const bool raw = literalString && sc.chPrev == 'R' && !setInvalidRawFirst.Contains(sc.chNext);
|
2011-03-22 00:16:49 +00:00
|
|
|
if (raw)
|
|
|
|
s[lenS--] = '\0';
|
2019-05-04 18:14:48 +00:00
|
|
|
const bool valid =
|
2011-03-22 00:16:49 +00:00
|
|
|
(lenS == 0) ||
|
|
|
|
((lenS == 1) && ((s[0] == 'L') || (s[0] == 'u') || (s[0] == 'U'))) ||
|
|
|
|
((lenS == 2) && literalString && (s[0] == 'u') && (s[1] == '8'));
|
|
|
|
if (valid) {
|
2015-06-07 21:19:26 +00:00
|
|
|
if (literalString) {
|
|
|
|
if (raw) {
|
|
|
|
// Set the style of the string prefix to SCE_C_STRINGRAW but then change to
|
|
|
|
// SCE_C_DEFAULT as that allows the raw string start code to run.
|
|
|
|
sc.ChangeState(SCE_C_STRINGRAW|activitySet);
|
|
|
|
sc.SetState(SCE_C_DEFAULT|activitySet);
|
|
|
|
} else {
|
|
|
|
sc.ChangeState(SCE_C_STRING|activitySet);
|
|
|
|
}
|
|
|
|
} else {
|
2011-03-22 00:16:49 +00:00
|
|
|
sc.ChangeState(SCE_C_CHARACTER|activitySet);
|
2015-06-07 21:19:26 +00:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
sc.SetState(SCE_C_DEFAULT | activitySet);
|
2011-03-22 00:16:49 +00:00
|
|
|
}
|
2015-06-07 21:19:26 +00:00
|
|
|
} else {
|
|
|
|
sc.SetState(SCE_C_DEFAULT|activitySet);
|
2011-03-22 00:16:49 +00:00
|
|
|
}
|
2010-08-21 23:59:56 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case SCE_C_PREPROCESSOR:
|
2013-08-28 00:44:27 +00:00
|
|
|
if (options.stylingWithinPreprocessor) {
|
2019-05-04 18:14:48 +00:00
|
|
|
if (IsASpace(sc.ch) || (sc.ch == '(')) {
|
2010-08-21 23:59:56 +00:00
|
|
|
sc.SetState(SCE_C_DEFAULT|activitySet);
|
|
|
|
}
|
2015-06-07 21:19:26 +00:00
|
|
|
} else if (isStringInPreprocessor && (sc.Match('>') || sc.Match('\"') || sc.atLineEnd)) {
|
2013-08-28 00:44:27 +00:00
|
|
|
isStringInPreprocessor = false;
|
|
|
|
} else if (!isStringInPreprocessor) {
|
|
|
|
if ((isIncludePreprocessor && sc.Match('<')) || sc.Match('\"')) {
|
|
|
|
isStringInPreprocessor = true;
|
|
|
|
} else if (sc.Match('/', '*')) {
|
|
|
|
if (sc.Match("/**") || sc.Match("/*!")) {
|
|
|
|
sc.SetState(SCE_C_PREPROCESSORCOMMENTDOC|activitySet);
|
|
|
|
} else {
|
|
|
|
sc.SetState(SCE_C_PREPROCESSORCOMMENT|activitySet);
|
|
|
|
}
|
|
|
|
sc.Forward(); // Eat the *
|
|
|
|
} else if (sc.Match('/', '/')) {
|
2010-08-21 23:59:56 +00:00
|
|
|
sc.SetState(SCE_C_DEFAULT|activitySet);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
2013-08-28 00:44:27 +00:00
|
|
|
case SCE_C_PREPROCESSORCOMMENT:
|
|
|
|
case SCE_C_PREPROCESSORCOMMENTDOC:
|
|
|
|
if (sc.Match('*', '/')) {
|
|
|
|
sc.Forward();
|
|
|
|
sc.ForwardSetState(SCE_C_PREPROCESSOR|activitySet);
|
|
|
|
continue; // Without advancing in case of '\'.
|
|
|
|
}
|
|
|
|
break;
|
2010-08-21 23:59:56 +00:00
|
|
|
case SCE_C_COMMENT:
|
|
|
|
if (sc.Match('*', '/')) {
|
|
|
|
sc.Forward();
|
|
|
|
sc.ForwardSetState(SCE_C_DEFAULT|activitySet);
|
2015-06-07 21:19:26 +00:00
|
|
|
} else {
|
|
|
|
styleBeforeTaskMarker = SCE_C_COMMENT;
|
|
|
|
highlightTaskMarker(sc, styler, activitySet, markerList, caseSensitive);
|
2010-08-21 23:59:56 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case SCE_C_COMMENTDOC:
|
|
|
|
if (sc.Match('*', '/')) {
|
|
|
|
sc.Forward();
|
|
|
|
sc.ForwardSetState(SCE_C_DEFAULT|activitySet);
|
|
|
|
} else if (sc.ch == '@' || sc.ch == '\\') { // JavaDoc and Doxygen support
|
|
|
|
// Verify that we have the conditions to mark a comment-doc-keyword
|
|
|
|
if ((IsASpace(sc.chPrev) || sc.chPrev == '*') && (!IsASpace(sc.chNext))) {
|
|
|
|
styleBeforeDCKeyword = SCE_C_COMMENTDOC;
|
|
|
|
sc.SetState(SCE_C_COMMENTDOCKEYWORD|activitySet);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case SCE_C_COMMENTLINE:
|
2011-03-22 00:16:49 +00:00
|
|
|
if (sc.atLineStart && !continuationLine) {
|
2010-08-21 23:59:56 +00:00
|
|
|
sc.SetState(SCE_C_DEFAULT|activitySet);
|
2015-06-07 21:19:26 +00:00
|
|
|
} else {
|
|
|
|
styleBeforeTaskMarker = SCE_C_COMMENTLINE;
|
|
|
|
highlightTaskMarker(sc, styler, activitySet, markerList, caseSensitive);
|
2010-08-21 23:59:56 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case SCE_C_COMMENTLINEDOC:
|
2011-03-22 00:16:49 +00:00
|
|
|
if (sc.atLineStart && !continuationLine) {
|
2010-08-21 23:59:56 +00:00
|
|
|
sc.SetState(SCE_C_DEFAULT|activitySet);
|
|
|
|
} else if (sc.ch == '@' || sc.ch == '\\') { // JavaDoc and Doxygen support
|
|
|
|
// Verify that we have the conditions to mark a comment-doc-keyword
|
|
|
|
if ((IsASpace(sc.chPrev) || sc.chPrev == '/' || sc.chPrev == '!') && (!IsASpace(sc.chNext))) {
|
|
|
|
styleBeforeDCKeyword = SCE_C_COMMENTLINEDOC;
|
|
|
|
sc.SetState(SCE_C_COMMENTDOCKEYWORD|activitySet);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case SCE_C_COMMENTDOCKEYWORD:
|
|
|
|
if ((styleBeforeDCKeyword == SCE_C_COMMENTDOC) && sc.Match('*', '/')) {
|
|
|
|
sc.ChangeState(SCE_C_COMMENTDOCKEYWORDERROR);
|
|
|
|
sc.Forward();
|
|
|
|
sc.ForwardSetState(SCE_C_DEFAULT|activitySet);
|
2015-06-07 21:19:26 +00:00
|
|
|
seenDocKeyBrace = false;
|
|
|
|
} else if (sc.ch == '[' || sc.ch == '{') {
|
|
|
|
seenDocKeyBrace = true;
|
|
|
|
} else if (!setDoxygen.Contains(sc.ch)
|
|
|
|
&& !(seenDocKeyBrace && (sc.ch == ',' || sc.ch == '.'))) {
|
2010-08-21 23:59:56 +00:00
|
|
|
char s[100];
|
|
|
|
if (caseSensitive) {
|
|
|
|
sc.GetCurrent(s, sizeof(s));
|
|
|
|
} else {
|
|
|
|
sc.GetCurrentLowered(s, sizeof(s));
|
|
|
|
}
|
2015-06-07 21:19:26 +00:00
|
|
|
if (!(IsASpace(sc.ch) || (sc.ch == 0))) {
|
2010-08-21 23:59:56 +00:00
|
|
|
sc.ChangeState(SCE_C_COMMENTDOCKEYWORDERROR|activitySet);
|
2013-08-28 00:44:27 +00:00
|
|
|
} else if (!keywords3.InList(s + 1)) {
|
|
|
|
int subStyleCDKW = classifierDocKeyWords.ValueFor(s+1);
|
|
|
|
if (subStyleCDKW >= 0) {
|
|
|
|
sc.ChangeState(subStyleCDKW|activitySet);
|
|
|
|
} else {
|
|
|
|
sc.ChangeState(SCE_C_COMMENTDOCKEYWORDERROR|activitySet);
|
|
|
|
}
|
2010-08-21 23:59:56 +00:00
|
|
|
}
|
2013-08-28 00:44:27 +00:00
|
|
|
sc.SetState(styleBeforeDCKeyword|activitySet);
|
2015-06-07 21:19:26 +00:00
|
|
|
seenDocKeyBrace = false;
|
2010-08-21 23:59:56 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case SCE_C_STRING:
|
|
|
|
if (sc.atLineEnd) {
|
|
|
|
sc.ChangeState(SCE_C_STRINGEOL|activitySet);
|
|
|
|
} else if (isIncludePreprocessor) {
|
|
|
|
if (sc.ch == '>') {
|
|
|
|
sc.ForwardSetState(SCE_C_DEFAULT|activitySet);
|
|
|
|
isIncludePreprocessor = false;
|
|
|
|
}
|
|
|
|
} else if (sc.ch == '\\') {
|
2015-06-07 21:19:26 +00:00
|
|
|
if (options.escapeSequence) {
|
|
|
|
sc.SetState(SCE_C_ESCAPESEQUENCE|activitySet);
|
|
|
|
escapeSeq.resetEscapeState(sc.chNext);
|
2010-08-21 23:59:56 +00:00
|
|
|
}
|
2015-06-07 21:19:26 +00:00
|
|
|
sc.Forward(); // Skip all characters after the backslash
|
2010-08-21 23:59:56 +00:00
|
|
|
} else if (sc.ch == '\"') {
|
2015-06-07 21:19:26 +00:00
|
|
|
if (sc.chNext == '_') {
|
|
|
|
sc.ChangeState(SCE_C_USERLITERAL|activitySet);
|
|
|
|
} else {
|
|
|
|
sc.ForwardSetState(SCE_C_DEFAULT|activitySet);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case SCE_C_ESCAPESEQUENCE:
|
|
|
|
escapeSeq.digitsLeft--;
|
|
|
|
if (!escapeSeq.atEscapeEnd(sc.ch)) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (sc.ch == '"') {
|
|
|
|
sc.SetState(SCE_C_STRING|activitySet);
|
2010-08-21 23:59:56 +00:00
|
|
|
sc.ForwardSetState(SCE_C_DEFAULT|activitySet);
|
2015-06-07 21:19:26 +00:00
|
|
|
} else if (sc.ch == '\\') {
|
|
|
|
escapeSeq.resetEscapeState(sc.chNext);
|
|
|
|
sc.Forward();
|
|
|
|
} else {
|
|
|
|
sc.SetState(SCE_C_STRING|activitySet);
|
|
|
|
if (sc.atLineEnd) {
|
|
|
|
sc.ChangeState(SCE_C_STRINGEOL|activitySet);
|
|
|
|
}
|
2010-08-21 23:59:56 +00:00
|
|
|
}
|
|
|
|
break;
|
2013-08-28 00:44:27 +00:00
|
|
|
case SCE_C_HASHQUOTEDSTRING:
|
|
|
|
if (sc.ch == '\\') {
|
|
|
|
if (sc.chNext == '\"' || sc.chNext == '\'' || sc.chNext == '\\') {
|
|
|
|
sc.Forward();
|
|
|
|
}
|
|
|
|
} else if (sc.ch == '\"') {
|
|
|
|
sc.ForwardSetState(SCE_C_DEFAULT|activitySet);
|
|
|
|
}
|
|
|
|
break;
|
2011-03-22 00:16:49 +00:00
|
|
|
case SCE_C_STRINGRAW:
|
|
|
|
if (sc.Match(rawStringTerminator.c_str())) {
|
|
|
|
for (size_t termPos=rawStringTerminator.size(); termPos; termPos--)
|
|
|
|
sc.Forward();
|
|
|
|
sc.SetState(SCE_C_DEFAULT|activitySet);
|
|
|
|
rawStringTerminator = "";
|
|
|
|
}
|
|
|
|
break;
|
2010-08-21 23:59:56 +00:00
|
|
|
case SCE_C_CHARACTER:
|
|
|
|
if (sc.atLineEnd) {
|
|
|
|
sc.ChangeState(SCE_C_STRINGEOL|activitySet);
|
|
|
|
} else if (sc.ch == '\\') {
|
|
|
|
if (sc.chNext == '\"' || sc.chNext == '\'' || sc.chNext == '\\') {
|
|
|
|
sc.Forward();
|
|
|
|
}
|
|
|
|
} else if (sc.ch == '\'') {
|
2015-06-07 21:19:26 +00:00
|
|
|
if (sc.chNext == '_') {
|
|
|
|
sc.ChangeState(SCE_C_USERLITERAL|activitySet);
|
|
|
|
} else {
|
|
|
|
sc.ForwardSetState(SCE_C_DEFAULT|activitySet);
|
|
|
|
}
|
2010-08-21 23:59:56 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case SCE_C_REGEX:
|
|
|
|
if (sc.atLineStart) {
|
|
|
|
sc.SetState(SCE_C_DEFAULT|activitySet);
|
2013-08-28 00:44:27 +00:00
|
|
|
} else if (! inRERange && sc.ch == '/') {
|
2010-08-21 23:59:56 +00:00
|
|
|
sc.Forward();
|
|
|
|
while ((sc.ch < 0x80) && islower(sc.ch))
|
|
|
|
sc.Forward(); // gobble regex flags
|
|
|
|
sc.SetState(SCE_C_DEFAULT|activitySet);
|
2019-07-21 13:26:02 +00:00
|
|
|
} else if (sc.ch == '\\' && ((sc.currentPos+1) < lineEndNext)) {
|
2013-08-28 00:44:27 +00:00
|
|
|
// Gobble up the escaped character
|
|
|
|
sc.Forward();
|
|
|
|
} else if (sc.ch == '[') {
|
|
|
|
inRERange = true;
|
|
|
|
} else if (sc.ch == ']') {
|
|
|
|
inRERange = false;
|
2010-08-21 23:59:56 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case SCE_C_STRINGEOL:
|
|
|
|
if (sc.atLineStart) {
|
|
|
|
sc.SetState(SCE_C_DEFAULT|activitySet);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case SCE_C_VERBATIM:
|
2015-06-07 21:19:26 +00:00
|
|
|
if (options.verbatimStringsAllowEscapes && (sc.ch == '\\')) {
|
|
|
|
sc.Forward(); // Skip all characters after the backslash
|
|
|
|
} else if (sc.ch == '\"') {
|
2010-08-21 23:59:56 +00:00
|
|
|
if (sc.chNext == '\"') {
|
|
|
|
sc.Forward();
|
|
|
|
} else {
|
|
|
|
sc.ForwardSetState(SCE_C_DEFAULT|activitySet);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
2011-03-22 00:16:49 +00:00
|
|
|
case SCE_C_TRIPLEVERBATIM:
|
2019-05-04 18:14:48 +00:00
|
|
|
if (sc.Match(R"(""")")) {
|
2011-03-22 00:16:49 +00:00
|
|
|
while (sc.Match('"')) {
|
|
|
|
sc.Forward();
|
|
|
|
}
|
|
|
|
sc.SetState(SCE_C_DEFAULT|activitySet);
|
|
|
|
}
|
|
|
|
break;
|
2010-08-21 23:59:56 +00:00
|
|
|
case SCE_C_UUID:
|
2013-08-28 00:44:27 +00:00
|
|
|
if (sc.atLineEnd || sc.ch == ')') {
|
2010-08-21 23:59:56 +00:00
|
|
|
sc.SetState(SCE_C_DEFAULT|activitySet);
|
|
|
|
}
|
2015-06-07 21:19:26 +00:00
|
|
|
break;
|
|
|
|
case SCE_C_TASKMARKER:
|
|
|
|
if (isoperator(sc.ch) || IsASpace(sc.ch)) {
|
|
|
|
sc.SetState(styleBeforeTaskMarker|activitySet);
|
|
|
|
styleBeforeTaskMarker = SCE_C_DEFAULT;
|
|
|
|
}
|
2010-08-21 23:59:56 +00:00
|
|
|
}
|
|
|
|
|
2010-09-05 22:56:27 +00:00
|
|
|
if (sc.atLineEnd && !atLineEndBeforeSwitch) {
|
|
|
|
// State exit processing consumed characters up to end of line.
|
|
|
|
lineCurrent++;
|
2013-08-28 00:44:27 +00:00
|
|
|
lineEndNext = styler.LineEnd(lineCurrent);
|
2010-09-05 22:56:27 +00:00
|
|
|
vlls.Add(lineCurrent, preproc);
|
|
|
|
}
|
|
|
|
|
2010-08-21 23:59:56 +00:00
|
|
|
// Determine if a new state should be entered.
|
2011-07-17 22:30:49 +00:00
|
|
|
if (MaskActive(sc.state) == SCE_C_DEFAULT) {
|
2010-08-21 23:59:56 +00:00
|
|
|
if (sc.Match('@', '\"')) {
|
|
|
|
sc.SetState(SCE_C_VERBATIM|activitySet);
|
|
|
|
sc.Forward();
|
2019-05-04 18:14:48 +00:00
|
|
|
} else if (options.triplequotedStrings && sc.Match(R"(""")")) {
|
2011-03-22 00:16:49 +00:00
|
|
|
sc.SetState(SCE_C_TRIPLEVERBATIM|activitySet);
|
|
|
|
sc.Forward(2);
|
2013-08-28 00:44:27 +00:00
|
|
|
} else if (options.hashquotedStrings && sc.Match('#', '\"')) {
|
|
|
|
sc.SetState(SCE_C_HASHQUOTEDSTRING|activitySet);
|
|
|
|
sc.Forward();
|
2015-06-07 21:19:26 +00:00
|
|
|
} else if (options.backQuotedStrings && sc.Match('`')) {
|
|
|
|
sc.SetState(SCE_C_STRINGRAW|activitySet);
|
|
|
|
rawStringTerminator = "`";
|
2010-08-21 23:59:56 +00:00
|
|
|
} else if (IsADigit(sc.ch) || (sc.ch == '.' && IsADigit(sc.chNext))) {
|
|
|
|
if (lastWordWasUUID) {
|
|
|
|
sc.SetState(SCE_C_UUID|activitySet);
|
|
|
|
lastWordWasUUID = false;
|
|
|
|
} else {
|
|
|
|
sc.SetState(SCE_C_NUMBER|activitySet);
|
|
|
|
}
|
2013-08-28 00:44:27 +00:00
|
|
|
} else if (!sc.atLineEnd && (setWordStart.Contains(sc.ch) || (sc.ch == '@'))) {
|
2010-08-21 23:59:56 +00:00
|
|
|
if (lastWordWasUUID) {
|
|
|
|
sc.SetState(SCE_C_UUID|activitySet);
|
|
|
|
lastWordWasUUID = false;
|
|
|
|
} else {
|
|
|
|
sc.SetState(SCE_C_IDENTIFIER|activitySet);
|
|
|
|
}
|
|
|
|
} else if (sc.Match('/', '*')) {
|
|
|
|
if (sc.Match("/**") || sc.Match("/*!")) { // Support of Qt/Doxygen doc. style
|
|
|
|
sc.SetState(SCE_C_COMMENTDOC|activitySet);
|
|
|
|
} else {
|
|
|
|
sc.SetState(SCE_C_COMMENT|activitySet);
|
|
|
|
}
|
|
|
|
sc.Forward(); // Eat the * so it isn't used for the end of the comment
|
|
|
|
} else if (sc.Match('/', '/')) {
|
|
|
|
if ((sc.Match("///") && !sc.Match("////")) || sc.Match("//!"))
|
|
|
|
// Support of Qt/Doxygen doc. style
|
|
|
|
sc.SetState(SCE_C_COMMENTLINEDOC|activitySet);
|
|
|
|
else
|
|
|
|
sc.SetState(SCE_C_COMMENTLINE|activitySet);
|
2011-03-22 00:16:49 +00:00
|
|
|
} else if (sc.ch == '/'
|
|
|
|
&& (setOKBeforeRE.Contains(chPrevNonWhite)
|
|
|
|
|| followsReturnKeyword(sc, styler))
|
|
|
|
&& (!setCouldBePostOp.Contains(chPrevNonWhite)
|
|
|
|
|| !FollowsPostfixOperator(sc, styler))) {
|
2010-08-21 23:59:56 +00:00
|
|
|
sc.SetState(SCE_C_REGEX|activitySet); // JavaScript's RegEx
|
2013-08-28 00:44:27 +00:00
|
|
|
inRERange = false;
|
2010-08-21 23:59:56 +00:00
|
|
|
} else if (sc.ch == '\"') {
|
2011-03-22 00:16:49 +00:00
|
|
|
if (sc.chPrev == 'R') {
|
2013-08-28 00:44:27 +00:00
|
|
|
styler.Flush();
|
|
|
|
if (MaskActive(styler.StyleAt(sc.currentPos - 1)) == SCE_C_STRINGRAW) {
|
|
|
|
sc.SetState(SCE_C_STRINGRAW|activitySet);
|
|
|
|
rawStringTerminator = ")";
|
2019-05-04 18:14:48 +00:00
|
|
|
for (Sci_Position termPos = sc.currentPos + 1;; termPos++) {
|
|
|
|
const char chTerminator = styler.SafeGetCharAt(termPos, '(');
|
2013-08-28 00:44:27 +00:00
|
|
|
if (chTerminator == '(')
|
|
|
|
break;
|
|
|
|
rawStringTerminator += chTerminator;
|
|
|
|
}
|
|
|
|
rawStringTerminator += '\"';
|
|
|
|
} else {
|
|
|
|
sc.SetState(SCE_C_STRING|activitySet);
|
2011-03-22 00:16:49 +00:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
sc.SetState(SCE_C_STRING|activitySet);
|
|
|
|
}
|
2010-08-21 23:59:56 +00:00
|
|
|
isIncludePreprocessor = false; // ensure that '>' won't end the string
|
|
|
|
} else if (isIncludePreprocessor && sc.ch == '<') {
|
|
|
|
sc.SetState(SCE_C_STRING|activitySet);
|
|
|
|
} else if (sc.ch == '\'') {
|
|
|
|
sc.SetState(SCE_C_CHARACTER|activitySet);
|
|
|
|
} else if (sc.ch == '#' && visibleChars == 0) {
|
|
|
|
// Preprocessor commands are alone on their line
|
|
|
|
sc.SetState(SCE_C_PREPROCESSOR|activitySet);
|
|
|
|
// Skip whitespace between # and preprocessor word
|
|
|
|
do {
|
|
|
|
sc.Forward();
|
|
|
|
} while ((sc.ch == ' ' || sc.ch == '\t') && sc.More());
|
|
|
|
if (sc.atLineEnd) {
|
|
|
|
sc.SetState(SCE_C_DEFAULT|activitySet);
|
|
|
|
} else if (sc.Match("include")) {
|
|
|
|
isIncludePreprocessor = true;
|
|
|
|
} else {
|
|
|
|
if (options.trackPreprocessor) {
|
2019-07-21 13:26:02 +00:00
|
|
|
// If #if is nested too deeply (>31 levels) the active/inactive appearance
|
|
|
|
// will stop reflecting the code.
|
2010-08-21 23:59:56 +00:00
|
|
|
if (sc.Match("ifdef") || sc.Match("ifndef")) {
|
2019-05-04 18:14:48 +00:00
|
|
|
const bool isIfDef = sc.Match("ifdef");
|
|
|
|
const int startRest = isIfDef ? 5 : 6;
|
|
|
|
std::string restOfLine = GetRestOfLine(styler, sc.currentPos + startRest + 1, false);
|
2010-08-21 23:59:56 +00:00
|
|
|
bool foundDef = preprocessorDefinitions.find(restOfLine) != preprocessorDefinitions.end();
|
|
|
|
preproc.StartSection(isIfDef == foundDef);
|
|
|
|
} else if (sc.Match("if")) {
|
|
|
|
std::string restOfLine = GetRestOfLine(styler, sc.currentPos + 2, true);
|
2019-05-04 18:14:48 +00:00
|
|
|
const bool ifGood = EvaluateExpression(restOfLine, preprocessorDefinitions);
|
2010-08-21 23:59:56 +00:00
|
|
|
preproc.StartSection(ifGood);
|
|
|
|
} else if (sc.Match("else")) {
|
2019-07-21 13:26:02 +00:00
|
|
|
// #else is shown as active if either preceding or following section is active
|
|
|
|
// as that means that it contributed to the result.
|
2010-08-21 23:59:56 +00:00
|
|
|
if (!preproc.CurrentIfTaken()) {
|
2019-07-21 13:26:02 +00:00
|
|
|
// Inactive, may become active if parent scope active
|
|
|
|
assert(sc.state == (SCE_C_PREPROCESSOR|inactiveFlag));
|
2010-08-21 23:59:56 +00:00
|
|
|
preproc.InvertCurrentLevel();
|
2019-07-21 13:26:02 +00:00
|
|
|
activitySet = preproc.ActiveState();
|
|
|
|
// If following is active then show "else" as active
|
2010-08-21 23:59:56 +00:00
|
|
|
if (!activitySet)
|
2019-07-21 13:26:02 +00:00
|
|
|
sc.ChangeState(SCE_C_PREPROCESSOR);
|
|
|
|
} else if (preproc.IsActive()) {
|
|
|
|
// Active -> inactive
|
|
|
|
assert(sc.state == SCE_C_PREPROCESSOR);
|
2010-08-21 23:59:56 +00:00
|
|
|
preproc.InvertCurrentLevel();
|
2019-07-21 13:26:02 +00:00
|
|
|
activitySet = preproc.ActiveState();
|
|
|
|
// Continue to show "else" as active as it ends active section.
|
2010-08-21 23:59:56 +00:00
|
|
|
}
|
|
|
|
} else if (sc.Match("elif")) {
|
|
|
|
// Ensure only one chosen out of #if .. #elif .. #elif .. #else .. #endif
|
2019-07-21 13:26:02 +00:00
|
|
|
// #elif is shown as active if either preceding or following section is active
|
|
|
|
// as that means that it contributed to the result.
|
2010-08-21 23:59:56 +00:00
|
|
|
if (!preproc.CurrentIfTaken()) {
|
2019-07-21 13:26:02 +00:00
|
|
|
// Inactive, if expression true then may become active if parent scope active
|
|
|
|
assert(sc.state == (SCE_C_PREPROCESSOR|inactiveFlag));
|
2010-08-21 23:59:56 +00:00
|
|
|
// Similar to #if
|
2019-05-04 18:14:48 +00:00
|
|
|
std::string restOfLine = GetRestOfLine(styler, sc.currentPos + 4, true);
|
|
|
|
const bool ifGood = EvaluateExpression(restOfLine, preprocessorDefinitions);
|
2010-08-21 23:59:56 +00:00
|
|
|
if (ifGood) {
|
|
|
|
preproc.InvertCurrentLevel();
|
2019-07-21 13:26:02 +00:00
|
|
|
activitySet = preproc.ActiveState();
|
2010-08-21 23:59:56 +00:00
|
|
|
if (!activitySet)
|
2019-07-21 13:26:02 +00:00
|
|
|
sc.ChangeState(SCE_C_PREPROCESSOR);
|
2010-08-21 23:59:56 +00:00
|
|
|
}
|
2019-07-21 13:26:02 +00:00
|
|
|
} else if (preproc.IsActive()) {
|
|
|
|
// Active -> inactive
|
|
|
|
assert(sc.state == SCE_C_PREPROCESSOR);
|
2010-08-21 23:59:56 +00:00
|
|
|
preproc.InvertCurrentLevel();
|
2019-07-21 13:26:02 +00:00
|
|
|
activitySet = preproc.ActiveState();
|
|
|
|
// Continue to show "elif" as active as it ends active section.
|
2010-08-21 23:59:56 +00:00
|
|
|
}
|
|
|
|
} else if (sc.Match("endif")) {
|
|
|
|
preproc.EndSection();
|
2019-07-21 13:26:02 +00:00
|
|
|
activitySet = preproc.ActiveState();
|
2010-08-21 23:59:56 +00:00
|
|
|
sc.ChangeState(SCE_C_PREPROCESSOR|activitySet);
|
|
|
|
} else if (sc.Match("define")) {
|
2019-07-21 13:26:02 +00:00
|
|
|
if (options.updatePreprocessor && preproc.IsActive()) {
|
2010-08-21 23:59:56 +00:00
|
|
|
std::string restOfLine = GetRestOfLine(styler, sc.currentPos + 6, true);
|
2015-06-07 21:19:26 +00:00
|
|
|
size_t startName = 0;
|
|
|
|
while ((startName < restOfLine.length()) && IsSpaceOrTab(restOfLine[startName]))
|
|
|
|
startName++;
|
|
|
|
size_t endName = startName;
|
2019-07-21 13:26:02 +00:00
|
|
|
while ((endName < restOfLine.length()) && setWord.Contains(restOfLine[endName]))
|
2015-06-07 21:19:26 +00:00
|
|
|
endName++;
|
|
|
|
std::string key = restOfLine.substr(startName, endName-startName);
|
|
|
|
if ((endName < restOfLine.length()) && (restOfLine.at(endName) == '(')) {
|
|
|
|
// Macro
|
|
|
|
size_t endArgs = endName;
|
|
|
|
while ((endArgs < restOfLine.length()) && (restOfLine[endArgs] != ')'))
|
|
|
|
endArgs++;
|
|
|
|
std::string args = restOfLine.substr(endName + 1, endArgs - endName - 1);
|
|
|
|
size_t startValue = endArgs+1;
|
|
|
|
while ((startValue < restOfLine.length()) && IsSpaceOrTab(restOfLine[startValue]))
|
|
|
|
startValue++;
|
|
|
|
std::string value;
|
|
|
|
if (startValue < restOfLine.length())
|
|
|
|
value = restOfLine.substr(startValue);
|
|
|
|
preprocessorDefinitions[key] = SymbolValue(value, args);
|
|
|
|
ppDefineHistory.push_back(PPDefinition(lineCurrent, key, value, false, args));
|
|
|
|
definitionsChanged = true;
|
|
|
|
} else {
|
|
|
|
// Value
|
|
|
|
size_t startValue = endName;
|
|
|
|
while ((startValue < restOfLine.length()) && IsSpaceOrTab(restOfLine[startValue]))
|
|
|
|
startValue++;
|
|
|
|
std::string value = restOfLine.substr(startValue);
|
2019-05-04 18:14:48 +00:00
|
|
|
if (OnlySpaceOrTab(value))
|
|
|
|
value = "1"; // No value defaults to 1
|
2015-06-07 21:19:26 +00:00
|
|
|
preprocessorDefinitions[key] = value;
|
|
|
|
ppDefineHistory.push_back(PPDefinition(lineCurrent, key, value));
|
|
|
|
definitionsChanged = true;
|
2010-08-21 23:59:56 +00:00
|
|
|
}
|
|
|
|
}
|
2013-08-28 00:44:27 +00:00
|
|
|
} else if (sc.Match("undef")) {
|
2019-07-21 13:26:02 +00:00
|
|
|
if (options.updatePreprocessor && preproc.IsActive()) {
|
2015-06-07 21:19:26 +00:00
|
|
|
const std::string restOfLine = GetRestOfLine(styler, sc.currentPos + 5, false);
|
2013-08-28 00:44:27 +00:00
|
|
|
std::vector<std::string> tokens = Tokenize(restOfLine);
|
|
|
|
if (tokens.size() >= 1) {
|
2015-06-07 21:19:26 +00:00
|
|
|
const std::string key = tokens[0];
|
2013-08-28 00:44:27 +00:00
|
|
|
preprocessorDefinitions.erase(key);
|
|
|
|
ppDefineHistory.push_back(PPDefinition(lineCurrent, key, "", true));
|
|
|
|
definitionsChanged = true;
|
|
|
|
}
|
|
|
|
}
|
2010-08-21 23:59:56 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2013-08-28 00:44:27 +00:00
|
|
|
} else if (isoperator(sc.ch)) {
|
2010-08-21 23:59:56 +00:00
|
|
|
sc.SetState(SCE_C_OPERATOR|activitySet);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-08-28 00:44:27 +00:00
|
|
|
if (!IsASpace(sc.ch) && !IsSpaceEquiv(MaskActive(sc.state))) {
|
2010-08-21 23:59:56 +00:00
|
|
|
chPrevNonWhite = sc.ch;
|
|
|
|
visibleChars++;
|
|
|
|
}
|
|
|
|
continuationLine = false;
|
2013-08-28 00:44:27 +00:00
|
|
|
sc.Forward();
|
2010-08-21 23:59:56 +00:00
|
|
|
}
|
2011-03-22 00:16:49 +00:00
|
|
|
const bool rawStringsChanged = rawStringTerminators.Merge(rawSTNew, lineCurrent);
|
|
|
|
if (definitionsChanged || rawStringsChanged)
|
2010-08-21 23:59:56 +00:00
|
|
|
styler.ChangeLexerState(startPos, startPos + length);
|
|
|
|
sc.Complete();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Store both the current line's fold level and the next lines in the
|
|
|
|
// level store to make it easy to pick up with each increment
|
|
|
|
// and to make it possible to fiddle the current level for "} else {".
|
|
|
|
|
2019-05-04 18:14:48 +00:00
|
|
|
void SCI_METHOD LexerCPP::Fold(Sci_PositionU startPos, Sci_Position length, int initStyle, IDocument *pAccess) {
|
2010-08-21 23:59:56 +00:00
|
|
|
|
2010-09-05 22:56:27 +00:00
|
|
|
if (!options.fold)
|
|
|
|
return;
|
|
|
|
|
2010-08-21 23:59:56 +00:00
|
|
|
LexAccessor styler(pAccess);
|
|
|
|
|
2019-05-04 18:14:48 +00:00
|
|
|
const Sci_PositionU endPos = startPos + length;
|
2010-08-21 23:59:56 +00:00
|
|
|
int visibleChars = 0;
|
2013-08-28 00:44:27 +00:00
|
|
|
bool inLineComment = false;
|
2019-05-04 18:14:48 +00:00
|
|
|
Sci_Position lineCurrent = styler.GetLine(startPos);
|
2010-08-21 23:59:56 +00:00
|
|
|
int levelCurrent = SC_FOLDLEVELBASE;
|
|
|
|
if (lineCurrent > 0)
|
|
|
|
levelCurrent = styler.LevelAt(lineCurrent-1) >> 16;
|
2019-05-04 18:14:48 +00:00
|
|
|
Sci_PositionU lineStartNext = styler.LineStart(lineCurrent+1);
|
2010-08-21 23:59:56 +00:00
|
|
|
int levelMinCurrent = levelCurrent;
|
|
|
|
int levelNext = levelCurrent;
|
|
|
|
char chNext = styler[startPos];
|
2011-07-17 22:30:49 +00:00
|
|
|
int styleNext = MaskActive(styler.StyleAt(startPos));
|
|
|
|
int style = MaskActive(initStyle);
|
2011-03-22 00:16:49 +00:00
|
|
|
const bool userDefinedFoldMarkers = !options.foldExplicitStart.empty() && !options.foldExplicitEnd.empty();
|
2019-05-04 18:14:48 +00:00
|
|
|
for (Sci_PositionU i = startPos; i < endPos; i++) {
|
|
|
|
const char ch = chNext;
|
2010-08-21 23:59:56 +00:00
|
|
|
chNext = styler.SafeGetCharAt(i + 1);
|
2019-05-04 18:14:48 +00:00
|
|
|
const int stylePrev = style;
|
2010-08-21 23:59:56 +00:00
|
|
|
style = styleNext;
|
2011-07-17 22:30:49 +00:00
|
|
|
styleNext = MaskActive(styler.StyleAt(i + 1));
|
2019-05-04 18:14:48 +00:00
|
|
|
const bool atEOL = i == (lineStartNext-1);
|
2013-08-28 00:44:27 +00:00
|
|
|
if ((style == SCE_C_COMMENTLINE) || (style == SCE_C_COMMENTLINEDOC))
|
|
|
|
inLineComment = true;
|
|
|
|
if (options.foldComment && options.foldCommentMultiline && IsStreamCommentStyle(style) && !inLineComment) {
|
|
|
|
if (!IsStreamCommentStyle(stylePrev)) {
|
2010-08-21 23:59:56 +00:00
|
|
|
levelNext++;
|
2013-08-28 00:44:27 +00:00
|
|
|
} else if (!IsStreamCommentStyle(styleNext) && !atEOL) {
|
2010-08-21 23:59:56 +00:00
|
|
|
// Comments don't end at end of line and the next character may be unstyled.
|
|
|
|
levelNext--;
|
|
|
|
}
|
|
|
|
}
|
2011-03-22 00:16:49 +00:00
|
|
|
if (options.foldComment && options.foldCommentExplicit && ((style == SCE_C_COMMENTLINE) || options.foldExplicitAnywhere)) {
|
|
|
|
if (userDefinedFoldMarkers) {
|
|
|
|
if (styler.Match(i, options.foldExplicitStart.c_str())) {
|
2010-08-21 23:59:56 +00:00
|
|
|
levelNext++;
|
2011-03-22 00:16:49 +00:00
|
|
|
} else if (styler.Match(i, options.foldExplicitEnd.c_str())) {
|
2010-08-21 23:59:56 +00:00
|
|
|
levelNext--;
|
|
|
|
}
|
2011-03-22 00:16:49 +00:00
|
|
|
} else {
|
|
|
|
if ((ch == '/') && (chNext == '/')) {
|
2019-05-04 18:14:48 +00:00
|
|
|
const char chNext2 = styler.SafeGetCharAt(i + 2);
|
2011-03-22 00:16:49 +00:00
|
|
|
if (chNext2 == '{') {
|
|
|
|
levelNext++;
|
|
|
|
} else if (chNext2 == '}') {
|
|
|
|
levelNext--;
|
|
|
|
}
|
|
|
|
}
|
2010-08-21 23:59:56 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if (options.foldPreprocessor && (style == SCE_C_PREPROCESSOR)) {
|
|
|
|
if (ch == '#') {
|
2019-05-04 18:14:48 +00:00
|
|
|
Sci_PositionU j = i + 1;
|
2010-08-21 23:59:56 +00:00
|
|
|
while ((j < endPos) && IsASpaceOrTab(styler.SafeGetCharAt(j))) {
|
|
|
|
j++;
|
|
|
|
}
|
|
|
|
if (styler.Match(j, "region") || styler.Match(j, "if")) {
|
|
|
|
levelNext++;
|
|
|
|
} else if (styler.Match(j, "end")) {
|
|
|
|
levelNext--;
|
|
|
|
}
|
2019-05-04 18:14:48 +00:00
|
|
|
|
|
|
|
if (options.foldPreprocessorAtElse && (styler.Match(j, "else") || styler.Match(j, "elif"))) {
|
|
|
|
levelMinCurrent--;
|
|
|
|
}
|
2010-08-21 23:59:56 +00:00
|
|
|
}
|
|
|
|
}
|
2011-03-22 00:16:49 +00:00
|
|
|
if (options.foldSyntaxBased && (style == SCE_C_OPERATOR)) {
|
2019-05-04 18:14:48 +00:00
|
|
|
if (ch == '{' || ch == '[' || ch == '(') {
|
2010-08-21 23:59:56 +00:00
|
|
|
// Measure the minimum before a '{' to allow
|
|
|
|
// folding on "} else {"
|
2019-05-04 18:14:48 +00:00
|
|
|
if (options.foldAtElse && levelMinCurrent > levelNext) {
|
2010-08-21 23:59:56 +00:00
|
|
|
levelMinCurrent = levelNext;
|
|
|
|
}
|
|
|
|
levelNext++;
|
2019-05-04 18:14:48 +00:00
|
|
|
} else if (ch == '}' || ch == ']' || ch == ')') {
|
2010-08-21 23:59:56 +00:00
|
|
|
levelNext--;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!IsASpace(ch))
|
|
|
|
visibleChars++;
|
|
|
|
if (atEOL || (i == endPos-1)) {
|
|
|
|
int levelUse = levelCurrent;
|
2019-05-04 18:14:48 +00:00
|
|
|
if ((options.foldSyntaxBased && options.foldAtElse) ||
|
|
|
|
(options.foldPreprocessor && options.foldPreprocessorAtElse)
|
|
|
|
) {
|
2010-08-21 23:59:56 +00:00
|
|
|
levelUse = levelMinCurrent;
|
|
|
|
}
|
|
|
|
int lev = levelUse | levelNext << 16;
|
|
|
|
if (visibleChars == 0 && options.foldCompact)
|
|
|
|
lev |= SC_FOLDLEVELWHITEFLAG;
|
|
|
|
if (levelUse < levelNext)
|
|
|
|
lev |= SC_FOLDLEVELHEADERFLAG;
|
|
|
|
if (lev != styler.LevelAt(lineCurrent)) {
|
|
|
|
styler.SetLevel(lineCurrent, lev);
|
|
|
|
}
|
|
|
|
lineCurrent++;
|
2013-08-28 00:44:27 +00:00
|
|
|
lineStartNext = styler.LineStart(lineCurrent+1);
|
2010-08-21 23:59:56 +00:00
|
|
|
levelCurrent = levelNext;
|
|
|
|
levelMinCurrent = levelCurrent;
|
2019-05-04 18:14:48 +00:00
|
|
|
if (atEOL && (i == static_cast<Sci_PositionU>(styler.Length()-1))) {
|
2010-08-21 23:59:56 +00:00
|
|
|
// There is an empty line at end of file so give it same level and empty
|
|
|
|
styler.SetLevel(lineCurrent, (levelCurrent | levelCurrent << 16) | SC_FOLDLEVELWHITEFLAG);
|
|
|
|
}
|
|
|
|
visibleChars = 0;
|
2013-08-28 00:44:27 +00:00
|
|
|
inLineComment = false;
|
2010-08-21 23:59:56 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-06-07 21:19:26 +00:00
|
|
|
void LexerCPP::EvaluateTokens(std::vector<std::string> &tokens, const SymbolTable &preprocessorDefinitions) {
|
2010-08-21 23:59:56 +00:00
|
|
|
|
2015-06-07 21:19:26 +00:00
|
|
|
// Remove whitespace tokens
|
|
|
|
tokens.erase(std::remove_if(tokens.begin(), tokens.end(), OnlySpaceOrTab), tokens.end());
|
|
|
|
|
|
|
|
// Evaluate defined statements to either 0 or 1
|
|
|
|
for (size_t i=0; (i+1)<tokens.size();) {
|
|
|
|
if (tokens[i] == "defined") {
|
2010-08-21 23:59:56 +00:00
|
|
|
const char *val = "0";
|
2015-06-07 21:19:26 +00:00
|
|
|
if (tokens[i+1] == "(") {
|
|
|
|
if (((i + 2)<tokens.size()) && (tokens[i + 2] == ")")) {
|
|
|
|
// defined()
|
|
|
|
tokens.erase(tokens.begin() + i + 1, tokens.begin() + i + 3);
|
|
|
|
} else if (((i+3)<tokens.size()) && (tokens[i+3] == ")")) {
|
|
|
|
// defined(<identifier>)
|
|
|
|
SymbolTable::const_iterator it = preprocessorDefinitions.find(tokens[i+2]);
|
|
|
|
if (it != preprocessorDefinitions.end()) {
|
|
|
|
val = "1";
|
|
|
|
}
|
|
|
|
tokens.erase(tokens.begin() + i + 1, tokens.begin() + i + 4);
|
|
|
|
} else {
|
|
|
|
// Spurious '(' so erase as more likely to result in false
|
|
|
|
tokens.erase(tokens.begin() + i + 1, tokens.begin() + i + 2);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// defined <identifier>
|
|
|
|
SymbolTable::const_iterator it = preprocessorDefinitions.find(tokens[i+1]);
|
|
|
|
if (it != preprocessorDefinitions.end()) {
|
|
|
|
val = "1";
|
|
|
|
}
|
2019-05-04 18:14:48 +00:00
|
|
|
tokens.erase(tokens.begin() + i + 1, tokens.begin() + i + 2);
|
2010-08-21 23:59:56 +00:00
|
|
|
}
|
|
|
|
tokens[i] = val;
|
|
|
|
} else {
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-06-07 21:19:26 +00:00
|
|
|
// Evaluate identifiers
|
|
|
|
const size_t maxIterations = 100;
|
|
|
|
size_t iterations = 0; // Limit number of iterations in case there is a recursive macro.
|
|
|
|
for (size_t i = 0; (i<tokens.size()) && (iterations < maxIterations);) {
|
|
|
|
iterations++;
|
2019-07-21 13:26:02 +00:00
|
|
|
if (setWordStart.Contains(tokens[i][0])) {
|
2015-06-07 21:19:26 +00:00
|
|
|
SymbolTable::const_iterator it = preprocessorDefinitions.find(tokens[i]);
|
|
|
|
if (it != preprocessorDefinitions.end()) {
|
|
|
|
// Tokenize value
|
|
|
|
std::vector<std::string> macroTokens = Tokenize(it->second.value);
|
|
|
|
if (it->second.IsMacro()) {
|
|
|
|
if ((i + 1 < tokens.size()) && (tokens.at(i + 1) == "(")) {
|
|
|
|
// Create map of argument name to value
|
|
|
|
std::vector<std::string> argumentNames = StringSplit(it->second.arguments, ',');
|
|
|
|
std::map<std::string, std::string> arguments;
|
|
|
|
size_t arg = 0;
|
|
|
|
size_t tok = i+2;
|
|
|
|
while ((tok < tokens.size()) && (arg < argumentNames.size()) && (tokens.at(tok) != ")")) {
|
|
|
|
if (tokens.at(tok) != ",") {
|
|
|
|
arguments[argumentNames.at(arg)] = tokens.at(tok);
|
|
|
|
arg++;
|
|
|
|
}
|
|
|
|
tok++;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Remove invocation
|
|
|
|
tokens.erase(tokens.begin() + i, tokens.begin() + tok + 1);
|
|
|
|
|
|
|
|
// Substitute values into macro
|
|
|
|
macroTokens.erase(std::remove_if(macroTokens.begin(), macroTokens.end(), OnlySpaceOrTab), macroTokens.end());
|
|
|
|
|
|
|
|
for (size_t iMacro = 0; iMacro < macroTokens.size();) {
|
2019-07-21 13:26:02 +00:00
|
|
|
if (setWordStart.Contains(macroTokens[iMacro][0])) {
|
2015-06-07 21:19:26 +00:00
|
|
|
std::map<std::string, std::string>::const_iterator itFind = arguments.find(macroTokens[iMacro]);
|
|
|
|
if (itFind != arguments.end()) {
|
|
|
|
// TODO: Possible that value will be expression so should insert tokenized form
|
|
|
|
macroTokens[iMacro] = itFind->second;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
iMacro++;
|
|
|
|
}
|
2019-05-04 18:14:48 +00:00
|
|
|
|
2015-06-07 21:19:26 +00:00
|
|
|
// Insert results back into tokens
|
|
|
|
tokens.insert(tokens.begin() + i, macroTokens.begin(), macroTokens.end());
|
|
|
|
|
|
|
|
} else {
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// Remove invocation
|
|
|
|
tokens.erase(tokens.begin() + i);
|
|
|
|
// Insert results back into tokens
|
|
|
|
tokens.insert(tokens.begin() + i, macroTokens.begin(), macroTokens.end());
|
|
|
|
}
|
|
|
|
} else {
|
2019-05-04 18:14:48 +00:00
|
|
|
// Identifier not found and value defaults to zero
|
|
|
|
tokens[i] = "0";
|
2015-06-07 21:19:26 +00:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-08-21 23:59:56 +00:00
|
|
|
// Find bracketed subexpressions and recurse on them
|
2015-06-07 21:19:26 +00:00
|
|
|
BracketPair bracketPair = FindBracketPair(tokens);
|
|
|
|
while (bracketPair.itBracket != tokens.end()) {
|
|
|
|
std::vector<std::string> inBracket(bracketPair.itBracket + 1, bracketPair.itEndBracket);
|
|
|
|
EvaluateTokens(inBracket, preprocessorDefinitions);
|
2010-08-21 23:59:56 +00:00
|
|
|
|
|
|
|
// The insertion is done before the removal because there were failures with the opposite approach
|
2015-06-07 21:19:26 +00:00
|
|
|
tokens.insert(bracketPair.itBracket, inBracket.begin(), inBracket.end());
|
2010-08-21 23:59:56 +00:00
|
|
|
|
2015-06-07 21:19:26 +00:00
|
|
|
bracketPair = FindBracketPair(tokens);
|
|
|
|
tokens.erase(bracketPair.itBracket, bracketPair.itEndBracket + 1);
|
|
|
|
|
|
|
|
bracketPair = FindBracketPair(tokens);
|
2010-08-21 23:59:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Evaluate logical negations
|
|
|
|
for (size_t j=0; (j+1)<tokens.size();) {
|
|
|
|
if (setNegationOp.Contains(tokens[j][0])) {
|
|
|
|
int isTrue = atoi(tokens[j+1].c_str());
|
|
|
|
if (tokens[j] == "!")
|
|
|
|
isTrue = !isTrue;
|
|
|
|
std::vector<std::string>::iterator itInsert =
|
|
|
|
tokens.erase(tokens.begin() + j, tokens.begin() + j + 2);
|
|
|
|
tokens.insert(itInsert, isTrue ? "1" : "0");
|
|
|
|
} else {
|
|
|
|
j++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Evaluate expressions in precedence order
|
2019-05-04 18:14:48 +00:00
|
|
|
enum precedence { precMult, precAdd, precRelative
|
|
|
|
, precLogical, /* end marker */ precLast };
|
|
|
|
for (int prec = precMult; prec < precLast; prec++) {
|
2010-08-21 23:59:56 +00:00
|
|
|
// Looking at 3 tokens at a time so end at 2 before end
|
|
|
|
for (size_t k=0; (k+2)<tokens.size();) {
|
2019-05-04 18:14:48 +00:00
|
|
|
const char chOp = tokens[k+1][0];
|
2010-08-21 23:59:56 +00:00
|
|
|
if (
|
2019-05-04 18:14:48 +00:00
|
|
|
((prec==precMult) && setMultOp.Contains(chOp)) ||
|
|
|
|
((prec==precAdd) && setAddOp.Contains(chOp)) ||
|
2010-08-21 23:59:56 +00:00
|
|
|
((prec==precRelative) && setRelOp.Contains(chOp)) ||
|
|
|
|
((prec==precLogical) && setLogicalOp.Contains(chOp))
|
|
|
|
) {
|
2019-05-04 18:14:48 +00:00
|
|
|
const int valA = atoi(tokens[k].c_str());
|
|
|
|
const int valB = atoi(tokens[k+2].c_str());
|
2010-08-21 23:59:56 +00:00
|
|
|
int result = 0;
|
|
|
|
if (tokens[k+1] == "+")
|
|
|
|
result = valA + valB;
|
|
|
|
else if (tokens[k+1] == "-")
|
|
|
|
result = valA - valB;
|
|
|
|
else if (tokens[k+1] == "*")
|
|
|
|
result = valA * valB;
|
|
|
|
else if (tokens[k+1] == "/")
|
2010-09-05 22:56:27 +00:00
|
|
|
result = valA / (valB ? valB : 1);
|
2010-08-21 23:59:56 +00:00
|
|
|
else if (tokens[k+1] == "%")
|
2010-09-05 22:56:27 +00:00
|
|
|
result = valA % (valB ? valB : 1);
|
2010-08-21 23:59:56 +00:00
|
|
|
else if (tokens[k+1] == "<")
|
|
|
|
result = valA < valB;
|
|
|
|
else if (tokens[k+1] == "<=")
|
|
|
|
result = valA <= valB;
|
|
|
|
else if (tokens[k+1] == ">")
|
|
|
|
result = valA > valB;
|
|
|
|
else if (tokens[k+1] == ">=")
|
|
|
|
result = valA >= valB;
|
|
|
|
else if (tokens[k+1] == "==")
|
|
|
|
result = valA == valB;
|
|
|
|
else if (tokens[k+1] == "!=")
|
|
|
|
result = valA != valB;
|
|
|
|
else if (tokens[k+1] == "||")
|
|
|
|
result = valA || valB;
|
|
|
|
else if (tokens[k+1] == "&&")
|
|
|
|
result = valA && valB;
|
|
|
|
std::vector<std::string>::iterator itInsert =
|
|
|
|
tokens.erase(tokens.begin() + k, tokens.begin() + k + 3);
|
2019-05-04 18:14:48 +00:00
|
|
|
tokens.insert(itInsert, std::to_string(result));
|
2010-08-21 23:59:56 +00:00
|
|
|
} else {
|
|
|
|
k++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-06-07 21:19:26 +00:00
|
|
|
std::vector<std::string> LexerCPP::Tokenize(const std::string &expr) const {
|
|
|
|
// Break into tokens
|
2010-08-21 23:59:56 +00:00
|
|
|
std::vector<std::string> tokens;
|
|
|
|
const char *cp = expr.c_str();
|
2015-06-07 21:19:26 +00:00
|
|
|
while (*cp) {
|
|
|
|
std::string word;
|
2019-07-21 13:26:02 +00:00
|
|
|
if (setWord.Contains(*cp)) {
|
2015-06-07 21:19:26 +00:00
|
|
|
// Identifiers and numbers
|
2019-07-21 13:26:02 +00:00
|
|
|
while (setWord.Contains(*cp)) {
|
2015-06-07 21:19:26 +00:00
|
|
|
word += *cp;
|
|
|
|
cp++;
|
2010-08-21 23:59:56 +00:00
|
|
|
}
|
2015-06-07 21:19:26 +00:00
|
|
|
} else if (IsSpaceOrTab(*cp)) {
|
|
|
|
while (IsSpaceOrTab(*cp)) {
|
|
|
|
word += *cp;
|
|
|
|
cp++;
|
2010-08-21 23:59:56 +00:00
|
|
|
}
|
2019-07-21 13:26:02 +00:00
|
|
|
} else if (setRelOp.Contains(*cp)) {
|
2015-06-07 21:19:26 +00:00
|
|
|
word += *cp;
|
|
|
|
cp++;
|
2019-07-21 13:26:02 +00:00
|
|
|
if (setRelOp.Contains(*cp)) {
|
2015-06-07 21:19:26 +00:00
|
|
|
word += *cp;
|
|
|
|
cp++;
|
2010-08-21 23:59:56 +00:00
|
|
|
}
|
2019-07-21 13:26:02 +00:00
|
|
|
} else if (setLogicalOp.Contains(*cp)) {
|
2015-06-07 21:19:26 +00:00
|
|
|
word += *cp;
|
|
|
|
cp++;
|
2019-07-21 13:26:02 +00:00
|
|
|
if (setLogicalOp.Contains(*cp)) {
|
2015-06-07 21:19:26 +00:00
|
|
|
word += *cp;
|
|
|
|
cp++;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// Should handle strings, characters, and comments here
|
|
|
|
word += *cp;
|
|
|
|
cp++;
|
2010-08-21 23:59:56 +00:00
|
|
|
}
|
2015-06-07 21:19:26 +00:00
|
|
|
tokens.push_back(word);
|
2010-08-21 23:59:56 +00:00
|
|
|
}
|
2015-06-07 21:19:26 +00:00
|
|
|
return tokens;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool LexerCPP::EvaluateExpression(const std::string &expr, const SymbolTable &preprocessorDefinitions) {
|
|
|
|
std::vector<std::string> tokens = Tokenize(expr);
|
2010-08-21 23:59:56 +00:00
|
|
|
|
2015-06-07 21:19:26 +00:00
|
|
|
EvaluateTokens(tokens, preprocessorDefinitions);
|
2010-08-21 23:59:56 +00:00
|
|
|
|
|
|
|
// "0" or "" -> false else true
|
2019-05-04 18:14:48 +00:00
|
|
|
const bool isFalse = tokens.empty() ||
|
2010-08-21 23:59:56 +00:00
|
|
|
((tokens.size() == 1) && ((tokens[0] == "") || tokens[0] == "0"));
|
|
|
|
return !isFalse;
|
|
|
|
}
|
|
|
|
|
|
|
|
LexerModule lmCPP(SCLEX_CPP, LexerCPP::LexerFactoryCPP, "cpp", cppWordLists);
|
|
|
|
LexerModule lmCPPNoCase(SCLEX_CPPNOCASE, LexerCPP::LexerFactoryCPPInsensitive, "cppnocase", cppWordLists);
|