/************************************************************************* * ModernUO * * Copyright (C) 2019-2021 - ModernUO Development Team * * Email: hi@modernuo.com * * File: SourceGeneration.Property.cs * * * * This program is free software: you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation, either version 3 of the License, or * * (at your option) any later version. * * * * You should have received a copy of the GNU General Public License * * along with this program. If not, see . * *************************************************************************/ using System; using System.Text; using Humanizer; using Microsoft.CodeAnalysis; namespace SerializationGenerator { public static partial class SourceGeneration { public static string GetPropertyName(this IFieldSymbol fieldSymbol) { var fieldName = fieldSymbol.Name; var propertyName = fieldName; if (propertyName.StartsWith("m_", StringComparison.OrdinalIgnoreCase)) { propertyName = propertyName.Substring(2); } else if (propertyName.StartsWith("_", StringComparison.OrdinalIgnoreCase)) { propertyName = propertyName.Substring(1); } return propertyName.Dehumanize(); } public static void GeneratePropertyStart( this StringBuilder source, AccessModifier accessors, IFieldSymbol fieldSymbol ) { var propertyName = fieldSymbol.GetPropertyName(); source.AppendLine($@" {accessors.ToFriendlyString()} {fieldSymbol.Type} {propertyName} {{"); } public static void GenerateAutoProperty( this StringBuilder source, AccessModifier accessors, string type, string propertyName, AccessModifier? getAccessor, AccessModifier? setAccessor, bool useInit = false ) { if (getAccessor == null && setAccessor == null) { throw new ArgumentNullException($"Must specify a {nameof(getAccessor)} or {nameof(setAccessor)} parameter"); } var getter = getAccessor == null ? "" : $"{(getAccessor != AccessModifier.None ? $"{getAccessor.Value.ToFriendlyString()} " : "")}get;"; var getterSpace = getAccessor != null ? " " : ""; var setOrInit = useInit ? "init;" : "set;"; var setterAccessor = setAccessor != AccessModifier.None ? $"{setAccessor?.ToFriendlyString() ?? ""} " : ""; var setter = setterAccessor == "" ? "" : $"{getterSpace}{setterAccessor}{setOrInit}"; var propertyAccessor = accessors == AccessModifier.None ? "" : $"{accessors.ToFriendlyString()} "; source.AppendLine($"{propertyAccessor}{type} {propertyName} {{ {getter}{setter} }}"); } public static void GeneratePropertyEnd(this StringBuilder source) => source.AppendLine(" }"); public static void GeneratePropertyGetterReturnsField(this StringBuilder source, IFieldSymbol fieldSymbol) => source.AppendLine($" get => {fieldSymbol.Name};"); public static void GeneratePropertyGetterStart(this StringBuilder source, bool useExpression) => source.AppendLine($" get{(useExpression ? " => " : "\n {")}"); public static void GeneratePropertyGetSetEnd(this StringBuilder source, bool useExpression) { if (!useExpression) { source.AppendLine(" }"); } } public static void GeneratePropertySetterSetsValue(this StringBuilder source, IFieldSymbol fieldSymbol) => source.AppendLine($" set => {fieldSymbol.Name} = value;"); public static void GeneratePropertySetterStart(this StringBuilder source, bool useExpression, bool useInit = false) => source.AppendLine($" {(useInit ? "init" : "set")}{(useExpression ? " => " : "\n {")}"); } }