Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

TryAddWithoutValidation for multiple values could be more efficient #102845

Merged
merged 5 commits into from
Jun 10, 2024
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -169,27 +169,57 @@ internal bool TryAddWithoutValidation(HeaderDescriptor descriptor, IEnumerable<s
{
ArgumentNullException.ThrowIfNull(values);

using IEnumerator<string?> enumerator = values.GetEnumerator();
if (enumerator.MoveNext())
if (values is IList<string?> valuesList && valuesList.Count > 0)
{
TryAddWithoutValidation(descriptor, enumerator.Current);
if (enumerator.MoveNext())
int count = valuesList.Count;
MihaZupan marked this conversation as resolved.
Show resolved Hide resolved

// reads the store of header values
// The header store contain a single raw string value when header values are single.
// The header store contain HeaderStoreItemInfo that wraps around a List<string> with header values when they are more than once

MihaZupan marked this conversation as resolved.
Show resolved Hide resolved
ref object? storeValueRef = ref GetValueRefOrAddDefault(descriptor);
object? storeValue = storeValueRef;

// check whether the header store contains already a value
// or header values count is more than one
// => allocate a HeaderStoreItemInfo on store that wraps around a List<string> of header values
MihaZupan marked this conversation as resolved.
Show resolved Hide resolved
if (storeValue is not null || count > 1)
{
ref object? storeValueRef = ref GetValueRefOrAddDefault(descriptor);
Debug.Assert(storeValueRef is not null);
if (storeValue is not HeaderStoreItemInfo info)
{
storeValueRef = info = new HeaderStoreItemInfo { RawValue = storeValue };
}

object value = storeValueRef;
if (value is not HeaderStoreItemInfo info)
object? rawValue = info.RawValue;
if (rawValue is not List<string> rawValues)
{
Debug.Assert(value is string);
storeValueRef = info = new HeaderStoreItemInfo { RawValue = value };
info.RawValue = rawValues = new List<string>();

if (rawValue != null)
{
rawValues.EnsureCapacity(count + 1);
rawValues.Add((string)rawValue);
}
}

do
rawValues.EnsureCapacity(count);
MihaZupan marked this conversation as resolved.
Show resolved Hide resolved

for (int i = 0; i < count; i++)
{
AddRawValue(info, enumerator.Current ?? string.Empty);
rawValues.Add(valuesList[i] ?? string.Empty);
}
while (enumerator.MoveNext());
}
else
{
// when header values are single the store contains just the header value
MihaZupan marked this conversation as resolved.
Show resolved Hide resolved
storeValueRef = valuesList[0];
MihaZupan marked this conversation as resolved.
Show resolved Hide resolved
}
}
else
{
foreach (string? value in values)
{
TryAddWithoutValidation(descriptor, value ?? string.Empty);
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2544,6 +2544,66 @@ public void TryGetValues_InvalidValuesContainingNewLines_ShouldNotRemoveInvalidV
Assert.Equal(value, values.Single());
}

[Fact]
public void TryAddWithoutValidation_OneValidValueHeader_UseSpecialListImplementation()
{
const string Name = "customHeader1";
const string Value = "Value1";

var response = new HttpResponseMessage();
Assert.True(response.Headers.TryAddWithoutValidation(Name, new List<string> { Value }));

Assert.True(response.Headers.Contains(Name));

Assert.True(response.Headers.TryGetValues(Name, out IEnumerable<string> values));
Assert.Equal(Value, values.Single());
}

[Fact]
public void TryAddWithoutValidation_ThreeValidValueHeader_UseSpecialListImplementation()
{
const string Name = "customHeader1";
List<string> expectedValues = [ "Value1", "Value2", "Value3" ];

var response = new HttpResponseMessage();
Assert.True(response.Headers.TryAddWithoutValidation(Name, expectedValues));

Assert.True(response.Headers.Contains(Name));

Assert.True(response.Headers.TryGetValues(Name, out IEnumerable<string> values));
Assert.True(expectedValues.SequenceEqual(values));
}

[Fact]
public void TryAddWithoutValidation_OneValidValueHeader_UseGenericImplementation()
{
const string Name = "customHeader1";
const string Value = "Value1";

var response = new HttpResponseMessage();
Assert.True(response.Headers.TryAddWithoutValidation(Name, new HashSet<string> { Value }));

Assert.True(response.Headers.Contains(Name));

Assert.True(response.Headers.TryGetValues(Name, out IEnumerable<string> values));
Assert.Equal(Value, values.Single());
}

[Fact]
public void TryAddWithoutValidation_ThreeValidValueHeader_UseGenericImplementation()
{
const string Name = "customHeader1";
List<string> expectedValues = ["Value1", "Value2", "Value3"];

var response = new HttpResponseMessage();
Assert.True(response.Headers.TryAddWithoutValidation(Name, new HashSet<string>(expectedValues)));

Assert.True(response.Headers.Contains(Name));

Assert.True(response.Headers.TryGetValues(Name, out IEnumerable<string> values));
Assert.True(expectedValues.SequenceEqual(values));
}

public static IEnumerable<object[]> NumberOfHeadersUpToArrayThreshold_AddNonValidated_EnumerateNonValidated()
{
for (int i = 0; i <= HttpHeaders.ArrayThreshold; i++)
Expand Down
Loading