-
Notifications
You must be signed in to change notification settings - Fork 17.7k
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: spec: direct reference to embedded fields in struct literals #9859
Comments
One possible argument against is that it allows you to effectively specify the same field twice, for example:
But this case already exists
and is disallowed, so maybe that isn't worth worrying about. |
FWIW, @adg and I both tripped over this independently. We both assumed |
I've wished to be to able to do this many times (go/ast is a prime example). I don't know that we ever thought through all the consequences, but it's perhaps worthwhile considering. |
Is there any known reason it wasn't considered back in #164? |
@dominikh issue #164 was about a "programmer error" or misunderstanding of the spec as written. Usually we don't look at each such error and consider a spec change. However this has come up before (it has restricted what I wanted to do in APIs significantly) so maybe it's time to at least investigate the consequences of such a language change more thoroughly. That said, language changes are really very low priority. We'll get to it when we get to it. |
r's comment on this on golang-nuts was:
|
Historically we have declined to try to provide real support for URLs that contain %2F in the path, but they seem to be popping up more often, especially in (arguably ill-considered) REST APIs that shoehorn entire paths into individual path elements. The obvious thing to do is to introduce a URL.RawPath field that records the original encoding of Path and then consult it during URL.String and URL.RequestURI. The problem with the obvious thing is that it breaks backward compatibility: if someone parses a URL into u, modifies u.Path, and calls u.String, they expect the result to use the modified u.Path and not the original raw encoding. Split the difference by treating u.RawPath as a hint: the observation is that there are many valid encodings of u.Path. If u.RawPath is one of them, use it. Otherwise compute the encoding of u.Path as before. If a client does not use RawPath, the only change will be that String selects a different valid encoding sometimes (the original passed to Parse). This ensures that, for example, HTTP requests use the exact encoding passed to http.Get (or http.NewRequest, etc). Also add new URL.EscapedPath method for access to the actual escaped path. Clients should use EscapedPath instead of reading RawPath directly. All the old workarounds remain valid. Fixes #5777. Might help #9859. Fixes #7356. Fixes #8767. Fixes #8292. Fixes #8450. Fixes #4860. Fixes #10887. Fixes #3659. Fixes #8248. Fixes #6658. Reduces need for #2782. Change-Id: I77b88f14631883a7d74b72d1cf19b0073d4f5473 Reviewed-on: https://go-review.googlesource.com/11302 Reviewed-by: Brad Fitzpatrick <[email protected]>
I have also written code that assumed this would work. Considering the reading and assignment of embedded fields work it is quite unintuitive that this doesn't. |
@neild and I were discussing this and there are two things that would have to be addressed (not showstoppers, just considerations to make):
T{E: E{}, A: 42} This is probably a compile error, much like specifying duplicate fields in struct literals today.
I also suspect that this could be done before Go 2, since it makes previously invalid Go programs valid, and shouldn't alter the meaning of existing Go programs. |
How much should we be consistent with assignments? If 1 is a compile error should the following also be a compile error? https://go.dev/play/p/ZVzskYi0ZlV For 2, in assignments you would get a runtime error. I feel the idea of allocation on the fly can obscure memory allocation and if you have multiple nested embedding a simple int assignment would do a lot more than a user would expect and surprise them. So I feel it might be better to just have a runtime error as in the case of assignment and no hidden memory allocation: https://go.dev/play/p/beA1MwFh9Y4 Also that is the behavior without embedding: |
The assignment rules already cover the case where the same value (or part of a value) appears multiple times in an assignment.
|
What should happen for the case that @zombiezen mentions above, in which a field is embedded via a pointer? Here are some possibilities:
It seems like choice 3 is the best one. The compiler can always tell how a field is embedded, so it can tell that a field is embedded via a pointer. Is it too confusing for struct literals to permit direct embedded fields but not fields embedded via pointers? |
1 or 3 are both valid options. 2 doesn't make sense given that 3 is a valid option. 3 would incentivize non-pointer embedding to get the simpler behavior even when a pointer embedding might make more sense. 1 seems more uniform and hence easier to use. Composite literals aren't necessary. They exist to make things easier. |
You could also only implicitly create the pointer if you could explicitly create it. In @jba's example you couldn't write |
Possible alternatives:
|
If we implicitly allocating embedded pointers, if you have a long chain of embedded pointers, then it's non-obvious that:
is implicitly expanding to:
I don't think I like having non-obvious allocations like that. |
@griesemer, your rule seems obvious (in hindsight). Could you go further and say that the sequence of assignments is actually the meaning of the struct literal? Interestingly, the spec never really gives the exact meaning of a struct literal. It strongly suggests it by saying keys are field names and values must be assignable to their respective fields. It even says omitted fields get the zero value. But it never actually says that the given values are assigned to the fields. |
@ghasemloo The links you've provided are not public 🛡️ not sure if that was intentional? |
If actually running the influxdb tests (not included in Makefile), a compiler error occured ("cannot use promoted field in struct literal of type") because direct access to promoted fields is only allowed in assignments, not when initializing structs (at least, unless golang/go#9859 gets implemented). Signed-off-by: Jens Erat <[email protected]>
If E is generic using the current generics proposal, then there is nowhere to specify the type on the above proposed literal of T. |
If type E[T any] struct {
A T
}
type T1 struct {
E[int]
}
type T2[T any] struct {
E[T]
} that is, either E is instantiated with a fixed type such as In these cases the equivalent struct literals would be: T1{E[int]{A: 1}}
T2[int]{E[int]{A: 1}} and, per this proposal, it could be: T1{A: 1} // we statically know the type of A from the declaration of E[int]
T2[int]{A: 1} // we statically know the type of A from the T2 type argument So this should be doable even in the presence of generic embedded fields. Unrelated, please note that T1{E: E[int]{A: 1}}
T2[int]{E: E[int]{A: 1}} doesn't work at the moment in the generics prototype, even though it should. See also #44345 . |
Amusingly your experience today was the reverse of mine. I separately discovered #44345 in the experimental playground and then came here wondering how it impacts this issue. |
Problem: Embedded structs can as of yet not be directly referenced in struct literals. Solution: Explicitly use the embedded structs. Issues: golang/go#9859, prometheus-operator/prometheus-operator#4539 Signed-off-by: Jan Fajerski <[email protected]>
Problem: Embedded structs can as of yet not be directly referenced in struct literals. Solution: Explicitly use the embedded structs. Issues: golang/go#9859, prometheus-operator/prometheus-operator#4539 Signed-off-by: Jan Fajerski <[email protected]>
Problem: Embedded structs can as of yet not be directly referenced in struct literals. Solution: Explicitly use the embedded structs. Issues: golang/go#9859, prometheus-operator/prometheus-operator#4539 Signed-off-by: Jan Fajerski <[email protected]>
* feat: update prometheus-operator dependency in go.mod This updates the prometheus-operator go dependency to v0.55.0. This allows specifiying additional auth options in remote_write sections. Signed-off-by: Jan Fajerski <[email protected]> * fix: adjust usage of PrometheusSpec type Problem: Embedded structs can as of yet not be directly referenced in struct literals. Solution: Explicitly use the embedded structs. Issues: golang/go#9859, prometheus-operator/prometheus-operator#4539 Signed-off-by: Jan Fajerski <[email protected]> * refactor: generate dependencies from prometheus-operator repo There is no need to track the prometheus-operator dependencies, they can just be generated from the upstream artifacts. Signed-off-by: Jan Fajerski <[email protected]> * feat: bump prometheus-operator dependency to v0.55.1 Signed-off-by: Jan Fajerski <[email protected]> * refactor: generate monitoring related CRD manifests This adds a Makefile target to generate the prometheus-operator related CRD manifests with controller-gen. For this controller-gen will respect the prometheus-operator version specified in go.mod. Signed-off-by: Jan Fajerski <[email protected]>
I can't seem to find this proposal in the proposals project. Is it missing from there or is it following another review process? |
Language changes like this one mostly follow a separate process, tracked in #33892. This issue is on that list but it hasn't gotten much attention recently. |
Wanted to echo support of this! Currently there are places I have to avoid using an embedded struct to de-duplicate logic, due to dev UX overhead for downstream users w/ nested struct construction. |
👍 Agreed, this would make promoted fields much more intuitive. I thought this was already possible but was surprised to learn that embedded fields are directly gettable but not directly settable on instantiation. |
Struct literals (as opposed to var field assignments), are sometimes bringing better readability due to type My struct {
A string
Foo int
BarBaz bool
AnotherGroup1 int
AnotherGroupQuux string
}
type myEmb struct {
A string
Foo int
BarBaz bool
}
type Mye struct {
myEmb
AnotherGroup1 int
AnotherGroupQuux string
}
// Better readability due to vertical alignment.
m1 := My{
A: "abc",
Foo: 123,
BarBaz: true,
// Another group for indentation.
AnotherGroup1: 3,
AnotherGroupQuux: "c",
}
// Worse readability due to lack of alignment and also `m2` all over the place.
m2 := Mye{}
m2.A = "abc"
m2.Foo = 123
m2.BarBaz = true
m2.AnotherGroup1 = 3
m2.AnotherGroupQuux = "c" I'd be happy if this proposal is developed into a language change. |
This comment was marked as off-topic.
This comment was marked as off-topic.
I'm a relative newbie here but also ran into this today. There are six structures in a package that share seven common fields, and are always constructed using composite literals. I attempted to refactor the common fields into a base structure... but that will make the composite literals ugly and expose the internal details of the structures which are part of the package's API. |
Some of the discussion above talked about defining composite literals as effectively a shorthand for a series of assignments, and alluded to the consequences of that, but I was left a little unsure about how all of the different facts discussed above would combine and so here's a summary of what I found by experimentation. 😀 Let's use the following as a first example of the relatively-simple case this proposal was originally framed around: type A struct {
Foo string
}
type B struct {
A
Bar string
}
func main() {
// The following is a hypothetical "desugaring" of B{Foo: "foo", Bar: "bar"}
// as a series of individual field assignments.
var thingy B
thingy.Foo = "foo"
thingy.Bar = "bar"
fmt.Println(&thingy)
} So far so good. This works and achieves the desired effect of assigning Embedding a pointer to type A struct {
Foo string
}
type B struct {
*A
Bar string
}
func main() {
// The following is a hypothetical "desugaring" of B{Foo: "foo", Bar: "bar"}
// as a series of individual field assignments.
var thingy B
thingy.Foo = "foo" // PANIC!
thingy.Bar = "bar"
fmt.Println(&thingy)
} The This situation is what the earlier comment giving three options was about. Specifying struct literals as just sugar for a series of assignments effectively chooses option 2: "panic at run time with a nil dereference error". It's perhaps arguable that a composite literal is already more than just sugar over a series of assignments in that it won't let you redundantly assign to the same target twice: thingy := A{
Foo: "foo1",
Foo: "foo2", // error: duplicate field name Foo in struct literal
} ...and so it does seem very defensible to me to pick either option 1 or option 3, which I think would reframe the "composite literals are just sugar for assignments" position a little to add some additional rules... Composite literals are sugar for a series of assignments, with the following additional behaviors:
I've used the imprecise term "location" above; I originally used "address" but loosened it because map elements are not addressable but I do intend them to be considered as "locations" for the sake of this rule. Under that new definition, the "desugaring" would look something like this: type A struct {
Foo string
}
type B struct {
*A
Bar string
}
func main() {
// The following is a hypothetical "desugaring" of B{Foo: "foo", Bar: "bar"}
// as a series of individual field assignments.
var thingy B
thingy.A = new(A) // implicit allocation and assignment to thingy.A
thingy.Foo = "foo" // assignment to thingy.Foo can now succeed
thingy.Bar = "bar"
fmt.Println(&thingy)
} The following (with the same type definitions as the above example) would not be allowed due to violating the rule described in my first new behavior: B{
Foo: "foo",
A: &A{}, // error: A was already implicitly assigned by the previous entry
} B{
A: &A{},
Foo: "foo", // error: A.Foo was already implicitly assigned its zero value by the previous entry
} The variation where B{
Foo: "foo",
A: A{}, // error: A.Foo was already implicitly assigned "foo" by the previous entry
} B{
A: A{},
Foo: "foo", // error: A.Foo was already implicitly assigned its zero value by the previous entry
} Finally, a more interesting example with two fields in type A struct {
Foo string
Bar string
}
type B struct {
A
} B {
Foo: "foo",
Bar: "bar", // allowed because the previous entry only assigned to A.Foo, so A.Bar hasn't been mentioned yet
}
// desugars as:
var thingy B
thingy.Foo = "foo" // really: thingy.A.Foo
thingy.Bar = "bar" // really: thingy.A.Bar B {
Foo: "foo",
A: A{ // error: A.Foo was already assigned "foo", so we can't reassign it the zero value here
Bar: "bar",
}
}
// if not rejected as an error, would hypothetically desugar as:
var thingy B
thingy.Foo = "foo" // really: thingy.A.Foo
thingy.A = {
// effectively includes Foo: ""
Bar: "bar",
} B {
A: A{
Bar: "bar",
}
Foo: "foo", // error: A.Foo was already assigned its zero value by the previous element
}
// if not rejected as an error, would hypothetically desugar as:
var thingy B
thingy.A = {
// effectively includes Foo: ""
Bar: "bar",
}
thingy.Foo = "foo" // really: thingy.A.Foo Overall my goal in all of this was to consider what exactly it might mean to treat a composite literal as a shorthand for a series of assignments. I'm sharing it here just in case it's helpful to others thinking about that question, or in case it raises some new questions worth discussing. 😀 |
Consider
This works:
This does not:
Makes some struct literals more verbose than they need be, and makes them asymmetrical to their usage (where you can access the embedded struct's fields directly).
Can we allow it?
(cc @bradfitz)
The text was updated successfully, but these errors were encountered: