CSLA.NET 6.0.0
CSLA .NET is a software development framework that helps you build a reusable, maintainable object-oriented business layer for your app.
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Events Macros Pages
AutoSerializableSyntaxReceiver.cs
Go to the documentation of this file.
1//-----------------------------------------------------------------------
2// <copyright file="AutoSerializableSyntaxReceiver.cs" company="Marimer LLC">
3// Copyright (c) Marimer LLC. All rights reserved.
4// Website: https://cslanet.com
5// </copyright>
6// <summary>Determine the types for which we must perform source generation</summary>
7//-----------------------------------------------------------------------
8using Microsoft.CodeAnalysis;
9using Microsoft.CodeAnalysis.CSharp.Syntax;
10using System;
11using System.Collections.Generic;
12using System.Linq;
13
15{
16
20 public class AutoSerializableReceiver : ISyntaxContextReceiver
21 {
22 public IList<ExtractedTypeDefinition> Targets = new List<ExtractedTypeDefinition>();
23
28 public void OnVisitSyntaxNode(GeneratorSyntaxContext generatorSyntaxContext)
29 {
30 SyntaxNode syntaxNode;
31 SemanticModel model;
32 DefinitionExtractionContext context;
33 ExtractedTypeDefinition typeDefinition;
34
35 syntaxNode = generatorSyntaxContext.Node;
36 model = generatorSyntaxContext.SemanticModel;
37
38 if (syntaxNode is not TypeDeclarationSyntax typeDeclarationSyntax) return;
39 context = new DefinitionExtractionContext(generatorSyntaxContext);
40
41 if (context.IsTypeAutoSerializable(typeDeclarationSyntax))
42 {
43 typeDefinition = TypeDefinitionExtractor.ExtractTypeDefinition(context, typeDeclarationSyntax);
44 Targets.Add(typeDefinition);
45 }
46 }
47
48 }
49}
Determine the types for which we must perform source generation
void OnVisitSyntaxNode(GeneratorSyntaxContext generatorSyntaxContext)
Test syntax nodes to see if they represent a type for which we must generate code
The definition of a type, extracted from the syntax tree provided by Roslyn