blob: d253ace0930c631f10ea265439f0d6ad20a6d36c [file] [log] [blame]
/*
* Copyright 2000-2009 JetBrains s.r.o.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.intellij.ide.highlighter.custom;
import com.intellij.ide.highlighter.custom.tokens.*;
import com.intellij.openapi.util.text.StringUtil;
import com.intellij.psi.CustomHighlighterTokenType;
import java.util.ArrayList;
import java.util.List;
/**
* @author dsl
*/
public final class CustomFileTypeLexer extends AbstractCustomLexer {
public CustomFileTypeLexer(SyntaxTable table, boolean forHighlighting) {
super(buildTokenParsers(table, forHighlighting));
}
public CustomFileTypeLexer(SyntaxTable table) {
this(table, false);
}
private static List<TokenParser> buildTokenParsers(SyntaxTable table, boolean forHighlighting) {
final LineCommentParser lineCommentParser = StringUtil.isEmpty(table.getLineComment()) ? null : new LineCommentParser(table.getLineComment(), table.lineCommentOnlyAtStart);
final MultilineCommentParser multilineCommentParser =
MultilineCommentParser.create(table.getStartComment(), table.getEndComment());
final NumberParser numberParser = new NumberParser(table.getNumPostfixChars(), table.isIgnoreCase());
final HexNumberParser hexNumberParser = HexNumberParser.create(table.getHexPrefix());
final KeywordParser parser = table.getKeywordParser();
final TokenParser keywordParser = new TokenParser() {
@Override
public boolean hasToken(int position) {
return parser.hasToken(position, myBuffer, myTokenInfo);
}
};
final IdentifierParser identifierParser = new IdentifierParser(parser);
final QuotedStringParser quotedStringParser = new QuotedStringParser("\"", CustomHighlighterTokenType.STRING, table.isHasStringEscapes());
final QuotedStringParser quotedStringParser2 = new QuotedStringParser(
"\'",
forHighlighting ? CustomHighlighterTokenType.SINGLE_QUOTED_STRING:CustomHighlighterTokenType.STRING,
table.isHasStringEscapes()
);
ArrayList<TokenParser> tokenParsers = new ArrayList<TokenParser>();
tokenParsers.add(new WhitespaceParser());
if (lineCommentParser != null) {
tokenParsers.add(lineCommentParser);
}
if (multilineCommentParser != null) {
tokenParsers.add(multilineCommentParser);
}
tokenParsers.add(quotedStringParser);
tokenParsers.add(quotedStringParser2);
tokenParsers.add(numberParser);
tokenParsers.add(new PunctuationParser());
if (hexNumberParser != null) {
tokenParsers.add(hexNumberParser);
}
tokenParsers.add(keywordParser);
tokenParsers.add(identifierParser);
if (table.isHasBraces()) {
tokenParsers.addAll(BraceTokenParser.getBraces());
}
if (table.isHasParens()) {
tokenParsers.addAll(BraceTokenParser.getParens());
}
if (table.isHasBrackets()) {
tokenParsers.addAll(BraceTokenParser.getBrackets());
}
return tokenParsers;
}
}