-
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 <bradfitz@golang.org>
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. |
Hmm, that is a strong argument for option 3 |
Given a struct type var x T
x.f1 = v1
x.f2 = v2
... for (possibly embedded and possibly exported) struct fields T{f1: v1, f2: v2, ...} and vice versa. This rule alone would take care of visibility across packages and potential field name ambiguities. It would also explain what happens with pointer indirections (it will panic). This is perhaps the simplest and most intuitive rule and would permit code transformation from one style to the other without change of semantics (which is currently the case for the restricted form of struct literals). If the compiler is permitted to report an error when a struct literal is known to panic (which is easy to decide) then using a struct literal would be the "safer" choice. But one would lose the ability to transform code between the two variants without semantic change. I don't know if that's a good trade-off. |
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 <jens.erat@daimler.com>
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 <jfajersk@redhat.com>
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 <jfajersk@redhat.com>
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 <jfajersk@redhat.com>
* 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 <jfajersk@redhat.com> * 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 <jfajersk@redhat.com> * 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 <jfajersk@redhat.com> * feat: bump prometheus-operator dependency to v0.55.1 Signed-off-by: Jan Fajerski <jfajersk@redhat.com> * 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 <jfajersk@redhat.com>
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. |
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: