-
Notifications
You must be signed in to change notification settings - Fork 299
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Measurement of Method protection against nullability of arguments. (#575
) This PR is a followup to enable nullability inference implemented in [AutoFixer](https://github.com/nimakarimipour/NullAwayAutoFixer). This PR provides the facility to measure protection of methods against nullability of arguments. When activated, it transforms all method arguments's state at certain index to `@Nullable`.
- Loading branch information
1 parent
85d93c2
commit 3021f2b
Showing
5 changed files
with
181 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
60 changes: 60 additions & 0 deletions
60
nullaway/src/main/java/com/uber/nullaway/handlers/MethodParamNullableInjectorHandler.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
/* | ||
* Copyright (c) 2022 Uber Technologies, Inc. | ||
* | ||
* Permission is hereby granted, free of charge, to any person obtaining a copy | ||
* of this software and associated documentation files (the "Software"), to deal | ||
* in the Software without restriction, including without limitation the rights | ||
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
* copies of the Software, and to permit persons to whom the Software is | ||
* furnished to do so, subject to the following conditions: | ||
* | ||
* The above copyright notice and this permission notice shall be included in | ||
* all copies or substantial portions of the Software. | ||
* | ||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | ||
* THE SOFTWARE. | ||
*/ | ||
|
||
package com.uber.nullaway.handlers; | ||
|
||
import com.uber.nullaway.Config; | ||
import com.uber.nullaway.Nullness; | ||
import com.uber.nullaway.dataflow.AccessPath; | ||
import com.uber.nullaway.dataflow.NullnessStore; | ||
import com.uber.nullaway.fixserialization.FixSerializationConfig; | ||
import java.util.List; | ||
import org.checkerframework.nullaway.dataflow.cfg.UnderlyingAST; | ||
import org.checkerframework.nullaway.dataflow.cfg.node.LocalVariableNode; | ||
|
||
/** | ||
* This handler transforms method parameter's state at index {@link | ||
* FixSerializationConfig#paramTestIndex} for all methods to {@code @Nullable}. It provides the | ||
* facility to measure protection of methods against nullability of each argument. This handler is | ||
* activated only if {@link FixSerializationConfig#methodParamProtectionTestEnabled} is enabled. | ||
*/ | ||
public class MethodParamNullableInjectorHandler extends BaseNoOpHandler { | ||
|
||
private final FixSerializationConfig config; | ||
|
||
public MethodParamNullableInjectorHandler(Config config) { | ||
this.config = config.getSerializationConfig(); | ||
} | ||
|
||
@Override | ||
public NullnessStore.Builder onDataflowInitialStore( | ||
UnderlyingAST underlyingAST, | ||
List<LocalVariableNode> parameters, | ||
NullnessStore.Builder result) { | ||
int index = config.paramTestIndex; | ||
if (index >= parameters.size() || !(underlyingAST instanceof UnderlyingAST.CFGMethod)) { | ||
return super.onDataflowInitialStore(underlyingAST, parameters, result); | ||
} | ||
result.setInformation(AccessPath.fromLocal(parameters.get(index)), Nullness.NULLABLE); | ||
return result; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters