-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathSourceGenerator.cs
122 lines (111 loc) · 4.97 KB
/
SourceGenerator.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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
using Microsoft.CodeAnalysis;
using Microsoft.CodeAnalysis.CSharp;
using Microsoft.CodeAnalysis.CSharp.Syntax;
using Microsoft.CodeAnalysis.Text;
using System;
using System.Collections.Generic;
using System.Collections.Immutable;
using System.Linq;
using System.Text;
namespace StrongInject.Generator
{
[Generator]
internal class SourceGenerator : ISourceGenerator
{
public void Execute(GeneratorExecutionContext context)
{
var cancellationToken = context.CancellationToken;
var compilation = context.Compilation;
Action<Diagnostic> reportDiagnostic = context.ReportDiagnostic;
if (!WellKnownTypes.TryCreate(compilation, reportDiagnostic, out var wellKnownTypes))
{
return;
}
foreach (var syntaxTree in context.Compilation.SyntaxTrees)
{
cancellationToken.ThrowIfCancellationRequested();
var semanticModel = context.Compilation.GetSemanticModel(syntaxTree);
var modules = syntaxTree.GetRoot(cancellationToken).DescendantNodesAndSelf()
.OfType<ClassDeclarationSyntax>()
.Select(x => semanticModel.GetDeclaredSymbol(x, cancellationToken))
.Where(x => x != null)
.Select(x =>
{
var isContainer = x!.AllInterfaces.Any(x => WellKnownTypes.IsContainerOrAsyncContainer(x));
return (type: x, isContainer);
})
.Where(x =>
x.isContainer
|| x.type.GetAttributes().Any(x => WellKnownTypes.IsClassAttribute(x.AttributeClass))
|| x.type.GetMembers().Any(x =>
{
if (x is IFieldSymbol or IPropertySymbol && x.GetAttributes().Any(x => WellKnownTypes.IsInstanceAttribute(x.AttributeClass)))
{
return true;
}
return x is IMethodSymbol && x.GetAttributes().Any(x => WellKnownTypes.IsMethodAttribute(x.AttributeClass));
}));
foreach (var module in modules)
{
if (!module.type.IsInternal() && !module.type.IsPublic())
{
reportDiagnostic(ModuleNotPublicOrInternal(
module.type,
((TypeDeclarationSyntax)module.type.DeclaringSyntaxReferences[0].GetSyntax()).Identifier
.GetLocation()));
}
var registrationCalculator = new RegistrationCalculator(compilation, wellKnownTypes, cancellationToken);
cancellationToken.ThrowIfCancellationRequested();
if (module.isContainer)
{
var file = ContainerGenerator.GenerateContainerImplementations(
module.type,
registrationCalculator.GetContainerRegistrations(module.type, reportDiagnostic),
wellKnownTypes,
reportDiagnostic,
cancellationToken);
context.AddSource(
GenerateNameHint(module.type),
file);
}
else
{
registrationCalculator.ValidateModuleRegistrations(module.type, reportDiagnostic);
}
}
}
}
private string GenerateNameHint(INamedTypeSymbol container)
{
var stringBuilder = new StringBuilder(container.ContainingNamespace.FullName());
foreach (var type in container.GetContainingTypesAndThis().Reverse())
{
stringBuilder.Append(".");
stringBuilder.Append(type.Name);
if (type.TypeParameters.Length > 0)
{
stringBuilder.Append("_");
stringBuilder.Append(type.TypeParameters.Length);
}
}
stringBuilder.Append(".g.cs");
return stringBuilder.ToString();
}
private static Diagnostic ModuleNotPublicOrInternal(ITypeSymbol module, Location location)
{
return Diagnostic.Create(
new DiagnosticDescriptor(
"SI0401",
"Module must be public or internal.",
"Module '{0}' must be public or internal.",
"StrongInject",
DiagnosticSeverity.Error,
isEnabledByDefault: true),
location,
module.ToDisplayString());
}
void ISourceGenerator.Initialize(GeneratorInitializationContext context)
{
}
}
}