File: Converters\JsonConverterForJsonPatchDocumentOfT.cs
Web Access
Project: src\src\Features\JsonPatch.SystemTextJson\src\Microsoft.AspNetCore.JsonPatch.SystemTextJson.csproj (Microsoft.AspNetCore.JsonPatch.SystemTextJson)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
 
using System;
using System.Collections.Generic;
using System.Text.Json;
using System.Text.Json.Serialization;
using Microsoft.AspNetCore.JsonPatch.SystemTextJson.Operations;
 
namespace Microsoft.AspNetCore.JsonPatch.SystemTextJson.Converters;
 
internal sealed class JsonConverterForJsonPatchDocumentOfT<T> : JsonConverter<JsonPatchDocument<T>>
    where T : class
{
    private static JsonConverter<Operation<T>> GetConverter(JsonSerializerOptions options) =>
            (JsonConverter<Operation<T>>)options.GetConverter(typeof(Operation<T>));
 
    public override JsonPatchDocument<T> Read(ref Utf8JsonReader reader, Type typeToConvert, JsonSerializerOptions options)
    {
        if (typeToConvert != typeof(JsonPatchDocument<T>))
        {
            throw new ArgumentException(Resources.FormatParameterMustMatchType(nameof(typeToConvert), nameof(JsonPatchDocument<T>)), nameof(typeToConvert));
        }
 
        if (reader.TokenType != JsonTokenType.StartArray)
        {
            throw new JsonException(Resources.InvalidJsonPatchDocument);
        }
 
        if (reader.TokenType == JsonTokenType.Null)
        {
            return null;
        }
 
        List<Operation<T>> ops = [];
        try
        {
            JsonConverter<Operation<T>> operationConverter = GetConverter(options);
            while (reader.Read() && reader.TokenType is not JsonTokenType.EndArray)
            {
                var op = operationConverter.Read(ref reader, typeof(Operation<T>), options);
                ops.Add(op);
            }
 
            return new JsonPatchDocument<T>(ops, options);
        }
        catch (Exception ex)
        {
            throw new JsonException(Resources.InvalidJsonPatchDocument, ex);
        }
    }
 
    public override void Write(Utf8JsonWriter writer, JsonPatchDocument<T> value, JsonSerializerOptions options)
    {
        if (value == null)
        {
            writer.WriteNullValue();
            return;
        }
 
        JsonConverter<Operation<T>> operationConverter = GetConverter(options);
        writer.WriteStartArray();
        foreach (var operation in value.Operations)
        {
            operationConverter.Write(writer, operation, options);
        }
        writer.WriteEndArray();
    }
}