|
5 | 5 | using JetBrains.ReSharper.Psi;
|
6 | 6 | using JetBrains.ReSharper.Psi.CodeAnnotations;
|
7 | 7 |
|
8 |
| -namespace ReSharper.Structured.Logging.Caching |
| 8 | +namespace ReSharper.Structured.Logging.Caching; |
| 9 | + |
| 10 | +[CodeAnnotationProvider] |
| 11 | +public class TemplateParameterNameAttributeProvider( |
| 12 | + AttributeInstancesProvider attributeInstancesProvider, |
| 13 | + CodeAnnotationsConfiguration codeAnnotationsConfiguration) |
| 14 | + : CodeAnnotationInfoProvider<ITypeMember, string>(attributeInstancesProvider, codeAnnotationsConfiguration, true) |
9 | 15 | {
|
10 |
| - [CodeAnnotationProvider] |
11 |
| - public class TemplateParameterNameAttributeProvider : CodeAnnotationInfoProvider<ITypeMember, string> |
| 16 | + private const string MessageTemplateFormatMethodAttribute = "MessageTemplateFormatMethodAttribute"; |
| 17 | + |
| 18 | + protected override string CalculateInfo(ITypeMember attributesOwner, IEnumerable<IAttributeInstance> attributeInstances) |
12 | 19 | {
|
13 |
| - private const string MessageTemplateFormatMethodAttribute = "MessageTemplateFormatMethodAttribute"; |
| 20 | + var templateFormatAttribute = attributeInstances |
| 21 | + .FirstOrDefault(a => string.Equals(a.GetAttributeShortName(), MessageTemplateFormatMethodAttribute, StringComparison.Ordinal)); |
14 | 22 |
|
15 |
| - public TemplateParameterNameAttributeProvider( |
16 |
| - AttributeInstancesProvider attributeInstancesProvider, |
17 |
| - CodeAnnotationsConfiguration codeAnnotationsConfiguration) |
18 |
| - : base(attributeInstancesProvider, codeAnnotationsConfiguration, true) |
| 23 | + if (templateFormatAttribute != null) |
19 | 24 | {
|
| 25 | + return templateFormatAttribute.PositionParameters() |
| 26 | + .FirstOrDefault() |
| 27 | + ?.ConstantValue.StringValue; |
20 | 28 | }
|
21 | 29 |
|
22 |
| - protected override string CalculateInfo(ITypeMember attributesOwner, IEnumerable<IAttributeInstance> attributeInstances) |
| 30 | + var className = attributesOwner.ContainingType?.GetClrName().FullName; |
| 31 | + if (className == "Microsoft.Extensions.Logging.LoggerExtensions") |
23 | 32 | {
|
24 |
| - var templateFormatAttribute = attributeInstances |
25 |
| - .FirstOrDefault(a => string.Equals(a.GetAttributeShortName(), MessageTemplateFormatMethodAttribute, StringComparison.Ordinal)); |
26 |
| - |
27 |
| - if (templateFormatAttribute != null) |
28 |
| - { |
29 |
| - return templateFormatAttribute.PositionParameters() |
30 |
| - .FirstOrDefault() |
31 |
| - ?.ConstantValue.StringValue; |
32 |
| - } |
33 |
| - |
34 |
| - var className = attributesOwner.ContainingType?.GetClrName().FullName; |
35 |
| - if (className == "Microsoft.Extensions.Logging.LoggerExtensions") |
36 |
| - { |
37 |
| - return attributesOwner.ShortName == "BeginScope" ? "messageFormat" : "message"; |
38 |
| - } |
39 |
| - |
40 |
| - if (className == "ZLogger.ZLoggerExtensions") |
41 |
| - { |
42 |
| - return "format"; |
43 |
| - } |
44 |
| - |
45 |
| - return null; |
| 33 | + return attributesOwner.ShortName == "BeginScope" ? "messageFormat" : "message"; |
46 | 34 | }
|
47 | 35 |
|
48 |
| - protected override string GetDefaultInfo(ITypeMember attributesOwner) |
| 36 | + if (className == "ZLogger.ZLoggerExtensions") |
49 | 37 | {
|
50 |
| - return null; |
| 38 | + return "format"; |
51 | 39 | }
|
52 | 40 |
|
53 |
| - public override string[] AttributeShortNames { get; } = { MessageTemplateFormatMethodAttribute }; |
| 41 | + return null; |
| 42 | + } |
| 43 | + |
| 44 | + protected override string GetDefaultInfo(ITypeMember attributesOwner) |
| 45 | + { |
| 46 | + return null; |
54 | 47 | }
|
55 | 48 | }
|
0 commit comments