← All recipes
Open source

Finds flow between two methods

Recipe IDorg.openrewrite.analysis.search.FindFlowBetweenMethods
Artifactorg.openrewrite.meta:rewrite-analysis

Takes two patterns for the start/end methods to find flow between.

Single recipeApache 2.0

Usage

You’ll need the Moderne CLI configured before running the command below.

mod run . --recipe org.openrewrite.analysis.search.FindFlowBetweenMethods --recipe-option "startMethodPattern=java.util.List add(..)" --recipe-option "endMethodPattern=java.util.List add(..)" --recipe-option "target=<target>" --recipe-option "flow=<flow>"

If the recipe isn’t available locally, install it with:

mod config recipes jar install org.openrewrite.meta:rewrite-analysis:2.37.0

Options

NameTypeDescription
startMethodPatternrequiredStringA method pattern that is used to find matching the start point's method invocations.
e.g. java.util.List add(..)
startMatchOverridesBooleanWhen enabled, find methods that are overrides of the method pattern.
endMethodPatternrequiredStringA method pattern that is used to find matching the end point's method invocations.
e.g. java.util.List add(..)
endMatchOverridesBooleanWhen enabled, find methods that are overrides of the method pattern.
targetrequiredStringThe part of the method flow should traverse to
flowrequiredStringWhen enabled, show the data or taint flow of the method invocation.

Data tables

Structured output this recipe can produce.

  • Source files that had resultsSource files that were modified by the recipe run.org.openrewrite.table.SourcesFileResults
  • Source files that had search resultsSearch results that were found during the recipe run.org.openrewrite.table.SearchResults
  • Source files that errored on a recipeThe details of all errors produced by a recipe run.org.openrewrite.table.SourcesFileErrors
  • Recipe performanceStatistics used in analyzing the performance of recipes.org.openrewrite.table.RecipeRunStats