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
PropertyDefinitionsExtractor.cs
Go to the documentation of this file.
1//-----------------------------------------------------------------------
2// <copyright file="PropertyDefinitionsExtractor.cs" company="Marimer LLC">
3// Copyright (c) Marimer LLC. All rights reserved.
4// Website: https://cslanet.com
5// </copyright>
6// <summary>Extract the definitions of all properties of a type for source generation</summary>
7//-----------------------------------------------------------------------
9using Microsoft.CodeAnalysis;
10using Microsoft.CodeAnalysis.CSharp.Syntax;
11using System;
12using System.Collections.Generic;
13using System.Linq;
14using System.Text;
15
17{
18
25 internal static class PropertyDefinitionsExtractor
26 {
27
34 public static IReadOnlyList<ExtractedPropertyDefinition> ExtractPropertyDefinitions(DefinitionExtractionContext extractionContext, TypeDeclarationSyntax targetTypeDeclaration)
35 {
36 List<ExtractedPropertyDefinition> propertyDefinitions = new List<ExtractedPropertyDefinition>();
37 ExtractedPropertyDefinition propertyDefinition;
38 IReadOnlyList<PropertyDeclarationSyntax> serializableProperties;
39
40 serializableProperties = GetSerializablePropertyDeclarations(extractionContext, targetTypeDeclaration);
41 foreach (PropertyDeclarationSyntax propertyDeclaration in serializableProperties)
42 {
43 propertyDefinition = PropertyDefinitionExtractor.ExtractPropertyDefinition(extractionContext, propertyDeclaration);
44 propertyDefinitions.Add(propertyDefinition);
45 }
46
47 return propertyDefinitions;
48 }
49
50 #region Private Helper Methods
51
58 private static IReadOnlyList<PropertyDeclarationSyntax> GetSerializablePropertyDeclarations(DefinitionExtractionContext extractionContext, TypeDeclarationSyntax targetTypeDeclaration)
59 {
60 List<PropertyDeclarationSyntax> serializableProperties;
61 List<PropertyDeclarationSyntax> optedInSerializableProperties;
62
63 // Get public or internal properties that are not specifically opted out with the [AutoNonSerialized] attribute
64 serializableProperties = GetPublicNonExcludedProperties(extractionContext, targetTypeDeclaration);
65
66 // Add any private or protected properties that are opted in with the use of the [AutoSerialized] attribute
67 optedInSerializableProperties = GetNonPublicIncludedProperties(extractionContext, targetTypeDeclaration);
68 serializableProperties.AddRange(optedInSerializableProperties);
69
70 return serializableProperties;
71 }
72
79 private static List<PropertyDeclarationSyntax> GetPublicNonExcludedProperties(DefinitionExtractionContext extractionContext, TypeDeclarationSyntax targetTypeDeclaration)
80 {
81 List<PropertyDeclarationSyntax> serializableProperties;
82
83 // Get public or internal properties that are not specifically opted out with the [AutoNonSerialized] attribute
84 serializableProperties = targetTypeDeclaration.Members.Where(
85 m => m is PropertyDeclarationSyntax propertyDeclaration &&
86 HasOneOfScopes(extractionContext, propertyDeclaration, "public") &&
87 HasGetterAndSetter(extractionContext, propertyDeclaration) &&
88 !extractionContext.IsPropertyDecoratedWithAutoNonSerialized(propertyDeclaration))
89 .Cast<PropertyDeclarationSyntax>()
90 .ToList();
91
92 return serializableProperties;
93 }
94
101 private static List<PropertyDeclarationSyntax> GetNonPublicIncludedProperties(DefinitionExtractionContext extractionContext, TypeDeclarationSyntax targetTypeDeclaration)
102 {
103 List<PropertyDeclarationSyntax> serializableProperties;
104
105 // Get private or protected properties that are specifically opted in with the [AutoSerialized] attribute
106 serializableProperties = targetTypeDeclaration.Members.Where(
107 m => m is PropertyDeclarationSyntax propertyDeclaration &&
108 !HasOneOfScopes(extractionContext, propertyDeclaration, "public") &&
109 HasGetterAndSetter(extractionContext, propertyDeclaration) &&
110 extractionContext.IsPropertyDecoratedWithAutoSerialized(propertyDeclaration))
111 .Cast<PropertyDeclarationSyntax>()
112 .ToList();
113
114 return serializableProperties;
115 }
116
124 private static bool HasOneOfScopes(DefinitionExtractionContext context, PropertyDeclarationSyntax propertyDeclaration, params string[] scopes)
125 {
126 foreach (string scope in scopes)
127 {
128 if (propertyDeclaration.Modifiers.Any(m => m.ValueText.Equals(scope, StringComparison.InvariantCultureIgnoreCase)))
129 {
130 return true;
131 }
132 }
133
134 return false;
135 }
136
143 private static bool HasGetterAndSetter(DefinitionExtractionContext context, PropertyDeclarationSyntax propertyDeclaration)
144 {
145 bool hasGetter = false;
146 bool hasSetter = false;
147
148 if (propertyDeclaration.AccessorList is null) return false;
149
150 foreach (AccessorDeclarationSyntax accessorDeclaration in propertyDeclaration.AccessorList.Accessors)
151 {
152 if (accessorDeclaration.Kind() == Microsoft.CodeAnalysis.CSharp.SyntaxKind.GetAccessorDeclaration)
153 {
154 hasGetter = true;
155 }
156 if (accessorDeclaration.Kind() == Microsoft.CodeAnalysis.CSharp.SyntaxKind.SetAccessorDeclaration)
157 {
158 hasSetter = true;
159 }
160 }
161
162 return hasGetter && hasSetter;
163 }
164
165 #endregion
166
167 }
168}