static bool flexMatchIC2_debug; static bool flexMatchIC2(S pat, S s) { ret flexMatchIC2(pat, s, null); } static bool flexMatchIC2(S pat, S s, Matches m) { ret flexMatchIC2(javaTok(pat), javaTok_cached(unnull(s)), m); } static bool flexMatchIC2(S pat, S s, Matches m, bool joinBrackets) { ret flexMatchIC2(javaTok(pat), javaTok_cached(unnull(s)), m, joinBrackets); } sbool flexMatchIC2(S pat, LS tokfull, Matches m, bool joinBrackets) { ret flexMatchIC2(javaTok(pat), tokfull, m, joinBrackets); } static bool flexMatchIC2(L tokpat, L tokfull, Matches m) { ret flexMatchIC2(tokpat, tokfull, m, true); } static bool flexMatchIC2(L tokpat, L tokfull, Matches m, bool joinBrackets) { tokpat = codeTokens(joinBrackets ? joinBrackets(tokpat) : tokpat); for (int i = 0; i < l(tokpat); i++) if (eq(tokpat.get(i), "*")) tokpat.add(i++, "!*"); // insert single-token wildcard in front to avoid empty matches if (joinBrackets) tokfull = joinBrackets(tokfull); L tok = codeTokens(tokfull); new BitSet bla; new BitSet bla2; if (!flexMatchIC2_impl(tokpat, 0, tok, 0, bla, bla2)) ret false; if (m != null) { new L l; for (int i = 1; i < l(tokfull); i += 2) { if (bla.get(i/2)) { int j = i; while (j < l(tokfull) && bla.get(j/2)) j += 2; l.add(join(subList(tokfull, i, j-1))); i = j-2; } else if (bla2.get(i/2)) l.add(tokfull.get(i)); } m.m = toStringArray(l); } ret true; } static bool flexMatchIC2_impl(L pat, int ipat, L tok, int itok, BitSet bla, BitSet bla2) { if (flexMatchIC2_debug) print("flexMatchIC2 pat=" + structure(subList(pat, ipat)) + " tok=" + structure(subList(tok, itok)) + " " + structure(bla)); if (ipat >= l(pat)) ret itok >= l(tok); S t = pat.get(ipat); if (eq(t, "*")) { // the flex wildcard (0 or more tokens) if (flexMatchIC2_debug) print("Trying zero tokens"); if (flexMatchIC2_impl(pat, ipat+1, tok, itok, bla, bla2)) { if (flexMatchIC2_debug) print("Success!"); ret true; } bla.set(itok); if (itok < l(tok)) { if (flexMatchIC2_debug) print("Trying one or more tokens"); if (flexMatchIC2_impl(pat, ipat, tok, itok+1, bla, bla2)) { if (flexMatchIC2_debug) print("Success!"); ret true; // success, leave mark } } if (flexMatchIC2_debug) print("Failed * matching"); bla.clear(itok); // fail, undo marking ret false; } if (itok >= l(tok)) { if (flexMatchIC2_debug) print("too much pattern"); ret false; } if (eq(t, "!*")) { // the single-token wildcard bla.set(itok); if (flexMatchIC2_impl(pat, ipat+1, tok, itok+1, bla, bla2)) ret true; // success, leave mark bla.clear(itok); // fail, undo marking ret false; } S realt = tok.get(itok); if (t.startsWith("(") && t.endsWith(")")) { // quick pre-check if (flexMatchIC2_debug) print("flexMatchIC2 precheck " + t + " " + realt); if (!containsIgnoreCase(t, realt)) false; // real check L list = splitAt(dropFirstAndLast(t), "|"); if (flexMatchIC2_debug) print("flexMatchIC2 real check " + struct(list)); if (!containsIgnoreCase(list, realt)) false; bla2.set(itok); } else if (neqic(realt, t)) { if (flexMatchIC2_debug) print("mismatch"); ret false; } // it is a token match. consume and proceed if (flexMatchIC2_impl(pat, ipat+1, tok, itok+1, bla, bla2)) true; else { bla2.clear(itok); false; } }