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

proposal: encoding/json: MustMarshal and MustUnmarshal #38519

Closed
gastrodon opened this issue Apr 19, 2020 · 4 comments
Closed

proposal: encoding/json: MustMarshal and MustUnmarshal #38519

gastrodon opened this issue Apr 19, 2020 · 4 comments

Comments

@gastrodon
Copy link

Since both json.Marshal and json.Unmarshal may return an error, it would be nice to extend those functions to functions that must complete, or panic. This is useful for declaring vars at the head of a file, or passing the result of json.MustMarshal to a function as an argument

For comparison, consider regexp.MustCompile where you may

var foo *regexp.Regexp = regexp.MustCompile(".+")

// rest if your code

and

someFunc(regexp.MustCompile(".+")
@gopherbot gopherbot added this to the Proposal milestone Apr 19, 2020
@mvdan
Copy link
Member

mvdan commented Apr 19, 2020

How often does this really come up? When I want to set up a global variable containing JSON, which doesn't come all that often, I just do something like:

const jsonFoo = `{"foo": "bar"}`

This is of course not possible with regexp, and global regexes are pretty common, so I don't think the two packages can be compared here.

@gastrodon
Copy link
Author

Using consts was the solution that I was using before, though interpolating strings with varaibles can lead to code that is pretty ugly in my opinion. I could go back to using strings here, for example

    var test_cases [][]byte = [][]byte{
		util.MustMarshal(map[string]string{
			"email":    "fake@bar.com",
			"password": password,
		}),
		util.MustMarshal(map[string]string{
			"email":    email,
			"password": "fake",
		}),
		util.MustMarshal(map[string]string{
			"email":  email,
			"secret": "fake",
		}),
		util.MustMarshal(map[string]string{
			"email":    email,
			"password": password,
			"secret":   "fake",
		}),
	}

Where util.MustMarshal is just the panic on err wrapper mentioned, but I think string formatting is messier.

@gastrodon
Copy link
Author

I agree that these funcs would have a very limited usecase, but I would also think that it is a relatively simple implementation that is not backwards incompatible. It would panic presumable on programmer error, and save other tools from needing to add it to their projects

@mvdan
Copy link
Member

mvdan commented Apr 19, 2020

I can see how it can be useful in some niche cases, but writing your own helper function is just a handful of lines. Backwards compatibility and simplicity are not the only factors for adding API to the standard library - see https://golang.org/doc/faq#x_in_std.

These are just my thoughts, though.

@golang golang locked and limited conversation to collaborators Apr 19, 2021
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

No branches or pull requests

3 participants