forked from aspnet/HttpAbstractions
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move RequestIdentifierFeature to HttpContext to allow lighter caching
Expose TraceIdentifier on Httpcontext Also resolves aspnet#412 Add tests
- Loading branch information
Showing
8 changed files
with
161 additions
and
2 deletions.
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
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
64 changes: 64 additions & 0 deletions
64
src/Microsoft.AspNet.Http/DefaultHttpRequestIdentifierFeature.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,64 @@ | ||
// 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. | ||
|
||
using System; | ||
using System.Threading; | ||
|
||
namespace Microsoft.AspNet.Http.Features.Internal | ||
{ | ||
public class DefaultHttpRequestIdentifierFeature : HttpRequestIdentifierFeature, IHttpRequestIdentifierFeature | ||
{ | ||
// Base64 encoding - but in ascii sort order for easy text based sorting | ||
private static readonly string _encode32Chars = "0123456789ABCDEFGHIJKLMNOPQRSTUV"; | ||
// Seed the _requestId for this application instance with | ||
// the number of 100-nanosecond intervals that have elapsed since 12:00:00 midnight, January 1, 0001 | ||
// for a roughly increasing _requestId over restarts | ||
private static long _requestId = DateTime.UtcNow.Ticks; | ||
|
||
private string _id = null; | ||
|
||
public override string TraceIdentifier | ||
{ | ||
get | ||
{ | ||
// Don't incur the cost of generating the request ID until it's asked for | ||
if (_id == null) | ||
{ | ||
_id = GenerateRequestId(Interlocked.Increment(ref _requestId)); | ||
} | ||
return _id; | ||
} | ||
set | ||
{ | ||
_id = value; | ||
} | ||
} | ||
|
||
private static unsafe string GenerateRequestId(long id) | ||
{ | ||
// The following routine is ~310% faster than calling long.ToString() on x64 | ||
// and ~600% faster than calling long.ToString() on x86 in tight loops of 1 million+ iterations | ||
// See: https://github.com/aspnet/Hosting/pull/385 | ||
|
||
// stackalloc to allocate array on stack rather than heap | ||
char* charBuffer = stackalloc char[13]; | ||
|
||
charBuffer[0] = _encode32Chars[(int)(id >> 60) & 31]; | ||
charBuffer[1] = _encode32Chars[(int)(id >> 55) & 31]; | ||
charBuffer[2] = _encode32Chars[(int)(id >> 50) & 31]; | ||
charBuffer[3] = _encode32Chars[(int)(id >> 45) & 31]; | ||
charBuffer[4] = _encode32Chars[(int)(id >> 40) & 31]; | ||
charBuffer[5] = _encode32Chars[(int)(id >> 35) & 31]; | ||
charBuffer[6] = _encode32Chars[(int)(id >> 30) & 31]; | ||
charBuffer[7] = _encode32Chars[(int)(id >> 25) & 31]; | ||
charBuffer[8] = _encode32Chars[(int)(id >> 20) & 31]; | ||
charBuffer[9] = _encode32Chars[(int)(id >> 15) & 31]; | ||
charBuffer[10] = _encode32Chars[(int)(id >> 10) & 31]; | ||
charBuffer[11] = _encode32Chars[(int)(id >> 5) & 31]; | ||
charBuffer[12] = _encode32Chars[(int)id & 31]; | ||
|
||
// string ctor overload that takes char* | ||
return new string(charBuffer, 0, 13); | ||
} | ||
} | ||
} |
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
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
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
44 changes: 44 additions & 0 deletions
44
test/Microsoft.AspNet.Http.Tests/DeafultHttpRequestIdentifierFeatureTests.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,44 @@ | ||
// 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. | ||
|
||
using Microsoft.AspNet.Http.Features.Internal; | ||
using Xunit; | ||
|
||
namespace Microsoft.AspNet.Http.Tests | ||
{ | ||
public class DeafultHttpRequestIdentifierFeatureTests | ||
{ | ||
[Fact] | ||
public void TraceIdentifier_ReturnsId() | ||
{ | ||
var feature = new DefaultHttpRequestIdentifierFeature(); | ||
|
||
var id = feature.TraceIdentifier; | ||
|
||
Assert.NotNull(id); | ||
} | ||
|
||
[Fact] | ||
public void TraceIdentifier_ReturnsStableId() | ||
{ | ||
var feature = new DefaultHttpRequestIdentifierFeature(); | ||
|
||
var id1 = feature.TraceIdentifier; | ||
var id2 = feature.TraceIdentifier; | ||
|
||
Assert.Equal(id1, id2); | ||
} | ||
|
||
[Fact] | ||
public void TraceIdentifier_ReturnsUniqueIdForDifferentInstances() | ||
{ | ||
var feature1 = new DefaultHttpRequestIdentifierFeature(); | ||
var feature2 = new DefaultHttpRequestIdentifierFeature(); | ||
|
||
var id1 = feature1.TraceIdentifier; | ||
var id2 = feature2.TraceIdentifier; | ||
|
||
Assert.NotEqual(id1, id2); | ||
} | ||
} | ||
} |
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