/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ /* vim: set ts=8 sts=2 et sw=2 tw=80: */ /* This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
/* * * * * nsWildCard.cpp: shell-like wildcard match routines * * See nsIZipReader.findEntries documentation in nsIZipReader.idl for * a description of the syntax supported by the routines in this file. * * Rob McCool *
*/
template <class T> staticint _valid_subexp(const T* aExpr, T aStop1, T aStop2) { int x; int nsc = 0; /* Number of special characters */ int np; /* Number of pipe characters in union */ int tld = 0; /* Number of tilde characters */
for (x = 0; aExpr[x] && (aExpr[x] != aStop1) && (aExpr[x] != aStop2); ++x) { switch (aExpr[x]) { case'~': if (tld) { /* at most one exclusion */ return INVALID_SXP;
} if (aStop1) { /* no exclusions within unions */ return INVALID_SXP;
} if (!aExpr[x + 1]) { /* exclusion cannot be last character */ return INVALID_SXP;
} if (!x) { /* exclusion cannot be first character */ return INVALID_SXP;
}
++tld;
[[fallthrough]]; case'*': case'?': case'$':
++nsc; break; case'[':
++nsc; if ((!aExpr[++x]) || (aExpr[x] == ']')) { return INVALID_SXP;
} for (; aExpr[x] && (aExpr[x] != ']'); ++x) { if (aExpr[x] == '\\' && !aExpr[++x]) { return INVALID_SXP;
}
} if (!aExpr[x]) { return INVALID_SXP;
} break; case'(':
++nsc; if (aStop1) { /* no nested unions */ return INVALID_SXP;
}
np = -1; do { int t = ::_valid_subexp(&aExpr[++x], T(')'), T('|')); if (t == 0 || t == INVALID_SXP) { return INVALID_SXP;
}
x += t; if (!aExpr[x]) { return INVALID_SXP;
}
++np;
} while (aExpr[x] == '|'); if (np < 1) { /* must be at least one pipe */ return INVALID_SXP;
} break; case')': case']': case'|': return INVALID_SXP; case'\\':
++nsc; if (!aExpr[++x]) { return INVALID_SXP;
} break; default: break;
}
} if (!aStop1 && !nsc) { /* must be at least one special character */ return NON_SXP;
} return ((aExpr[x] == aStop1 || aExpr[x] == aStop2) ? x : INVALID_SXP);
}
template <class T> int NS_WildCardValid_(const T* aExpr) { int x = ::_valid_subexp(aExpr, T('\0'), T('\0')); return (x < 0 ? x : VALID_SXP);
}
int NS_WildCardValid(constchar* aExpr) { return NS_WildCardValid_(aExpr); }
int NS_WildCardValid(const char16_t* aExpr) { return NS_WildCardValid_(aExpr); }
/** * Count characters until we reach a NUL character or either of the * two delimiter characters, stop1 or stop2. If we encounter a bracketed * expression, look only for NUL or ']' inside it. Do not look for stop1 * or stop2 inside it. Return ABORTED if bracketed expression is unterminated. * Handle all escaping. * Return index in input string of first stop found, or ABORTED if not found. * If "dest" is non-nullptr, copy counted characters to it and null terminate.
*/ template <class T> staticint _scan_and_copy(const T* aExpr, T aStop1, T aStop2, T* aDest) { int sx; /* source index */
T cc;
for (sx = 0; (cc = aExpr[sx]) && cc != aStop1 && cc != aStop2; ++sx) { if (cc == '\\') { if (!aExpr[++sx]) { return ABORTED; /* should be impossible */
}
} elseif (cc == '[') { while ((cc = aExpr[++sx]) && cc != ']') { if (cc == '\\' && !aExpr[++sx]) { return ABORTED;
}
} if (!cc) { return ABORTED; /* should be impossible */
}
}
} if (aDest && sx) { /* Copy all but the closing delimiter. */
memcpy(aDest, aExpr, sx * sizeof(T));
aDest[sx] = 0;
} return cc ? sx : ABORTED; /* index of closing delimiter */
}
/* On input, expr[0] is the opening parenthesis of a union. * See if any of the alternatives in the union matches as a pattern. * The strategy is to take each of the alternatives, in turn, and append * the rest of the expression (after the closing ')' that marks the end of * this union) to that alternative, and then see if the resultant expression * matches the input string. Repeat this until some alternative matches, * or we have an abort.
*/ template <class T> staticint _handle_union(const T* aStr, const T* aExpr, bool aCaseInsensitive, unsignedint aLevel) { int sx; /* source index */ int cp; /* source index of closing parenthesis */ int count; int ret = NOMATCH;
T* e2;
/* Find the closing parenthesis that ends this union in the expression */
cp = ::_scan_and_copy(aExpr, T(')'), T('\0'), static_cast<T*>(nullptr)); if (cp == ABORTED || cp < 4) { /* must be at least "(a|b" before ')' */ return ABORTED;
}
++cp; /* now index of char after closing parenthesis */
e2 = (T*)moz_xmalloc((1 + nsCharTraits<T>::length(aExpr)) * sizeof(T)); for (sx = 1;; ++sx) { /* Here, aExpr[sx] is one character past the preceding '(' or '|'. */ /* Copy everything up to the next delimiter to e2 */
count = ::_scan_and_copy(aExpr + sx, T(')'), T('|'), e2); if (count == ABORTED || !count) {
ret = ABORTED; break;
}
sx += count; /* Append everything after closing parenthesis to e2. This is safe. */
nsCharTraits<T>::copy(e2 + count, aExpr + cp,
nsCharTraits<T>::length(aExpr + cp) + 1);
ret = ::_shexp_match(aStr, e2, aCaseInsensitive, aLevel + 1); if (ret != NOMATCH || !aExpr[sx] || aExpr[sx] == ')') { break;
}
}
free(e2); if (sx < 2) {
ret = ABORTED;
} return ret;
}
/* returns 1 if val is in range from start..end, case insensitive. */ staticint _is_char_in_range(unsignedchar aStart, unsignedchar aEnd, unsignedchar aVal) { char map[256];
memset(map, 0, sizeof(map)); while (aStart <= aEnd) {
map[lower(aStart++)] = 1;
} return map[lower(aVal)];
}
template <class T> staticint _shexp_match(const T* aStr, const T* aExpr, bool aCaseInsensitive, unsignedint aLevel) { int x; /* input string index */ int y; /* expression index */ int ret, neg;
if (aLevel > 20) { /* Don't let the stack get too deep. */ return ABORTED;
} for (x = 0, y = 0; aExpr[y]; ++y, ++x) { if (!aStr[x] && aExpr[y] != '$' && aExpr[y] != '*') { return NOMATCH;
} switch (aExpr[y]) { case'$': if (aStr[x]) { return NOMATCH;
}
--x; /* we don't want loop to increment x */ break; case'*': while (aExpr[++y] == '*') {
} if (!aExpr[y]) { return MATCH;
} while (aStr[x]) {
ret = ::_shexp_match(&aStr[x++], &aExpr[y], aCaseInsensitive,
aLevel + 1); switch (ret) { case NOMATCH: continue; case ABORTED: return ABORTED; default: return MATCH;
}
} if (aExpr[y] == '$' && aExpr[y + 1] == '\0' && !aStr[x]) { return MATCH;
} else { return NOMATCH;
} case'[': {
T start, end = 0; int i;
++y;
neg = (aExpr[y] == '^' && aExpr[y + 1] != ']'); if (neg) {
++y;
}
i = y;
start = aExpr[i++]; if (start == '\\') {
start = aExpr[i++];
} if (::alphanumeric(start) && aExpr[i++] == '-') {
end = aExpr[i++]; if (end == '\\') {
end = aExpr[i++];
}
} if (::alphanumeric(end) && aExpr[i] == ']') { /* This is a range form: a-b */
T val = aStr[x]; if (end < start) { /* swap them */
T tmp = end;
end = start;
start = tmp;
} if (aCaseInsensitive && ::alpha(val)) {
val = ::_is_char_in_range((unsignedchar)start, (unsignedchar)end,
(unsignedchar)val); if (neg == val) { return NOMATCH;
}
} elseif (neg != (val < start || val > end)) { return NOMATCH;
}
y = i;
} else { /* Not range form */ int matched = 0; for (; aExpr[y] != ']'; ++y) { if (aExpr[y] == '\\') {
++y;
} if (aCaseInsensitive) {
matched |= (::upper(aStr[x]) == ::upper(aExpr[y]));
} else {
matched |= (aStr[x] == aExpr[y]);
}
} if (neg == matched) { return NOMATCH;
}
}
} break; case'(': if (!aExpr[y + 1]) { return ABORTED;
} return ::_handle_union(&aStr[x], &aExpr[y], aCaseInsensitive,
aLevel + 1); case'?': break; case')': case']': case'|': return ABORTED; case'\\':
++y;
[[fallthrough]]; default: if (aCaseInsensitive) { if (::upper(aStr[x]) != ::upper(aExpr[y])) { return NOMATCH;
}
} else { if (aStr[x] != aExpr[y]) { return NOMATCH;
}
} break;
}
} return (aStr[x] ? NOMATCH : MATCH);
}
¤ Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.0.2Bemerkung:
(vorverarbeitet)
¤
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung ist noch experimentell.