-
Notifications
You must be signed in to change notification settings - Fork 863
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
Fix RestJson serialization of sparse null map values #3682
base: v4-development
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{ | ||
"core": { | ||
"changeLogMessages": [ | ||
"Fixed protocol test RestJsonSerializesSparseNullMapValues by adding proper null value handling in sparse map serialization" | ||
], | ||
"type": "patch", | ||
"updateMinimum": false | ||
} | ||
} |
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -49,7 +49,12 @@ namespace <#= this.Config.Namespace #>.Model.Internal.MarshallTransformat | |
<#=new string(' ', level * 4)#> { | ||
<#=new string(' ', level * 4)#> context.Writer.WritePropertyName("<#=member.MarshallName#>"); | ||
<#+ | ||
string memberProperty = variableName + "." + member.PropertyName + (member.IsNullable ? ".Value" : string.Empty); | ||
string memberProperty = variableName + "." + member.PropertyName; | ||
// Only append .Value for nullable types that aren't already complex types | ||
if (member.IsNullable && !member.IsStructure && !member.IsList && !member.IsMap) | ||
{ | ||
memberProperty += ".Value"; | ||
} | ||
if(member.IsStructure || member.IsList || member.IsMap) | ||
{ | ||
this.ProcessStructure(level + 1, variableName + "." + member.PropertyName, member.Shape); | ||
|
@@ -153,19 +158,7 @@ namespace <#= this.Config.Namespace #>.Model.Internal.MarshallTransformat | |
} | ||
else if(structure.IsMap) | ||
{ | ||
#> | ||
<#=new string(' ', level * 4)#> context.Writer.WriteStartObject(); | ||
<#=new string(' ', level * 4)#> foreach (var <#=flatVariableName#>Kvp in <#=variableName#>) | ||
<#=new string(' ', level * 4)#> { | ||
<#=new string(' ', level * 4)#> context.Writer.WritePropertyName(<#=flatVariableName#>Kvp.Key); | ||
<#=new string(' ', level * 4)#> var <#=flatVariableName#>Value = <#=flatVariableName#>Kvp.Value; | ||
|
||
<#+ | ||
ProcessStructure(level + 1, flatVariableName + "Value", structure.ValueShape); | ||
#> | ||
<#=new string(' ', level * 4)#> } | ||
<#=new string(' ', level * 4)#> context.Writer.WriteEndObject(); | ||
<#+ | ||
ProcessMap(level, variableName, structure); | ||
} | ||
else if(structure.IsDocument) | ||
{ | ||
|
@@ -207,25 +200,126 @@ namespace <#= this.Config.Namespace #>.Model.Internal.MarshallTransformat | |
|
||
} | ||
} | ||
|
||
protected void ProcessMap(int level, string variableName, Shape structure) | ||
{ | ||
string flatVariableName = variableName.Replace(".", ""); | ||
#> | ||
<#=new string(' ', level * 4)#> context.Writer.WriteStartObject(); | ||
<#=new string(' ', level * 4)#> foreach (var <#=flatVariableName#>Kvp in <#=variableName#>) | ||
<#=new string(' ', level * 4)#> { | ||
<#=new string(' ', level * 4)#> context.Writer.WritePropertyName(<#=flatVariableName#>Kvp.Key); | ||
<#=new string(' ', level * 4)#> var <#=flatVariableName#>Value = <#=flatVariableName#>Kvp.Value; | ||
|
||
<#+ // Check for null values - only null checks for sparse maps as defined in customizations | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @boblodgett I could be convinced either way. Should we also include the logic for sparse lists even though we don't have a test for this? There are tests right now that we are skipping for example: https://github.com/aws/aws-sdk-net/blob/main/generator/ProtocolTestsGenerator/smithy-dotnet-codegen/src/main/java/software/amazon/smithy/dotnet/codegen/customizations/ProtocolTestCustomizations.java#L36 There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I am ok with backlog item for it. Nothing uses it right now anyway and C2J doesn't support sparse. |
||
|
||
bool isNullableMap = false; | ||
AlexDaines marked this conversation as resolved.
Show resolved
Hide resolved
|
||
if (this.Structure != null) | ||
{ | ||
var memberWithMap = this.Structure.Members.FirstOrDefault(m => m.PropertyName == variableName.Split('.').Last()); | ||
isNullableMap = (memberWithMap != null && memberWithMap.UseNullable); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Not blocking but another slightly more compact way to do this is: |
||
} | ||
|
||
if (isNullableMap) | ||
{ | ||
#> | ||
<#=new string(' ', level * 4)#> if (<#=flatVariableName#>Value == null) | ||
<#=new string(' ', level * 4)#> { | ||
<#=new string(' ', level * 4)#> context.Writer.WriteNullValue(); | ||
<#=new string(' ', level * 4)#> } | ||
<#=new string(' ', level * 4)#> else | ||
<#=new string(' ', level * 4)#> { | ||
<#+ | ||
protected void DetermineCustomMarshallerJsonWriteMethod(Member member, string memberProperty, int level) | ||
{ | ||
if (String.Equals(member.CustomMarshallerTransformation,"Amazon.Util.AWSSDKUtils.ConvertToUnixEpochMilliseconds", StringComparison.OrdinalIgnoreCase)) | ||
{ | ||
} | ||
|
||
if(structure.ValueShape.IsBoolean) | ||
{ | ||
if(isNullableMap) | ||
{ | ||
#> | ||
<#=new string(' ', level * 4)#> context.Writer.WriteNumberValue(<#=member.CustomMarshallerTransformation#>(<#=memberProperty#>)); | ||
<#=new string(' ', level * 4)#> context.Writer.WriteBooleanValue(<#=flatVariableName#>Value.Value); | ||
<#+ | ||
} | ||
else | ||
{ | ||
} | ||
else | ||
{ | ||
#> | ||
<#=new string(' ', level * 4)#> context.Writer.WriteStringValue(<#=member.CustomMarshallerTransformation#>(<#=memberProperty#>)); | ||
<#=new string(' ', level * 4)#> context.Writer.WriteBooleanValue(<#=flatVariableName#>Value); | ||
<#+ | ||
} | ||
} | ||
} | ||
} | ||
else if(structure.ValueShape.IsInt || structure.ValueShape.IsLong || structure.ValueShape.IsFloat || structure.ValueShape.IsDouble) | ||
{ | ||
if(isNullableMap) | ||
{ | ||
#> | ||
<#=new string(' ', level * 4)#> context.Writer.WriteNumberValue(<#=flatVariableName#>Value.Value); | ||
<#+ | ||
} | ||
else | ||
{ | ||
#> | ||
<#=new string(' ', level * 4)#> context.Writer.WriteNumberValue(<#=flatVariableName#>Value); | ||
<#+ | ||
} | ||
} | ||
else if(structure.ValueShape.IsTimeStamp) | ||
{ | ||
if(isNullableMap) | ||
{ | ||
if (structure.ValueShape.data[Shape.TimestampFormatKey] != null && !string.Equals(structure.ValueShape.data["timestampFormat"].ToString(), "unixTimestamp")) | ||
{ | ||
#> | ||
<#=new string(' ', level * 4)#> context.Writer.WriteStringValue(<#=flatVariableName#>Value.Value); | ||
<#+ | ||
} | ||
else | ||
{ | ||
#> | ||
<#=new string(' ', level * 4)#> context.Writer.WriteNumberValue(Convert.ToInt64(StringUtils.FromDateTimeToUnixTimestamp(<#=flatVariableName#>Value.Value))); | ||
<#+ | ||
} | ||
} | ||
else | ||
{ | ||
if (structure.ValueShape.data[Shape.TimestampFormatKey] != null && !string.Equals(structure.ValueShape.data["timestampFormat"].ToString(), "unixTimestamp")) | ||
{ | ||
#> | ||
<#=new string(' ', level * 4)#> context.Writer.WriteStringValue(<#=flatVariableName#>Value); | ||
<#+ | ||
} | ||
else | ||
{ | ||
#> | ||
<#=new string(' ', level * 4)#> context.Writer.WriteNumberValue(Convert.ToInt64(StringUtils.FromDateTimeToUnixTimestamp(<#=flatVariableName#>Value))); | ||
<#+ | ||
} | ||
} | ||
} | ||
else | ||
AlexDaines marked this conversation as resolved.
Show resolved
Hide resolved
|
||
{ | ||
if(isNullableMap) | ||
{ | ||
ProcessStructure(level + 2, flatVariableName + "Value", structure.ValueShape); | ||
} | ||
else | ||
{ | ||
ProcessStructure(level + 1, flatVariableName + "Value", structure.ValueShape); | ||
} | ||
} | ||
|
||
// Close the else block for nullable maps | ||
if (isNullableMap) | ||
{ | ||
#> | ||
<#=new string(' ', level * 4)#> } | ||
<#+ | ||
} | ||
#> | ||
<#=new string(' ', level * 4)#> } | ||
<#=new string(' ', level * 4)#> context.Writer.WriteEndObject(); | ||
<#+ | ||
} | ||
|
||
/// https://smithy.io/2.0/aws/protocols/aws-restjson1-protocol.html#json-shape-serialization | ||
/// timestamps in json protocols use unixtimestamp if none is specified (by default) | ||
protected void DetermineNormalJsonWriteMethod(Shape shape, string memberProperty, int level) | ||
|
@@ -256,6 +350,7 @@ namespace <#= this.Config.Namespace #>.Model.Internal.MarshallTransformat | |
} | ||
else if (shape.IsInt || shape.IsLong || shape.IsFloat || shape.IsDouble) | ||
{ | ||
// Simple numeric value | ||
#> | ||
<#=new string(' ', level * 4)#> context.Writer.WriteNumberValue(<#=memberProperty#>); | ||
<#+ | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -389,6 +389,17 @@ | |
"output":{"shape":"JsonMapsInputOutput"}, | ||
"documentation":"<p>The example tests basic map serialization.</p>" | ||
}, | ||
"SparseJsonMaps":{ | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. These files come from a repo and can't be changed. If you did this to get the models generated that is fine but you will have to copy the generated code to the partial class and then undo these *.json files. |
||
"name":"SparseJsonMaps", | ||
"http":{ | ||
"method":"POST", | ||
"requestUri":"/SparseJsonMaps", | ||
"responseCode":200 | ||
}, | ||
"input":{"shape":"SparseJsonMapsInputOutput"}, | ||
"output":{"shape":"SparseJsonMapsInputOutput"}, | ||
"documentation":"<p>The example tests serialization of JSON map values in sparse maps.</p>" | ||
}, | ||
"JsonTimestamps":{ | ||
"name":"JsonTimestamps", | ||
"http":{ | ||
|
@@ -1466,6 +1477,16 @@ | |
"denseSetMap":{"shape":"DenseSetMap"} | ||
} | ||
}, | ||
"SparseJsonMapsInputOutput":{ | ||
"type":"structure", | ||
"members":{ | ||
"sparseStructMap":{"shape":"SparseStructMap"}, | ||
"sparseNumberMap":{"shape":"SparseNumberMap"}, | ||
"sparseBooleanMap":{"shape":"SparseBooleanMap"}, | ||
"sparseStringMap":{"shape":"SparseStringMap"}, | ||
"sparseSetMap":{"shape":"SparseSetMap"} | ||
} | ||
}, | ||
"JsonTimestampsInputOutput":{ | ||
"type":"structure", | ||
"members":{ | ||
|
@@ -1929,6 +1950,31 @@ | |
} | ||
}, | ||
"union":true | ||
}, | ||
"SparseBooleanMap":{ | ||
"type":"map", | ||
"key":{"shape":"String"}, | ||
"value":{"shape":"Boolean"} | ||
}, | ||
"SparseNumberMap":{ | ||
"type":"map", | ||
"key":{"shape":"String"}, | ||
"value":{"shape":"Integer"} | ||
}, | ||
"SparseSetMap":{ | ||
"type":"map", | ||
"key":{"shape":"String"}, | ||
"value":{"shape":"StringList"} | ||
}, | ||
"SparseStringMap":{ | ||
"type":"map", | ||
"key":{"shape":"String"}, | ||
"value":{"shape":"String"} | ||
}, | ||
"SparseStructMap":{ | ||
"type":"map", | ||
"key":{"shape":"String"}, | ||
"value":{"shape":"GreetingStruct"} | ||
} | ||
}, | ||
"documentation":"<p>A REST JSON service that sends JSON requests and responses.</p>" | ||
|
This file was deleted.
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.
Why did we add back in two more skips in here? All of the tests should be removed from VNextTests before complete or moved to the main skip section with information why it was skipped.
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.
I was assuming this was because he needs to rebase?