-
Notifications
You must be signed in to change notification settings - Fork 4.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Remove DisallowNull annotation in JsonConverter.Write() #35022
Conversation
@@ -409,6 +407,6 @@ internal void VerifyWrite(int originalDepth, Utf8JsonWriter writer) | |||
/// <param name="writer">The <see cref="Utf8JsonWriter"/> to write to.</param> | |||
/// <param name="value">The value to convert.</param> | |||
/// <param name="options">The <see cref="JsonSerializerOptions"/> being used.</param> | |||
public abstract void Write(Utf8JsonWriter writer, [DisallowNull] T value, JsonSerializerOptions options); | |||
public abstract void Write(Utf8JsonWriter writer, T value, JsonSerializerOptions options); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do we have tests that pass in null successfully?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We have some for for cases where the type to convert is a struct - https://github.com/dotnet/runtime/blob/cc132d790af6a5971925ef476d9411b251e91cfe/src/libraries/System.Text.Json/tests/Serialization/CustomConverterTests.NullValueType.cs.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks. It'd be good to have null tests for both value types and reference types.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do we have tests that pass in null successfully?
Null strings use this path.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is there any special guidance for using these attributes on abstract or non-sealed types\members? A derived class, for example, may want\need different behavior.
Is it OK to place [DisallowNull] on an abstract base class but then still allow null and use a nullable Type (like we do in the String converter).
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Would be nice to see a diff in the tests; maybe one explicitly showing that null
isn't passed to converters for reference types.
@@ -409,6 +407,6 @@ internal void VerifyWrite(int originalDepth, Utf8JsonWriter writer) | |||
/// <param name="writer">The <see cref="Utf8JsonWriter"/> to write to.</param> | |||
/// <param name="value">The value to convert.</param> | |||
/// <param name="options">The <see cref="JsonSerializerOptions"/> being used.</param> | |||
public abstract void Write(Utf8JsonWriter writer, [DisallowNull] T value, JsonSerializerOptions options); | |||
public abstract void Write(Utf8JsonWriter writer, T value, JsonSerializerOptions options); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We have some for for cases where the type to convert is a struct - https://github.com/dotnet/runtime/blob/cc132d790af6a5971925ef476d9411b251e91cfe/src/libraries/System.Text.Json/tests/Serialization/CustomConverterTests.NullValueType.cs.
@@ -490,7 +490,7 @@ public abstract partial class JsonConverter<T> : System.Text.Json.Serialization. | |||
protected internal JsonConverter() { } | |||
public override bool CanConvert(System.Type typeToConvert) { throw null; } | |||
public abstract T Read(ref System.Text.Json.Utf8JsonReader reader, System.Type typeToConvert, System.Text.Json.JsonSerializerOptions options); | |||
public abstract void Write(System.Text.Json.Utf8JsonWriter writer, [System.Diagnostics.CodeAnalysis.DisallowNull] T value, System.Text.Json.JsonSerializerOptions options); | |||
public abstract void Write(System.Text.Json.Utf8JsonWriter writer, T value, System.Text.Json.JsonSerializerOptions options); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Are we sure we want to go ahead with this change without the accompanying #34439?
See #32186 (comment)
Would existing converters that don't currently check for null input need to be fixed up to handle that?
Our internal converts pass null (String converter for one)
The StringConverter is explicitly annotated to allow nullable string. Do we have other examples?
Line 7 in c27376e
internal sealed class StringConverter : JsonConverter<string?> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Are we sure we want to go ahead with this change without the accompanying #34439?
I think so. Even without that, the String converter gets passed null (any internal converter that uses a reference type). Does it make sense to have DisallowNull
since we override the behavior internally?
Also, for converter composition where one converter calls another converter there may be a desire to pass null as the value -- especially if the target converter does something special with null.
Would existing converters that don't currently check for null input need to be fixed up to handle that?
There is no behavior change with the PR. When #34439 is implemented, null will not be passed to any converters (except internal) unless they opt-in through the new virtual method.
Build failures unrelated (Microsoft.Extensions.DependencyInjection.Tests) |
There are no behavioral changes in this PR other than removing [DisallowNull] in
JsonConverter<T>.Write
which was added in #32186. This was removed since some converters handle null including:string
converter.Nullable<T>
.Also removed todos added in #32474.
Fixes #32523 (actually this was fixed a while ago but reopened to delete the todo comments).
Notes:
T value
inWrite(...)
can't be madeT? value
sinceT
can either be a class or a value type.Nullable<T>
that handles nulls automatically and forwards non-null values to the underlyingT
converter (e.g. theint
converter is called for anint?
type when the value is not null).JsonTokenType.Null
on Read() and a null value on Write(). Tests were added to verify this behavior. Note that in 3.0\3.1 the converter was not called forJsonTokenType.Null
in Read() but was called correctly for Write().