123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911 |
- using System;
- using System.Collections.Generic;
- using System.Diagnostics.CodeAnalysis;
- using System.IO;
- using System.Linq;
- using System.Net.WebSockets;
- using System.Reflection;
- using System.Runtime.InteropServices.ComTypes;
- using System.Threading;
- using System.Xml.Linq;
- using InABox.Clients;
- using Newtonsoft.Json;
- using Newtonsoft.Json.Linq;
- namespace InABox.Core
- {
- public class SerialisationException : Exception
- {
- public SerialisationException(string message): base(message) { }
- }
- public interface ISerializeBinary
- {
- public void SerializeBinary(CoreBinaryWriter writer);
- public void DeserializeBinary(CoreBinaryReader reader);
- }
- public static class Serialization
- {
- private static JsonSerializerSettings? _serializerSettings;
- private static JsonSerializerSettings SerializerSettings(bool indented = true)
- {
- if (_serializerSettings == null)
- {
- _serializerSettings = new JsonSerializerSettings
- {
- DateParseHandling = DateParseHandling.DateTime,
- DateFormatHandling = DateFormatHandling.IsoDateFormat,
- DateTimeZoneHandling = DateTimeZoneHandling.RoundtripKind
- };
- _serializerSettings.Converters.Add(new CoreTableJsonConverter());
- //serializerSettings.Converters.Add(new DateTimeJsonConverter());
- _serializerSettings.Converters.Add(new FilterJsonConverter());
- _serializerSettings.Converters.Add(new ColumnJsonConverter());
- _serializerSettings.Converters.Add(new SortOrderJsonConverter());
- _serializerSettings.Converters.Add(new UserPropertiesJsonConverter());
- _serializerSettings.ConstructorHandling = ConstructorHandling.AllowNonPublicDefaultConstructor;
- }
- _serializerSettings.Formatting = indented ? Formatting.Indented : Formatting.None;
- return _serializerSettings;
- }
- public static string Serialize(object? o, bool indented = false)
- {
- var json = JsonConvert.SerializeObject(o, SerializerSettings(indented));
- return json;
- }
- public static void Serialize(object o, Stream stream, bool indented = false)
- {
- var settings = SerializerSettings(indented);
- using (var sw = new StreamWriter(stream))
- {
- using (JsonWriter writer = new JsonTextWriter(sw))
- {
- var serializer = JsonSerializer.Create(settings);
- serializer.Serialize(writer, o);
- }
- }
- }
- public static void DeserializeInto(string json, object target)
- {
- JsonConvert.PopulateObject(json, target, SerializerSettings());
- }
- [return: MaybeNull]
- public static T Deserialize<T>(Stream? stream, bool strict = false)
- {
- if (stream == null)
- return default;
- try
- {
- var settings = SerializerSettings();
- using var sr = new StreamReader(stream);
- using JsonReader reader = new JsonTextReader(sr);
- var serializer = JsonSerializer.Create(settings);
- return serializer.Deserialize<T>(reader);
- }
- catch (Exception e)
- {
- if (strict)
- throw;
- Logger.Send(LogType.Error, ClientFactory.UserID, $"Error in Deserialize<{typeof(T)}>(): {e.Message}");
- return default;
- }
- }
- public static object? Deserialize(Type type, Stream? stream)
- {
- if (stream == null)
- return null;
- object? result = null;
- var settings = SerializerSettings();
- using (var sr = new StreamReader(stream))
- {
- using (JsonReader reader = new JsonTextReader(sr))
- {
- var serializer = JsonSerializer.Create(settings);
- result = serializer.Deserialize(reader, type);
- }
- }
- return result;
- }
- [return: MaybeNull]
- public static T Deserialize<T>(JToken obj, bool strict = false)
- {
- var ret = default(T);
- try
- {
- var settings = SerializerSettings();
- var serializer = JsonSerializer.Create(settings);
- return obj.ToObject<T>();
- }
- catch (Exception)
- {
- if (strict)
- {
- throw;
- }
- if (typeof(T).IsArray)
- {
- ret = (T)(object)Array.CreateInstance(typeof(T).GetElementType(), 0);
- }
- else
- {
- ret = Activator.CreateInstance<T>();
- }
- }
- return ret;
- }
- [return: MaybeNull]
- public static T Deserialize<T>(string? json, bool strict = false) // where T : new()
- {
- var ret = default(T);
- if (string.IsNullOrWhiteSpace(json))
- return ret;
- try
- {
- var settings = SerializerSettings();
- //if (typeof(T).IsSubclassOf(typeof(BaseObject)))
- //{
- // ret = Activator.CreateInstance<T>();
- // (ret as BaseObject).SetObserving(false);
- // JsonConvert.PopulateObject(json, ret, settings);
- // (ret as BaseObject).SetObserving(true);
- //}
- //else
- if (typeof(T).IsArray)
- {
- ret = JsonConvert.DeserializeObject<T>(json, settings);
- //object o = Array.CreateInstance(typeof(T).GetElementType(), 0);
- //ret = (T)o;
- }
- else
- {
- ret = JsonConvert.DeserializeObject<T>(json, settings);
- }
- }
- catch (Exception e)
- {
- if (strict)
- {
- throw;
- }
- if (typeof(T).IsArray)
- {
- ret = (T)(object)Array.CreateInstance(typeof(T).GetElementType(), 0);
- }
- else
- {
- ret = (T)Activator.CreateInstance(typeof(T), true);
- }
- }
- return ret;
- }
- public static object? Deserialize(Type T, string json) // where T : new()
- {
- var ret = T.GetDefault();
- if (string.IsNullOrWhiteSpace(json))
- return ret;
- try
- {
- var settings = SerializerSettings();
- //if (typeof(T).IsSubclassOf(typeof(BaseObject)))
- //{
- // ret = Activator.CreateInstance<T>();
- // (ret as BaseObject).SetObserving(false);
- // JsonConvert.PopulateObject(json, ret, settings);
- // (ret as BaseObject).SetObserving(true);
- //}
- //else
- if (T.IsArray)
- {
- object o = Array.CreateInstance(T.GetElementType(), 0);
- ret = o;
- }
- else
- {
- ret = JsonConvert.DeserializeObject(json, T, settings);
- }
- }
- catch (Exception)
- {
- ret = Activator.CreateInstance(T, true);
- }
- return ret;
- }
- #region Binary Serialization
- public static byte[] WriteBinary(this ISerializeBinary obj, BinarySerializationSettings settings)
- {
- using var stream = new MemoryStream();
- obj.SerializeBinary(new CoreBinaryWriter(stream, settings));
- return stream.ToArray();
- }
- public static void WriteBinary(this ISerializeBinary obj, Stream stream, BinarySerializationSettings settings)
- {
- obj.SerializeBinary(new CoreBinaryWriter(stream, settings));
- }
- public static T ReadBinary<T>(byte[] data, BinarySerializationSettings settings)
- where T : ISerializeBinary, new() => (T)ReadBinary(typeof(T), data, settings);
- public static T ReadBinary<T>(Stream stream, BinarySerializationSettings settings)
- where T : ISerializeBinary, new() => (T)ReadBinary(typeof(T), stream, settings);
- public static object ReadBinary(Type T, byte[] data, BinarySerializationSettings settings)
- {
- using var stream = new MemoryStream(data);
- return ReadBinary(T, stream, settings);
- }
- public static object ReadBinary(Type T, Stream stream, BinarySerializationSettings settings)
- {
- var obj = (Activator.CreateInstance(T) as ISerializeBinary)!;
- obj.DeserializeBinary(new CoreBinaryReader(stream, settings));
- return obj;
- }
- #endregion
- }
- public class CoreBinaryReader : BinaryReader
- {
- public BinarySerializationSettings Settings { get; set; }
- public CoreBinaryReader(Stream stream, BinarySerializationSettings settings) : base(stream)
- {
- Settings = settings;
- }
- }
- public class CoreBinaryWriter : BinaryWriter
- {
- public BinarySerializationSettings Settings { get; set; }
- public CoreBinaryWriter(Stream stream, BinarySerializationSettings settings) : base(stream)
- {
- Settings = settings;
- }
- }
- /// <summary>
- /// A class to maintain the consistency of serialisation formats across versions.
- /// The design of this is such that specific versions of serialisation have different parameters set,
- /// and the versions are maintained as static properties. Please keep the constructor private.
- /// </summary>
- /// <remarks>
- /// Note that <see cref="Latest"/> should always be updated to point to the latest version.
- /// <br/>
- /// Note also that all versions should have an entry in the <see cref="ConvertVersionString(string)"/> function.
- /// <br/>
- /// Also, if you create a new format, it would probably be a good idea to add a database update script to get all
- /// <see cref="IPackable"/> and <see cref="ISerializeBinary"/> properties and update the version of the format.
- /// (Otherwise, we'd basically be nullifying all data that is currently binary serialised.)
- /// </remarks>
- public class BinarySerializationSettings
- {
-
- /// <summary>
- /// Should the Info() call return RPC and Rest Ports? This is
- /// To workaround a bug in RPCsockets that crash on large uploads
- /// </summary>
- /// <remarks>
- /// True in all serialization versions >= 1.2
- /// </remarks>
- public bool RPCClientWorkaround { get; set; }
-
- /// <summary>
- /// Should reference types include a flag for nullability? (Adds an extra boolean field for whether the value is null or not).
- /// </summary>
- /// <remarks>
- /// True in all serialisation versions >= 1.1.
- /// </remarks>
- public bool IncludeNullables { get; set; }
-
- public string Version { get; set; }
- public static BinarySerializationSettings Latest => V1_2;
-
- public static BinarySerializationSettings V1_0 = new BinarySerializationSettings("1.0")
- {
- IncludeNullables = false,
- RPCClientWorkaround = false
- };
-
- public static BinarySerializationSettings V1_1 = new BinarySerializationSettings("1.1")
- {
- IncludeNullables = true,
- RPCClientWorkaround = false
- };
-
- public static BinarySerializationSettings V1_2 = new BinarySerializationSettings("1.2")
- {
- IncludeNullables = true,
- RPCClientWorkaround = true
- };
- public static BinarySerializationSettings ConvertVersionString(string version) => version switch
- {
- "1.0" => V1_0,
- "1.1" => V1_1,
- "1.2" => V1_2,
- _ => V1_0
- };
- private BinarySerializationSettings(string version)
- {
- Version = version;
- }
- }
- public static class SerializationUtils
- {
- public static void Write(this BinaryWriter writer, Guid guid)
- {
- writer.Write(guid.ToByteArray());
- }
- public static Guid ReadGuid(this BinaryReader reader)
- {
- return new Guid(reader.ReadBytes(16));
- }
- public static void Write(this BinaryWriter writer, DateTime dateTime)
- {
- writer.Write(dateTime.Ticks);
- }
- public static DateTime ReadDateTime(this BinaryReader reader)
- {
- return new DateTime(reader.ReadInt64());
- }
- private static bool MatchType<T1>(Type t) => typeof(T1) == t;
- private static bool MatchType<T1,T2>(Type t) => (typeof(T1) == t) || (typeof(T2) == t);
-
- /// <summary>
- /// Binary serialize a bunch of different types of values. <see cref="WriteBinaryValue(CoreBinaryWriter, Type, object?)"/> and
- /// <see cref="ReadBinaryValue(CoreBinaryReader, Type)"/> are inverses of each other.
- /// </summary>
- /// <remarks>
- /// Handles <see cref="byte"/>[], <see cref="Array"/>s of serialisable values, <see cref="Enum"/>, <see cref="bool"/>, <see cref="string"/>,
- /// <see cref="Guid"/>, <see cref="byte"/>, <see cref="Int16"/>, <see cref="Int32"/>, <see cref="Int64"/>, <see cref="float"/>, <see cref="double"/>,
- /// <see cref="DateTime"/>, <see cref="TimeSpan"/>, <see cref="LoggablePropertyAttribute"/>, <see cref="IPackable"/>, <see cref="Nullable{T}"/>
- /// and <see cref="ISerializeBinary"/>.
- /// </remarks>
- /// <param name="writer"></param>
- /// <param name="type"></param>
- /// <param name="value"></param>
- /// <exception cref="Exception">If an object of <paramref name="type"/> is unable to be serialized.</exception>
- public static void WriteBinaryValue(this CoreBinaryWriter writer, Type type, object? value)
- {
- value ??= CoreUtils.GetDefault(type);
-
- if (value == null)
- {
- if (MatchType<string>(type))
- writer.Write("");
- else if (writer.Settings.IncludeNullables && typeof(IPackable).IsAssignableFrom(type))
- writer.Write(false);
- else if (writer.Settings.IncludeNullables && typeof(ISerializeBinary).IsAssignableFrom(type))
- writer.Write(false);
- else if (Nullable.GetUnderlyingType(type) is Type t)
- writer.Write(false);
- else if (MatchType<LoggablePropertyAttribute, object>(type))
- writer.Write("");
- else
- writer.Write(0);
- }
-
- else if (MatchType<byte[], object>(type) && value is byte[] bArray)
- {
- writer.Write(bArray.Length);
- writer.Write(bArray);
- }
-
- else if (type.IsArray && value is Array array)
- {
- var elementType = type.GetElementType();
- writer.Write(array.Length);
- foreach (var val1 in array)
- {
- WriteBinaryValue(writer, elementType, val1);
- }
- }
-
- else if (type.IsEnum && value is Enum e)
- {
- var underlyingType = type.GetEnumUnderlyingType();
- WriteBinaryValue(writer, underlyingType, Convert.ChangeType(e, underlyingType));
- }
-
- else if (MatchType<bool, object>(type) && value is bool b)
- {
- writer.Write(b);
- }
-
- else if (MatchType<string, object>(type) && value is string str)
- writer.Write(str);
- else if (MatchType<Guid, object>(type) && value is Guid guid)
- writer.Write(guid);
-
- else if (MatchType<byte, object>(type) && value is byte i8)
- writer.Write(i8);
-
- else if (MatchType<Int16, object>(type) && value is Int16 i16)
- writer.Write(i16);
-
- else if (MatchType<Int32, object>(type) && value is Int32 i32)
- writer.Write(i32);
-
- else if (MatchType<Int64, object>(type) && value is Int64 i64)
- writer.Write(i64);
-
- else if (MatchType<float, object>(type) && value is float f32)
- writer.Write(f32);
-
- else if (MatchType<double, object>(type) && value is double f64)
- writer.Write(f64);
-
- else if (MatchType<DateTime, object>(type) && value is DateTime date)
- writer.Write(date.Ticks);
-
- else if (MatchType<TimeSpan, object>(type) && value is TimeSpan time)
- writer.Write(time.Ticks);
-
- else if (MatchType<LoggablePropertyAttribute, object>(type) && value is LoggablePropertyAttribute lpa)
- writer.Write(lpa.Format ?? string.Empty);
-
- else if (typeof(IPackable).IsAssignableFrom(type) && value is IPackable pack)
- {
- if (writer.Settings.IncludeNullables)
- writer.Write(true);
- pack.Pack(writer);
- }
-
- else if (typeof(ISerializeBinary).IsAssignableFrom(type) && value is ISerializeBinary binary)
- {
- if (writer.Settings.IncludeNullables)
- writer.Write(true);
- binary.SerializeBinary(writer);
- }
-
- else if (Nullable.GetUnderlyingType(type) is Type t)
- {
- writer.Write(true);
- writer.WriteBinaryValue(t, value);
- }
-
- else if (value is UserProperty userprop)
- WriteBinaryValue(writer, userprop.Type, userprop.Value);
-
- else
- throw new SerialisationException($"Invalid type; Target DataType is {type} and value DataType is {value?.GetType().ToString() ?? "null"}");
-
- }
- public static void WriteBinaryValue<T>(this CoreBinaryWriter writer, T value)
- => WriteBinaryValue(writer, typeof(T), value);
- /// <summary>
- /// Binary deserialize a bunch of different types of values. <see cref="WriteBinaryValue(CoreBinaryWriter, Type, object?)"/> and
- /// <see cref="ReadBinaryValue(CoreBinaryReader, Type)"/> are inverses of each other.
- /// </summary>
- /// <remarks>
- /// Handles <see cref="byte"/>[], <see cref="Array"/>s of serialisable values, <see cref="Enum"/>, <see cref="bool"/>, <see cref="string"/>,
- /// <see cref="Guid"/>, <see cref="byte"/>, <see cref="Int16"/>, <see cref="Int32"/>, <see cref="Int64"/>, <see cref="float"/>, <see cref="double"/>,
- /// <see cref="DateTime"/>, <see cref="TimeSpan"/>, <see cref="LoggablePropertyAttribute"/>, <see cref="IPackable"/>, <see cref="Nullable{T}"/>
- /// and <see cref="ISerializeBinary"/>.
- /// </remarks>
- /// <param name="reader"></param>
- /// <param name="type"></param>
- /// <exception cref="Exception">If an object of <paramref name="type"/> is unable to be deserialized.</exception>
- public static object? ReadBinaryValue(this CoreBinaryReader reader, Type type)
- {
- if (type == typeof(byte[]))
- {
- var length = reader.ReadInt32();
- return reader.ReadBytes(length);
- }
- else if (type.IsArray)
- {
- var length = reader.ReadInt32();
- var elementType = type.GetElementType();
- var array = Array.CreateInstance(elementType, length);
- for (int i = 0; i < array.Length; ++i)
- {
- array.SetValue(ReadBinaryValue(reader, elementType), i);
- }
- return array;
- }
- else if (type.IsEnum)
- {
- var val = ReadBinaryValue(reader, type.GetEnumUnderlyingType());
- return Enum.ToObject(type, val);
- }
- else if (type == typeof(bool))
- {
- return reader.ReadBoolean();
- }
- else if (type == typeof(string))
- {
- return reader.ReadString();
- }
- else if (type == typeof(Guid))
- {
- return reader.ReadGuid();
- }
- else if (type == typeof(byte))
- {
- return reader.ReadByte();
- }
- else if (type == typeof(Int16))
- {
- return reader.ReadInt16();
- }
- else if (type == typeof(Int32))
- {
- return reader.ReadInt32();
- }
- else if (type == typeof(Int64))
- {
- return reader.ReadInt64();
- }
- else if (type == typeof(float))
- {
- return reader.ReadSingle();
- }
- else if (type == typeof(double))
- {
- return reader.ReadDouble();
- }
- else if (type == typeof(DateTime))
- {
- return new DateTime(reader.ReadInt64());
- }
- else if (type == typeof(TimeSpan))
- {
- return new TimeSpan(reader.ReadInt64());
- }
- else if (type == typeof(LoggablePropertyAttribute))
- {
- String format = reader.ReadString();
- return String.IsNullOrWhiteSpace(format)
- ? null
- : new LoggablePropertyAttribute() { Format = format };
- }
- else if (typeof(IPackable).IsAssignableFrom(type))
- {
- if (!reader.Settings.IncludeNullables || reader.ReadBoolean()) // Note the short-circuit operator preventing reading a boolean.
- {
- var packable = (Activator.CreateInstance(type) as IPackable)!;
- packable.Unpack(reader);
- return packable;
- }
- else
- {
- return null;
- }
- }
- else if (typeof(ISerializeBinary).IsAssignableFrom(type))
- {
- if (!reader.Settings.IncludeNullables || reader.ReadBoolean()) // Note the short-circuit operator preventing reading a boolean.
- {
- var obj = (Activator.CreateInstance(type, true) as ISerializeBinary)!;
- obj.DeserializeBinary(reader);
- return obj;
- }
- else
- {
- return null;
- }
- }
- else if (Nullable.GetUnderlyingType(type) is Type t)
- {
- var isNull = reader.ReadBoolean();
- if (isNull)
- {
- return null;
- }
- else
- {
- return reader.ReadBinaryValue(t);
- }
- }
- else
- {
- throw new SerialisationException($"Invalid type; Target DataType is {type}");
- }
- }
- public static T ReadBinaryValue<T>(this CoreBinaryReader reader)
- {
- var result = ReadBinaryValue(reader, typeof(T));
- return (result != null ? (T)result : default)!;
- }
- private static bool IsSerializable(Type type, StandardProperty? prop)
- {
- if (prop == null)
- return true;
- if (prop.Property.GetCustomAttribute<DoNotSerialize>() != null)
- return false;
- return IsSerializable(type, prop.Parent as StandardProperty);
- }
-
- public static IEnumerable<IProperty> SerializableProperties(Type type) =>
- DatabaseSchema.Properties(type)
- .Where(x => !(x is StandardProperty st) || IsSerializable(type,st));
- private static void GetOriginalValues(BaseObject obj, string? parent, List<Tuple<Type, string, object?>> values)
- {
- parent = parent != null ? $"{parent}." : "";
- foreach (var (key, value) in obj.OriginalValues)
- {
- // EnclosedEntities and EntityLinks will be updated through the recursive code below,
- // so we should not need to serialise the entire object again..
- if (DatabaseSchema.Property(obj.GetType(), key) is IProperty prop
- && !prop.PropertyType.GetInterfaces().Contains(typeof(IEnclosedEntity))
- && !prop.PropertyType.GetInterfaces().Contains(typeof(IEntityLink))
- )
- {
- values.Add(new Tuple<Type, string, object?>(prop.PropertyType, parent + key, value));
- }
- }
- var props = obj.GetType().GetProperties().Where(x =>
- x.GetCustomAttribute<DoNotSerialize>() == null
- && x.GetCustomAttribute<DoNotPersist>() == null
- && x.GetCustomAttribute<AggregateAttribute>() == null
- && x.GetCustomAttribute<FormulaAttribute>() == null
- && x.GetCustomAttribute<ConditionAttribute>() == null
- && x.GetCustomAttribute<ComplexFormulaAttribute>() == null
- && x.GetCustomAttribute<ChildEntityAttribute>() == null
- && x.CanWrite);
- foreach (var prop in props)
- {
- if (prop.PropertyType.GetInterfaces().Contains(typeof(IEnclosedEntity)))
- {
- if (prop.GetValue(obj) is BaseObject child)
- GetOriginalValues(child, parent + prop.Name, values);
- }
- else if (prop.PropertyType.GetInterfaces().Contains(typeof(IEntityLink)))
- {
- if (prop.GetValue(obj) is BaseObject child && child.HasOriginalValue("ID"))
- {
- values.Add(new Tuple<Type, string, object?>(typeof(Guid), parent + prop.Name + ".ID", child.OriginalValues["ID"]));
- }
- }
- }
- }
- private static void WriteOriginalValues<TObject>(this CoreBinaryWriter writer, TObject obj)
- where TObject : BaseObject
- {
- var originalValues = new List<Tuple<Type, string, object?>>();
- GetOriginalValues(obj, null, originalValues);
- writer.Write(originalValues.Count);
- foreach (var (type, key, value) in originalValues)
- {
- writer.Write(key);
- try
- {
- writer.WriteBinaryValue(type, value);
- }
- catch (Exception e)
- {
-
- }
- }
- }
- private static void ReadOriginalValues<TObject>(this CoreBinaryReader reader, TObject obj)
- where TObject : BaseObject
- {
- var nOriginalValues = reader.ReadInt32();
- for (int i = 0; i < nOriginalValues; ++i)
- {
- var key = reader.ReadString();
- if (DatabaseSchema.Property(obj.GetType(), key) is IProperty prop)
- {
- var value = reader.ReadBinaryValue(prop.PropertyType);
- if (prop.Parent is null)
- {
- obj.OriginalValues[prop.Name] = value;
- }
- else
- {
- if (prop.Parent.Getter()(obj) is BaseObject parent)
- {
- parent.OriginalValues[prop.Name.Split('.').Last()] = value;
- }
- }
- }
- }
- }
- public static void WriteObject<TObject>(this CoreBinaryWriter writer, TObject entity, Type type)
- where TObject : BaseObject
- {
- if (!typeof(TObject).IsAssignableFrom(type))
- throw new SerialisationException($"{type.EntityName()} is not a subclass of {typeof(TObject).EntityName()}");
- var properties = SerializableProperties(type).ToList();
- writer.Write(properties.Count);
- foreach (var property in properties)
- {
- writer.Write(property.Name);
- writer.WriteBinaryValue(property.PropertyType, property.Getter()(entity));
- }
- writer.WriteOriginalValues(entity);
- }
- /// <summary>
- /// An implementation of binary serialising a <typeparamref name="TObject"/>; this is the inverse of <see cref="ReadObject{TObject}(CoreBinaryReader)"/>.
- /// </summary>
- /// <remarks>
- /// Also serialises the names of properties along with the values.
- /// </remarks>
- /// <typeparam name="TObject"></typeparam>
- /// <param name="writer"></param>
- /// <param name="entity"></param>
- public static void WriteObject<TObject>(this CoreBinaryWriter writer, TObject entity)
- where TObject : BaseObject, new() => WriteObject(writer, entity, typeof(TObject));
- public static TObject ReadObject<TObject>(this CoreBinaryReader reader, Type type)
- where TObject : BaseObject
- {
- if (!typeof(TObject).IsAssignableFrom(type))
- throw new SerialisationException($"{type.EntityName()} is not a subclass of {typeof(TObject).EntityName()}");
- var obj = (Activator.CreateInstance(type) as TObject)!;
- obj.SetObserving(false);
- var nProps = reader.ReadInt32();
- for (int i = 0; i < nProps; ++i)
- {
- var propName = reader.ReadString();
- var property = DatabaseSchema.Property(type, propName)
- ?? throw new SerialisationException($"Property {propName} does not exist on {type.EntityName()}");
- property.Setter()(obj, reader.ReadBinaryValue(property.PropertyType));
- }
- reader.ReadOriginalValues(obj);
- obj.SetObserving(true);
- return obj;
- }
- /// <summary>
- /// The inverse of <see cref="WriteObject{TObject}(CoreBinaryWriter, TObject)"/>.
- /// </summary>
- /// <typeparam name="TObject"></typeparam>
- /// <param name="reader"></param>
- /// <returns></returns>
- public static TObject ReadObject<TObject>(this CoreBinaryReader reader)
- where TObject : BaseObject, new() => reader.ReadObject<TObject>(typeof(TObject));
- /// <summary>
- /// An implementation of binary serialising multiple <typeparamref name="TObject"/>s;
- /// this is the inverse of <see cref="ReadObjects{TObject}(CoreBinaryReader)"/>.
- /// </summary>
- /// <remarks>
- /// Also serialises the names of properties along with the values.
- /// </remarks>
- /// <typeparam name="TObject"></typeparam>
- /// <param name="writer"></param>
- /// <param name="objects"></param>
- public static void WriteObjects<TObject>(this CoreBinaryWriter writer, ICollection<TObject>? objects)
- where TObject : BaseObject, new() => WriteObjects(writer, typeof(TObject), objects);
- public static void WriteObjects<TObject>(this CoreBinaryWriter writer, Type type, ICollection<TObject>? objects)
- where TObject : BaseObject
- {
- if (!typeof(TObject).IsAssignableFrom(type))
- throw new SerialisationException($"{type.EntityName()} is not a subclass of {typeof(TObject).EntityName()}");
- var nObjs = objects?.Count ?? 0;
- writer.Write(nObjs);
- if (nObjs == 0)
- {
- return;
- }
- var properties = SerializableProperties(type).ToList();
- writer.Write(properties.Count);
- foreach (var property in properties)
- {
- writer.Write(property.Name);
- }
- if(objects != null)
- {
- foreach (var obj in objects)
- {
- foreach (var property in properties)
- {
- writer.WriteBinaryValue(property.PropertyType, property.Getter()(obj));
- }
- writer.WriteOriginalValues(obj);
- }
- }
- }
- /// <summary>
- /// The inverse of <see cref="WriteObjects{TObject}(CoreBinaryWriter, ICollection{TObject})"/>.
- /// </summary>
- /// <typeparam name="TObject"></typeparam>
- /// <param name="reader"></param>
- /// <returns></returns>
- public static List<TObject> ReadObjects<TObject>(this CoreBinaryReader reader)
- where TObject : BaseObject, new()
- {
- return ReadObjects<TObject>(reader, typeof(TObject));
- }
-
- public static List<TObject> ReadObjects<TObject>(this CoreBinaryReader reader, Type type) where TObject : BaseObject
- {
- if (!typeof(TObject).IsAssignableFrom(type))
- throw new SerialisationException($"{type.EntityName()} is not a subclass of {typeof(TObject).EntityName()}");
-
- var objs = new List<TObject>();
- var properties = new List<IProperty>();
- var nObjs = reader.ReadInt32();
- if(nObjs == 0)
- {
- return objs;
- }
- var nProps = reader.ReadInt32();
- for (int i = 0; i < nProps; ++i)
- {
- var propertyName = reader.ReadString();
- var property = DatabaseSchema.Property(type, propertyName)
- ?? throw new SerialisationException($"Property {propertyName} does not exist on {type.EntityName()}");
- properties.Add(property);
- }
- for (int i = 0; i < nObjs; ++i)
- {
- var obj = (Activator.CreateInstance(type) as TObject)!;
- obj.SetObserving(false);
- foreach (var property in properties)
- {
- property.Setter()(obj, reader.ReadBinaryValue(property.PropertyType));
- }
- reader.ReadOriginalValues(obj);
- obj.SetObserving(true);
- objs.Add(obj);
- }
- return objs;
- }
- }
- }
|