forked from serilog/serilog-extensions-logging
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathEventIdPropertyCache.cs
97 lines (79 loc) · 2.69 KB
/
EventIdPropertyCache.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
// Copyright (c) Serilog Contributors
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
namespace Serilog.Extensions.Logging;
using System.Collections.Concurrent;
using Microsoft.Extensions.Logging;
using Events;
sealed class EventIdPropertyCache
{
readonly int _maxCachedProperties;
readonly ConcurrentDictionary<EventKey, LogEventPropertyValue> _propertyCache = new();
int _count;
public EventIdPropertyCache(int maxCachedProperties = 1024)
{
_maxCachedProperties = maxCachedProperties;
}
public LogEventPropertyValue GetOrCreatePropertyValue(in EventId eventId)
{
var eventKey = new EventKey(eventId);
LogEventPropertyValue? propertyValue;
if (_count >= _maxCachedProperties)
{
if (!_propertyCache.TryGetValue(eventKey, out propertyValue))
{
propertyValue = CreatePropertyValue(in eventKey);
}
}
else
{
if (!_propertyCache.TryGetValue(eventKey, out propertyValue))
{
// GetOrAdd is moved to a separate method to prevent closure allocation
propertyValue = GetOrAddCore(in eventKey);
}
}
return propertyValue;
}
static LogEventPropertyValue CreatePropertyValue(in EventKey eventKey)
{
var properties = new List<LogEventProperty>(2);
if (eventKey.Id != 0)
{
properties.Add(new LogEventProperty("Id", new ScalarValue(eventKey.Id)));
}
if (eventKey.Name != null)
{
properties.Add(new LogEventProperty("Name", new ScalarValue(eventKey.Name)));
}
return new StructureValue(properties);
}
LogEventPropertyValue GetOrAddCore(in EventKey eventKey) =>
_propertyCache.GetOrAdd(
eventKey,
key =>
{
Interlocked.Increment(ref _count);
return CreatePropertyValue(in key);
});
readonly record struct EventKey
{
public EventKey(EventId eventId)
{
Id = eventId.Id;
Name = eventId.Name;
}
public int Id { get; }
public string? Name { get; }
}
}