-
Notifications
You must be signed in to change notification settings - Fork 301
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
Issue witht lombok @Builder #321
Comments
Any updates on this, @lazaroclapp ? We are running into this constantly in our projects. |
The way Lombok Builders work (Lombok goes in and modifies the AST of |
It could also implement a sub-checker/thingamajig that is aware of Lombok's semantics and makes use of its annotations to determine nullability. Assuming that it runs at a compilation stage where those are available. |
Sure that’s what will take work 🙂 Note that with excluded class annotations, the Builder class itself won’t get checked, but the nullability annotations should still be used when checking code using the builder. |
Ah yes of course. I was just thinking it wouldn't be necessary to observe Builder classes themselves; instead just being aware of Lombok semantics. |
hmm... I don't understand why this is happening, this is the decompiled class... there's no way a null should be settable, they're checked... is there a workaround? can we make
|
opened an issue to add those annotations ^ |
Note that the issue as reported for the original code here is not that those fields can be set to What is the exact error reported for the code in the |
Yes, I'd also like to see the error message you're getting. Also, note that there is no easy way for Error Prone / NullAway to analyze the de-Lombok'd code. So even if that code looks ok, I don't think it's going to help us. |
I think Uber is seeing the post-lombok AST, thought, at least some of the time (e.g. auto-fix sometimes fails to apply fixes internally because those are appending/prepending to AST nodes that don't exist in the source). The problem is, the AST transformations produced by Lombok don't always match what de-Lombok does when run source to source. In general, Lombok + EP is a big source of issues. |
note: didn't use de-lombok, just looked at the class using intellij's decompiler, and I don't see that |
who do I have to pay to make that not true? |
Not me 😄 In general, the javac compilation model is not designed to handle annotation processors mutating ASTs, which is what Lombok does. For your example, I'm guessing Lombok generates a constructor that is invoked by the generated Builder, and injects that constructor into the |
is there a primer anywhere on how error prone works? how I could write my own plugin? I'd work on this problem if I had any clue where to begin. right now this is a very opaque problem to me. |
@xenoterracide what problem are you trying to solve? The specific problem of NullAway false positives with Lombok builders, or general incompatibility and flakiness between Error Prone and Gradle? The former is probably fixable with a bit of work. My impression is the latter will be much more difficult, and would probably be greatly helped by support / interest from the Lombok authors in compatibility. |
I presume you mean "error prone and lombok" not gradle, and yes I mean compatibility in general, as in some cases this is the only problem, in others I was crashing EP completely. Currently stuck between terse and ... strict, but if I could figure out how to fix that. |
I think your best bet is to just disable the Error Prone checks that are crashing. |
Just duplicating workaround from Lombok issue: you can safely declare builder inner class in your main class:
see how people make Jackson and Lombok builders work together: https://stackoverflow.com/a/48801237/2908793 |
@etki have you tested that the workaround actually works for removing NullAway warnings? I don’t see how it would work. |
@msridhar It's not NullAway itself, it's a way to set SuppressWarnings on lombok builder |
I don’t think the warnings are on the builder. They are on the fields that look like they have no initialization. |
This the current issue. No matter how I try(adding @nullable or @NotNull) the error will still pop out. It seems that it has something to do with the lombok @builder
The text was updated successfully, but these errors were encountered: