-
Notifications
You must be signed in to change notification settings - Fork 792
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
Added Span support to Webencoders #334
Closed
Closed
Changes from all commits
Commits
Show all changes
24 commits
Select commit
Hold shift + click to select a range
6f416e3
WebEncodersBenchmarks added
gfoidl 1f7e3ff
A local Buffer<T> added
gfoidl a03d38d
Decode implemented with Spans
gfoidl 26450cd
Encode implemented with Spans
gfoidl f32f46c
Little cleanup
gfoidl 194b4ab
Added API
gfoidl ca91b68
EncodingHelper introduced
gfoidl acd987c
Optimized EncodingHelper
gfoidl 72a362e
Implementation done for netcoreapp2.1
gfoidl 143a76c
Added buffer-chain
gfoidl 09144d7
Finished multi-targeting
gfoidl 3681f18
Added xml-comments
gfoidl d309378
Optimized Buffer<T>
gfoidl 007aa1a
Perf improvement
gfoidl 6577241
Removed Buffer<T>
gfoidl 4849dbc
Manual inlining due 'inline exceeds budget'
gfoidl bdc27dd
Moved private method below public ones, and ordered the public methods
gfoidl 3e7f230
Fixed bugs for netcoreapp2.0
gfoidl 6c2ea6b
Final polishing
gfoidl 7d25346
Renamed EncodingHelper to UrlEncoder
gfoidl 39109e1
Fixed one xml comment
gfoidl 3b56276
PR-feedback
gfoidl 46a5941
Made `SubstituteUrlCharsForEncoding` endianess-aware
gfoidl 2e870a5
Updated GetOperationNotDoneException
gfoidl File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
29 changes: 29 additions & 0 deletions
29
.../Microsoft.Extensions.Internal.Benchmarks/Microsoft.Extensions.Internal.Benchmarks.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFramework>netcoreapp2.1</TargetFramework> | ||
<OutputType>Exe</OutputType> | ||
<ServerGarbageCollection>true</ServerGarbageCollection> | ||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks> | ||
<IsPackable>false</IsPackable> | ||
<LangVersion>latest</LangVersion> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<Compile Include="..\..\shared\Microsoft.AspNetCore.BenchmarkRunner.Sources\**\*.cs"> | ||
<Link>Shared\%(FileName)%(Extension)</Link> | ||
</Compile> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="BenchmarkDotNet" Version="$(BenchmarkDotNetPackageVersion)" /> | ||
<PackageReference Include="System.Runtime.CompilerServices.Unsafe" Version="$(SystemRuntimeCompilerServicesUnsafePackageVersion)" /> | ||
<PackageReference Include="Newtonsoft.Json" Version="$(NewtonsoftJsonPackageVersion)" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<Compile Include="..\..\shared\Microsoft.Extensions.WebEncoders.Sources\**\*.cs" /> | ||
<EmbeddedResource Include="..\..\shared\*.Sources\**\*.resx" /> | ||
</ItemGroup> | ||
|
||
</Project> |
4 changes: 4 additions & 0 deletions
4
benchmarks/Microsoft.Extensions.Internal.Benchmarks/Properties/AssemblyInfo.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
// Copyright (c) .NET Foundation. All rights reserved. | ||
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. | ||
|
||
[assembly: BenchmarkDotNet.Attributes.AspNetCoreBenchmark] |
80 changes: 80 additions & 0 deletions
80
benchmarks/Microsoft.Extensions.Internal.Benchmarks/WebEncodersBenchmarks.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
using System; | ||
using System.Linq; | ||
using BenchmarkDotNet.Attributes; | ||
using BenchmarkDotNet.Running; | ||
|
||
namespace Microsoft.Extensions.Internal.Benchmarks | ||
{ | ||
public class WebEncodersBenchmarks | ||
{ | ||
private const int ByteArraySize = 500; | ||
private readonly byte[] _data; | ||
private readonly string _dataEncoded; | ||
private readonly byte[] _dataWithOffset; | ||
private readonly string _dataWithOffsetEncoded; | ||
private readonly byte[] _guid; | ||
private readonly string _guidEncoded; | ||
|
||
public WebEncodersBenchmarks() | ||
{ | ||
var random = new Random(); | ||
_data = new byte[ByteArraySize]; | ||
random.NextBytes(_data); | ||
_dataEncoded = WebEncoders.Base64UrlEncode(_data); | ||
|
||
_dataWithOffset = new byte[3].Concat(_data).Concat(new byte[2]).ToArray(); | ||
_dataWithOffsetEncoded = "xx" + _dataEncoded + "yyy"; | ||
|
||
_guid = Guid.NewGuid().ToByteArray(); | ||
_guidEncoded = WebEncoders.Base64UrlEncode(_guid); | ||
} | ||
|
||
[Benchmark] | ||
public byte[] Base64UrlDecode_Data() | ||
{ | ||
return WebEncoders.Base64UrlDecode(_dataEncoded); | ||
} | ||
|
||
[Benchmark] | ||
public byte[] Base64UrlDecode_DataWithOffset() | ||
{ | ||
return WebEncoders.Base64UrlDecode(_dataWithOffsetEncoded, 2, _dataEncoded.Length); | ||
} | ||
|
||
[Benchmark] | ||
public byte[] Base64UrlDecode_Guid() | ||
{ | ||
return WebEncoders.Base64UrlDecode(_guidEncoded); | ||
} | ||
|
||
[Benchmark] | ||
public string Base64UrlEncode_Data() | ||
{ | ||
return WebEncoders.Base64UrlEncode(_data); | ||
} | ||
|
||
[Benchmark] | ||
public string Base64UrlEncode_DataWithOffset() | ||
{ | ||
return WebEncoders.Base64UrlEncode(_dataWithOffset, 3, _data.Length); | ||
} | ||
|
||
[Benchmark] | ||
public string Base64UrlEncode_Guid() | ||
{ | ||
return WebEncoders.Base64UrlEncode(_guid); | ||
} | ||
|
||
[Benchmark] | ||
public int GetArraySizeRequiredToDecode() | ||
{ | ||
return WebEncoders.GetArraySizeRequiredToDecode(ByteArraySize); | ||
} | ||
|
||
[Benchmark] | ||
public int GetArraySizeRequiredToEncode() | ||
{ | ||
return WebEncoders.GetArraySizeRequiredToEncode(ByteArraySize); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This class has a nice TODO
Shall I fix this -- or in a different PR?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do a different PR if it will be a noisy change.