Skip to content

Commit

Permalink
Allow Regex engine to be trimmed
Browse files Browse the repository at this point in the history
Move the lazy Regex creation code to a delegate that is only set with the RegexRouteConstraint constructor that takes a string regexPattern. This allows for the Regex engine to be trimmed when the regexPattern constructor is trimmed.

Fix dotnet#46142
  • Loading branch information
eerhardt committed Feb 22, 2023
1 parent f3836ae commit 10e292f
Showing 1 changed file with 15 additions and 10 deletions.
25 changes: 15 additions & 10 deletions src/Http/Routing/src/Constraints/RegexRouteConstraint.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.

using System.Diagnostics;
using System.Diagnostics.CodeAnalysis;
using System.Globalization;
using System.Text.RegularExpressions;
Expand All @@ -15,7 +16,7 @@ namespace Microsoft.AspNetCore.Routing.Constraints;
public class RegexRouteConstraint : IRouteConstraint, IParameterLiteralNodeMatchingPolicy
{
private static readonly TimeSpan RegexMatchTimeout = TimeSpan.FromSeconds(10);
private readonly string _regexPattern;
private readonly Func<Regex>? _regexFactory;
private Regex? _constraint;

/// <summary>
Expand All @@ -27,20 +28,24 @@ public RegexRouteConstraint(Regex regex)
ArgumentNullException.ThrowIfNull(regex);

_constraint = regex;
_regexPattern = regex.ToString();
}

/// <summary>
/// Constructor for a <see cref="RegexRouteConstraint"/> given a <paramref name="regexPattern"/>.
/// </summary>
/// <param name="regexPattern">A string containing the regex pattern.</param>
public RegexRouteConstraint(
[StringSyntax(StringSyntaxAttribute.Regex, RegexOptions.CultureInvariant | RegexOptions.IgnoreCase)]
[StringSyntax(StringSyntaxAttribute.Regex, RegexOptions.CultureInvariant | RegexOptions.Compiled | RegexOptions.IgnoreCase)]
string regexPattern)
{
ArgumentNullException.ThrowIfNull(regexPattern);

_regexPattern = regexPattern;
// Create regex instance lazily to avoid compiling regexes at app startup. Delay creation until Constraint is first evaluated.
// This is not thread safe. No side effect but multiple instances of a regex instance could be created from a burst of requests.
_regexFactory = () => new Regex(
regexPattern,
RegexOptions.CultureInvariant | RegexOptions.Compiled | RegexOptions.IgnoreCase,
RegexMatchTimeout);
}

/// <summary>
Expand All @@ -50,12 +55,12 @@ public Regex Constraint
{
get
{
// Create regex instance lazily to avoid compiling regexes at app startup. Delay creation until constraint is first evaluated.
// This is not thread safe. No side effect but multiple instances of a regex instance could be created from a burst of requests.
_constraint ??= new Regex(
_regexPattern,
RegexOptions.CultureInvariant | RegexOptions.Compiled | RegexOptions.IgnoreCase,
RegexMatchTimeout);
if (_constraint is null)
{
Debug.Assert(_regexFactory is not null);

_constraint = _regexFactory();
}

return _constraint;
}
Expand Down

0 comments on commit 10e292f

Please sign in to comment.