using System;
using System.Collections.Generic;
using Newtonsoft.Json;
using Newtonsoft.Json.Linq;
using StardewModdingAPI.Framework.Exceptions;
using StardewModdingAPI.Framework.Models;
namespace StardewModdingAPI.Framework.Serialisation
{
/// Overrides how SMAPI reads and writes and fields.
internal class SFieldConverter : JsonConverter
{
/*********
** Accessors
*********/
/// Whether this converter can write JSON.
public override bool CanWrite => false;
/*********
** Public methods
*********/
/// Get whether this instance can convert the specified object type.
/// The object type.
public override bool CanConvert(Type objectType)
{
return
objectType == typeof(ISemanticVersion)
|| objectType == typeof(IManifestDependency[])
|| objectType == typeof(ModDataID)
|| objectType == typeof(ModCompatibility[]);
}
/// Reads the JSON representation of the object.
/// The JSON reader.
/// The object type.
/// The object being read.
/// The calling serializer.
public override object ReadJson(JsonReader reader, Type objectType, object existingValue, JsonSerializer serializer)
{
// semantic version
if (objectType == typeof(ISemanticVersion))
{
JToken token = JToken.Load(reader);
switch (token.Type)
{
case JTokenType.Object:
{
JObject obj = (JObject)token;
int major = obj.Value(nameof(ISemanticVersion.MajorVersion));
int minor = obj.Value(nameof(ISemanticVersion.MinorVersion));
int patch = obj.Value(nameof(ISemanticVersion.PatchVersion));
string build = obj.Value(nameof(ISemanticVersion.Build));
return new SemanticVersion(major, minor, patch, build);
}
case JTokenType.String:
{
string str = token.Value();
if (string.IsNullOrWhiteSpace(str))
return null;
if (!SemanticVersion.TryParse(str, out ISemanticVersion version))
throw new SParseException($"Can't parse semantic version from invalid value '{str}', should be formatted like 1.2, 1.2.30, or 1.2.30-beta.");
return version;
}
default:
throw new SParseException($"Can't parse semantic version from {token.Type}, must be an object or string.");
}
}
// manifest dependencies
if (objectType == typeof(IManifestDependency[]))
{
List result = new List();
foreach (JObject obj in JArray.Load(reader).Children())
{
string uniqueID = obj.Value(nameof(IManifestDependency.UniqueID));
string minVersion = obj.Value(nameof(IManifestDependency.MinimumVersion));
bool required = obj.Value(nameof(IManifestDependency.IsRequired)) ?? true;
result.Add(new ManifestDependency(uniqueID, minVersion, required));
}
return result.ToArray();
}
// mod data ID
if (objectType == typeof(ModDataID))
{
JToken token = JToken.Load(reader);
return new ModDataID(token.Value());
}
// mod compatibility records
if (objectType == typeof(ModCompatibility[]))
{
List result = new List();
foreach (JProperty property in JObject.Load(reader).Properties())
{
string range = property.Name;
ModStatus status = (ModStatus)Enum.Parse(typeof(ModStatus), property.Value.Value(nameof(ModCompatibility.Status)));
string reasonPhrase = property.Value.Value(nameof(ModCompatibility.ReasonPhrase));
result.Add(new ModCompatibility(range, status, reasonPhrase));
}
return result.ToArray();
}
// unknown
throw new NotSupportedException($"Unknown type '{objectType?.FullName}'.");
}
/// Writes the JSON representation of the object.
/// The JSON writer.
/// The value.
/// The calling serializer.
public override void WriteJson(JsonWriter writer, object value, JsonSerializer serializer)
{
throw new InvalidOperationException("This converter does not write JSON.");
}
}
}