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
SerializationPartialsGenerator.cs
Go to the documentation of this file.
1//-----------------------------------------------------------------------
2// <copyright file="SerializationPartialsGenerator.cs" company="Marimer LLC">
3// Copyright (c) Marimer LLC. All rights reserved.
4// Website: https://cslanet.com
5// </copyright>
6// <summary>Source Generator for generating partial types to implement IMobileObject on AutoSerializable types</summary>
7//-----------------------------------------------------------------------
9using Microsoft.CodeAnalysis;
10using Microsoft.CodeAnalysis.CSharp.Syntax;
11using System;
12using System.Collections.Generic;
13using System.Diagnostics;
14using System.Linq;
15
17{
18
23 [Generator]
24 public class SerializationPartialsGenerator : ISourceGenerator
25 {
26
31 public void Initialize(GeneratorInitializationContext context)
32 {
33#if (DEBUG)
35 //if (!Debugger.IsAttached)
36 //{
37 // Debugger.Launch();
38 //}
39
40#endif
41 context.RegisterForSyntaxNotifications(() => new AutoSerializableReceiver());
42 }
43
48 public void Execute(GeneratorExecutionContext context)
49 {
50 SerializationPartialGenerator generator;
51
52 try
53 {
54 if (context.SyntaxContextReceiver is AutoSerializableReceiver receiver)
55 {
56 // Generate a partial type to extend each of the types identified
57 foreach (ExtractedTypeDefinition typeDefinition in receiver.Targets)
58 {
59 generator = new SerializationPartialGenerator();
60 generator.GeneratePartialType(context, typeDefinition);
61 }
62 }
63 }
64 catch (Exception ex)
65 {
66 context.ReportDiagnostic(ex.ToUsageDiagnostic());
67 }
68 }
69
70 }
71
72}
Determine the types for which we must perform source generation
The definition of a type, extracted from the syntax tree provided by Roslyn
Source Generator for generating partial classes to complete decorated types that must offer automated...
void Initialize(GeneratorInitializationContext context)
Initialise the generator prior to performing any work
void Execute(GeneratorExecutionContext context)
Called by Roslyn to request that the generator perform any required work