Open DhZero opened 3 years ago
/cc @dsnet
This proposal has been added to the active column of the proposals project and will now be reviewed at the weekly proposal review meetings. — rsc for the proposal review group
cc @mvdan
The idea of using errors.As
instead of a direct type assertion seems reasonable at face value, but I think we should be careful about how we proceed here. Currently, the error reporting is already a bit non-sensible. I'd like to see #43126 be addressed first before addressing this.
The reason I see #43126 as relevant is because it's unclear whether the error is supposed to report the location as 1) simply a struct field in a Go struct, or 2) the JSON path from the root JSON value. Currently, it is an odd mix of both. Depending on which information we intend to report, that changes how error wrapping would be performed.
Putting on hold for #43126. (If the investigation in #43126 ends up finding a suggested change then it would in turn become its own proposal.)
Placed on hold. — rsc for the proposal review group
Another issue happening on this same function is that when a custom error is returned, and this error does not wrap any JSON errors, I lose context on which field the error happened.
If possible, please wrap all error types for keeping this context.
What version of Go are you using (
go version
)?Does this issue reproduce with the latest release?
Yes
What operating system and processor architecture are you using (
go env
)?go env
OutputWhat did you do?
https://play.golang.org/p/fwgQFqafa3S
What did you expect to see?
Expected to see proper values set to err.Field and err.Struct even if error was wrapped by
fmt.Errorf()
in UnmarshalJSON of custom structure.What did you see instead?
In decode.go in addErrorContext function,
switch
won't work as expected because type mismatch. So err.Field and err.Struct will be empty even ifd.errorContext.Struct != nil || len(d.errorContext.FieldStack) > 0
condition was passed.What did you propose?
Maybe it is better to use
errors.As()
instead ofswitch
? Like this: