Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
renovate
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
GitHub Mirror
Renovate Bot
renovate
Commits
b7317a23
Unverified
Commit
b7317a23
authored
2 years ago
by
Sergei Zharinov
Committed by
GitHub
2 years ago
Browse files
Options
Downloads
Patches
Plain Diff
fix(regex): Don't cache stateful regex instances (#18645)
parent
8201641d
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
lib/util/regex.spec.ts
+14
-0
14 additions, 0 deletions
lib/util/regex.spec.ts
lib/util/regex.ts
+11
-2
11 additions, 2 deletions
lib/util/regex.ts
with
25 additions
and
2 deletions
lib/util/regex.spec.ts
+
14
−
0
View file @
b7317a23
...
@@ -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
();
...
...
This diff is collapsed.
Click to expand it.
lib/util/regex.ts
+
11
−
2
View file @
b7317a23
...
@@ -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
(
us
eCache
)
{
if
(
canB
eCache
d
)
{
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
(
us
eCache
)
{
if
(
canB
eCache
d
)
{
cache
.
set
(
key
,
instance
);
cache
.
set
(
key
,
instance
);
}
}
return
instance
;
return
instance
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment