Migrate remaining checkNotNull to checkArgumentNotNull/checkStateNotNull in options package #18719#37654
Conversation
Summary of ChangesHello @chandrakiranbolla1, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed! This pull request refactors null validation logic within the Apache Beam SDK's Highlights
🧠 New Feature in Public Preview: You can now enable Memory to help Gemini Code Assist learn from your team's feedback. This makes future code reviews more consistent and personalized to your project's style. Click here to enable Memory in your admin console. Changelog
Activity
Using Gemini Code AssistThe full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips. Invoking Gemini You can request assistance from Gemini at any point by creating a comment using either
Customization To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a Limitations & Feedback Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for Github and other Google products, sign up here. You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension. Footnotes
|
…ull in options package Replace Guava checkNotNull (throws NullPointerException) with Beam's checkArgumentNotNull (throws IllegalArgumentException) for argument validation and checkStateNotNull (throws IllegalStateException) for internal state validation. Files modified: - SdkHarnessOptions.java: checkStateNotNull for return value check - PipelineOptionsFactory.java: checkArgumentNotNull for argument check - ValueProvider.java: checkArgumentNotNull + checkStateNotNull - ValueProviders.java: checkStateNotNull for parsed result check - PipelineOptionsValidator.java: checkArgumentNotNull for argument checks - ProxyInvocationHandler.java: checkArgumentNotNull for argument check - MetricNameFilter.java: cleanup commented-out import Fixes apache#18719
fc3f1b7 to
02b1729
Compare
|
R: @kennknowles |
|
Stopping reviewer notifications for this pull request: review requested by someone other than the bot, ceding control. If you'd like to restart, comment |
kennknowles
left a comment
There was a problem hiding this comment.
Thanks! This moves the codebase in a good direction. I appreciate you noticing when to use checkStateNotNull versus checkArgumentNotNull also :-)
One note if you continue to contribute in this area: it looks like many of these null checks could eventually be removed, as they are checking things that are not marked @Nullable. This usually happens in places where people have disabled nullness type checking, so once nullness type checking is re-enabled we should discover we can remove the checks.
|
I've re-run the flaky tests. Let me know when they are green, if I am too slow to come back to this and merge. |
|
@kennknowles All the tests are now green! Thanks for re-running the flaky ones and for the helpful tip regarding the null checks. |
Addresses #18719
What happened
Currently,
checkNotNullin thesdks/java/core/optionspackage throws aNullPointerException(implying a bug in the code), even when validating user-supplied arguments.What was done
Replaced Guava's
checkNotNullwith Beam's checkArgumentNotNull (throwsIllegalArgumentException) for argument validation and checkStateNotNull (throwsIllegalStateException) for internal state validation.Files modified:
Testing Done
./gradlew -p sdks/java/core compileJavasuccessfully../gradlew :sdks:java:core:teston JDK 11. No new tests are needed since the behavior remains the same (just throwing preferred exception types).-------------------------------------------------------------------------
[#<GitHub issue id>] PR title ...