mirror of
https://github.com/Ellpeck/MLEM.git
synced 2024-10-31 21:00:51 +01:00
45 lines
No EOL
1.6 KiB
C#
45 lines
No EOL
1.6 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Runtime.Serialization;
|
|
using MLEM.Misc;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace MLEM.Data.Json {
|
|
/// <summary>
|
|
/// An <see cref="IGenericDataHolder"/> represents an object that can hold generic key-value based data.
|
|
/// This class uses <see cref="JsonTypeSafeWrapper"/> for each object stored to ensure that objects with a custom <see cref="JsonConverter"/> get deserialized as an instance of their original type if <see cref="JsonSerializer.TypeNameHandling"/> is not set to <see cref="TypeNameHandling.None"/>.
|
|
/// </summary>
|
|
[DataContract]
|
|
public class JsonTypeSafeGenericDataHolder : IGenericDataHolder {
|
|
|
|
[DataMember(EmitDefaultValue = false)]
|
|
private Dictionary<string, JsonTypeSafeWrapper> data;
|
|
|
|
/// <inheritdoc />
|
|
public void SetData(string key, object data) {
|
|
if (data == default) {
|
|
if (this.data != null)
|
|
this.data.Remove(key);
|
|
} else {
|
|
if (this.data == null)
|
|
this.data = new Dictionary<string, JsonTypeSafeWrapper>();
|
|
this.data[key] = JsonTypeSafeWrapper.Of(data);
|
|
}
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
public T GetData<T>(string key) {
|
|
if (this.data != null && this.data.TryGetValue(key, out var val))
|
|
return (T) val.Value;
|
|
return default;
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
public IReadOnlyCollection<string> GetDataKeys() {
|
|
if (this.data == null)
|
|
return Array.Empty<string>();
|
|
return this.data.Keys;
|
|
}
|
|
|
|
}
|
|
} |