-
-
Notifications
You must be signed in to change notification settings - Fork 138
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
[protobuf] . can't resolve inner types #73
Comments
Unfortunately I can not reproduce this: if I load schema you specify, there is no error. ProtobufSchema schema = MAPPER.schemaLoader()
.load(new StringReader(SCHEMA_STR)); with schema s above. |
Thanks for the quick response. I simplified my test code. The only difference is that I specified the
And then the stacktrace
|
Thanks! Yes, that does trigger the issue for me too, for 2.8 branch and probably |
(accidental fix by github, due to comment) |
I am trying to understand the code base, and I saw the type resolver tries to find the name recursively but it's a little hard for me to fix. I wonder if it's easy for you to fix. My idea is to calculate fully qualified name beginning with the package name at the time of parsing so that the type resolver does not have to traverse the type tree. Do you think it's a sane approach? |
I just noticed FieldElement or DataType.NamedType class does not have methods that returns qualified name or type unlike TypeElement class that has Looks like the Wire, the successor of the ProtoParser, was created for the very reason. I hope someday ProtoParser will be replaced for Wire in this project. For now, I decided to use other solutions. Thanks. |
@knoguchi I was hoping to fix this along with #140, as I now understand the issue finally (it has been a while but I got back to here). Scoped resolution works with latest fixes but only in certain orders of traversal; I'll have to rewrite code a bit. Should get done for 2.10.0 however, need to get 2.9.8 out first. |
When messages are defined as below, the parser failed to resolve t1.i1 type.
Error
The text was updated successfully, but these errors were encountered: