1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250
|
// Generated by re2java
// re2java $INPUT -o $OUTPUT
import java.util.Optional;
class Main {
// Maximum number of capturing groups among all rules.
static final int YYMAXNMATCH = 4;
static class SemVer {
int major;
int minor;
int patch;
public SemVer(int m, int n, int k) {
major = m;
minor = n;
patch = k;
}
public boolean equals(SemVer v) {
return major == v.major && minor == v.minor && patch == v.patch;
}
};
static Optional<SemVer> parse(String yyinput) {
int yycursor = 0;
int yymarker = 0;
// Array for capturing parentheses (twice the number of groups).
int yynmatch;
int[] yypmatch = new int[YYMAXNMATCH * 2];
// Intermediate tag variables used by the lexer (must be autogenerated).
int yyt1 = -1;int yyt2 = -1;int yyt3 = -1;int yyt4 = -1;int yyt5 = -1;
{
char yych = 0;
int yystate = 0;
yyl: while (true) {
switch (yystate) {
case 0:
yych = yyinput.charAt(yycursor);
switch (yych) {
case 0x30:
case 0x31:
case 0x32:
case 0x33:
case 0x34:
case 0x35:
case 0x36:
case 0x37:
case 0x38:
case 0x39:
yyt1 = yycursor;
yycursor += 1;
yystate = 3;
continue yyl;
default:
yycursor += 1;
yystate = 1;
continue yyl;
}
case 1:
yystate = 2;
continue yyl;
case 2:
{ return Optional.empty(); }
case 3:
yymarker = yycursor;
yych = yyinput.charAt(yycursor);
switch (yych) {
case 0x2E:
yycursor += 1;
yystate = 4;
continue yyl;
case 0x30:
case 0x31:
case 0x32:
case 0x33:
case 0x34:
case 0x35:
case 0x36:
case 0x37:
case 0x38:
case 0x39:
yycursor += 1;
yystate = 6;
continue yyl;
default:
yystate = 2;
continue yyl;
}
case 4:
yych = yyinput.charAt(yycursor);
switch (yych) {
case 0x30:
case 0x31:
case 0x32:
case 0x33:
case 0x34:
case 0x35:
case 0x36:
case 0x37:
case 0x38:
case 0x39:
yyt2 = yycursor;
yycursor += 1;
yystate = 7;
continue yyl;
default:
yystate = 5;
continue yyl;
}
case 5:
yycursor = yymarker;
yystate = 2;
continue yyl;
case 6:
yych = yyinput.charAt(yycursor);
switch (yych) {
case 0x2E:
yycursor += 1;
yystate = 4;
continue yyl;
case 0x30:
case 0x31:
case 0x32:
case 0x33:
case 0x34:
case 0x35:
case 0x36:
case 0x37:
case 0x38:
case 0x39:
yycursor += 1;
yystate = 6;
continue yyl;
default:
yystate = 5;
continue yyl;
}
case 7:
yych = yyinput.charAt(yycursor);
switch (yych) {
case 0x00:
yyt3 = yycursor;
yyt4 = -1;
yyt5 = -1;
yycursor += 1;
yystate = 8;
continue yyl;
case 0x2E:
yyt3 = yycursor;
yyt5 = yycursor;
yycursor += 1;
yystate = 9;
continue yyl;
case 0x30:
case 0x31:
case 0x32:
case 0x33:
case 0x34:
case 0x35:
case 0x36:
case 0x37:
case 0x38:
case 0x39:
yycursor += 1;
yystate = 7;
continue yyl;
default:
yystate = 5;
continue yyl;
}
case 8:
yynmatch = 4;
yypmatch[2] = yyt1;
yypmatch[4] = yyt2;
yypmatch[5] = yyt3;
yypmatch[6] = yyt5;
yypmatch[7] = yyt4;
yypmatch[0] = yyt1;
yypmatch[1] = yycursor;
yypmatch[3] = yyt2;
yypmatch[3] -= 1;
{
// `yynmatch` is the number of capturing groups
assert yynmatch == 4;
// Even `yypmatch` values are for opening parentheses, odd values
// are for closing parentheses, the first group is the whole match.
int major = Integer.valueOf(yyinput.substring(yypmatch[2], yypmatch[3]));
int minor = Integer.valueOf(yyinput.substring(yypmatch[4], yypmatch[5]));
int patch = (yypmatch[6] == -1) ? 0
: Integer.valueOf(yyinput.substring(yypmatch[6] + 1, yypmatch[7]));
return Optional.of(new SemVer(major, minor, patch));
}
case 9:
yych = yyinput.charAt(yycursor);
if (yych <= 0x00) {
yystate = 5;
continue yyl;
}
yystate = 11;
continue yyl;
case 10:
yych = yyinput.charAt(yycursor);
yystate = 11;
continue yyl;
case 11:
switch (yych) {
case 0x00:
yyt4 = yycursor;
yycursor += 1;
yystate = 8;
continue yyl;
case 0x30:
case 0x31:
case 0x32:
case 0x33:
case 0x34:
case 0x35:
case 0x36:
case 0x37:
case 0x38:
case 0x39:
yycursor += 1;
yystate = 10;
continue yyl;
default:
yystate = 5;
continue yyl;
}
default:
throw new IllegalStateException("internal lexer error");
}
}
}
}
public static void main(String []args) {
assert parse("23.34\0").get().equals(new SemVer(23, 34, 0));
assert parse("1.2.99999\0").get().equals(new SemVer(1, 2, 99999));
assert !parse("1.a\0").isPresent();
}
};
|