Skip to content
Snippets Groups Projects
Unverified Commit b7317a23 authored by Sergei Zharinov's avatar Sergei Zharinov Committed by GitHub
Browse files

fix(regex): Don't cache stateful regex instances (#18645)

parent 8201641d
No related branches found
No related tags found
No related merge requests found
...@@ -15,6 +15,20 @@ describe('util/regex', () => { ...@@ -15,6 +15,20 @@ describe('util/regex', () => {
expect(() => regEx(`x++`)).toThrow(CONFIG_VALIDATION); expect(() => regEx(`x++`)).toThrow(CONFIG_VALIDATION);
}); });
it('reuses flags from regex', () => {
expect(regEx(/foo/i).flags).toBe('iu');
});
it('caches non-stateful regex', () => {
expect(regEx('foo')).toBe(regEx('foo'));
expect(regEx('foo', 'm')).toBe(regEx('foo', 'm'));
});
it('does not cache stateful regex', () => {
expect(regEx('foo', 'g')).not.toBe(regEx('foo', 'g'));
expect(regEx(/bar/g)).not.toBe(/bar/g);
});
it('Falls back to RegExp', () => { it('Falls back to RegExp', () => {
jest.doMock('re2', () => { jest.doMock('re2', () => {
throw new Error(); throw new Error();
......
...@@ -24,16 +24,25 @@ export function regEx( ...@@ -24,16 +24,25 @@ export function regEx(
flags?: string | undefined, flags?: string | undefined,
useCache = true useCache = true
): RegExp { ): RegExp {
let canBeCached = useCache;
if (canBeCached && flags?.includes('g')) {
canBeCached = false;
}
if (canBeCached && is.regExp(pattern) && pattern.flags.includes('g')) {
canBeCached = false;
}
const key = flags ? `${pattern.toString()}:${flags}` : pattern.toString(); const key = flags ? `${pattern.toString()}:${flags}` : pattern.toString();
if (useCache) { if (canBeCached) {
const cachedResult = cache.get(key); const cachedResult = cache.get(key);
if (cachedResult) { if (cachedResult) {
return cachedResult; return cachedResult;
} }
} }
try { try {
const instance = new RegEx(pattern, flags); const instance = new RegEx(pattern, flags);
if (useCache) { if (canBeCached) {
cache.set(key, instance); cache.set(key, instance);
} }
return instance; return instance;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment