/* * Copyright The OpenTelemetry Authors * SPDX-License-Identifier: Apache-2.0 */ // https://tc39.es/proposal-regex-escaping // escape ^ $ \ . + ? ( ) [ ] { } | // do not need to escape * as we interpret it as wildcard const ESCAPE = /[\^$\\.+?()[\]{}|]/g; /** * Wildcard pattern predicate, supports patterns like `*`, `foo*`, `*bar`. */ export class PatternPredicate { _matchAll; _regexp; constructor(pattern) { if (pattern === '*') { this._matchAll = true; this._regexp = /.*/; } else { this._matchAll = false; this._regexp = new RegExp(PatternPredicate.escapePattern(pattern)); } } match(str) { if (this._matchAll) { return true; } return this._regexp.test(str); } static escapePattern(pattern) { return `^${pattern.replace(ESCAPE, '\\$&').replace('*', '.*')}$`; } static hasWildcard(pattern) { return pattern.includes('*'); } } export class ExactPredicate { _matchAll; _pattern; constructor(pattern) { this._matchAll = pattern === undefined; this._pattern = pattern; } match(str) { if (this._matchAll) { return true; } if (str === this._pattern) { return true; } return false; } } //# sourceMappingURL=Predicate.js.map