
org.apache.asterix.aql.parser.AQLParserTokenManager Maven / Gradle / Ivy
/* Generated By:JavaCC: Do not edit this line. AQLParserTokenManager.java */
package org.apache.asterix.aql.parser;
// For AQLParserTokenManager
import org.apache.xerces.util.IntStack;
import java.io.BufferedReader;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.Reader;
import java.io.StringReader;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.LinkedHashMap;
import java.util.List;
import java.util.Map;
import org.apache.asterix.aql.base.Clause;
import org.apache.asterix.aql.base.Expression;
import org.apache.asterix.aql.base.Literal;
import org.apache.asterix.aql.base.Statement;
import org.apache.asterix.aql.context.RootScopeFactory;
import org.apache.asterix.aql.context.Scope;
import org.apache.asterix.aql.expression.AbstractAccessor;
import org.apache.asterix.aql.expression.CallExpr;
import org.apache.asterix.aql.expression.CompactStatement;
import org.apache.asterix.aql.expression.ConnectFeedStatement;
import org.apache.asterix.aql.expression.CreateFeedPolicyStatement;
import org.apache.asterix.aql.expression.CreatePrimaryFeedStatement;
import org.apache.asterix.aql.expression.CreateSecondaryFeedStatement;
import org.apache.asterix.aql.expression.CreateDataverseStatement;
import org.apache.asterix.aql.expression.CreateFeedStatement;
import org.apache.asterix.aql.expression.CreateFunctionStatement;
import org.apache.asterix.aql.expression.CreateIndexStatement;
import org.apache.asterix.aql.expression.DatasetDecl;
import org.apache.asterix.aql.expression.DataverseDecl;
import org.apache.asterix.aql.expression.DataverseDropStatement;
import org.apache.asterix.aql.expression.DeleteStatement;
import org.apache.asterix.aql.expression.DisconnectFeedStatement;
import org.apache.asterix.aql.expression.DistinctClause;
import org.apache.asterix.aql.expression.DropStatement;
import org.apache.asterix.aql.expression.ExternalDetailsDecl;
import org.apache.asterix.aql.expression.FLWOGRExpression;
import org.apache.asterix.aql.expression.FeedDropStatement;
import org.apache.asterix.aql.expression.FieldAccessor;
import org.apache.asterix.aql.expression.FieldBinding;
import org.apache.asterix.aql.expression.ForClause;
import org.apache.asterix.aql.expression.FunctionDecl;
import org.apache.asterix.aql.expression.FunctionDropStatement;
import org.apache.asterix.aql.expression.GbyVariableExpressionPair;
import org.apache.asterix.aql.expression.GroupbyClause;
import org.apache.asterix.aql.expression.Identifier;
import org.apache.asterix.aql.expression.IfExpr;
import org.apache.asterix.aql.expression.IndexAccessor;
import org.apache.asterix.aql.expression.IndexDropStatement;
import org.apache.asterix.aql.expression.InsertStatement;
import org.apache.asterix.aql.expression.InternalDetailsDecl;
import org.apache.asterix.aql.expression.LetClause;
import org.apache.asterix.aql.expression.LimitClause;
import org.apache.asterix.aql.expression.ListConstructor;
import org.apache.asterix.aql.expression.LiteralExpr;
import org.apache.asterix.aql.expression.LoadStatement;
import org.apache.asterix.aql.expression.NodeGroupDropStatement;
import org.apache.asterix.aql.expression.NodegroupDecl;
import org.apache.asterix.aql.expression.OperatorExpr;
import org.apache.asterix.aql.expression.OrderbyClause;
import org.apache.asterix.aql.expression.OrderedListTypeDefinition;
import org.apache.asterix.aql.expression.QuantifiedExpression;
import org.apache.asterix.aql.expression.QuantifiedPair;
import org.apache.asterix.aql.expression.Query;
import org.apache.asterix.aql.expression.RecordConstructor;
import org.apache.asterix.aql.expression.RecordTypeDefinition;
import org.apache.asterix.aql.expression.RefreshExternalDatasetStatement;
import org.apache.asterix.aql.expression.RunStatement;
import org.apache.asterix.aql.expression.SetStatement;
import org.apache.asterix.aql.expression.TypeDecl;
import org.apache.asterix.aql.expression.TypeDropStatement;
import org.apache.asterix.aql.expression.TypeExpression;
import org.apache.asterix.aql.expression.TypeReferenceExpression;
import org.apache.asterix.aql.expression.UnaryExpr;
import org.apache.asterix.aql.expression.UnaryExpr.Sign;
import org.apache.asterix.aql.expression.UnionExpr;
import org.apache.asterix.aql.expression.UnorderedListTypeDefinition;
import org.apache.asterix.aql.expression.UpdateClause;
import org.apache.asterix.aql.expression.UpdateStatement;
import org.apache.asterix.aql.expression.VarIdentifier;
import org.apache.asterix.aql.expression.VariableExpr;
import org.apache.asterix.aql.expression.WhereClause;
import org.apache.asterix.aql.expression.WriteStatement;
import org.apache.asterix.aql.literal.DoubleLiteral;
import org.apache.asterix.aql.literal.FalseLiteral;
import org.apache.asterix.aql.literal.FloatLiteral;
import org.apache.asterix.aql.literal.LongIntegerLiteral;
import org.apache.asterix.aql.literal.NullLiteral;
import org.apache.asterix.aql.literal.StringLiteral;
import org.apache.asterix.aql.literal.TrueLiteral;
import org.apache.asterix.aql.util.RangeMapBuilder;
import org.apache.asterix.common.annotations.AutoDataGen;
import org.apache.asterix.common.annotations.DateBetweenYearsDataGen;
import org.apache.asterix.common.annotations.DatetimeAddRandHoursDataGen;
import org.apache.asterix.common.annotations.DatetimeBetweenYearsDataGen;
import org.apache.asterix.common.annotations.FieldIntervalDataGen;
import org.apache.asterix.common.annotations.FieldValFileDataGen;
import org.apache.asterix.common.annotations.FieldValFileSameIndexDataGen;
import org.apache.asterix.common.annotations.IRecordFieldDataGen;
import org.apache.asterix.common.annotations.InsertRandIntDataGen;
import org.apache.asterix.common.annotations.ListDataGen;
import org.apache.asterix.common.annotations.ListValFileDataGen;
import org.apache.asterix.common.annotations.SkipSecondaryIndexSearchExpressionAnnotation;
import org.apache.asterix.common.annotations.TypeDataGen;
import org.apache.asterix.common.annotations.UndeclaredFieldsDataGen;
import org.apache.asterix.common.config.DatasetConfig.DatasetType;
import org.apache.asterix.common.config.DatasetConfig.IndexType;
import org.apache.asterix.common.exceptions.AsterixException;
import org.apache.asterix.common.functions.FunctionSignature;
import org.apache.asterix.metadata.bootstrap.MetadataConstants;
import org.apache.hyracks.algebricks.common.utils.Pair;
import org.apache.hyracks.algebricks.common.utils.Triple;
import org.apache.hyracks.algebricks.core.algebra.expressions.IExpressionAnnotation;
import org.apache.hyracks.algebricks.core.algebra.expressions.IndexedNLJoinExpressionAnnotation;
import org.apache.hyracks.algebricks.core.algebra.functions.FunctionIdentifier;
import org.apache.hyracks.dataflow.common.data.partition.range.IRangeMap;
/** Token Manager. */
public class AQLParserTokenManager implements AQLParserConstants
{
public int commentDepth = 0;
public IntStack lexerStateStack = new IntStack();
public void pushState() {
lexerStateStack.push( curLexState );
}
public void popState(String token) {
if (lexerStateStack.size() > 0) {
SwitchTo( lexerStateStack.pop() );
} else {
int errorLine = input_stream.getEndLine();
int errorColumn = input_stream.getEndColumn();
String msg = "Lexical error at line " + errorLine + ", column " + errorColumn + ". Encountered \u005c"" + token
+ "\u005c" but state stack is empty.";
throw new TokenMgrError(msg, -1);
}
}
/** Debug output. */
public java.io.PrintStream debugStream = System.out;
/** Set debug output. */
public void setDebugStream(java.io.PrintStream ds) { debugStream = ds; }
private final int jjStopStringLiteralDfa_0(int pos, long active0, long active1, long active2)
{
switch (pos)
{
case 0:
if ((active1 & 0x200000L) != 0L || (active2 & 0x2000L) != 0L)
return 46;
if ((active1 & 0x200000000L) != 0L)
return 54;
if ((active0 & 0xff7fffdffffffffcL) != 0L || (active1 & 0x1c1800004fffffL) != 0L)
{
jjmatchedKind = 133;
return 26;
}
return -1;
case 1:
if ((active0 & 0xf17ff9d6ffcfbebcL) != 0L || (active1 & 0x1c0800004ffb9fL) != 0L)
{
if (jjmatchedPos != 1)
{
jjmatchedKind = 133;
jjmatchedPos = 1;
}
return 26;
}
if ((active0 & 0xe00060900304140L) != 0L || (active1 & 0x100000000460L) != 0L)
return 26;
return -1;
case 2:
if ((active0 & 0x200204002080004L) != 0L || (active1 & 0x80000000084L) != 0L)
return 26;
if ((active0 & 0xf17fdf97fde7feb8L) != 0L || (active1 & 0x1c0000004fff1bL) != 0L)
{
if (jjmatchedPos != 2)
{
jjmatchedKind = 133;
jjmatchedPos = 2;
}
return 26;
}
return -1;
case 3:
if ((active0 & 0x4041048448020020L) != 0L || (active1 & 0xc00000044c009L) != 0L)
return 26;
if ((active0 & 0xb13edb13b7e5fe98L) != 0L || (active1 & 0x100000000b3f12L) != 0L)
{
if (jjmatchedPos != 3)
{
jjmatchedKind = 133;
jjmatchedPos = 3;
}
return 26;
}
return -1;
case 4:
if ((active0 & 0x913e9b03b245f298L) != 0L || (active1 & 0x83a00L) != 0L)
{
jjmatchedKind = 133;
jjmatchedPos = 4;
return 26;
}
if ((active0 & 0x2000401005a00c00L) != 0L || (active1 & 0x10000000030512L) != 0L)
return 26;
return -1;
case 5:
if ((active0 & 0x209b0000002010L) != 0L || (active1 & 0x2a00L) != 0L)
return 26;
if ((active0 & 0x911e0003b245d288L) != 0L || (active1 & 0x81000L) != 0L)
{
jjmatchedKind = 133;
jjmatchedPos = 5;
return 26;
}
return -1;
case 6:
if ((active0 & 0x110c000082001000L) != 0L || (active1 & 0x80000L) != 0L)
return 26;
if ((active0 & 0x801200033045c288L) != 0L || (active1 & 0x1000L) != 0L)
{
if (jjmatchedPos != 6)
{
jjmatchedKind = 133;
jjmatchedPos = 6;
}
return 26;
}
return -1;
case 7:
if ((active0 & 0x8000000010404200L) != 0L)
return 26;
if ((active0 & 0x40000L) != 0L)
{
if (jjmatchedPos < 6)
{
jjmatchedKind = 133;
jjmatchedPos = 6;
}
return -1;
}
if ((active0 & 0x12000320019088L) != 0L || (active1 & 0x1000L) != 0L)
{
jjmatchedKind = 133;
jjmatchedPos = 7;
return 26;
}
return -1;
case 8:
if ((active0 & 0x12000200011000L) != 0L)
{
jjmatchedKind = 133;
jjmatchedPos = 8;
return 26;
}
if ((active0 & 0x120008088L) != 0L || (active1 & 0x1000L) != 0L)
return 26;
if ((active0 & 0x40000L) != 0L)
{
if (jjmatchedPos < 6)
{
jjmatchedKind = 133;
jjmatchedPos = 6;
}
return -1;
}
return -1;
case 9:
if ((active0 & 0x12000200001000L) != 0L)
return 26;
if ((active0 & 0x40000L) != 0L)
{
if (jjmatchedPos < 6)
{
jjmatchedKind = 133;
jjmatchedPos = 6;
}
return -1;
}
if ((active0 & 0x10000L) != 0L)
{
jjmatchedKind = 133;
jjmatchedPos = 9;
return 26;
}
return -1;
case 10:
if ((active0 & 0x10000L) != 0L)
{
jjmatchedKind = 133;
jjmatchedPos = 10;
return 26;
}
if ((active0 & 0x40000L) != 0L)
{
if (jjmatchedPos < 6)
{
jjmatchedKind = 133;
jjmatchedPos = 6;
}
return -1;
}
return -1;
case 11:
if ((active0 & 0x40000L) != 0L)
{
if (jjmatchedPos < 6)
{
jjmatchedKind = 133;
jjmatchedPos = 6;
}
return -1;
}
if ((active0 & 0x10000L) != 0L)
{
jjmatchedKind = 133;
jjmatchedPos = 11;
return 26;
}
return -1;
case 12:
if ((active0 & 0x10000L) != 0L)
return 26;
if ((active0 & 0x40000L) != 0L)
{
if (jjmatchedPos < 6)
{
jjmatchedKind = 133;
jjmatchedPos = 6;
}
return -1;
}
return -1;
case 13:
if ((active0 & 0x40000L) != 0L)
{
if (jjmatchedPos < 6)
{
jjmatchedKind = 133;
jjmatchedPos = 6;
}
return -1;
}
return -1;
case 14:
if ((active0 & 0x40000L) != 0L)
{
if (jjmatchedPos < 6)
{
jjmatchedKind = 133;
jjmatchedPos = 6;
}
return -1;
}
return -1;
default :
return -1;
}
}
private final int jjStartNfa_0(int pos, long active0, long active1, long active2)
{
return jjMoveNfa_0(jjStopStringLiteralDfa_0(pos, active0, active1, active2), pos + 1);
}
private int jjStopAtPos(int pos, int kind)
{
jjmatchedKind = kind;
jjmatchedPos = pos;
return pos + 1;
}
private int jjMoveStringLiteralDfa0_0()
{
switch(curChar)
{
case 33:
return jjMoveStringLiteralDfa1_0(0x0L, 0x10000000000L, 0x0L);
case 35:
return jjStopAtPos(0, 55);
case 37:
return jjStopAtPos(0, 88);
case 40:
return jjStopAtPos(0, 91);
case 41:
return jjStopAtPos(0, 92);
case 42:
return jjStopAtPos(0, 89);
case 43:
return jjStopAtPos(0, 90);
case 44:
return jjStopAtPos(0, 96);
case 45:
return jjStopAtPos(0, 87);
case 46:
return jjStartNfaWithStates_0(0, 97, 54);
case 47:
jjmatchedKind = 85;
return jjMoveStringLiteralDfa1_0(0x0L, 0x0L, 0x2000L);
case 58:
jjmatchedKind = 95;
return jjMoveStringLiteralDfa1_0(0x0L, 0x40000000000L, 0x0L);
case 59:
return jjStopAtPos(0, 1);
case 60:
jjmatchedKind = 99;
return jjMoveStringLiteralDfa1_0(0x0L, 0x2000000000L, 0x0L);
case 61:
return jjStopAtPos(0, 103);
case 62:
jjmatchedKind = 100;
return jjMoveStringLiteralDfa1_0(0x0L, 0x4000000000L, 0x0L);
case 63:
return jjStopAtPos(0, 98);
case 64:
return jjStopAtPos(0, 37);
case 91:
return jjStopAtPos(0, 93);
case 93:
return jjStopAtPos(0, 94);
case 94:
return jjStopAtPos(0, 84);
case 97:
return jjMoveStringLiteralDfa1_0(0x600001000010040L, 0x80000000000L, 0x0L);
case 98:
return jjMoveStringLiteralDfa1_0(0x800000000800000L, 0x0L, 0x0L);
case 99:
return jjMoveStringLiteralDfa1_0(0x2c000000001010L, 0x0L, 0x0L);
case 100:
return jjMoveStringLiteralDfa1_0(0xf110088200000008L, 0x0L, 0x0L);
case 101:
return jjMoveStringLiteralDfa1_0(0x10000400200L, 0x3L, 0x0L);
case 102:
return jjMoveStringLiteralDfa1_0(0x50000000L, 0x1000000000000cL, 0x0L);
case 103:
return jjMoveStringLiteralDfa1_0(0x0L, 0x10L, 0x0L);
case 104:
return jjMoveStringLiteralDfa1_0(0x800L, 0x0L, 0x0L);
case 105:
return jjMoveStringLiteralDfa1_0(0x60900204000L, 0x400060L, 0x0L);
case 107:
return jjMoveStringLiteralDfa1_0(0x4002000000L, 0x80000L, 0x0L);
case 108:
return jjMoveStringLiteralDfa1_0(0x1000000000000L, 0x180L, 0x0L);
case 110:
return jjMoveStringLiteralDfa1_0(0x4000080L, 0x4000000000000L, 0x0L);
case 111:
return jjMoveStringLiteralDfa1_0(0x40800000000100L, 0x100000000600L, 0x0L);
case 112:
return jjMoveStringLiteralDfa1_0(0x2000480002000L, 0x0L, 0x0L);
case 114:
return jjMoveStringLiteralDfa1_0(0x10c0000L, 0x800L, 0x0L);
case 115:
return jjMoveStringLiteralDfa1_0(0x200020000000L, 0x7000L, 0x0L);
case 116:
return jjMoveStringLiteralDfa1_0(0x108020L, 0x8000000008000L, 0x0L);
case 117:
return jjMoveStringLiteralDfa1_0(0x100000000404L, 0x10000L, 0x0L);
case 119:
return jjMoveStringLiteralDfa1_0(0x400008020000L, 0x60000L, 0x0L);
case 123:
jjmatchedKind = 109;
return jjMoveStringLiteralDfa1_0(0x0L, 0x800000000000L, 0x0L);
case 125:
return jjStopAtPos(0, 110);
case 126:
return jjMoveStringLiteralDfa1_0(0x0L, 0x20000000000L, 0x0L);
default :
return jjMoveNfa_0(0, 0);
}
}
private int jjMoveStringLiteralDfa1_0(long active0, long active1, long active2)
{
try { curChar = input_stream.readChar(); }
catch(java.io.IOException e) {
jjStopStringLiteralDfa_0(0, active0, active1, active2);
return 1;
}
switch(curChar)
{
case 42:
if ((active2 & 0x2000L) != 0L)
return jjStopAtPos(1, 141);
break;
case 61:
if ((active1 & 0x2000000000L) != 0L)
return jjStopAtPos(1, 101);
else if ((active1 & 0x4000000000L) != 0L)
return jjStopAtPos(1, 102);
else if ((active1 & 0x10000000000L) != 0L)
return jjStopAtPos(1, 104);
else if ((active1 & 0x20000000000L) != 0L)
return jjStopAtPos(1, 105);
else if ((active1 & 0x40000000000L) != 0L)
return jjStopAtPos(1, 106);
break;
case 97:
return jjMoveStringLiteralDfa2_0(active0, 0x1000000400000008L, active1, 0x10000000001000L, active2, 0L);
case 100:
return jjMoveStringLiteralDfa2_0(active0, 0L, active1, 0x400000L, active2, 0L);
case 101:
return jjMoveStringLiteralDfa2_0(active0, 0x6100284262048000L, active1, 0x82880L, active2, 0L);
case 102:
if ((active1 & 0x20L) != 0L)
{
jjmatchedKind = 69;
jjmatchedPos = 1;
}
return jjMoveStringLiteralDfa2_0(active0, 0x800000000L, active1, 0x200L, active2, 0L);
case 103:
return jjMoveStringLiteralDfa2_0(active0, 0x4000000L, active1, 0L, active2, 0L);
case 104:
return jjMoveStringLiteralDfa2_0(active0, 0L, active1, 0x28000L, active2, 0L);
case 105:
return jjMoveStringLiteralDfa2_0(active0, 0x8010000008020800L, active1, 0x40100L, active2, 0L);
case 108:
return jjMoveStringLiteralDfa2_0(active0, 0x20000000000000L, active1, 0x1L, active2, 0L);
case 110:
if ((active0 & 0x100L) != 0L)
return jjStartNfaWithStates_0(1, 8, 26);
else if ((active1 & 0x40L) != 0L)
{
jjmatchedKind = 70;
jjmatchedPos = 1;
}
return jjMoveStringLiteralDfa2_0(active0, 0x60100604000L, active1, 0x80000010000L, active2, 0L);
case 111:
if ((active0 & 0x100000L) != 0L)
return jjStartNfaWithStates_0(1, 20, 26);
return jjMoveStringLiteralDfa2_0(active0, 0xd000000003080L, active1, 0x4004L, active2, 0L);
case 112:
return jjMoveStringLiteralDfa2_0(active0, 0x40101000000000L, active1, 0L, active2, 0L);
case 114:
if ((active1 & 0x100000000000L) != 0L)
{
jjmatchedKind = 108;
jjmatchedPos = 1;
}
return jjMoveStringLiteralDfa2_0(active0, 0x2408080000010L, active1, 0x8000000000418L, active2, 0L);
case 115:
if ((active0 & 0x40L) != 0L)
{
jjmatchedKind = 6;
jjmatchedPos = 1;
}
return jjMoveStringLiteralDfa2_0(active0, 0x200000000000404L, active1, 0L, active2, 0L);
case 116:
if ((active0 & 0x400000000000000L) != 0L)
return jjStartNfaWithStates_0(1, 58, 26);
return jjMoveStringLiteralDfa2_0(active0, 0x1800000L, active1, 0L, active2, 0L);
case 117:
return jjMoveStringLiteralDfa2_0(active0, 0x800010090000L, active1, 0x4000000000000L, active2, 0L);
case 118:
return jjMoveStringLiteralDfa2_0(active0, 0L, active1, 0x2L, active2, 0L);
case 120:
return jjMoveStringLiteralDfa2_0(active0, 0x10000000200L, active1, 0L, active2, 0L);
case 121:
if ((active0 & 0x800000000000000L) != 0L)
return jjStartNfaWithStates_0(1, 59, 26);
return jjMoveStringLiteralDfa2_0(active0, 0x20L, active1, 0L, active2, 0L);
case 123:
if ((active1 & 0x800000000000L) != 0L)
return jjStopAtPos(1, 111);
break;
default :
break;
}
return jjStartNfa_0(0, active0, active1, active2);
}
private int jjMoveStringLiteralDfa2_0(long old0, long active0, long old1, long active1, long old2, long active2)
{
if (((active0 &= old0) | (active1 &= old1) | (active2 &= old2)) == 0L)
return jjStartNfa_0(0, old0, old1, old2);
try { curChar = input_stream.readChar(); }
catch(java.io.IOException e) {
jjStopStringLiteralDfa_0(1, active0, active1, 0L);
return 2;
}
switch(curChar)
{
case 32:
return jjMoveStringLiteralDfa3_0(active0, 0x800000000L, active1, 0L);
case 97:
return jjMoveStringLiteralDfa3_0(active0, 0x1000000000000L, active1, 0L);
case 99:
if ((active0 & 0x200000000000000L) != 0L)
return jjStartNfaWithStates_0(2, 57, 26);
return jjMoveStringLiteralDfa3_0(active0, 0x2100000020000000L, active1, 0L);
case 100:
if ((active1 & 0x80000000000L) != 0L)
return jjStartNfaWithStates_0(2, 107, 26);
return jjMoveStringLiteralDfa3_0(active0, 0x100000200080L, active1, 0x400L);
case 101:
if ((active0 & 0x4L) != 0L)
return jjStartNfaWithStates_0(2, 2, 26);
return jjMoveStringLiteralDfa3_0(active0, 0x42000040000010L, active1, 0xa8002L);
case 102:
return jjMoveStringLiteralDfa3_0(active0, 0x200440000L, active1, 0x200L);
case 103:
return jjMoveStringLiteralDfa3_0(active0, 0x100000000L, active1, 0L);
case 105:
return jjMoveStringLiteralDfa3_0(active0, 0x410080000400L, active1, 0x410000L);
case 108:
return jjMoveStringLiteralDfa3_0(active0, 0x80000002000L, active1, 0x14000000002000L);
case 109:
return jjMoveStringLiteralDfa3_0(active0, 0x4000000009000L, active1, 0x4100L);
case 110:
if ((active0 & 0x80000L) != 0L)
return jjStartNfaWithStates_0(2, 19, 26);
return jjMoveStringLiteralDfa3_0(active0, 0x8000010000800L, active1, 0L);
case 111:
return jjMoveStringLiteralDfa3_0(active0, 0x20008000000000L, active1, 0x18L);
case 112:
return jjMoveStringLiteralDfa3_0(active0, 0x1000000020L, active1, 0L);
case 114:
if ((active1 & 0x4L) != 0L)
return jjStartNfaWithStates_0(2, 66, 26);
return jjMoveStringLiteralDfa3_0(active0, 0x5800000L, active1, 0L);
case 115:
return jjMoveStringLiteralDfa3_0(active0, 0xc010020000000000L, active1, 0x1L);
case 116:
if ((active0 & 0x200000000000L) != 0L)
return jjStartNfaWithStates_0(2, 45, 26);
else if ((active1 & 0x80L) != 0L)
return jjStartNfaWithStates_0(2, 71, 26);
return jjMoveStringLiteralDfa3_0(active0, 0x1000840408034208L, active1, 0x41800L);
case 117:
return jjMoveStringLiteralDfa3_0(active0, 0L, active1, 0x8000000000000L);
case 121:
if ((active0 & 0x4000000000L) != 0L)
{
jjmatchedKind = 38;
jjmatchedPos = 2;
}
return jjMoveStringLiteralDfa3_0(active0, 0x2000000L, active1, 0L);
default :
break;
}
return jjStartNfa_0(1, active0, active1, 0L);
}
private int jjMoveStringLiteralDfa3_0(long old0, long active0, long old1, long active1)
{
if (((active0 &= old0) | (active1 &= old1)) == 0L)
return jjStartNfa_0(1, old0, old1, 0L);
try { curChar = input_stream.readChar(); }
catch(java.io.IOException e) {
jjStopStringLiteralDfa_0(2, active0, active1, 0L);
return 3;
}
switch(curChar)
{
case 45:
return jjMoveStringLiteralDfa4_0(active0, 0x2000000000000L, active1, 0L);
case 97:
return jjMoveStringLiteralDfa4_0(active0, 0x1000100004000018L, active1, 0L);
case 99:
if ((active0 & 0x4000000000000000L) != 0L)
return jjStartNfaWithStates_0(3, 62, 26);
return jjMoveStringLiteralDfa4_0(active0, 0x10000010000000L, active1, 0L);
case 100:
if ((active0 & 0x40000000L) != 0L)
return jjStartNfaWithStates_0(3, 30, 26);
else if ((active0 & 0x1000000000000L) != 0L)
return jjStartNfaWithStates_0(3, 48, 26);
break;
case 101:
if ((active0 & 0x20L) != 0L)
return jjStartNfaWithStates_0(3, 5, 26);
else if ((active1 & 0x1L) != 0L)
return jjStartNfaWithStates_0(3, 64, 26);
else if ((active1 & 0x4000L) != 0L)
return jjStartNfaWithStates_0(3, 78, 26);
else if ((active1 & 0x8000000000000L) != 0L)
return jjStartNfaWithStates_0(3, 115, 26);
return jjMoveStringLiteralDfa4_0(active0, 0xa0101a04280L, active1, 0x2400L);
case 104:
if ((active0 & 0x400000000L) != 0L)
return jjStartNfaWithStates_0(3, 34, 26);
else if ((active1 & 0x40000L) != 0L)
{
jjmatchedKind = 82;
jjmatchedPos = 3;
}
return jjMoveStringLiteralDfa4_0(active0, 0x8020000L, active1, 0L);
case 105:
return jjMoveStringLiteralDfa4_0(active0, 0x200002000L, active1, 0x1100L);
case 108:
if ((active1 & 0x4000000000000L) != 0L)
return jjStartNfaWithStates_0(3, 114, 26);
return jjMoveStringLiteralDfa4_0(active0, 0x100001000000000L, active1, 0L);
case 109:
if ((active1 & 0x8L) != 0L)
return jjStartNfaWithStates_0(3, 67, 26);
return jjMoveStringLiteralDfa4_0(active0, 0x80000000L, active1, 0L);
case 110:
if ((active0 & 0x40000000000000L) != 0L)
return jjStartNfaWithStates_0(3, 54, 26);
else if ((active1 & 0x8000L) != 0L)
return jjStartNfaWithStates_0(3, 79, 26);
return jjMoveStringLiteralDfa4_0(active0, 0x8000800000400L, active1, 0L);
case 111:
if ((active0 & 0x40000000000L) != 0L)
return jjStartNfaWithStates_0(3, 42, 26);
return jjMoveStringLiteralDfa4_0(active0, 0x2000000020410000L, active1, 0x10000L);
case 112:
if ((active0 & 0x8000000000L) != 0L)
return jjStartNfaWithStates_0(3, 39, 26);
return jjMoveStringLiteralDfa4_0(active0, 0x4800000009000L, active1, 0x80000L);
case 114:
return jjMoveStringLiteralDfa4_0(active0, 0x40000L, active1, 0x20002L);
case 115:
return jjMoveStringLiteralDfa4_0(active0, 0x20010000000000L, active1, 0x10000000000200L);
case 116:
return jjMoveStringLiteralDfa4_0(active0, 0x8000400000000800L, active1, 0L);
case 117:
return jjMoveStringLiteralDfa4_0(active0, 0L, active1, 0x810L);
case 118:
if ((active1 & 0x400000L) != 0L)
return jjStartNfaWithStates_0(3, 86, 26);
break;
case 119:
return jjMoveStringLiteralDfa4_0(active0, 0x2000000L, active1, 0L);
default :
break;
}
return jjStartNfa_0(2, active0, active1, 0L);
}
private int jjMoveStringLiteralDfa4_0(long old0, long active0, long old1, long active1)
{
if (((active0 &= old0) | (active1 &= old1)) == 0L)
return jjStartNfa_0(2, old0, old1, 0L);
try { curChar = input_stream.readChar(); }
catch(java.io.IOException e) {
jjStopStringLiteralDfa_0(3, active0, active1, 0L);
return 4;
}
switch(curChar)
{
case 32:
return jjMoveStringLiteralDfa5_0(active0, 0x8020000L, active1, 0L);
case 97:
return jjMoveStringLiteralDfa5_0(active0, 0x104000080001000L, active1, 0L);
case 99:
return jjMoveStringLiteralDfa5_0(active0, 0x2000L, active1, 0x2000L);
case 101:
if ((active0 & 0x800000L) != 0L)
return jjStartNfaWithStates_0(4, 23, 26);
else if ((active0 & 0x1000000L) != 0L)
return jjStartNfaWithStates_0(4, 24, 26);
else if ((active0 & 0x400000000000L) != 0L)
return jjStartNfaWithStates_0(4, 46, 26);
else if ((active1 & 0x20000L) != 0L)
return jjStartNfaWithStates_0(4, 81, 26);
else if ((active1 & 0x10000000000000L) != 0L)
return jjStartNfaWithStates_0(4, 116, 26);
return jjMoveStringLiteralDfa5_0(active0, 0x28000000040000L, active1, 0x200L);
case 103:
if ((active0 & 0x400L) != 0L)
return jjStartNfaWithStates_0(4, 10, 26);
return jjMoveStringLiteralDfa5_0(active0, 0x10080L, active1, 0L);
case 105:
return jjMoveStringLiteralDfa5_0(active0, 0x8000000000000000L, active1, 0x80000L);
case 109:
if ((active0 & 0x4000000L) != 0L)
return jjStartNfaWithStates_0(4, 26, 26);
break;
case 110:
if ((active1 & 0x10000L) != 0L)
return jjStartNfaWithStates_0(4, 80, 26);
return jjMoveStringLiteralDfa5_0(active0, 0x220000000L, active1, 0L);
case 111:
return jjMoveStringLiteralDfa5_0(active0, 0x10000802008000L, active1, 0L);
case 112:
if ((active1 & 0x10L) != 0L)
return jjStartNfaWithStates_0(4, 68, 26);
break;
case 114:
if ((active0 & 0x2000000000000000L) != 0L)
return jjStartNfaWithStates_0(4, 61, 26);
else if ((active1 & 0x400L) != 0L)
return jjStartNfaWithStates_0(4, 74, 26);
return jjMoveStringLiteralDfa5_0(active0, 0x20000404200L, active1, 0x800L);
case 115:
if ((active0 & 0x800L) != 0L)
return jjStartNfaWithStates_0(4, 11, 26);
return jjMoveStringLiteralDfa5_0(active0, 0x1002000100000000L, active1, 0x1000L);
case 116:
if ((active1 & 0x100L) != 0L)
return jjStartNfaWithStates_0(4, 72, 26);
return jjMoveStringLiteralDfa5_0(active0, 0x190010000010L, active1, 0L);
case 117:
return jjMoveStringLiteralDfa5_0(active0, 0x800000000000L, active1, 0L);
case 118:
return jjMoveStringLiteralDfa5_0(active0, 0x8L, active1, 0L);
case 120:
if ((active0 & 0x200000L) != 0L)
return jjStartNfaWithStates_0(4, 21, 26);
break;
case 121:
if ((active0 & 0x1000000000L) != 0L)
return jjStartNfaWithStates_0(4, 36, 26);
else if ((active1 & 0x2L) != 0L)
return jjStartNfaWithStates_0(4, 65, 26);
break;
default :
break;
}
return jjStartNfa_0(3, active0, active1, 0L);
}
private int jjMoveStringLiteralDfa5_0(long old0, long active0, long old1, long active1)
{
if (((active0 &= old0) | (active1 &= old1)) == 0L)
return jjStartNfa_0(3, old0, old1, 0L);
try { curChar = input_stream.readChar(); }
catch(java.io.IOException e) {
jjStopStringLiteralDfa_0(4, active0, active1, 0L);
return 5;
}
switch(curChar)
{
case 99:
return jjMoveStringLiteralDfa6_0(active0, 0xc000000401000L, active1, 0L);
case 100:
if ((active0 & 0x20000000000000L) != 0L)
return jjStartNfaWithStates_0(5, 53, 26);
return jjMoveStringLiteralDfa6_0(active0, 0x20000000L, active1, 0L);
case 101:
if ((active0 & 0x10L) != 0L)
return jjStartNfaWithStates_0(5, 4, 26);
else if ((active0 & 0x80000000000L) != 0L)
return jjStartNfaWithStates_0(5, 43, 26);
else if ((active0 & 0x100000000000L) != 0L)
return jjStartNfaWithStates_0(5, 44, 26);
return jjMoveStringLiteralDfa6_0(active0, 0x1000000000010008L, active1, 0L);
case 102:
return jjMoveStringLiteralDfa6_0(active0, 0x8020000L, active1, 0x1000L);
case 105:
return jjMoveStringLiteralDfa6_0(active0, 0x210000000L, active1, 0L);
case 110:
if ((active1 & 0x800L) != 0L)
return jjStartNfaWithStates_0(5, 75, 26);
return jjMoveStringLiteralDfa6_0(active0, 0x8010000000004200L, active1, 0x80000L);
case 111:
return jjMoveStringLiteralDfa6_0(active0, 0x2000000000000L, active1, 0L);
case 114:
return jjMoveStringLiteralDfa6_0(active0, 0x100000082008080L, active1, 0L);
case 115:
if ((active0 & 0x10000000000L) != 0L)
return jjStartNfaWithStates_0(5, 40, 26);
return jjMoveStringLiteralDfa6_0(active0, 0x40000L, active1, 0L);
case 116:
if ((active0 & 0x20000000000L) != 0L)
return jjStartNfaWithStates_0(5, 41, 26);
else if ((active0 & 0x800000000000L) != 0L)
return jjStartNfaWithStates_0(5, 47, 26);
else if ((active1 & 0x200L) != 0L)
return jjStartNfaWithStates_0(5, 73, 26);
else if ((active1 & 0x2000L) != 0L)
return jjStartNfaWithStates_0(5, 77, 26);
return jjMoveStringLiteralDfa6_0(active0, 0x900000000L, active1, 0L);
case 121:
if ((active0 & 0x2000L) != 0L)
return jjStartNfaWithStates_0(5, 13, 26);
break;
default :
break;
}
return jjStartNfa_0(4, active0, active1, 0L);
}
private int jjMoveStringLiteralDfa6_0(long old0, long active0, long old1, long active1)
{
if (((active0 &= old0) | (active1 &= old1)) == 0L)
return jjStartNfa_0(4, old0, old1, 0L);
try { curChar = input_stream.readChar(); }
catch(java.io.IOException e) {
jjStopStringLiteralDfa_0(5, active0, active1, 0L);
return 6;
}
switch(curChar)
{
case 32:
return jjMoveStringLiteralDfa7_0(active0, 0x800000000L, active1, 0L);
case 97:
return jjMoveStringLiteralDfa7_0(active0, 0x2000c200L, active1, 0L);
case 99:
return jjMoveStringLiteralDfa7_0(active0, 0x8000000000000000L, active1, 0L);
case 100:
if ((active0 & 0x2000000L) != 0L)
return jjStartNfaWithStates_0(6, 25, 26);
break;
case 101:
if ((active0 & 0x100000000000000L) != 0L)
return jjStartNfaWithStates_0(6, 56, 26);
return jjMoveStringLiteralDfa7_0(active0, 0x400000L, active1, 0L);
case 103:
if ((active1 & 0x80000L) != 0L)
return jjStartNfaWithStates_0(6, 83, 26);
break;
case 104:
return jjMoveStringLiteralDfa7_0(active0, 0x40000L, active1, 0L);
case 105:
return jjMoveStringLiteralDfa7_0(active0, 0x100020000L, active1, 0x1000L);
case 110:
return jjMoveStringLiteralDfa7_0(active0, 0x10000000010000L, active1, 0L);
case 111:
return jjMoveStringLiteralDfa7_0(active0, 0x18000080L, active1, 0L);
case 114:
return jjMoveStringLiteralDfa7_0(active0, 0x2000000000008L, active1, 0L);
case 116:
if ((active0 & 0x4000000000000L) != 0L)
{
jjmatchedKind = 50;
jjmatchedPos = 6;
}
else if ((active0 & 0x8000000000000L) != 0L)
return jjStartNfaWithStates_0(6, 51, 26);
else if ((active0 & 0x1000000000000000L) != 0L)
return jjStartNfaWithStates_0(6, 60, 26);
return jjMoveStringLiteralDfa7_0(active0, 0x200001000L, active1, 0L);
case 121:
if ((active0 & 0x80000000L) != 0L)
return jjStartNfaWithStates_0(6, 31, 26);
break;
default :
break;
}
return jjStartNfa_0(5, active0, active1, 0L);
}
private int jjMoveStringLiteralDfa7_0(long old0, long active0, long old1, long active1)
{
if (((active0 &= old0) | (active1 &= old1)) == 0L)
return jjStartNfa_0(5, old0, old1, 0L);
try { curChar = input_stream.readChar(); }
catch(java.io.IOException e) {
jjStopStringLiteralDfa_0(6, active0, active1, 0L);
return 7;
}
switch(curChar)
{
case 32:
return jjMoveStringLiteralDfa8_0(active0, 0x40000L, active1, 0L);
case 100:
if ((active0 & 0x400000L) != 0L)
return jjStartNfaWithStates_0(7, 22, 26);
break;
case 101:
return jjMoveStringLiteralDfa8_0(active0, 0x10000800010000L, active1, 0x1000L);
case 105:
return jjMoveStringLiteralDfa8_0(active0, 0x200001000L, active1, 0L);
case 108:
if ((active0 & 0x200L) != 0L)
return jjStartNfaWithStates_0(7, 9, 26);
else if ((active0 & 0x4000L) != 0L)
return jjStartNfaWithStates_0(7, 14, 26);
return jjMoveStringLiteralDfa8_0(active0, 0x20000L, active1, 0L);
case 110:
if ((active0 & 0x10000000L) != 0L)
return jjStartNfaWithStates_0(7, 28, 26);
break;
case 111:
return jjMoveStringLiteralDfa8_0(active0, 0x100000000L, active1, 0L);
case 114:
return jjMoveStringLiteralDfa8_0(active0, 0x28008000L, active1, 0L);
case 115:
return jjMoveStringLiteralDfa8_0(active0, 0x8L, active1, 0L);
case 116:
if ((active0 & 0x8000000000000000L) != 0L)
return jjStartNfaWithStates_0(7, 63, 26);
return jjMoveStringLiteralDfa8_0(active0, 0x2000000000000L, active1, 0L);
case 117:
return jjMoveStringLiteralDfa8_0(active0, 0x80L, active1, 0L);
default :
break;
}
return jjStartNfa_0(6, active0, active1, 0L);
}
private int jjMoveStringLiteralDfa8_0(long old0, long active0, long old1, long active1)
{
if (((active0 &= old0) | (active1 &= old1)) == 0L)
return jjStartNfa_0(6, old0, old1, 0L);
try { curChar = input_stream.readChar(); }
catch(java.io.IOException e) {
jjStopStringLiteralDfa_0(7, active0, active1, 0L);
return 8;
}
switch(curChar)
{
case 99:
return jjMoveStringLiteralDfa9_0(active0, 0x10000000000000L, active1, 0L);
case 101:
if ((active0 & 0x8L) != 0L)
return jjStartNfaWithStates_0(8, 3, 26);
return jjMoveStringLiteralDfa9_0(active0, 0x2000000040000L, active1, 0L);
case 109:
return jjMoveStringLiteralDfa9_0(active0, 0x8000000L, active1, 0L);
case 110:
if ((active0 & 0x100000000L) != 0L)
return jjStartNfaWithStates_0(8, 32, 26);
break;
case 111:
return jjMoveStringLiteralDfa9_0(active0, 0x200001000L, active1, 0L);
case 112:
if ((active0 & 0x80L) != 0L)
return jjStartNfaWithStates_0(8, 7, 26);
break;
case 114:
return jjMoveStringLiteralDfa9_0(active0, 0x10000L, active1, 0L);
case 115:
if ((active1 & 0x1000L) != 0L)
return jjStartNfaWithStates_0(8, 76, 26);
break;
case 116:
return jjMoveStringLiteralDfa9_0(active0, 0x20000L, active1, 0L);
case 120:
return jjMoveStringLiteralDfa9_0(active0, 0x800000000L, active1, 0L);
case 121:
if ((active0 & 0x8000L) != 0L)
return jjStartNfaWithStates_0(8, 15, 26);
else if ((active0 & 0x20000000L) != 0L)
return jjStartNfaWithStates_0(8, 29, 26);
break;
default :
break;
}
return jjStartNfa_0(7, active0, active1, 0L);
}
private int jjMoveStringLiteralDfa9_0(long old0, long active0, long old1, long active1)
{
if (((active0 &= old0) | (active1 &= old1)) == 0L)
return jjStartNfa_0(7, old0, old1, 0L);
try { curChar = input_stream.readChar(); }
catch(java.io.IOException e) {
jjStopStringLiteralDfa_0(8, active0, 0L, 0L);
return 9;
}
switch(curChar)
{
case 97:
return jjMoveStringLiteralDfa10_0(active0, 0x8010000L);
case 100:
if ((active0 & 0x2000000000000L) != 0L)
return jjStartNfaWithStates_0(9, 49, 26);
break;
case 101:
return jjMoveStringLiteralDfa10_0(active0, 0x20000L);
case 105:
return jjMoveStringLiteralDfa10_0(active0, 0x800000000L);
case 110:
if ((active0 & 0x1000L) != 0L)
return jjStartNfaWithStates_0(9, 12, 26);
else if ((active0 & 0x200000000L) != 0L)
return jjStartNfaWithStates_0(9, 33, 26);
break;
case 116:
if ((active0 & 0x10000000000000L) != 0L)
return jjStartNfaWithStates_0(9, 52, 26);
break;
case 120:
return jjMoveStringLiteralDfa10_0(active0, 0x40000L);
default :
break;
}
return jjStartNfa_0(8, active0, 0L, 0L);
}
private int jjMoveStringLiteralDfa10_0(long old0, long active0)
{
if (((active0 &= old0)) == 0L)
return jjStartNfa_0(8, old0, 0L, 0L);
try { curChar = input_stream.readChar(); }
catch(java.io.IOException e) {
jjStopStringLiteralDfa_0(9, active0, 0L, 0L);
return 10;
}
switch(curChar)
{
case 114:
return jjMoveStringLiteralDfa11_0(active0, 0x20000L);
case 115:
return jjMoveStringLiteralDfa11_0(active0, 0x800000000L);
case 116:
if ((active0 & 0x8000000L) != 0L)
return jjStopAtPos(10, 27);
return jjMoveStringLiteralDfa11_0(active0, 0x50000L);
default :
break;
}
return jjStartNfa_0(9, active0, 0L, 0L);
}
private int jjMoveStringLiteralDfa11_0(long old0, long active0)
{
if (((active0 &= old0)) == 0L)
return jjStartNfa_0(9, old0, 0L, 0L);
try { curChar = input_stream.readChar(); }
catch(java.io.IOException e) {
jjStopStringLiteralDfa_0(10, active0, 0L, 0L);
return 11;
}
switch(curChar)
{
case 32:
return jjMoveStringLiteralDfa12_0(active0, 0x20000L);
case 101:
return jjMoveStringLiteralDfa12_0(active0, 0x50000L);
case 116:
return jjMoveStringLiteralDfa12_0(active0, 0x800000000L);
default :
break;
}
return jjStartNfa_0(10, active0, 0L, 0L);
}
private int jjMoveStringLiteralDfa12_0(long old0, long active0)
{
if (((active0 &= old0)) == 0L)
return jjStartNfa_0(10, old0, 0L, 0L);
try { curChar = input_stream.readChar(); }
catch(java.io.IOException e) {
jjStopStringLiteralDfa_0(11, active0, 0L, 0L);
return 12;
}
switch(curChar)
{
case 100:
if ((active0 & 0x10000L) != 0L)
return jjStartNfaWithStates_0(12, 16, 26);
break;
case 111:
return jjMoveStringLiteralDfa13_0(active0, 0x20000L);
case 114:
return jjMoveStringLiteralDfa13_0(active0, 0x40000L);
case 115:
if ((active0 & 0x800000000L) != 0L)
return jjStopAtPos(12, 35);
break;
default :
break;
}
return jjStartNfa_0(11, active0, 0L, 0L);
}
private int jjMoveStringLiteralDfa13_0(long old0, long active0)
{
if (((active0 &= old0)) == 0L)
return jjStartNfa_0(11, old0, 0L, 0L);
try { curChar = input_stream.readChar(); }
catch(java.io.IOException e) {
jjStopStringLiteralDfa_0(12, active0, 0L, 0L);
return 13;
}
switch(curChar)
{
case 110:
if ((active0 & 0x20000L) != 0L)
return jjStopAtPos(13, 17);
return jjMoveStringLiteralDfa14_0(active0, 0x40000L);
default :
break;
}
return jjStartNfa_0(12, active0, 0L, 0L);
}
private int jjMoveStringLiteralDfa14_0(long old0, long active0)
{
if (((active0 &= old0)) == 0L)
return jjStartNfa_0(12, old0, 0L, 0L);
try { curChar = input_stream.readChar(); }
catch(java.io.IOException e) {
jjStopStringLiteralDfa_0(13, active0, 0L, 0L);
return 14;
}
switch(curChar)
{
case 97:
return jjMoveStringLiteralDfa15_0(active0, 0x40000L);
default :
break;
}
return jjStartNfa_0(13, active0, 0L, 0L);
}
private int jjMoveStringLiteralDfa15_0(long old0, long active0)
{
if (((active0 &= old0)) == 0L)
return jjStartNfa_0(13, old0, 0L, 0L);
try { curChar = input_stream.readChar(); }
catch(java.io.IOException e) {
jjStopStringLiteralDfa_0(14, active0, 0L, 0L);
return 15;
}
switch(curChar)
{
case 108:
if ((active0 & 0x40000L) != 0L)
return jjStopAtPos(15, 18);
break;
default :
break;
}
return jjStartNfa_0(14, active0, 0L, 0L);
}
private int jjStartNfaWithStates_0(int pos, int kind, int state)
{
jjmatchedKind = kind;
jjmatchedPos = pos;
try { curChar = input_stream.readChar(); }
catch(java.io.IOException e) { return pos + 1; }
return jjMoveNfa_0(state, pos + 1);
}
static final long[] jjbitVec0 = {
0xfffffffffffffffeL, 0xffffffffffffffffL, 0xffffffffffffffffL, 0xffffffffffffffffL
};
static final long[] jjbitVec2 = {
0x0L, 0x0L, 0xffffffffffffffffL, 0xffffffffffffffffL
};
private int jjMoveNfa_0(int startState, int curPos)
{
int startsAt = 0;
jjnewStateCnt = 54;
int i = 1;
jjstateSet[0] = startState;
int kind = 0x7fffffff;
for (;;)
{
if (++jjround == 0x7fffffff)
ReInitRounds();
if (curChar < 64)
{
long l = 1L << curChar;
do
{
switch(jjstateSet[--i])
{
case 46:
if (curChar == 47)
{
if (kind > 140)
kind = 140;
jjCheckNAddStates(0, 2);
}
if (curChar == 47)
jjCheckNAddTwoStates(47, 48);
break;
case 54:
if ((0x3ff000000000000L & l) != 0L)
jjCheckNAddTwoStates(44, 37);
if ((0x3ff000000000000L & l) != 0L)
{
if (kind > 118)
kind = 118;
jjCheckNAdd(43);
}
break;
case 0:
if ((0x3ff000000000000L & l) != 0L)
{
if (kind > 113)
kind = 113;
jjCheckNAddStates(3, 11);
}
else if ((0x201000000000L & l) != 0L)
{
if (kind > 122)
kind = 122;
}
else if (curChar == 47)
jjAddStates(12, 13);
else if (curChar == 46)
jjCheckNAddTwoStates(43, 44);
else if (curChar == 39)
jjCheckNAddStates(14, 16);
else if (curChar == 34)
jjCheckNAddStates(17, 19);
if (curChar == 36)
jjstateSet[jjnewStateCnt++] = 28;
break;
case 1:
case 5:
if (curChar == 34)
jjCheckNAddStates(17, 19);
break;
case 2:
if ((0xfffffffbffffffffL & l) != 0L)
jjCheckNAddStates(17, 19);
break;
case 3:
if (curChar == 34 && kind > 123)
kind = 123;
break;
case 7:
if (curChar == 47)
jjCheckNAddStates(17, 19);
break;
case 13:
case 17:
if (curChar == 39)
jjCheckNAddStates(14, 16);
break;
case 14:
if ((0xffffff7fffffffffL & l) != 0L)
jjCheckNAddStates(14, 16);
break;
case 15:
if (curChar == 39 && kind > 123)
kind = 123;
break;
case 19:
if (curChar == 47)
jjCheckNAddStates(14, 16);
break;
case 26:
if ((0x3ff201000000000L & l) == 0L)
break;
if (kind > 133)
kind = 133;
jjstateSet[jjnewStateCnt++] = 26;
break;
case 27:
if (curChar == 36)
jjstateSet[jjnewStateCnt++] = 28;
break;
case 29:
if ((0x3ff000000000000L & l) == 0L)
break;
if (kind > 134)
kind = 134;
jjstateSet[jjnewStateCnt++] = 29;
break;
case 30:
if ((0x3ff000000000000L & l) == 0L)
break;
if (kind > 113)
kind = 113;
jjCheckNAddStates(3, 11);
break;
case 31:
if ((0x3ff000000000000L & l) == 0L)
break;
if (kind > 113)
kind = 113;
jjCheckNAdd(31);
break;
case 32:
if ((0x3ff000000000000L & l) == 0L)
break;
if (kind > 118)
kind = 118;
jjCheckNAdd(32);
break;
case 33:
if ((0x3ff000000000000L & l) == 0L)
break;
if (kind > 118)
kind = 118;
jjCheckNAddTwoStates(33, 34);
break;
case 34:
if (curChar == 46)
jjCheckNAdd(35);
break;
case 35:
if ((0x3ff000000000000L & l) == 0L)
break;
if (kind > 118)
kind = 118;
jjCheckNAdd(35);
break;
case 36:
if ((0x3ff000000000000L & l) != 0L)
jjCheckNAddTwoStates(36, 37);
break;
case 38:
if ((0x3ff000000000000L & l) == 0L)
break;
if (kind > 119)
kind = 119;
jjCheckNAddTwoStates(38, 39);
break;
case 39:
if (curChar == 46)
jjCheckNAdd(40);
break;
case 40:
if ((0x3ff000000000000L & l) != 0L)
jjCheckNAddTwoStates(40, 37);
break;
case 41:
if ((0x3ff000000000000L & l) == 0L)
break;
if (kind > 120)
kind = 120;
jjCheckNAdd(41);
break;
case 42:
if (curChar == 46)
jjCheckNAddTwoStates(43, 44);
break;
case 43:
if ((0x3ff000000000000L & l) == 0L)
break;
if (kind > 118)
kind = 118;
jjCheckNAdd(43);
break;
case 44:
if ((0x3ff000000000000L & l) != 0L)
jjCheckNAddTwoStates(44, 37);
break;
case 45:
if (curChar == 47)
jjAddStates(12, 13);
break;
case 47:
if ((0xfffffffffffffbffL & l) != 0L)
jjCheckNAddTwoStates(47, 48);
break;
case 48:
if (curChar == 10 && kind > 139)
kind = 139;
break;
case 49:
if (curChar != 47)
break;
if (kind > 140)
kind = 140;
jjCheckNAddStates(0, 2);
break;
case 50:
if ((0xffffffffffffdbffL & l) == 0L)
break;
if (kind > 140)
kind = 140;
jjCheckNAddStates(0, 2);
break;
case 51:
if ((0x2400L & l) != 0L && kind > 140)
kind = 140;
break;
case 52:
if (curChar == 10 && kind > 140)
kind = 140;
break;
case 53:
if (curChar == 13)
jjstateSet[jjnewStateCnt++] = 52;
break;
default : break;
}
} while(i != startsAt);
}
else if (curChar < 128)
{
long l = 1L << (curChar & 077);
do
{
switch(jjstateSet[--i])
{
case 0:
if ((0x7fffffe07fffffeL & l) != 0L)
{
if (kind > 133)
kind = 133;
jjCheckNAdd(26);
}
else if (curChar == 95)
{
if (kind > 122)
kind = 122;
}
break;
case 2:
if ((0xffffffffefffffffL & l) != 0L)
jjCheckNAddStates(17, 19);
break;
case 4:
if (curChar == 92)
jjAddStates(20, 27);
break;
case 6:
if (curChar == 92)
jjCheckNAddStates(17, 19);
break;
case 8:
if (curChar == 98)
jjCheckNAddStates(17, 19);
break;
case 9:
if (curChar == 102)
jjCheckNAddStates(17, 19);
break;
case 10:
if (curChar == 110)
jjCheckNAddStates(17, 19);
break;
case 11:
if (curChar == 114)
jjCheckNAddStates(17, 19);
break;
case 12:
if (curChar == 116)
jjCheckNAddStates(17, 19);
break;
case 14:
if ((0xffffffffefffffffL & l) != 0L)
jjCheckNAddStates(14, 16);
break;
case 16:
if (curChar == 92)
jjAddStates(28, 35);
break;
case 18:
if (curChar == 92)
jjCheckNAddStates(14, 16);
break;
case 20:
if (curChar == 98)
jjCheckNAddStates(14, 16);
break;
case 21:
if (curChar == 102)
jjCheckNAddStates(14, 16);
break;
case 22:
if (curChar == 110)
jjCheckNAddStates(14, 16);
break;
case 23:
if (curChar == 114)
jjCheckNAddStates(14, 16);
break;
case 24:
if (curChar == 116)
jjCheckNAddStates(14, 16);
break;
case 25:
if ((0x7fffffe07fffffeL & l) == 0L)
break;
if (kind > 133)
kind = 133;
jjCheckNAdd(26);
break;
case 26:
if ((0x7fffffe87fffffeL & l) == 0L)
break;
if (kind > 133)
kind = 133;
jjCheckNAdd(26);
break;
case 28:
if ((0x7fffffe07fffffeL & l) == 0L)
break;
if (kind > 134)
kind = 134;
jjCheckNAdd(29);
break;
case 29:
if ((0x7fffffe87fffffeL & l) == 0L)
break;
if (kind > 134)
kind = 134;
jjCheckNAdd(29);
break;
case 37:
if ((0x4000000040L & l) != 0L && kind > 119)
kind = 119;
break;
case 47:
jjAddStates(36, 37);
break;
case 50:
if (kind > 140)
kind = 140;
jjAddStates(0, 2);
break;
default : break;
}
} while(i != startsAt);
}
else
{
int hiByte = (int)(curChar >> 8);
int i1 = hiByte >> 6;
long l1 = 1L << (hiByte & 077);
int i2 = (curChar & 0xff) >> 6;
long l2 = 1L << (curChar & 077);
do
{
switch(jjstateSet[--i])
{
case 2:
if (jjCanMove_0(hiByte, i1, i2, l1, l2))
jjAddStates(17, 19);
break;
case 14:
if (jjCanMove_0(hiByte, i1, i2, l1, l2))
jjAddStates(14, 16);
break;
case 47:
if (jjCanMove_0(hiByte, i1, i2, l1, l2))
jjAddStates(36, 37);
break;
case 50:
if (!jjCanMove_0(hiByte, i1, i2, l1, l2))
break;
if (kind > 140)
kind = 140;
jjAddStates(0, 2);
break;
default : break;
}
} while(i != startsAt);
}
if (kind != 0x7fffffff)
{
jjmatchedKind = kind;
jjmatchedPos = curPos;
kind = 0x7fffffff;
}
++curPos;
if ((i = jjnewStateCnt) == (startsAt = 54 - (jjnewStateCnt = startsAt)))
return curPos;
try { curChar = input_stream.readChar(); }
catch(java.io.IOException e) { return curPos; }
}
}
private final int jjStopStringLiteralDfa_1(int pos, long active0, long active1, long active2)
{
switch (pos)
{
case 0:
if ((active1 & 0x200000L) != 0L || (active2 & 0x2000L) != 0L)
return 46;
if ((active1 & 0x200000000L) != 0L)
return 54;
if ((active0 & 0xfe00000000000000L) != 0L || (active1 & 0x1c1800004fffffL) != 0L)
{
jjmatchedKind = 133;
return 26;
}
return -1;
case 1:
if ((active0 & 0xf200000000000000L) != 0L || (active1 & 0x1c0800004ffb9fL) != 0L)
{
if (jjmatchedPos != 1)
{
jjmatchedKind = 133;
jjmatchedPos = 1;
}
return 26;
}
if ((active0 & 0xc00000000000000L) != 0L || (active1 & 0x100000000460L) != 0L)
return 26;
return -1;
case 2:
if ((active0 & 0x200000000000000L) != 0L || (active1 & 0x80000000084L) != 0L)
return 26;
if ((active0 & 0xf000000000000000L) != 0L || (active1 & 0x1c0000004fff1bL) != 0L)
{
jjmatchedKind = 133;
jjmatchedPos = 2;
return 26;
}
return -1;
case 3:
if ((active0 & 0x4000000000000000L) != 0L || (active1 & 0xc00000044c009L) != 0L)
return 26;
if ((active0 & 0xb000000000000000L) != 0L || (active1 & 0x100000000b3f12L) != 0L)
{
jjmatchedKind = 133;
jjmatchedPos = 3;
return 26;
}
return -1;
case 4:
if ((active0 & 0x9000000000000000L) != 0L || (active1 & 0x83a00L) != 0L)
{
jjmatchedKind = 133;
jjmatchedPos = 4;
return 26;
}
if ((active0 & 0x2000000000000000L) != 0L || (active1 & 0x10000000030512L) != 0L)
return 26;
return -1;
case 5:
if ((active1 & 0x2a00L) != 0L)
return 26;
if ((active0 & 0x9000000000000000L) != 0L || (active1 & 0x81000L) != 0L)
{
jjmatchedKind = 133;
jjmatchedPos = 5;
return 26;
}
return -1;
case 6:
if ((active0 & 0x1000000000000000L) != 0L || (active1 & 0x80000L) != 0L)
return 26;
if ((active0 & 0x8000000000000000L) != 0L || (active1 & 0x1000L) != 0L)
{
jjmatchedKind = 133;
jjmatchedPos = 6;
return 26;
}
return -1;
case 7:
if ((active0 & 0x8000000000000000L) != 0L)
return 26;
if ((active1 & 0x1000L) != 0L)
{
jjmatchedKind = 133;
jjmatchedPos = 7;
return 26;
}
return -1;
default :
return -1;
}
}
private final int jjStartNfa_1(int pos, long active0, long active1, long active2)
{
return jjMoveNfa_1(jjStopStringLiteralDfa_1(pos, active0, active1, active2), pos + 1);
}
private int jjMoveStringLiteralDfa0_1()
{
switch(curChar)
{
case 33:
return jjMoveStringLiteralDfa1_1(0x0L, 0x10000000000L, 0x0L);
case 37:
return jjStopAtPos(0, 88);
case 40:
return jjStopAtPos(0, 91);
case 41:
return jjStopAtPos(0, 92);
case 42:
return jjStopAtPos(0, 89);
case 43:
return jjStopAtPos(0, 90);
case 44:
return jjStopAtPos(0, 96);
case 45:
return jjStopAtPos(0, 87);
case 46:
return jjStartNfaWithStates_1(0, 97, 54);
case 47:
jjmatchedKind = 85;
return jjMoveStringLiteralDfa1_1(0x0L, 0x0L, 0x2000L);
case 58:
jjmatchedKind = 95;
return jjMoveStringLiteralDfa1_1(0x0L, 0x40000000000L, 0x0L);
case 60:
jjmatchedKind = 99;
return jjMoveStringLiteralDfa1_1(0x0L, 0x2000000000L, 0x0L);
case 61:
return jjStopAtPos(0, 103);
case 62:
jjmatchedKind = 100;
return jjMoveStringLiteralDfa1_1(0x0L, 0x4000000000L, 0x0L);
case 63:
return jjStopAtPos(0, 98);
case 91:
return jjStopAtPos(0, 93);
case 93:
return jjStopAtPos(0, 94);
case 94:
return jjStopAtPos(0, 84);
case 97:
return jjMoveStringLiteralDfa1_1(0x600000000000000L, 0x80000000000L, 0x0L);
case 98:
return jjMoveStringLiteralDfa1_1(0x800000000000000L, 0x0L, 0x0L);
case 100:
return jjMoveStringLiteralDfa1_1(0xf000000000000000L, 0x0L, 0x0L);
case 101:
return jjMoveStringLiteralDfa1_1(0x0L, 0x3L, 0x0L);
case 102:
return jjMoveStringLiteralDfa1_1(0x0L, 0x1000000000000cL, 0x0L);
case 103:
return jjMoveStringLiteralDfa1_1(0x0L, 0x10L, 0x0L);
case 105:
return jjMoveStringLiteralDfa1_1(0x0L, 0x400060L, 0x0L);
case 107:
return jjMoveStringLiteralDfa1_1(0x0L, 0x80000L, 0x0L);
case 108:
return jjMoveStringLiteralDfa1_1(0x0L, 0x180L, 0x0L);
case 110:
return jjMoveStringLiteralDfa1_1(0x0L, 0x4000000000000L, 0x0L);
case 111:
return jjMoveStringLiteralDfa1_1(0x0L, 0x100000000600L, 0x0L);
case 114:
return jjMoveStringLiteralDfa1_1(0x0L, 0x800L, 0x0L);
case 115:
return jjMoveStringLiteralDfa1_1(0x0L, 0x7000L, 0x0L);
case 116:
return jjMoveStringLiteralDfa1_1(0x0L, 0x8000000008000L, 0x0L);
case 117:
return jjMoveStringLiteralDfa1_1(0x0L, 0x10000L, 0x0L);
case 119:
return jjMoveStringLiteralDfa1_1(0x0L, 0x60000L, 0x0L);
case 123:
jjmatchedKind = 109;
return jjMoveStringLiteralDfa1_1(0x0L, 0x800000000000L, 0x0L);
case 125:
return jjMoveStringLiteralDfa1_1(0x0L, 0x1000000000000L, 0x0L);
case 126:
return jjMoveStringLiteralDfa1_1(0x0L, 0x20000000000L, 0x0L);
default :
return jjMoveNfa_1(0, 0);
}
}
private int jjMoveStringLiteralDfa1_1(long active0, long active1, long active2)
{
try { curChar = input_stream.readChar(); }
catch(java.io.IOException e) {
jjStopStringLiteralDfa_1(0, active0, active1, active2);
return 1;
}
switch(curChar)
{
case 42:
if ((active2 & 0x2000L) != 0L)
return jjStopAtPos(1, 141);
break;
case 61:
if ((active1 & 0x2000000000L) != 0L)
return jjStopAtPos(1, 101);
else if ((active1 & 0x4000000000L) != 0L)
return jjStopAtPos(1, 102);
else if ((active1 & 0x10000000000L) != 0L)
return jjStopAtPos(1, 104);
else if ((active1 & 0x20000000000L) != 0L)
return jjStopAtPos(1, 105);
else if ((active1 & 0x40000000000L) != 0L)
return jjStopAtPos(1, 106);
break;
case 97:
return jjMoveStringLiteralDfa2_1(active0, 0x1000000000000000L, active1, 0x10000000001000L, active2, 0L);
case 100:
return jjMoveStringLiteralDfa2_1(active0, 0L, active1, 0x400000L, active2, 0L);
case 101:
return jjMoveStringLiteralDfa2_1(active0, 0x6000000000000000L, active1, 0x82880L, active2, 0L);
case 102:
if ((active1 & 0x20L) != 0L)
return jjStartNfaWithStates_1(1, 69, 26);
return jjMoveStringLiteralDfa2_1(active0, 0L, active1, 0x200L, active2, 0L);
case 104:
return jjMoveStringLiteralDfa2_1(active0, 0L, active1, 0x28000L, active2, 0L);
case 105:
return jjMoveStringLiteralDfa2_1(active0, 0x8000000000000000L, active1, 0x40100L, active2, 0L);
case 108:
return jjMoveStringLiteralDfa2_1(active0, 0L, active1, 0x1L, active2, 0L);
case 110:
if ((active1 & 0x40L) != 0L)
return jjStartNfaWithStates_1(1, 70, 26);
return jjMoveStringLiteralDfa2_1(active0, 0L, active1, 0x80000010000L, active2, 0L);
case 111:
return jjMoveStringLiteralDfa2_1(active0, 0L, active1, 0x4004L, active2, 0L);
case 114:
if ((active1 & 0x100000000000L) != 0L)
{
jjmatchedKind = 108;
jjmatchedPos = 1;
}
return jjMoveStringLiteralDfa2_1(active0, 0L, active1, 0x8000000000418L, active2, 0L);
case 115:
return jjMoveStringLiteralDfa2_1(active0, 0x200000000000000L, active1, 0L, active2, 0L);
case 116:
if ((active0 & 0x400000000000000L) != 0L)
return jjStartNfaWithStates_1(1, 58, 26);
break;
case 117:
return jjMoveStringLiteralDfa2_1(active0, 0L, active1, 0x4000000000000L, active2, 0L);
case 118:
return jjMoveStringLiteralDfa2_1(active0, 0L, active1, 0x2L, active2, 0L);
case 121:
if ((active0 & 0x800000000000000L) != 0L)
return jjStartNfaWithStates_1(1, 59, 26);
break;
case 123:
if ((active1 & 0x800000000000L) != 0L)
return jjStopAtPos(1, 111);
break;
case 125:
if ((active1 & 0x1000000000000L) != 0L)
return jjStopAtPos(1, 112);
break;
default :
break;
}
return jjStartNfa_1(0, active0, active1, active2);
}
private int jjMoveStringLiteralDfa2_1(long old0, long active0, long old1, long active1, long old2, long active2)
{
if (((active0 &= old0) | (active1 &= old1) | (active2 &= old2)) == 0L)
return jjStartNfa_1(0, old0, old1, old2);
try { curChar = input_stream.readChar(); }
catch(java.io.IOException e) {
jjStopStringLiteralDfa_1(1, active0, active1, 0L);
return 2;
}
switch(curChar)
{
case 99:
if ((active0 & 0x200000000000000L) != 0L)
return jjStartNfaWithStates_1(2, 57, 26);
return jjMoveStringLiteralDfa3_1(active0, 0x2000000000000000L, active1, 0L);
case 100:
if ((active1 & 0x80000000000L) != 0L)
return jjStartNfaWithStates_1(2, 107, 26);
return jjMoveStringLiteralDfa3_1(active0, 0L, active1, 0x400L);
case 101:
return jjMoveStringLiteralDfa3_1(active0, 0L, active1, 0xa8002L);
case 102:
return jjMoveStringLiteralDfa3_1(active0, 0L, active1, 0x200L);
case 105:
return jjMoveStringLiteralDfa3_1(active0, 0L, active1, 0x410000L);
case 108:
return jjMoveStringLiteralDfa3_1(active0, 0L, active1, 0x14000000002000L);
case 109:
return jjMoveStringLiteralDfa3_1(active0, 0L, active1, 0x4100L);
case 111:
return jjMoveStringLiteralDfa3_1(active0, 0L, active1, 0x18L);
case 114:
if ((active1 & 0x4L) != 0L)
return jjStartNfaWithStates_1(2, 66, 26);
break;
case 115:
return jjMoveStringLiteralDfa3_1(active0, 0xc000000000000000L, active1, 0x1L);
case 116:
if ((active1 & 0x80L) != 0L)
return jjStartNfaWithStates_1(2, 71, 26);
return jjMoveStringLiteralDfa3_1(active0, 0x1000000000000000L, active1, 0x41800L);
case 117:
return jjMoveStringLiteralDfa3_1(active0, 0L, active1, 0x8000000000000L);
default :
break;
}
return jjStartNfa_1(1, active0, active1, 0L);
}
private int jjMoveStringLiteralDfa3_1(long old0, long active0, long old1, long active1)
{
if (((active0 &= old0) | (active1 &= old1)) == 0L)
return jjStartNfa_1(1, old0, old1, 0L);
try { curChar = input_stream.readChar(); }
catch(java.io.IOException e) {
jjStopStringLiteralDfa_1(2, active0, active1, 0L);
return 3;
}
switch(curChar)
{
case 97:
return jjMoveStringLiteralDfa4_1(active0, 0x1000000000000000L, active1, 0L);
case 99:
if ((active0 & 0x4000000000000000L) != 0L)
return jjStartNfaWithStates_1(3, 62, 26);
break;
case 101:
if ((active1 & 0x1L) != 0L)
return jjStartNfaWithStates_1(3, 64, 26);
else if ((active1 & 0x4000L) != 0L)
return jjStartNfaWithStates_1(3, 78, 26);
else if ((active1 & 0x8000000000000L) != 0L)
return jjStartNfaWithStates_1(3, 115, 26);
return jjMoveStringLiteralDfa4_1(active0, 0L, active1, 0x2400L);
case 104:
if ((active1 & 0x40000L) != 0L)
return jjStartNfaWithStates_1(3, 82, 26);
break;
case 105:
return jjMoveStringLiteralDfa4_1(active0, 0L, active1, 0x1100L);
case 108:
if ((active1 & 0x4000000000000L) != 0L)
return jjStartNfaWithStates_1(3, 114, 26);
break;
case 109:
if ((active1 & 0x8L) != 0L)
return jjStartNfaWithStates_1(3, 67, 26);
break;
case 110:
if ((active1 & 0x8000L) != 0L)
return jjStartNfaWithStates_1(3, 79, 26);
break;
case 111:
return jjMoveStringLiteralDfa4_1(active0, 0x2000000000000000L, active1, 0x10000L);
case 112:
return jjMoveStringLiteralDfa4_1(active0, 0L, active1, 0x80000L);
case 114:
return jjMoveStringLiteralDfa4_1(active0, 0L, active1, 0x20002L);
case 115:
return jjMoveStringLiteralDfa4_1(active0, 0L, active1, 0x10000000000200L);
case 116:
return jjMoveStringLiteralDfa4_1(active0, 0x8000000000000000L, active1, 0L);
case 117:
return jjMoveStringLiteralDfa4_1(active0, 0L, active1, 0x810L);
case 118:
if ((active1 & 0x400000L) != 0L)
return jjStartNfaWithStates_1(3, 86, 26);
break;
default :
break;
}
return jjStartNfa_1(2, active0, active1, 0L);
}
private int jjMoveStringLiteralDfa4_1(long old0, long active0, long old1, long active1)
{
if (((active0 &= old0) | (active1 &= old1)) == 0L)
return jjStartNfa_1(2, old0, old1, 0L);
try { curChar = input_stream.readChar(); }
catch(java.io.IOException e) {
jjStopStringLiteralDfa_1(3, active0, active1, 0L);
return 4;
}
switch(curChar)
{
case 99:
return jjMoveStringLiteralDfa5_1(active0, 0L, active1, 0x2000L);
case 101:
if ((active1 & 0x20000L) != 0L)
return jjStartNfaWithStates_1(4, 81, 26);
else if ((active1 & 0x10000000000000L) != 0L)
return jjStartNfaWithStates_1(4, 116, 26);
return jjMoveStringLiteralDfa5_1(active0, 0L, active1, 0x200L);
case 105:
return jjMoveStringLiteralDfa5_1(active0, 0x8000000000000000L, active1, 0x80000L);
case 110:
if ((active1 & 0x10000L) != 0L)
return jjStartNfaWithStates_1(4, 80, 26);
break;
case 112:
if ((active1 & 0x10L) != 0L)
return jjStartNfaWithStates_1(4, 68, 26);
break;
case 114:
if ((active0 & 0x2000000000000000L) != 0L)
return jjStartNfaWithStates_1(4, 61, 26);
else if ((active1 & 0x400L) != 0L)
return jjStartNfaWithStates_1(4, 74, 26);
return jjMoveStringLiteralDfa5_1(active0, 0L, active1, 0x800L);
case 115:
return jjMoveStringLiteralDfa5_1(active0, 0x1000000000000000L, active1, 0x1000L);
case 116:
if ((active1 & 0x100L) != 0L)
return jjStartNfaWithStates_1(4, 72, 26);
break;
case 121:
if ((active1 & 0x2L) != 0L)
return jjStartNfaWithStates_1(4, 65, 26);
break;
default :
break;
}
return jjStartNfa_1(3, active0, active1, 0L);
}
private int jjMoveStringLiteralDfa5_1(long old0, long active0, long old1, long active1)
{
if (((active0 &= old0) | (active1 &= old1)) == 0L)
return jjStartNfa_1(3, old0, old1, 0L);
try { curChar = input_stream.readChar(); }
catch(java.io.IOException e) {
jjStopStringLiteralDfa_1(4, active0, active1, 0L);
return 5;
}
switch(curChar)
{
case 101:
return jjMoveStringLiteralDfa6_1(active0, 0x1000000000000000L, active1, 0L);
case 102:
return jjMoveStringLiteralDfa6_1(active0, 0L, active1, 0x1000L);
case 110:
if ((active1 & 0x800L) != 0L)
return jjStartNfaWithStates_1(5, 75, 26);
return jjMoveStringLiteralDfa6_1(active0, 0x8000000000000000L, active1, 0x80000L);
case 116:
if ((active1 & 0x200L) != 0L)
return jjStartNfaWithStates_1(5, 73, 26);
else if ((active1 & 0x2000L) != 0L)
return jjStartNfaWithStates_1(5, 77, 26);
break;
default :
break;
}
return jjStartNfa_1(4, active0, active1, 0L);
}
private int jjMoveStringLiteralDfa6_1(long old0, long active0, long old1, long active1)
{
if (((active0 &= old0) | (active1 &= old1)) == 0L)
return jjStartNfa_1(4, old0, old1, 0L);
try { curChar = input_stream.readChar(); }
catch(java.io.IOException e) {
jjStopStringLiteralDfa_1(5, active0, active1, 0L);
return 6;
}
switch(curChar)
{
case 99:
return jjMoveStringLiteralDfa7_1(active0, 0x8000000000000000L, active1, 0L);
case 103:
if ((active1 & 0x80000L) != 0L)
return jjStartNfaWithStates_1(6, 83, 26);
break;
case 105:
return jjMoveStringLiteralDfa7_1(active0, 0L, active1, 0x1000L);
case 116:
if ((active0 & 0x1000000000000000L) != 0L)
return jjStartNfaWithStates_1(6, 60, 26);
break;
default :
break;
}
return jjStartNfa_1(5, active0, active1, 0L);
}
private int jjMoveStringLiteralDfa7_1(long old0, long active0, long old1, long active1)
{
if (((active0 &= old0) | (active1 &= old1)) == 0L)
return jjStartNfa_1(5, old0, old1, 0L);
try { curChar = input_stream.readChar(); }
catch(java.io.IOException e) {
jjStopStringLiteralDfa_1(6, active0, active1, 0L);
return 7;
}
switch(curChar)
{
case 101:
return jjMoveStringLiteralDfa8_1(active0, 0L, active1, 0x1000L);
case 116:
if ((active0 & 0x8000000000000000L) != 0L)
return jjStartNfaWithStates_1(7, 63, 26);
break;
default :
break;
}
return jjStartNfa_1(6, active0, active1, 0L);
}
private int jjMoveStringLiteralDfa8_1(long old0, long active0, long old1, long active1)
{
if (((active0 &= old0) | (active1 &= old1)) == 0L)
return jjStartNfa_1(6, old0, old1, 0L);
try { curChar = input_stream.readChar(); }
catch(java.io.IOException e) {
jjStopStringLiteralDfa_1(7, 0L, active1, 0L);
return 8;
}
switch(curChar)
{
case 115:
if ((active1 & 0x1000L) != 0L)
return jjStartNfaWithStates_1(8, 76, 26);
break;
default :
break;
}
return jjStartNfa_1(7, 0L, active1, 0L);
}
private int jjStartNfaWithStates_1(int pos, int kind, int state)
{
jjmatchedKind = kind;
jjmatchedPos = pos;
try { curChar = input_stream.readChar(); }
catch(java.io.IOException e) { return pos + 1; }
return jjMoveNfa_1(state, pos + 1);
}
private int jjMoveNfa_1(int startState, int curPos)
{
int startsAt = 0;
jjnewStateCnt = 54;
int i = 1;
jjstateSet[0] = startState;
int kind = 0x7fffffff;
for (;;)
{
if (++jjround == 0x7fffffff)
ReInitRounds();
if (curChar < 64)
{
long l = 1L << curChar;
do
{
switch(jjstateSet[--i])
{
case 46:
if (curChar == 47)
{
if (kind > 140)
kind = 140;
jjCheckNAddStates(0, 2);
}
if (curChar == 47)
jjCheckNAddTwoStates(47, 48);
break;
case 54:
if ((0x3ff000000000000L & l) != 0L)
jjCheckNAddTwoStates(44, 37);
if ((0x3ff000000000000L & l) != 0L)
{
if (kind > 118)
kind = 118;
jjCheckNAdd(43);
}
break;
case 0:
if ((0x3ff000000000000L & l) != 0L)
{
if (kind > 113)
kind = 113;
jjCheckNAddStates(3, 11);
}
else if ((0x201000000000L & l) != 0L)
{
if (kind > 122)
kind = 122;
}
else if (curChar == 47)
jjAddStates(12, 13);
else if (curChar == 46)
jjCheckNAddTwoStates(43, 44);
else if (curChar == 39)
jjCheckNAddStates(14, 16);
else if (curChar == 34)
jjCheckNAddStates(17, 19);
if (curChar == 36)
jjstateSet[jjnewStateCnt++] = 28;
break;
case 1:
case 5:
if (curChar == 34)
jjCheckNAddStates(17, 19);
break;
case 2:
if ((0xfffffffbffffffffL & l) != 0L)
jjCheckNAddStates(17, 19);
break;
case 3:
if (curChar == 34 && kind > 123)
kind = 123;
break;
case 7:
if (curChar == 47)
jjCheckNAddStates(17, 19);
break;
case 13:
case 17:
if (curChar == 39)
jjCheckNAddStates(14, 16);
break;
case 14:
if ((0xffffff7fffffffffL & l) != 0L)
jjCheckNAddStates(14, 16);
break;
case 15:
if (curChar == 39 && kind > 123)
kind = 123;
break;
case 19:
if (curChar == 47)
jjCheckNAddStates(14, 16);
break;
case 26:
if ((0x3ff201000000000L & l) == 0L)
break;
if (kind > 133)
kind = 133;
jjstateSet[jjnewStateCnt++] = 26;
break;
case 27:
if (curChar == 36)
jjstateSet[jjnewStateCnt++] = 28;
break;
case 29:
if ((0x3ff000000000000L & l) == 0L)
break;
if (kind > 134)
kind = 134;
jjstateSet[jjnewStateCnt++] = 29;
break;
case 30:
if ((0x3ff000000000000L & l) == 0L)
break;
if (kind > 113)
kind = 113;
jjCheckNAddStates(3, 11);
break;
case 31:
if ((0x3ff000000000000L & l) == 0L)
break;
if (kind > 113)
kind = 113;
jjCheckNAdd(31);
break;
case 32:
if ((0x3ff000000000000L & l) == 0L)
break;
if (kind > 118)
kind = 118;
jjCheckNAdd(32);
break;
case 33:
if ((0x3ff000000000000L & l) == 0L)
break;
if (kind > 118)
kind = 118;
jjCheckNAddTwoStates(33, 34);
break;
case 34:
if (curChar == 46)
jjCheckNAdd(35);
break;
case 35:
if ((0x3ff000000000000L & l) == 0L)
break;
if (kind > 118)
kind = 118;
jjCheckNAdd(35);
break;
case 36:
if ((0x3ff000000000000L & l) != 0L)
jjCheckNAddTwoStates(36, 37);
break;
case 38:
if ((0x3ff000000000000L & l) == 0L)
break;
if (kind > 119)
kind = 119;
jjCheckNAddTwoStates(38, 39);
break;
case 39:
if (curChar == 46)
jjCheckNAdd(40);
break;
case 40:
if ((0x3ff000000000000L & l) != 0L)
jjCheckNAddTwoStates(40, 37);
break;
case 41:
if ((0x3ff000000000000L & l) == 0L)
break;
if (kind > 120)
kind = 120;
jjCheckNAdd(41);
break;
case 42:
if (curChar == 46)
jjCheckNAddTwoStates(43, 44);
break;
case 43:
if ((0x3ff000000000000L & l) == 0L)
break;
if (kind > 118)
kind = 118;
jjCheckNAdd(43);
break;
case 44:
if ((0x3ff000000000000L & l) != 0L)
jjCheckNAddTwoStates(44, 37);
break;
case 45:
if (curChar == 47)
jjAddStates(12, 13);
break;
case 47:
if ((0xfffffffffffffbffL & l) != 0L)
jjCheckNAddTwoStates(47, 48);
break;
case 48:
if (curChar == 10 && kind > 139)
kind = 139;
break;
case 49:
if (curChar != 47)
break;
if (kind > 140)
kind = 140;
jjCheckNAddStates(0, 2);
break;
case 50:
if ((0xffffffffffffdbffL & l) == 0L)
break;
if (kind > 140)
kind = 140;
jjCheckNAddStates(0, 2);
break;
case 51:
if ((0x2400L & l) != 0L && kind > 140)
kind = 140;
break;
case 52:
if (curChar == 10 && kind > 140)
kind = 140;
break;
case 53:
if (curChar == 13)
jjstateSet[jjnewStateCnt++] = 52;
break;
default : break;
}
} while(i != startsAt);
}
else if (curChar < 128)
{
long l = 1L << (curChar & 077);
do
{
switch(jjstateSet[--i])
{
case 0:
if ((0x7fffffe07fffffeL & l) != 0L)
{
if (kind > 133)
kind = 133;
jjCheckNAdd(26);
}
else if (curChar == 95)
{
if (kind > 122)
kind = 122;
}
break;
case 2:
if ((0xffffffffefffffffL & l) != 0L)
jjCheckNAddStates(17, 19);
break;
case 4:
if (curChar == 92)
jjAddStates(20, 27);
break;
case 6:
if (curChar == 92)
jjCheckNAddStates(17, 19);
break;
case 8:
if (curChar == 98)
jjCheckNAddStates(17, 19);
break;
case 9:
if (curChar == 102)
jjCheckNAddStates(17, 19);
break;
case 10:
if (curChar == 110)
jjCheckNAddStates(17, 19);
break;
case 11:
if (curChar == 114)
jjCheckNAddStates(17, 19);
break;
case 12:
if (curChar == 116)
jjCheckNAddStates(17, 19);
break;
case 14:
if ((0xffffffffefffffffL & l) != 0L)
jjCheckNAddStates(14, 16);
break;
case 16:
if (curChar == 92)
jjAddStates(28, 35);
break;
case 18:
if (curChar == 92)
jjCheckNAddStates(14, 16);
break;
case 20:
if (curChar == 98)
jjCheckNAddStates(14, 16);
break;
case 21:
if (curChar == 102)
jjCheckNAddStates(14, 16);
break;
case 22:
if (curChar == 110)
jjCheckNAddStates(14, 16);
break;
case 23:
if (curChar == 114)
jjCheckNAddStates(14, 16);
break;
case 24:
if (curChar == 116)
jjCheckNAddStates(14, 16);
break;
case 25:
if ((0x7fffffe07fffffeL & l) == 0L)
break;
if (kind > 133)
kind = 133;
jjCheckNAdd(26);
break;
case 26:
if ((0x7fffffe87fffffeL & l) == 0L)
break;
if (kind > 133)
kind = 133;
jjCheckNAdd(26);
break;
case 28:
if ((0x7fffffe07fffffeL & l) == 0L)
break;
if (kind > 134)
kind = 134;
jjCheckNAdd(29);
break;
case 29:
if ((0x7fffffe87fffffeL & l) == 0L)
break;
if (kind > 134)
kind = 134;
jjCheckNAdd(29);
break;
case 37:
if ((0x4000000040L & l) != 0L && kind > 119)
kind = 119;
break;
case 47:
jjAddStates(36, 37);
break;
case 50:
if (kind > 140)
kind = 140;
jjAddStates(0, 2);
break;
default : break;
}
} while(i != startsAt);
}
else
{
int hiByte = (int)(curChar >> 8);
int i1 = hiByte >> 6;
long l1 = 1L << (hiByte & 077);
int i2 = (curChar & 0xff) >> 6;
long l2 = 1L << (curChar & 077);
do
{
switch(jjstateSet[--i])
{
case 2:
if (jjCanMove_0(hiByte, i1, i2, l1, l2))
jjAddStates(17, 19);
break;
case 14:
if (jjCanMove_0(hiByte, i1, i2, l1, l2))
jjAddStates(14, 16);
break;
case 47:
if (jjCanMove_0(hiByte, i1, i2, l1, l2))
jjAddStates(36, 37);
break;
case 50:
if (!jjCanMove_0(hiByte, i1, i2, l1, l2))
break;
if (kind > 140)
kind = 140;
jjAddStates(0, 2);
break;
default : break;
}
} while(i != startsAt);
}
if (kind != 0x7fffffff)
{
jjmatchedKind = kind;
jjmatchedPos = curPos;
kind = 0x7fffffff;
}
++curPos;
if ((i = jjnewStateCnt) == (startsAt = 54 - (jjnewStateCnt = startsAt)))
return curPos;
try { curChar = input_stream.readChar(); }
catch(java.io.IOException e) { return curPos; }
}
}
private final int jjStopStringLiteralDfa_2(int pos, long active0, long active1, long active2)
{
switch (pos)
{
default :
return -1;
}
}
private final int jjStartNfa_2(int pos, long active0, long active1, long active2)
{
return jjMoveNfa_2(jjStopStringLiteralDfa_2(pos, active0, active1, active2), pos + 1);
}
private int jjMoveStringLiteralDfa0_2()
{
switch(curChar)
{
case 42:
return jjMoveStringLiteralDfa1_2(0x10000L);
case 47:
return jjMoveStringLiteralDfa1_2(0x8000L);
default :
return jjMoveNfa_2(0, 0);
}
}
private int jjMoveStringLiteralDfa1_2(long active2)
{
try { curChar = input_stream.readChar(); }
catch(java.io.IOException e) {
jjStopStringLiteralDfa_2(0, 0L, 0L, active2);
return 1;
}
switch(curChar)
{
case 42:
if ((active2 & 0x8000L) != 0L)
return jjStopAtPos(1, 143);
break;
case 47:
if ((active2 & 0x10000L) != 0L)
return jjStopAtPos(1, 144);
break;
default :
break;
}
return jjStartNfa_2(0, 0L, 0L, active2);
}
private int jjMoveNfa_2(int startState, int curPos)
{
int startsAt = 0;
jjnewStateCnt = 3;
int i = 1;
jjstateSet[0] = startState;
int kind = 0x7fffffff;
for (;;)
{
if (++jjround == 0x7fffffff)
ReInitRounds();
if (curChar < 64)
{
long l = 1L << curChar;
do
{
switch(jjstateSet[--i])
{
case 0:
if (curChar != 43)
break;
if (kind > 142)
kind = 142;
jjCheckNAddTwoStates(1, 2);
break;
case 1:
if (curChar != 32)
break;
if (kind > 142)
kind = 142;
jjCheckNAddTwoStates(1, 2);
break;
case 2:
if ((0xfffffbffffffffffL & l) == 0L)
break;
if (kind > 142)
kind = 142;
jjCheckNAdd(2);
break;
default : break;
}
} while(i != startsAt);
}
else if (curChar < 128)
{
long l = 1L << (curChar & 077);
do
{
switch(jjstateSet[--i])
{
case 2:
kind = 142;
jjstateSet[jjnewStateCnt++] = 2;
break;
default : break;
}
} while(i != startsAt);
}
else
{
int hiByte = (int)(curChar >> 8);
int i1 = hiByte >> 6;
long l1 = 1L << (hiByte & 077);
int i2 = (curChar & 0xff) >> 6;
long l2 = 1L << (curChar & 077);
do
{
switch(jjstateSet[--i])
{
case 2:
if (!jjCanMove_0(hiByte, i1, i2, l1, l2))
break;
if (kind > 142)
kind = 142;
jjstateSet[jjnewStateCnt++] = 2;
break;
default : break;
}
} while(i != startsAt);
}
if (kind != 0x7fffffff)
{
jjmatchedKind = kind;
jjmatchedPos = curPos;
kind = 0x7fffffff;
}
++curPos;
if ((i = jjnewStateCnt) == (startsAt = 3 - (jjnewStateCnt = startsAt)))
return curPos;
try { curChar = input_stream.readChar(); }
catch(java.io.IOException e) { return curPos; }
}
}
static final int[] jjnextStates = {
50, 51, 53, 31, 32, 33, 34, 36, 37, 38, 39, 41, 46, 49, 14, 15,
16, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 17, 18, 19, 20,
21, 22, 23, 24, 47, 48,
};
private static final boolean jjCanMove_0(int hiByte, int i1, int i2, long l1, long l2)
{
switch(hiByte)
{
case 0:
return ((jjbitVec2[i2] & l2) != 0L);
default :
if ((jjbitVec0[i1] & l1) != 0L)
return true;
return false;
}
}
/** Token literal values. */
public static final String[] jjstrLiteralImages = {
"", "\73", "\165\163\145", "\144\141\164\141\166\145\162\163\145",
"\143\162\145\141\164\145", "\164\171\160\145", "\141\163", "\156\157\144\145\147\162\157\165\160",
"\157\156", "\145\170\164\145\162\156\141\154", "\165\163\151\156\147",
"\150\151\156\164\163", "\143\157\155\160\141\143\164\151\157\156", "\160\157\154\151\143\171",
"\151\156\164\145\162\156\141\154", "\164\145\155\160\157\162\141\162\171",
"\141\165\164\157\147\145\156\145\162\141\164\145\144", "\167\151\164\150\40\146\151\154\164\145\162\40\157\156",
"\162\145\146\162\145\163\150\40\145\170\164\145\162\156\141\154", "\162\165\156", "\164\157", "\151\156\144\145\170",
"\145\156\146\157\162\143\145\144", "\142\164\162\145\145", "\162\164\162\145\145",
"\153\145\171\167\157\162\144", "\156\147\162\141\155", "\167\151\164\150\40\146\157\162\155\141\164",
"\146\165\156\143\164\151\157\156", "\163\145\143\157\156\144\141\162\171", "\146\145\145\144",
"\160\162\151\155\141\162\171", "\151\156\147\145\163\164\151\157\156",
"\144\145\146\151\156\151\164\151\157\156", "\160\141\164\150", "\151\146\40\156\157\164\40\145\170\151\163\164\163",
"\141\160\160\154\171", "\100", "\153\145\171", "\144\162\157\160", "\145\170\151\163\164\163",
"\151\156\163\145\162\164", "\151\156\164\157", "\144\145\154\145\164\145", "\165\160\144\141\164\145",
"\163\145\164", "\167\162\151\164\145", "\157\165\164\160\165\164", "\154\157\141\144",
"\160\162\145\55\163\157\162\164\145\144", "\143\157\155\160\141\143\164", "\143\157\156\156\145\143\164",
"\144\151\163\143\157\156\156\145\143\164", "\143\154\157\163\145\144", "\157\160\145\156", "\43",
"\144\145\143\154\141\162\145", "\141\163\143", "\141\164", "\142\171", "\144\141\164\141\163\145\164",
"\144\145\143\157\162", "\144\145\163\143", "\144\151\163\164\151\156\143\164", "\145\154\163\145",
"\145\166\145\162\171", "\146\157\162", "\146\162\157\155", "\147\162\157\165\160", "\151\146",
"\151\156", "\154\145\164", "\154\151\155\151\164", "\157\146\146\163\145\164",
"\157\162\144\145\162", "\162\145\164\165\162\156", "\163\141\164\151\163\146\151\145\163",
"\163\145\154\145\143\164", "\163\157\155\145", "\164\150\145\156", "\165\156\151\157\156",
"\167\150\145\162\145", "\167\151\164\150", "\153\145\145\160\151\156\147", "\136", "\57",
"\151\144\151\166", "\55", "\45", "\52", "\53", "\50", "\51", "\133", "\135", "\72", "\54", "\56",
"\77", "\74", "\76", "\74\75", "\76\75", "\75", "\41\75", "\176\75", "\72\75",
"\141\156\144", "\157\162", "\173", "\175", "\173\173", "\175\175", null, "\156\165\154\154",
"\164\162\165\145", "\146\141\154\163\145", null, null, null, null, null, null, null, null, null,
null, null, null, null, null, null, null, null, null, null, null, null, null, null,
null, null, null, null, null, null, };
/** Lexer state names. */
public static final String[] lexStateNames = {
"DEFAULT",
"IN_DBL_BRACE",
"INSIDE_COMMENT",
};
/** Lex State array. */
public static final int[] jjnewLexState = {
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, 0, -1, 1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 2, -1, -1, -1, -1,
};
static final long[] jjtoToken = {
0xffffffffffffffffL, 0xddfffffffffffffL, 0x60L,
};
static final long[] jjtoSkip = {
0x0L, 0x0L, 0x3ff80L,
};
static final long[] jjtoSpecial = {
0x0L, 0x0L, 0x4000L,
};
protected JavaCharStream input_stream;
private final int[] jjrounds = new int[54];
private final int[] jjstateSet = new int[108];
private final StringBuilder jjimage = new StringBuilder();
private StringBuilder image = jjimage;
private int jjimageLen;
private int lengthOfMatch;
protected char curChar;
/** Constructor. */
public AQLParserTokenManager(JavaCharStream stream){
if (JavaCharStream.staticFlag)
throw new Error("ERROR: Cannot use a static CharStream class with a non-static lexical analyzer.");
input_stream = stream;
}
/** Constructor. */
public AQLParserTokenManager(JavaCharStream stream, int lexState){
this(stream);
SwitchTo(lexState);
}
/** Reinitialise parser. */
public void ReInit(JavaCharStream stream)
{
jjmatchedPos = jjnewStateCnt = 0;
curLexState = defaultLexState;
input_stream = stream;
ReInitRounds();
}
private void ReInitRounds()
{
int i;
jjround = 0x80000001;
for (i = 54; i-- > 0;)
jjrounds[i] = 0x80000000;
}
/** Reinitialise parser. */
public void ReInit(JavaCharStream stream, int lexState)
{
ReInit(stream);
SwitchTo(lexState);
}
/** Switch to specified lex state. */
public void SwitchTo(int lexState)
{
if (lexState >= 3 || lexState < 0)
throw new TokenMgrError("Error: Ignoring invalid lexical state : " + lexState + ". State unchanged.", TokenMgrError.INVALID_LEXICAL_STATE);
else
curLexState = lexState;
}
protected Token jjFillToken()
{
final Token t;
final String curTokenImage;
final int beginLine;
final int endLine;
final int beginColumn;
final int endColumn;
String im = jjstrLiteralImages[jjmatchedKind];
curTokenImage = (im == null) ? input_stream.GetImage() : im;
beginLine = input_stream.getBeginLine();
beginColumn = input_stream.getBeginColumn();
endLine = input_stream.getEndLine();
endColumn = input_stream.getEndColumn();
t = Token.newToken(jjmatchedKind, curTokenImage);
t.beginLine = beginLine;
t.endLine = endLine;
t.beginColumn = beginColumn;
t.endColumn = endColumn;
return t;
}
int curLexState = 0;
int defaultLexState = 0;
int jjnewStateCnt;
int jjround;
int jjmatchedPos;
int jjmatchedKind;
/** Get the next Token. */
public Token getNextToken()
{
Token specialToken = null;
Token matchedToken;
int curPos = 0;
EOFLoop :
for (;;)
{
try
{
curChar = input_stream.BeginToken();
}
catch(java.io.IOException e)
{
jjmatchedKind = 0;
matchedToken = jjFillToken();
matchedToken.specialToken = specialToken;
return matchedToken;
}
image = jjimage;
image.setLength(0);
jjimageLen = 0;
switch(curLexState)
{
case 0:
try { input_stream.backup(0);
while (curChar <= 32 && (0x100002600L & (1L << curChar)) != 0L)
curChar = input_stream.BeginToken();
}
catch (java.io.IOException e1) { continue EOFLoop; }
jjmatchedKind = 0x7fffffff;
jjmatchedPos = 0;
curPos = jjMoveStringLiteralDfa0_0();
break;
case 1:
try { input_stream.backup(0);
while (curChar <= 32 && (0x100002600L & (1L << curChar)) != 0L)
curChar = input_stream.BeginToken();
}
catch (java.io.IOException e1) { continue EOFLoop; }
jjmatchedKind = 0x7fffffff;
jjmatchedPos = 0;
curPos = jjMoveStringLiteralDfa0_1();
break;
case 2:
jjmatchedKind = 0x7fffffff;
jjmatchedPos = 0;
curPos = jjMoveStringLiteralDfa0_2();
if (jjmatchedPos == 0 && jjmatchedKind > 145)
{
jjmatchedKind = 145;
}
break;
}
if (jjmatchedKind != 0x7fffffff)
{
if (jjmatchedPos + 1 < curPos)
input_stream.backup(curPos - jjmatchedPos - 1);
if ((jjtoToken[jjmatchedKind >> 6] & (1L << (jjmatchedKind & 077))) != 0L)
{
matchedToken = jjFillToken();
matchedToken.specialToken = specialToken;
TokenLexicalActions(matchedToken);
if (jjnewLexState[jjmatchedKind] != -1)
curLexState = jjnewLexState[jjmatchedKind];
return matchedToken;
}
else
{
if ((jjtoSpecial[jjmatchedKind >> 6] & (1L << (jjmatchedKind & 077))) != 0L)
{
matchedToken = jjFillToken();
if (specialToken == null)
specialToken = matchedToken;
else
{
matchedToken.specialToken = specialToken;
specialToken = (specialToken.next = matchedToken);
}
SkipLexicalActions(matchedToken);
}
else
SkipLexicalActions(null);
if (jjnewLexState[jjmatchedKind] != -1)
curLexState = jjnewLexState[jjmatchedKind];
continue EOFLoop;
}
}
int error_line = input_stream.getEndLine();
int error_column = input_stream.getEndColumn();
String error_after = null;
boolean EOFSeen = false;
try { input_stream.readChar(); input_stream.backup(1); }
catch (java.io.IOException e1) {
EOFSeen = true;
error_after = curPos <= 1 ? "" : input_stream.GetImage();
if (curChar == '\n' || curChar == '\r') {
error_line++;
error_column = 0;
}
else
error_column++;
}
if (!EOFSeen) {
input_stream.backup(1);
error_after = curPos <= 1 ? "" : input_stream.GetImage();
}
throw new TokenMgrError(EOFSeen, curLexState, error_line, error_column, error_after, curChar, TokenMgrError.LEXICAL_ERROR);
}
}
void SkipLexicalActions(Token matchedToken)
{
switch(jjmatchedKind)
{
case 141 :
image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
pushState();
break;
case 143 :
image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
pushState();
break;
case 144 :
image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)));
popState("*/");
break;
default :
break;
}
}
void TokenLexicalActions(Token matchedToken)
{
switch(jjmatchedKind)
{
case 109 :
image.append(jjstrLiteralImages[109]);
lengthOfMatch = jjstrLiteralImages[109].length();
pushState();
break;
case 110 :
image.append(jjstrLiteralImages[110]);
lengthOfMatch = jjstrLiteralImages[110].length();
popState("}");
break;
case 111 :
image.append(jjstrLiteralImages[111]);
lengthOfMatch = jjstrLiteralImages[111].length();
pushState();
break;
case 112 :
image.append(jjstrLiteralImages[112]);
lengthOfMatch = jjstrLiteralImages[112].length();
popState("}}");
break;
default :
break;
}
}
private void jjCheckNAdd(int state)
{
if (jjrounds[state] != jjround)
{
jjstateSet[jjnewStateCnt++] = state;
jjrounds[state] = jjround;
}
}
private void jjAddStates(int start, int end)
{
do {
jjstateSet[jjnewStateCnt++] = jjnextStates[start];
} while (start++ != end);
}
private void jjCheckNAddTwoStates(int state1, int state2)
{
jjCheckNAdd(state1);
jjCheckNAdd(state2);
}
private void jjCheckNAddStates(int start, int end)
{
do {
jjCheckNAdd(jjnextStates[start]);
} while (start++ != end);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy