org.gjt.sp.jedit.syntax.ParserRule Maven / Gradle / Ivy
Go to download
This project aims to build a command line tool that can create
HTML view with syntax highlighted source code.
It uses Jedit syntax highlighting engine and support all languages that are supported in JEdit.
Which are currently: ActionScript, Ada 95, ANTLR, Apache HTTPD, APDL, AppleScript, ASP, Aspect-J, Assembly, AWK, B formal method, Batch, BBj, BCEL, BibTeX, C, C++, C#, CHILL, CIL, COBOL, ColdFusion, CSS, CVS Commit, D, DOxygen, DSSSL, Eiffel, EmbPerl, Erlang, Factor, Fortran, Foxpro, FreeMarker, Fortran, Gettext, Groovy, Haskell, HTML, Icon, IDL, Inform, INI, Inno Setup, Informix 4GL, Interlis, Io, Java, JavaScript, JCL, JHTML, JMK, JSP, Latex, Lilypond, Lisp, LOTOS, Lua, Makefile, Maple, ML, Modula-3, MoinMoin, MQSC, NetRexx, NQC, NSIS2, Objective C, ObjectRexx, Occam, Omnimark, Parrot, Pascal, Patch, Perl, PHP, Pike, PL-SQL, PL/I, Pop11, PostScript, Povray, PowerDynamo, Progress 4GL, Prolog, Properties, PSP, PV-WAVE, Pyrex, Python, REBOL, Redcode, Relax-NG, RelationalView, Rest, Rib, RPM spec, RTF, Ruby, Ruby-HTML, RView, S+, S#, SAS, Scheme, SDL/PL, SGML, Shell Script, SHTML, Smalltalk, SMI MIB, SQR, Squidconf, SVN Commit, Swig, TCL, TeX, Texinfo, TPL, Transact-SQL, UnrealScript, VBScript, Velocity, Verilog, VHDL, XML, XSL, ZPT
The newest version!
/*
* ParserRule.java - Parser rule for the token marker
* :tabSize=8:indentSize=8:noTabs=false:
* :folding=explicit:collapseFolds=1:
*
* Copyright (C) 1999 mike dillon
* Portions copyright (C) 2002 Slava Pestov
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
package org.gjt.sp.jedit.syntax;
import java.util.Arrays;
import java.util.HashSet;
import java.util.Set;
import java.util.regex.Pattern;
import java.util.regex.PatternSyntaxException;
/**
* A parser rule.
* @author mike dillon, Slava Pestov
* @version $Id: ParserRule.java 12504 2008-04-22 23:12:43Z ezust $
*/
public class ParserRule
{
//{{{ Major actions
public static final int MAJOR_ACTIONS = 0x000000FF;
public static final int SEQ = 0;
public static final int SPAN = 1 << 1;
public static final int MARK_PREVIOUS = 1 << 2;
public static final int MARK_FOLLOWING = 1 << 3;
public static final int EOL_SPAN = 1 << 4;
//}}}
//{{{ Action hints
public static final int ACTION_HINTS = 0x0000FF00;
@Deprecated
public static final int EXCLUDE_MATCH = 1 << 8;
public static final int NO_LINE_BREAK = 1 << 9;
public static final int NO_WORD_BREAK = 1 << 10;
public static final int IS_ESCAPE = 1 << 11;
@Deprecated
public static final int NO_ESCAPE = 1 << 12;
public static final int REGEXP = 1 << 13;
//}}}
//{{{ Special Match Token Types
public static final byte MATCH_TYPE_CONTEXT = -1;
public static final byte MATCH_TYPE_RULE = -2;
//}}}
//{{{ Position match hints
public static final int AT_LINE_START = 1 << 1;
public static final int AT_WHITESPACE_END = 1 << 2;
public static final int AT_WORD_START = 1 << 3;
//}}}
//{{{ Instance variables
public final String upHashChar;
public final char[] upHashChars;
public final int startPosMatch;
public final char[] start;
public final Pattern startRegexp;
public final int endPosMatch;
public final char[] end;
public final int action;
public final byte token;
/**
* matchType is the type of the token for the matched region. Special
* values are: MATCH_TYPE_CONTEXT = default token for the context,
* MATCH_TYPE_RULE = same token as the rule itself.
*
* @since jEdit 4.3pre10
*/
public final byte matchType;
/**
* escapeRule is the rule-specific sequence used to escape other
* characters while the rule is in effect. If this character is
* non-zero, the character following the escape char will be skipped
* during parsing, and highlighted with the rule's token.
*
* @since jEdit 4.3pre12
*/
public final ParserRule escapeRule;
public ParserRuleSet delegate;
/**
* @deprecated As the linking between rules is not anymore done within the rule but external. See {@link ParserRuleSet#getRules(Character)}
*/
public ParserRule next;
//}}}
//{{{ createSequenceRule() method
public static final ParserRule createSequenceRule(
int posMatch, String seq, ParserRuleSet delegate, byte id)
{
return new ParserRule(SEQ, seq.substring(0,1),
posMatch, seq.toCharArray(), null,
0, null, delegate, id, MATCH_TYPE_CONTEXT, null);
} //}}}
//{{{ createRegexpSequenceRule() method
/**
* @deprecated Use {@link #createRegexpSequenceRule(String,int,String,ParserRuleSet,byte,boolean)} instead
*/
public static final ParserRule createRegexpSequenceRule(
char hashChar, int posMatch, String seq,
ParserRuleSet delegate, byte id, boolean ignoreCase)
throws PatternSyntaxException
{
return createRegexpSequenceRule(String.valueOf(hashChar), posMatch,
seq, delegate, id, ignoreCase);
} //}}}
//{{{ createRegexpSequenceRule() method
public static final ParserRule createRegexpSequenceRule(
String hashChar, int posMatch, String seq,
ParserRuleSet delegate, byte id, boolean ignoreCase)
throws PatternSyntaxException
{
return new ParserRule(SEQ | REGEXP, hashChar, posMatch,
null, Pattern.compile(seq,(ignoreCase ? Pattern.CASE_INSENSITIVE : 0)),
0, null, delegate, id, MATCH_TYPE_CONTEXT, null);
} //}}}
//{{{ createRegexpSequenceRule() method
public static final ParserRule createRegexpSequenceRule(
int posMatch, char[] hashChars, String seq,
ParserRuleSet delegate, byte id, boolean ignoreCase)
throws PatternSyntaxException
{
return new ParserRule(hashChars, SEQ | REGEXP, posMatch,
null, Pattern.compile(seq,(ignoreCase ? Pattern.CASE_INSENSITIVE : 0)),
0, null, delegate, id, MATCH_TYPE_CONTEXT, null);
} //}}}
//{{{ createSpanRule() method
public static final ParserRule createSpanRule(
int startPosMatch, String start, int endPosMatch, String end,
ParserRuleSet delegate, byte id, byte matchType,
boolean noLineBreak, boolean noWordBreak, String escape)
{
int ruleAction = SPAN |
((noLineBreak) ? NO_LINE_BREAK : 0) |
((noWordBreak) ? NO_WORD_BREAK : 0);
return new ParserRule(ruleAction, start.substring(0,1), startPosMatch,
start.toCharArray(), null,
endPosMatch, end.toCharArray(),
delegate, id, matchType, escape);
} //}}}
//{{{ createRegexpSpanRule() method
public static final ParserRule createRegexpSpanRule(
String hashChar, int startPosMatch, String start,
int endPosMatch, String end, ParserRuleSet delegate, byte id,
byte matchType, boolean noLineBreak, boolean noWordBreak,
boolean ignoreCase, String escape)
throws PatternSyntaxException
{
int ruleAction = SPAN | REGEXP |
((noLineBreak) ? NO_LINE_BREAK : 0) |
((noWordBreak) ? NO_WORD_BREAK : 0);
return new ParserRule(ruleAction, hashChar, startPosMatch, null,
Pattern.compile(start,(ignoreCase ? Pattern.CASE_INSENSITIVE : 0)),
endPosMatch, end.toCharArray(), delegate, id, matchType,
escape);
} //}}}
//{{{ createRegexpSpanRule() method
public static final ParserRule createRegexpSpanRule(
int startPosMatch, char[] hashChars, String start,
int endPosMatch, String end, ParserRuleSet delegate, byte id,
byte matchType, boolean noLineBreak, boolean noWordBreak,
boolean ignoreCase, String escape)
throws PatternSyntaxException
{
int ruleAction = SPAN | REGEXP |
((noLineBreak) ? NO_LINE_BREAK : 0) |
((noWordBreak) ? NO_WORD_BREAK : 0);
return new ParserRule(hashChars, ruleAction, startPosMatch, null,
Pattern.compile(start,(ignoreCase ? Pattern.CASE_INSENSITIVE : 0)),
endPosMatch, end.toCharArray(), delegate, id,
matchType, escape);
} //}}}
//{{{ createEOLSpanRule() method
public static final ParserRule createEOLSpanRule(
int posMatch, String seq, ParserRuleSet delegate, byte id,
byte matchType)
{
int ruleAction = EOL_SPAN | NO_LINE_BREAK;
return new ParserRule(ruleAction, seq.substring(0,1), posMatch,
seq.toCharArray(), null, 0, null,
delegate, id, matchType, null);
} //}}}
//{{{ createRegexpEOLSpanRule() method
/**
* @deprecated Use {@link #createRegexpEOLSpanRule(String,int,String,ParserRuleSet,byte,byte,boolean)} instead
*/
public static final ParserRule createRegexpEOLSpanRule(
char hashChar, int posMatch, String seq, ParserRuleSet delegate,
byte id, byte matchType, boolean ignoreCase)
throws PatternSyntaxException
{
return createRegexpEOLSpanRule(String.valueOf(hashChar),
posMatch,seq,delegate,id,matchType,ignoreCase);
} //}}}
//{{{ createRegexpEOLSpanRule() method
public static final ParserRule createRegexpEOLSpanRule(
String hashChar, int posMatch, String seq, ParserRuleSet delegate,
byte id, byte matchType, boolean ignoreCase)
throws PatternSyntaxException
{
int ruleAction = EOL_SPAN | REGEXP | NO_LINE_BREAK;
return new ParserRule(ruleAction, hashChar, posMatch,
null, Pattern.compile(seq,(ignoreCase ? Pattern.CASE_INSENSITIVE : 0)),
0, null, delegate, id, matchType, null);
} //}}}
//{{{ createRegexpEOLSpanRule() method
public static final ParserRule createRegexpEOLSpanRule(
int posMatch, char[] hashChars, String seq, ParserRuleSet delegate,
byte id, byte matchType, boolean ignoreCase)
throws PatternSyntaxException
{
int ruleAction = EOL_SPAN | REGEXP | NO_LINE_BREAK;
return new ParserRule(hashChars, ruleAction, posMatch,
null, Pattern.compile(seq,(ignoreCase ? Pattern.CASE_INSENSITIVE : 0)),
0, null, delegate, id, matchType, null);
} //}}}
//{{{ createMarkFollowingRule() method
public static final ParserRule createMarkFollowingRule(
int posMatch, String seq, byte id, byte matchType)
{
int ruleAction = MARK_FOLLOWING;
return new ParserRule(ruleAction, seq.substring(0,1), posMatch,
seq.toCharArray(), null, 0, null, null, id, matchType,
null);
} //}}}
//{{{ createMarkPreviousRule() method
public static final ParserRule createMarkPreviousRule(
int posMatch, String seq, byte id, byte matchType)
{
int ruleAction = MARK_PREVIOUS;
return new ParserRule(ruleAction, seq.substring(0,1), posMatch,
seq.toCharArray(), null, 0, null, null, id, matchType,
null);
} //}}}
//{{{ createEscapeRule() method
public static final ParserRule createEscapeRule(String seq)
{
int ruleAction = IS_ESCAPE;
return new ParserRule(ruleAction, seq.substring(0,1),
0, seq.toCharArray(), null, 0, null,
null, Token.NULL, MATCH_TYPE_CONTEXT, null);
} //}}}
//{{{ toString() method
public String toString()
{
StringBuffer result = new StringBuffer();
result.append(getClass().getName()).append("[action=");
switch (action & MAJOR_ACTIONS)
{
case SEQ: result.append("SEQ"); break;
case SPAN: result.append("SPAN"); break;
case MARK_PREVIOUS: result.append("MARK_PREVIOUS"); break;
case MARK_FOLLOWING: result.append("MARK_FOLLOWING"); break;
case EOL_SPAN: result.append("EOL_SPAN"); break;
default: result.append("UNKNOWN"); break;
}
int actionHints = action & ACTION_HINTS;
result.append("[matchType=").append(matchType == MATCH_TYPE_CONTEXT ? "MATCH_TYPE_CONTEXT" : (matchType == MATCH_TYPE_RULE ? "MATCH_TYPE_RULE" : Token.tokenToString(matchType)));
result.append(",NO_LINE_BREAK=").append((actionHints & NO_LINE_BREAK) != 0);
result.append(",NO_WORD_BREAK=").append((actionHints & NO_WORD_BREAK) != 0);
result.append(",IS_ESCAPE=").append((actionHints & IS_ESCAPE) != 0);
result.append(",REGEXP=").append((actionHints & REGEXP) != 0);
result.append("],upHashChar=").append(upHashChar);
result.append(",upHashChars=").append(Arrays.toString(upHashChars));
result.append(",startPosMatch=");
result.append("[AT_LINE_START=").append((startPosMatch & AT_LINE_START) != 0);
result.append(",AT_WHITESPACE_END=").append((startPosMatch & AT_WHITESPACE_END) != 0);
result.append(",AT_WORD_START=").append((startPosMatch & AT_WORD_START) != 0);
result.append("],start=").append(null==start?null:String.valueOf(start));
result.append(",startRegexp=").append(startRegexp);
result.append(",endPosMatch=");
result.append("[AT_LINE_START=").append((endPosMatch & AT_LINE_START) != 0);
result.append(",AT_WHITESPACE_END=").append((endPosMatch & AT_WHITESPACE_END) != 0);
result.append(",AT_WORD_START=").append((endPosMatch & AT_WORD_START) != 0);
result.append("],end=").append(null==end?null:String.valueOf(end));
result.append(",delegate=").append(delegate);
result.append(",escapeRule=").append(escapeRule);
result.append(",token=").append(Token.tokenToString(token)).append(']');
return result.toString();
} //}}}
//{{{ Private members
private ParserRule(int action, String hashChar,
int startPosMatch, char[] start, Pattern startRegexp,
int endPosMatch, char[] end,
ParserRuleSet delegate, byte token, byte matchType,
String escape)
{
this.action = action;
this.upHashChar = null == hashChar ? null : hashChar.toUpperCase();
this.upHashChars = null;
this.startPosMatch = startPosMatch;
this.start = start;
this.startRegexp = startRegexp;
this.endPosMatch = endPosMatch;
this.end = end;
this.delegate = delegate;
this.token = token;
this.matchType = matchType;
this.escapeRule = (escape != null && escape.length() > 0) ?
createEscapeRule(escape) : null;
if(this.delegate == null)
{
if((action & MAJOR_ACTIONS) != SEQ)
{
this.delegate = ParserRuleSet.getStandardRuleSet(token);
}
}
}
private ParserRule(char[] hashChars, int action,
int startPosMatch, char[] start, Pattern startRegexp,
int endPosMatch, char[] end,
ParserRuleSet delegate, byte token, byte matchType,
String escape)
{
this.action = action;
this.upHashChar = null;
Set hashCharsSet = new HashSet();
for (char c : hashChars)
{
hashCharsSet.add(Character.toUpperCase(c));
}
this.upHashChars = new char[hashCharsSet.size()];
int i = 0;
for (Character c : hashCharsSet)
{
this.upHashChars[i++] = c;
}
Arrays.sort(this.upHashChars);
this.startPosMatch = startPosMatch;
this.start = start;
this.startRegexp = startRegexp;
this.endPosMatch = endPosMatch;
this.end = end;
this.delegate = delegate;
this.token = token;
this.matchType = matchType;
this.escapeRule = (escape != null && escape.length() > 0) ?
createEscapeRule(escape) : null;
if(this.delegate == null)
{
if((action & MAJOR_ACTIONS) != SEQ)
{
this.delegate = ParserRuleSet.getStandardRuleSet(token);
}
}
} //}}}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy