-
Notifications
You must be signed in to change notification settings - Fork 3
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
Embedded types are not migrated #9
Comments
Hey @unmultimedio, thanks for filing this issue. Yes, embedded types are currently not recognized by the Inside Google, we recommend against embedding protobuf generated message types into a struct. It’s an error-prone pattern, because then your struct implements the We recommend naming the struct field, i.e.: type MyFoo struct {
Foo *foopkg.GeneratedFoo
// some additional fields
} For now, I recommend doing this refactoring first and then reaching for If many people encounter this issue, we can see about implementing support for it (please use the thumbs up vote on the first comment of this issue to signal you also ran into the issue). |
Thanks for your reply, I'll take a look to see if we can easily do that refactor to run the migration tool again. Quite similarly, just realized that types definitions and aliases based off generated types have this same issue: type MyFooT foopkg.GeneratedFoo
type MyFooA = foopkg.GeneratedFoo Then I'd expect both types to be recognized for migration, but they're not. Should this be a separate issue? |
Hello again and happy new year!
This is also an anti-pattern: A Go type that binds another named type possesses the underlying representation of the type (i.e., its memory layout), but not the behavior of the type (i.e., its method set). This is problematic for dynamic packages such as cmp that need to interrogate arbitrary types using Go reflection. This form of type declaration hides type information about the underlying protobuf message from Go reflection. My suggestion is to eliminate this pattern from your code base.
Type aliases on the other hand should probably work. Can you file a feature request for supporting type aliases please? |
Thanks for the reply and recommendations, and happy new year to you too! filed the alias feature request here #11 Closing this one one. |
Hello, if I have a generated type embedded in another type, the tool does not recognize it for migration:
I expect:
But the tool does not recognize
MyFoo
as a type that needs migration.The text was updated successfully, but these errors were encountered: