/************************************************************************* * ModernUO * * Copyright 2019-2021 - ModernUO Development Team * * Email: hi@modernuo.com * * File: SerializableEntityGeneration.Class.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.Collections.Generic; using System.Collections.Immutable; using System.Linq; using System.Text; using System.Text.Json; using Microsoft.CodeAnalysis; using SerializableMigration; using SourceGeneration; namespace SerializationGenerator { public static partial class SerializableEntityGeneration { public static string GenerateSerializationPartialClass( this GeneratorExecutionContext context, INamedTypeSymbol classSymbol, AttributeData serializableAttr, ImmutableArray fieldsAndProperties, JsonSerializerOptions jsonSerializerOptions, ImmutableArray serializableTypes ) { var compilation = context.Compilation; var serializableFieldAttribute = compilation.GetTypeByMetadataName(SymbolMetadata.SERIALIZABLE_FIELD_ATTRIBUTE); var serializableFieldAttrAttribute = compilation.GetTypeByMetadataName(SymbolMetadata.SERIALIZABLE_FIELD_ATTR_ATTRIBUTE); var serializableInterface = compilation.GetTypeByMetadataName(SymbolMetadata.SERIALIZABLE_INTERFACE); // If we have a parent that is or derives from ISerializable, then we are in override var isOverride = classSymbol.BaseType.ContainsInterface(serializableInterface); if (!isOverride && !classSymbol.ContainsInterface(serializableInterface)) { return null; } var version = (int)serializableAttr.ConstructorArguments[0].Value!; var encodedVersion = (bool)serializableAttr.ConstructorArguments[1].Value!; var namespaceName = classSymbol.ContainingNamespace.ToDisplayString(); var className = classSymbol.Name; StringBuilder source = new StringBuilder(); source.GenerateNamespaceStart(namespaceName); source.GenerateClassStart( className, ImmutableArray.Empty ); const string indent = " "; source.GenerateClassField( AccessModifier.Private, InstanceModifier.Const, "int", "_version", version.ToString(), true ); source.AppendLine(); var serializablePropertySet = new SortedSet(new SerializablePropertyComparer()); foreach (var fieldOrPropertySymbol in fieldsAndProperties) { var allAttributes = fieldOrPropertySymbol.GetAttributes(); var serializableFieldAttr = allAttributes .FirstOrDefault( attr => SymbolEqualityComparer.Default.Equals(attr.AttributeClass, serializableFieldAttribute) ); if (serializableFieldAttr == null) { continue; } var order = (int)serializableFieldAttr.ConstructorArguments[0].Value!; foreach (var attr in allAttributes) { if (!SymbolEqualityComparer.Default.Equals(attr.AttributeClass, serializableFieldAttrAttribute)) { continue; } if (attr.AttributeClass == null) { continue; } var ctorArgs = attr.ConstructorArguments; var attrTypeArg = ctorArgs[0]; if (attrTypeArg.Kind == TypedConstantKind.Primitive && attrTypeArg.Value is string attrStr) { source.AppendLine($" {attrStr}"); } else { var attrType = (ITypeSymbol)attrTypeArg.Value; source.GenerateAttribute(attrType.Name, ctorArgs[1].Values); } } if (fieldOrPropertySymbol is IFieldSymbol fieldSymbol) { source.GenerateSerializableProperty(fieldSymbol, compilation); source.AppendLine(); } var serializableProperty = SerializableMigrationRulesEngine.GenerateSerializableProperty( compilation, fieldOrPropertySymbol, order, allAttributes, serializableTypes ); serializablePropertySet.Add(serializableProperty); } var serializableProperties = serializablePropertySet.ToImmutableArray(); // If we are not inheriting ISerializable, then we need to define some stuff if (!isOverride) { // long ISerializable.SavePosition { get; set; } = -1; source.GenerateAutoProperty( AccessModifier.None, "long", "ISerializable.SavePosition", AccessModifier.None, AccessModifier.None, indent, defaultValue: "-1" ); // BufferWriter ISerializable.SaveBuffer { get; set; } source.GenerateAutoProperty( AccessModifier.None, "BufferWriter", "ISerializable.SaveBuffer", AccessModifier.None, AccessModifier.None, indent ); } // Serial constructor source.GenerateSerialCtor(compilation, className, isOverride); source.AppendLine(); List migrations = new List(); if (version > 0) { migrations = context.GetMigrationsByAnalyzerConfig( classSymbol, version, jsonSerializerOptions ); for (var i = 0; i < migrations.Count; i++) { var migration = migrations[i]; if (migration.Version < version) { source.GenerateMigrationContentStruct(migration); source.AppendLine(); } } } // Serialize Method source.GenerateSerializeMethod( compilation, isOverride, encodedVersion, serializableProperties ); source.AppendLine(); // Deserialize Method source.GenerateDeserializeMethod( compilation, classSymbol, isOverride, version, encodedVersion, migrations, serializableProperties ); source.GenerateClassEnd(); source.GenerateNamespaceEnd(); return source.ToString(); } } }