UnicodeSet.java
50.6 KB
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
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
/*
* Decompiled with CFR 0_118.
*/
package com.adobe.agl.text;
import com.adobe.agl.impl.*;
import com.adobe.agl.lang.UCharacter;
import com.adobe.agl.text.BreakIterator;
import com.adobe.agl.text.SymbolTable;
import com.adobe.agl.text.UTF16;
import com.adobe.agl.text.UnicodeFilter;
import com.adobe.agl.util.Freezable;
import com.adobe.agl.util.ULocale;
import com.adobe.agl.util.VersionInfo;
import java.io.IOException;
import java.text.ParsePosition;
import java.util.Iterator;
import java.util.MissingResourceException;
import java.util.TreeSet;
public class UnicodeSet
extends UnicodeFilter
implements Freezable {
private int len;
private int[] list;
private int[] rangeList;
private int[] buffer;
TreeSet strings = new TreeSet();
private String pat = null;
private static UnicodeSet[] INCLUSIONS = null;
static final VersionInfo NO_VERSION = VersionInfo.getInstance(0, 0, 0, 0);
private boolean frozen;
public UnicodeSet() {
this.list = new int[17];
this.list[this.len++] = 1114112;
}
public UnicodeSet(UnicodeSet other) {
this.set(other);
}
public UnicodeSet(int start, int end) {
this();
this.complement(start, end);
}
public UnicodeSet(String pattern) {
this();
this.applyPattern(pattern, null, null, 1);
}
public UnicodeSet(String pattern, boolean ignoreWhitespace) {
this();
this.applyPattern(pattern, null, null, ignoreWhitespace ? 1 : 0);
}
public Object clone() {
UnicodeSet result = new UnicodeSet(this);
result.frozen = this.frozen;
return result;
}
public UnicodeSet set(int start, int end) {
this.checkFrozen();
this.clear();
this.complement(start, end);
return this;
}
public UnicodeSet set(UnicodeSet other) {
this.checkFrozen();
this.list = (int[])other.list.clone();
this.len = other.len;
this.pat = other.pat;
this.strings = (TreeSet)other.strings.clone();
return this;
}
public final UnicodeSet applyPattern(String pattern) {
this.checkFrozen();
return this.applyPattern(pattern, null, null, 1);
}
private static void _appendToPat(StringBuffer buf, String s, boolean escapeUnprintable) {
for (int i = 0; i < s.length(); i += UTF16.getCharCount((int)i)) {
UnicodeSet._appendToPat(buf, UTF16.charAt(s, i), escapeUnprintable);
}
}
private static void _appendToPat(StringBuffer buf, int c, boolean escapeUnprintable) {
if (escapeUnprintable && Utility.isUnprintable(c) && Utility.escapeUnprintable(buf, c)) {
return;
}
switch (c) {
case 36:
case 38:
case 45:
case 58:
case 91:
case 92:
case 93:
case 94:
case 123:
case 125: {
buf.append('\\');
break;
}
default: {
if (!UCharacterProperty.isRuleWhiteSpace(c)) break;
buf.append('\\');
}
}
UTF16.append(buf, c);
}
public String toPattern(boolean escapeUnprintable) {
StringBuffer result = new StringBuffer();
return this._toPattern(result, escapeUnprintable).toString();
}
private StringBuffer _toPattern(StringBuffer result, boolean escapeUnprintable) {
if (this.pat != null) {
int backslashCount = 0;
int i = 0;
while (i < this.pat.length()) {
int c = UTF16.charAt(this.pat, i);
i += UTF16.getCharCount(c);
if (escapeUnprintable && Utility.isUnprintable(c)) {
if (backslashCount % 2 == 1) {
result.setLength(result.length() - 1);
}
Utility.escapeUnprintable(result, c);
backslashCount = 0;
continue;
}
UTF16.append(result, c);
if (c == 92) {
++backslashCount;
continue;
}
backslashCount = 0;
}
return result;
}
return this._generatePattern(result, escapeUnprintable, true);
}
public StringBuffer _generatePattern(StringBuffer result, boolean escapeUnprintable, boolean includeStrings) {
int start;
int end;
int i;
result.append('[');
int count = this.getRangeCount();
if (count > 1 && this.getRangeStart(0) == 0 && this.getRangeEnd(count - 1) == 1114111) {
result.append('^');
for (i = 1; i < count; ++i) {
start = this.getRangeEnd(i - 1) + 1;
end = this.getRangeStart(i) - 1;
UnicodeSet._appendToPat(result, start, escapeUnprintable);
if (start == end) continue;
if (start + 1 != end) {
result.append('-');
}
UnicodeSet._appendToPat(result, end, escapeUnprintable);
}
} else {
for (i = 0; i < count; ++i) {
start = this.getRangeStart(i);
end = this.getRangeEnd(i);
UnicodeSet._appendToPat(result, start, escapeUnprintable);
if (start == end) continue;
if (start + 1 != end) {
result.append('-');
}
UnicodeSet._appendToPat(result, end, escapeUnprintable);
}
}
if (includeStrings && this.strings.size() > 0) {
Iterator it = this.strings.iterator();
while (it.hasNext()) {
result.append('{');
UnicodeSet._appendToPat(result, (String)it.next(), escapeUnprintable);
result.append('}');
}
}
return result.append(']');
}
public int size() {
int n = 0;
int count = this.getRangeCount();
for (int i = 0; i < count; ++i) {
n += this.getRangeEnd(i) - this.getRangeStart(i) + 1;
}
return n + this.strings.size();
}
public boolean isEmpty() {
return this.len == 1 && this.strings.size() == 0;
}
public int charAt(int index) {
if (index >= 0) {
int len2 = this.len & -2;
int i = 0;
while (i < len2) {
int start;
int count;
if (index < (count = this.list[i++] - (start = this.list[i++]))) {
return start + index;
}
index -= count;
}
}
return -1;
}
public UnicodeSet add(int start, int end) {
this.checkFrozen();
return this.add_unchecked(start, end);
}
private UnicodeSet add_unchecked(int start, int end) {
if (start < 0 || start > 1114111) {
throw new IllegalArgumentException("Invalid code point U+" + Utility.hex(start, 6));
}
if (end < 0 || end > 1114111) {
throw new IllegalArgumentException("Invalid code point U+" + Utility.hex(end, 6));
}
if (start < end) {
this.add(this.range(start, end), 2, 0);
} else if (start == end) {
this.add(start);
}
return this;
}
public final UnicodeSet add(int c) {
this.checkFrozen();
return this.add_unchecked(c);
}
private final UnicodeSet add_unchecked(int c) {
if (c < 0 || c > 1114111) {
throw new IllegalArgumentException("Invalid code point U+" + Utility.hex(c, 6));
}
int i = this.findCodePoint(c);
if ((i & 1) != 0) {
return this;
}
if (c == this.list[i] - 1) {
this.list[i] = c;
if (c == 1114111) {
this.ensureCapacity(this.len + 1);
this.list[this.len++] = 1114112;
}
if (i > 0 && c == this.list[i - 1]) {
System.arraycopy(this.list, i + 1, this.list, i - 1, this.len - i - 1);
this.len -= 2;
}
} else if (i > 0 && c == this.list[i - 1]) {
int[] arrn = this.list;
int n = i - 1;
arrn[n] = arrn[n] + 1;
} else {
if (this.len + 2 > this.list.length) {
int[] temp = new int[this.len + 2 + 16];
if (i != 0) {
System.arraycopy(this.list, 0, temp, 0, i);
}
System.arraycopy(this.list, i, temp, i + 2, this.len - i);
this.list = temp;
} else {
System.arraycopy(this.list, i, this.list, i + 2, this.len - i);
}
this.list[i] = c;
this.list[i + 1] = c + 1;
this.len += 2;
}
this.pat = null;
return this;
}
public final UnicodeSet add(String s) {
this.checkFrozen();
int cp = UnicodeSet.getSingleCP(s);
if (cp < 0) {
this.strings.add(s);
this.pat = null;
} else {
this.add_unchecked(cp, cp);
}
return this;
}
private static int getSingleCP(String s) {
if (s.length() < 1) {
throw new IllegalArgumentException("Can't use zero-length strings in UnicodeSet");
}
if (s.length() > 2) {
return -1;
}
if (s.length() == 1) {
return s.charAt(0);
}
int cp = UTF16.charAt(s, 0);
if (cp > 65535) {
return cp;
}
return -1;
}
public final UnicodeSet addAll(String s) {
int cp;
this.checkFrozen();
for (int i = 0; i < s.length(); i += UTF16.getCharCount((int)cp)) {
cp = UTF16.charAt(s, i);
this.add_unchecked(cp, cp);
}
return this;
}
public UnicodeSet remove(int start, int end) {
this.checkFrozen();
if (start < 0 || start > 1114111) {
throw new IllegalArgumentException("Invalid code point U+" + Utility.hex(start, 6));
}
if (end < 0 || end > 1114111) {
throw new IllegalArgumentException("Invalid code point U+" + Utility.hex(end, 6));
}
if (start <= end) {
this.retain(this.range(start, end), 2, 2);
}
return this;
}
public final UnicodeSet remove(int c) {
return this.remove(c, c);
}
public UnicodeSet complement(int start, int end) {
this.checkFrozen();
if (start < 0 || start > 1114111) {
throw new IllegalArgumentException("Invalid code point U+" + Utility.hex(start, 6));
}
if (end < 0 || end > 1114111) {
throw new IllegalArgumentException("Invalid code point U+" + Utility.hex(end, 6));
}
if (start <= end) {
this.xor(this.range(start, end), 2, 0);
}
this.pat = null;
return this;
}
public UnicodeSet complement() {
this.checkFrozen();
if (this.list[0] == 0) {
System.arraycopy(this.list, 1, this.list, 0, this.len - 1);
--this.len;
} else {
this.ensureCapacity(this.len + 1);
System.arraycopy(this.list, 0, this.list, 1, this.len);
this.list[0] = 0;
++this.len;
}
this.pat = null;
return this;
}
public boolean contains(int c) {
if (c < 0 || c > 1114111) {
throw new IllegalArgumentException("Invalid code point U+" + Utility.hex(c, 6));
}
int i = this.findCodePoint(c);
return (i & 1) != 0;
}
private final int findCodePoint(int c) {
if (c < this.list[0]) {
return 0;
}
if (this.len >= 2 && c >= this.list[this.len - 2]) {
return this.len - 1;
}
int lo = 0;
int hi = this.len - 1;
int i;
while ((i = lo + hi >>> 1) != lo) {
if (c < this.list[i]) {
hi = i;
continue;
}
lo = i;
}
return hi;
}
public UnicodeSet addAll(UnicodeSet c) {
this.checkFrozen();
this.add(c.list, c.len, 0);
this.strings.addAll(c.strings);
return this;
}
public UnicodeSet retainAll(UnicodeSet c) {
this.checkFrozen();
this.retain(c.list, c.len, 0);
this.strings.retainAll(c.strings);
return this;
}
public UnicodeSet removeAll(UnicodeSet c) {
this.checkFrozen();
this.retain(c.list, c.len, 2);
this.strings.removeAll(c.strings);
return this;
}
public UnicodeSet clear() {
this.checkFrozen();
this.list[0] = 1114112;
this.len = 1;
this.pat = null;
this.strings.clear();
return this;
}
public int getRangeCount() {
return this.len / 2;
}
public int getRangeStart(int index) {
return this.list[index * 2];
}
public int getRangeEnd(int index) {
return this.list[index * 2 + 1] - 1;
}
public UnicodeSet compact() {
this.checkFrozen();
if (this.len != this.list.length) {
int[] temp = new int[this.len];
System.arraycopy(this.list, 0, temp, 0, this.len);
this.list = temp;
}
this.rangeList = null;
this.buffer = null;
return this;
}
public boolean equals(Object o) {
try {
UnicodeSet that = (UnicodeSet)o;
if (this.len != that.len) {
return false;
}
for (int i = 0; i < this.len; ++i) {
if (this.list[i] == that.list[i]) continue;
return false;
}
if (!this.strings.equals(that.strings)) {
return false;
}
}
catch (Exception e) {
return false;
}
return true;
}
public int hashCode() {
int result = this.len;
for (int i = 0; i < this.len; ++i) {
result *= 1000003;
result += this.list[i];
}
return result;
}
public String toString() {
return this.toPattern(true);
}
UnicodeSet applyPattern(String pattern, ParsePosition pos, SymbolTable symbols, int options) {
boolean parsePositionWasNull;
boolean bl = parsePositionWasNull = pos == null;
if (parsePositionWasNull) {
pos = new ParsePosition(0);
}
StringBuffer rebuiltPat = new StringBuffer();
RuleCharacterIterator chars = new RuleCharacterIterator(pattern, symbols, pos);
this.applyPattern(chars, symbols, rebuiltPat, options);
if (chars.inVariable()) {
UnicodeSet.syntaxError(chars, "Extra chars in variable value");
}
this.pat = rebuiltPat.toString();
if (parsePositionWasNull) {
int i = pos.getIndex();
if ((options & 1) != 0) {
i = Utility.skipWhitespace(pattern, i);
}
if (i != pattern.length()) {
throw new IllegalArgumentException("Parse of \"" + pattern + "\" failed at " + i);
}
}
return this;
}
/*
* Unable to fully structure code
* Enabled aggressive block sorting
* Enabled unnecessary exception pruning
* Enabled aggressive exception aggregation
* Lifted jumps to return sites
*/
void applyPattern(RuleCharacterIterator chars, SymbolTable symbols, StringBuffer rebuiltPat, int options) {
opts = 3;
if ((options & 1) != 0) {
opts |= 4;
}
patBuf = new StringBuffer();
buf = null;
usePat = false;
scratch = null;
backup = null;
lastItem = '\u0000';
lastChar = 0;
mode = 0;
op = '\u0000';
invert = false;
this.clear();
block25 : while (mode != 2 && !chars.atEnd()) {
c = 0;
literal = false;
nested = null;
setMode = 0;
if (!UnicodeSet.resemblesPropertyPattern(chars, opts)) ** GOTO lbl23
setMode = 2;
** GOTO lbl54
lbl23: // 1 sources:
backup = chars.getPos(backup);
c = chars.next(opts);
literal = chars.isEscaped();
if (c != 91 || literal) ** GOTO lbl47
if (mode == 1) {
chars.setPos(backup);
setMode = 1;
} else {
mode = 1;
patBuf.append('[');
backup = chars.getPos(backup);
c = chars.next(opts);
literal = chars.isEscaped();
if (c == 94 && !literal) {
invert = true;
patBuf.append('^');
backup = chars.getPos(backup);
c = chars.next(opts);
literal = chars.isEscaped();
}
if (c == 45) {
literal = true;
} else {
chars.setPos(backup);
continue;
lbl47: // 1 sources:
if (symbols != null && (m = symbols.lookupMatcher(c)) != null) {
try {
nested = (UnicodeSet)m;
setMode = 3;
}
catch (ClassCastException e) {
UnicodeSet.syntaxError(chars, "Syntax error");
}
}
}
}
lbl54: // 7 sources:
if (setMode != 0) {
if (lastItem == '\u0001') {
if (op != '\u0000') {
UnicodeSet.syntaxError(chars, "Char expected after operator");
}
this.add_unchecked(lastChar, lastChar);
UnicodeSet._appendToPat(patBuf, lastChar, false);
op = '\u0000';
lastItem = '\u0000';
}
if (op == '-' || op == '&') {
patBuf.append(op);
}
if (nested == null) {
if (scratch == null) {
scratch = new UnicodeSet();
}
nested = scratch;
}
switch (setMode) {
case 1: {
nested.applyPattern(chars, symbols, patBuf, options);
break;
}
case 2: {
chars.skipIgnored(opts);
nested.applyPropertyPattern(chars, patBuf, symbols);
break;
}
case 3: {
nested._toPattern(patBuf, false);
}
}
usePat = true;
if (mode == 0) {
this.set(nested);
mode = 2;
break;
}
switch (op) {
case '-': {
this.removeAll(nested);
break;
}
case '&': {
this.retainAll(nested);
break;
}
case '\u0000': {
this.addAll(nested);
}
}
op = '\u0000';
lastItem = '\u0002';
continue;
}
if (mode == 0) {
UnicodeSet.syntaxError(chars, "Missing '['");
}
if (literal) ** GOTO lbl180
switch (c) {
case 93: {
if (lastItem == '\u0001') {
this.add_unchecked(lastChar, lastChar);
UnicodeSet._appendToPat(patBuf, lastChar, false);
}
if (op == '-') {
this.add_unchecked(op, op);
patBuf.append(op);
} else if (op == '&') {
UnicodeSet.syntaxError(chars, "Trailing '&'");
}
patBuf.append(']');
mode = 2;
continue block25;
}
case 45: {
if (op == '\u0000') {
if (lastItem != '\u0000') {
op = (char)c;
continue block25;
}
this.add_unchecked(c, c);
c = chars.next(opts);
literal = chars.isEscaped();
if (c == 93 && !literal) {
patBuf.append("-]");
mode = 2;
continue block25;
}
}
UnicodeSet.syntaxError(chars, "'-' not after char or set");
}
case 38: {
if (lastItem == '\u0002' && op == '\u0000') {
op = (char)c;
continue block25;
}
UnicodeSet.syntaxError(chars, "'&' not after set");
}
case 94: {
UnicodeSet.syntaxError(chars, "'^' not after '['");
}
case 123: {
if (op != '\u0000') {
UnicodeSet.syntaxError(chars, "Missing operand after operator");
}
if (lastItem == '\u0001') {
this.add_unchecked(lastChar, lastChar);
UnicodeSet._appendToPat(patBuf, lastChar, false);
}
lastItem = '\u0000';
if (buf == null) {
buf = new StringBuffer();
} else {
buf.setLength(0);
}
ok = false;
while (!chars.atEnd()) {
c = chars.next(opts);
literal = chars.isEscaped();
if (c == 125 && !literal) {
ok = true;
break;
}
UTF16.append(buf, c);
}
if (buf.length() < 1 || !ok) {
UnicodeSet.syntaxError(chars, "Invalid multicharacter string");
}
this.add(buf.toString());
patBuf.append('{');
UnicodeSet._appendToPat(patBuf, buf.toString(), false);
patBuf.append('}');
continue block25;
}
case 36: {
backup = chars.getPos(backup);
c = chars.next(opts);
literal = chars.isEscaped();
v0 = anchor = c == 93 && literal == false;
if (symbols != null) ** GOTO lbl-1000
if (!anchor) {
c = 36;
chars.setPos(backup);
break;
}
if (anchor) lbl-1000: // 2 sources:
{
if (op == '\u0000') {
if (lastItem == '\u0001') {
this.add_unchecked(lastChar, lastChar);
UnicodeSet._appendToPat(patBuf, lastChar, false);
}
this.add_unchecked(65535);
usePat = true;
patBuf.append('$').append(']');
mode = 2;
continue block25;
}
}
UnicodeSet.syntaxError(chars, "Unquoted '$'");
}
}
lbl180: // 4 sources:
switch (lastItem) {
case '\u0000': {
lastItem = '\u0001';
lastChar = c;
break;
}
case '\u0001': {
if (op == '-') {
if (lastChar >= c) {
UnicodeSet.syntaxError(chars, "Invalid range");
}
this.add_unchecked(lastChar, c);
UnicodeSet._appendToPat(patBuf, lastChar, false);
patBuf.append(op);
UnicodeSet._appendToPat(patBuf, c, false);
op = '\u0000';
lastItem = '\u0000';
break;
}
this.add_unchecked(lastChar, lastChar);
UnicodeSet._appendToPat(patBuf, lastChar, false);
lastChar = c;
break;
}
case '\u0002': {
if (op != '\u0000') {
UnicodeSet.syntaxError(chars, "Set expected after operator");
}
lastChar = c;
lastItem = '\u0001';
}
}
}
if (mode != 2) {
UnicodeSet.syntaxError(chars, "Missing ']'");
}
chars.skipIgnored(opts);
if ((options & 2) != 0) {
this.closeOver(2);
}
if (invert) {
this.complement();
}
if (usePat) {
rebuiltPat.append(patBuf.toString());
return;
}
this._generatePattern(rebuiltPat, false, true);
}
private static void syntaxError(RuleCharacterIterator chars, String msg) {
throw new IllegalArgumentException("Error: " + msg + " at \"" + Utility.escape(chars.toString()) + '\"');
}
private void ensureCapacity(int newLen) {
if (newLen <= this.list.length) {
return;
}
int[] temp = new int[newLen + 16];
System.arraycopy(this.list, 0, temp, 0, this.len);
this.list = temp;
}
private void ensureBufferCapacity(int newLen) {
if (this.buffer != null && newLen <= this.buffer.length) {
return;
}
this.buffer = new int[newLen + 16];
}
private int[] range(int start, int end) {
if (this.rangeList == null) {
this.rangeList = new int[]{start, end + 1, 1114112};
} else {
this.rangeList[0] = start;
this.rangeList[1] = end + 1;
}
return this.rangeList;
}
private UnicodeSet xor(int[] other, int otherLen, int polarity) {
int b;
this.ensureBufferCapacity(this.len + otherLen);
int i = 0;
int j = 0;
int k = 0;
int a = this.list[i++];
if (polarity == 1 || polarity == 2) {
b = 0;
if (other[j] == 0) {
b = other[++j];
}
} else {
b = other[j++];
}
do {
if (a < b) {
this.buffer[k++] = a;
a = this.list[i++];
continue;
}
if (b < a) {
this.buffer[k++] = b;
b = other[j++];
continue;
}
if (a == 1114112) break;
a = this.list[i++];
b = other[j++];
} while (true);
this.buffer[k++] = 1114112;
this.len = k;
int[] temp = this.list;
this.list = this.buffer;
this.buffer = temp;
this.pat = null;
return this;
}
/*
* Enabled aggressive block sorting
*/
private UnicodeSet add(int[] other, int otherLen, int polarity) {
this.ensureBufferCapacity(this.len + otherLen);
int i = 0;
int j = 0;
int k = 0;
int a = this.list[i++];
int b = other[j++];
block6 : do {
switch (polarity) {
case 0: {
if (a < b) {
if (k > 0 && a <= this.buffer[k - 1]) {
a = UnicodeSet.max(this.list[i], this.buffer[--k]);
} else {
this.buffer[k++] = a;
a = this.list[i];
}
++i;
polarity ^= 1;
break;
}
if (b < a) {
if (k > 0 && b <= this.buffer[k - 1]) {
b = UnicodeSet.max(other[j], this.buffer[--k]);
} else {
this.buffer[k++] = b;
b = other[j];
}
++j;
polarity ^= 2;
break;
}
if (a == 1114112) break block6;
if (k > 0 && a <= this.buffer[k - 1]) {
a = UnicodeSet.max(this.list[i], this.buffer[--k]);
} else {
this.buffer[k++] = a;
a = this.list[i];
}
++i;
polarity ^= 1;
b = other[j++];
polarity ^= 2;
break;
}
case 3: {
if (b <= a) {
if (a == 1114112) break block6;
this.buffer[k++] = a;
} else {
if (b == 1114112) break block6;
this.buffer[k++] = b;
}
a = this.list[i++];
polarity ^= 1;
b = other[j++];
polarity ^= 2;
break;
}
case 1: {
if (a < b) {
this.buffer[k++] = a;
a = this.list[i++];
polarity ^= 1;
break;
}
if (b < a) {
b = other[j++];
polarity ^= 2;
break;
}
if (a == 1114112) break block6;
a = this.list[i++];
polarity ^= 1;
b = other[j++];
polarity ^= 2;
break;
}
case 2: {
if (b < a) {
this.buffer[k++] = b;
b = other[j++];
polarity ^= 2;
break;
}
if (a < b) {
a = this.list[i++];
polarity ^= 1;
break;
}
if (a == 1114112) break block6;
a = this.list[i++];
polarity ^= 1;
b = other[j++];
polarity ^= 2;
}
}
} while (true);
this.buffer[k++] = 1114112;
this.len = k;
int[] temp = this.list;
this.list = this.buffer;
this.buffer = temp;
this.pat = null;
return this;
}
/*
* Enabled aggressive block sorting
*/
private UnicodeSet retain(int[] other, int otherLen, int polarity) {
this.ensureBufferCapacity(this.len + otherLen);
int i = 0;
int j = 0;
int k = 0;
int a = this.list[i++];
int b = other[j++];
block6 : do {
switch (polarity) {
case 0: {
if (a < b) {
a = this.list[i++];
polarity ^= 1;
break;
}
if (b < a) {
b = other[j++];
polarity ^= 2;
break;
}
if (a == 1114112) break block6;
this.buffer[k++] = a;
a = this.list[i++];
polarity ^= 1;
b = other[j++];
polarity ^= 2;
break;
}
case 3: {
if (a < b) {
this.buffer[k++] = a;
a = this.list[i++];
polarity ^= 1;
break;
}
if (b < a) {
this.buffer[k++] = b;
b = other[j++];
polarity ^= 2;
break;
}
if (a == 1114112) break block6;
this.buffer[k++] = a;
a = this.list[i++];
polarity ^= 1;
b = other[j++];
polarity ^= 2;
break;
}
case 1: {
if (a < b) {
a = this.list[i++];
polarity ^= 1;
break;
}
if (b < a) {
this.buffer[k++] = b;
b = other[j++];
polarity ^= 2;
break;
}
if (a == 1114112) break block6;
a = this.list[i++];
polarity ^= 1;
b = other[j++];
polarity ^= 2;
break;
}
case 2: {
if (b < a) {
b = other[j++];
polarity ^= 2;
break;
}
if (a < b) {
this.buffer[k++] = a;
a = this.list[i++];
polarity ^= 1;
break;
}
if (a == 1114112) break block6;
a = this.list[i++];
polarity ^= 1;
b = other[j++];
polarity ^= 2;
}
}
} while (true);
this.buffer[k++] = 1114112;
this.len = k;
int[] temp = this.list;
this.list = this.buffer;
this.buffer = temp;
this.pat = null;
return this;
}
private static final int max(int a, int b) {
return a > b ? a : b;
}
private static synchronized UnicodeSet getInclusions(int src) {
if (INCLUSIONS == null) {
INCLUSIONS = new UnicodeSet[9];
}
if (INCLUSIONS[src] == null) {
UnicodeSet incl = new UnicodeSet();
switch (src) {
case 1: {
UCharacterProperty.getInstance().addPropertyStarts(incl);
break;
}
case 2: {
UCharacterProperty.getInstance().upropsvec_addPropertyStarts(incl);
break;
}
case 8: {
UCharacterProperty.getInstance().addPropertyStarts(incl);
UCharacterProperty.getInstance().upropsvec_addPropertyStarts(incl);
break;
}
case 3: {
UCharacterProperty.getInstance().uhst_addPropertyStarts(incl);
break;
}
case 5: {
NormalizerImpl.addPropertyStarts(incl);
break;
}
case 6: {
try {
UCaseProps.getSingleton().addPropertyStarts(incl);
break;
}
catch (IOException e) {
throw new MissingResourceException(e.getMessage(), "", "");
}
}
case 7: {
try {
UBiDiProps.getSingleton().addPropertyStarts(incl);
break;
}
catch (IOException e) {
throw new MissingResourceException(e.getMessage(), "", "");
}
}
default: {
throw new IllegalStateException("UnicodeSet.getInclusions(unknown src " + src + ")");
}
}
UnicodeSet.INCLUSIONS[src] = incl;
}
return INCLUSIONS[src];
}
private UnicodeSet applyFilter(Filter filter, int src) {
this.clear();
int startHasProperty = -1;
UnicodeSet inclusions = UnicodeSet.getInclusions(src);
int limitRange = inclusions.getRangeCount();
for (int j = 0; j < limitRange; ++j) {
int start = inclusions.getRangeStart(j);
int end = inclusions.getRangeEnd(j);
for (int ch = start; ch <= end; ++ch) {
if (filter.contains(ch)) {
if (startHasProperty >= 0) continue;
startHasProperty = ch;
continue;
}
if (startHasProperty < 0) continue;
this.add_unchecked(startHasProperty, ch - 1);
startHasProperty = -1;
}
}
if (startHasProperty >= 0) {
this.add_unchecked(startHasProperty, 1114111);
}
return this;
}
private static String mungeCharName(String source) {
StringBuffer buf = new StringBuffer();
int i = 0;
while (i < source.length()) {
int ch = UTF16.charAt(source, i);
i += UTF16.getCharCount(ch);
if (UCharacterProperty.isRuleWhiteSpace(ch)) {
if (buf.length() == 0 || buf.charAt(buf.length() - 1) == ' ') continue;
ch = 32;
}
UTF16.append(buf, ch);
}
if (buf.length() != 0 && buf.charAt(buf.length() - 1) == ' ') {
buf.setLength(buf.length() - 1);
}
return buf.toString();
}
public UnicodeSet applyIntPropertyValue(int prop, int value) {
this.checkFrozen();
if (prop == 8192) {
this.applyFilter(new GeneralCategoryMaskFilter(value), 1);
} else {
this.applyFilter(new IntPropertyFilter(prop, value), UCharacterProperty.getInstance().getSource(prop));
}
return this;
}
/*
* Unable to fully structure code
* Enabled aggressive block sorting
* Enabled unnecessary exception pruning
* Enabled aggressive exception aggregation
* Lifted jumps to return sites
*/
public UnicodeSet applyPropertyAlias(String propertyAlias, String valueAlias, SymbolTable symbols) {
block24 : {
this.checkFrozen();
mustNotBeEmpty = false;
invert = false;
if (symbols != null && symbols instanceof XSymbolTable && ((XSymbolTable)symbols).applyPropertyAlias(propertyAlias, valueAlias, this)) {
return this;
}
if (valueAlias.length() <= 0) ** GOTO lbl38
p = UCharacter.getPropertyEnum(propertyAlias);
if (p == 4101) {
p = 8192;
}
if (p >= 0 && p < 49 || p >= 4096 && p < 4117 || p >= 8192 && p < 8193) {
try {
v = UCharacter.getPropertyValueEnum(p, valueAlias);
}
catch (IllegalArgumentException e) {
if (p != 4098 && p != 4112) {
if (p != 4113) throw e;
}
if ((v = Integer.parseInt(Utility.deleteRuleWhiteSpace(valueAlias))) < 0) throw e;
if (v <= 255) ** GOTO lbl68
throw e;
}
} else {
switch (p) {
case 12288: {
value = Double.parseDouble(Utility.deleteRuleWhiteSpace(valueAlias));
this.applyFilter(new NumericValueFilter(value), 1);
return this;
}
case 16389:
case 16395: {
buf = UnicodeSet.mungeCharName(valueAlias);
v0 = ch = p == 16389 ? UCharacter.getCharFromExtendedName(buf) : UCharacter.getCharFromName1_0(buf);
if (ch == -1) {
throw new IllegalArgumentException("Invalid character name");
}
this.clear();
this.add_unchecked(ch);
return this;
}
case 16384: {
version = VersionInfo.getInstance(UnicodeSet.mungeCharName(valueAlias));
this.applyFilter(new VersionFilter(version), 2);
return this;
}
}
throw new IllegalArgumentException("Unsupported property");
lbl38: // 1 sources:
try {
p = 8192;
v = UCharacter.getPropertyValueEnum(p, propertyAlias);
}
catch (IllegalArgumentException e) {
try {
p = 4106;
v = UCharacter.getPropertyValueEnum(p, propertyAlias);
}
catch (IllegalArgumentException e2) {
try {
p = UCharacter.getPropertyEnum(propertyAlias);
}
catch (IllegalArgumentException e3) {
p = -1;
}
if (p >= 0) {
if (p < 49) {
v = 1;
break block24;
}
if (p != -1) throw new IllegalArgumentException("Missing property value");
}
if (0 == UPropertyAliases.compare("ANY", propertyAlias)) {
this.set(0, 1114111);
return this;
}
if (0 == UPropertyAliases.compare("ASCII", propertyAlias)) {
this.set(0, 127);
return this;
}
if (0 != UPropertyAliases.compare("Assigned", propertyAlias)) throw new IllegalArgumentException("Invalid property alias: " + propertyAlias + "=" + valueAlias);
p = 8192;
v = 1;
invert = true;
}
}
}
}
this.applyIntPropertyValue(p, v);
if (invert) {
this.complement();
}
if (mustNotBeEmpty == false) return this;
if (this.isEmpty() == false) return this;
throw new IllegalArgumentException("Invalid property value");
}
private static boolean resemblesPropertyPattern(RuleCharacterIterator chars, int iterOpts) {
boolean result = false;
Object pos = chars.getPos(null);
int c = chars.next(iterOpts &= -3);
if (c == 91 || c == 92) {
int d = chars.next(iterOpts & -5);
result = c == 91 ? d == 58 : d == 78 || d == 112 || d == 80;
}
chars.setPos(pos);
return result;
}
private UnicodeSet applyPropertyPattern(String pattern, ParsePosition ppos, SymbolTable symbols) {
String propName;
int close;
String valueName;
int pos = ppos.getIndex();
if (pos + 5 > pattern.length()) {
return null;
}
boolean posix = false;
boolean isName = false;
boolean invert = false;
if (pattern.regionMatches(pos, "[:", 0, 2)) {
posix = true;
if ((pos = Utility.skipWhitespace(pattern, pos + 2)) < pattern.length() && pattern.charAt(pos) == '^') {
++pos;
invert = true;
}
} else if (pattern.regionMatches(true, pos, "\\p", 0, 2) || pattern.regionMatches(pos, "\\N", 0, 2)) {
char c = pattern.charAt(pos + 1);
invert = c == 'P';
isName = c == 'N';
pos = Utility.skipWhitespace(pattern, pos + 2);
if (pos == pattern.length() || pattern.charAt(pos++) != '{') {
return null;
}
} else {
return null;
}
if ((close = pattern.indexOf(posix ? ":]" : "}", pos)) < 0) {
return null;
}
int equals = pattern.indexOf(61, pos);
if (equals >= 0 && equals < close && !isName) {
propName = pattern.substring(pos, equals);
valueName = pattern.substring(equals + 1, close);
} else {
propName = pattern.substring(pos, close);
valueName = "";
if (isName) {
valueName = propName;
propName = "na";
}
}
this.applyPropertyAlias(propName, valueName, symbols);
if (invert) {
this.complement();
}
ppos.setIndex(close + (posix ? 2 : 1));
return this;
}
private void applyPropertyPattern(RuleCharacterIterator chars, StringBuffer rebuiltPat, SymbolTable symbols) {
String patStr = chars.lookahead();
ParsePosition pos = new ParsePosition(0);
this.applyPropertyPattern(patStr, pos, symbols);
if (pos.getIndex() == 0) {
UnicodeSet.syntaxError(chars, "Invalid property pattern");
}
chars.jumpahead(pos.getIndex());
rebuiltPat.append(patStr.substring(0, pos.getIndex()));
}
private static final void addCaseMapping(UnicodeSet set, int result, StringBuffer full) {
if (result >= 0) {
if (result > 31) {
set.add(result);
} else {
set.add(full.toString());
full.setLength(0);
}
}
}
public UnicodeSet closeOver(int attribute) {
this.checkFrozen();
if ((attribute & 6) != 0) {
UCaseProps csp;
try {
csp = UCaseProps.getSingleton();
}
catch (IOException e) {
return this;
}
UnicodeSet foldSet = new UnicodeSet(this);
ULocale root = ULocale.ROOT;
if ((attribute & 2) != 0) {
foldSet.strings.clear();
}
int n = this.getRangeCount();
StringBuffer full = new StringBuffer();
int[] locCache = new int[1];
for (int i = 0; i < n; ++i) {
int cp;
int start = this.getRangeStart(i);
int end = this.getRangeEnd(i);
if ((attribute & 2) != 0) {
for (cp = start; cp <= end; ++cp) {
csp.addCaseClosure(cp, foldSet);
}
continue;
}
for (cp = start; cp <= end; ++cp) {
int result = csp.toFullLower(cp, null, full, root, locCache);
UnicodeSet.addCaseMapping(foldSet, result, full);
result = csp.toFullTitle(cp, null, full, root, locCache);
UnicodeSet.addCaseMapping(foldSet, result, full);
result = csp.toFullUpper(cp, null, full, root, locCache);
UnicodeSet.addCaseMapping(foldSet, result, full);
result = csp.toFullFolding(cp, full, 0);
UnicodeSet.addCaseMapping(foldSet, result, full);
}
}
if (!this.strings.isEmpty()) {
if ((attribute & 2) != 0) {
Iterator it = this.strings.iterator();
while (it.hasNext()) {
String str = UCharacter.foldCase((String)it.next(), 0);
if (csp.addStringCaseClosure(str, foldSet)) continue;
foldSet.add(str);
}
} else {
BreakIterator bi = BreakIterator.getWordInstance(root);
Iterator it = this.strings.iterator();
while (it.hasNext()) {
String str = (String)it.next();
foldSet.add(UCharacter.toLowerCase(root, str));
foldSet.add(UCharacter.toTitleCase(root, str, bi));
foldSet.add(UCharacter.toUpperCase(root, str));
foldSet.add(UCharacter.foldCase(str, 0));
}
}
}
this.set(foldSet);
}
return this;
}
public Object freeze() {
this.frozen = true;
return this;
}
private void checkFrozen() {
if (this.frozen) {
throw new UnsupportedOperationException("Attempt to modify frozen object");
}
}
public static abstract class XSymbolTable
implements SymbolTable {
public boolean applyPropertyAlias(String propertyName, String propertyValue, UnicodeSet result) {
return false;
}
}
private static class VersionFilter
implements Filter {
VersionInfo version;
VersionFilter(VersionInfo version) {
this.version = version;
}
public boolean contains(int ch) {
VersionInfo v = UCharacter.getAge(ch);
return v != UnicodeSet.NO_VERSION && v.compareTo(this.version) <= 0;
}
}
private static class IntPropertyFilter
implements Filter {
int prop;
int value;
IntPropertyFilter(int prop, int value) {
this.prop = prop;
this.value = value;
}
public boolean contains(int ch) {
return UCharacter.getIntPropertyValue(ch, this.prop) == this.value;
}
}
private static class GeneralCategoryMaskFilter
implements Filter {
int mask;
GeneralCategoryMaskFilter(int mask) {
this.mask = mask;
}
public boolean contains(int ch) {
return (1 << UCharacter.getType(ch) & this.mask) != 0;
}
}
private static class NumericValueFilter
implements Filter {
double value;
NumericValueFilter(double value) {
this.value = value;
}
public boolean contains(int ch) {
return UCharacter.getUnicodeNumericValue(ch) == this.value;
}
}
private static interface Filter {
public boolean contains(int var1);
}
}