Skip to content
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

Merged
merged 2 commits into from
Apr 21, 2020

Conversation

steveharter
Copy link
Member

@steveharter steveharter commented Apr 15, 2020

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:

Also removed todos added in #32474.

Fixes #32523 (actually this was fixed a while ago but reopened to delete the todo comments).

Notes:

  • The T value in Write(...) can't be made T? value since T can either be a class or a value type.
  • Normally converters are not written for nullable types since there is a built-in converter for Nullable<T> that handles nulls automatically and forwards non-null values to the underlying T converter (e.g. the int converter is called for an int? type when the value is not null).
  • Converters for nullable types are passed 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 for JsonTokenType.Null in Read() but was called correctly for Write().

@@ -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);
Copy link
Member

@stephentoub stephentoub Apr 15, 2020

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?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Copy link
Member

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.

Copy link
Member Author

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.

Copy link
Member Author

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).

Copy link
Contributor

@layomia layomia left a 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);
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@@ -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);
Copy link
Contributor

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?

Copy link
Member Author

@steveharter steveharter Apr 17, 2020

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.

@steveharter
Copy link
Member Author

Build failures unrelated (Microsoft.Extensions.DependencyInjection.Tests)

@steveharter steveharter merged commit d4b5390 into dotnet:master Apr 21, 2020
@steveharter steveharter deleted the SerializerTodos branch April 21, 2020 18:44
@layomia layomia added this to the 5.0 milestone May 15, 2020
@ghost ghost locked as resolved and limited conversation to collaborators Dec 9, 2020
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
4 participants