com.github.ferstl.jarscan.SequenceSearchMojo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jitwatch-jarscan-maven-plugin Show documentation
Show all versions of jitwatch-jarscan-maven-plugin Show documentation
A Maven plugin that scans the project artifact and its dependencies for methods that cannot be inlined by the JIT
compiler. It uses the JarScan utility from the JITWatch project to do that.
See https://github.com/AdoptOpenJDK/jitwatch .
The newest version!
package com.github.ferstl.jarscan;
import org.adoptopenjdk.jitwatch.jarscan.IJarScanOperation;
import org.adoptopenjdk.jitwatch.jarscan.sequencesearch.SequenceSearchOperation;
import org.apache.maven.plugins.annotations.LifecyclePhase;
import org.apache.maven.plugins.annotations.Mojo;
import org.apache.maven.plugins.annotations.Parameter;
import org.apache.maven.plugins.annotations.ResolutionScope;
import org.codehaus.plexus.util.StringUtils;
/**
* List methods containing the specified bytecode sequence.
*
* @since 1.1
*/
@Mojo(
name = "sequenceSearch",
aggregator = false,
defaultPhase = LifecyclePhase.VERIFY,
requiresDependencyCollection = ResolutionScope.TEST,
requiresDependencyResolution = ResolutionScope.TEST,
requiresDirectInvocation = false,
threadSafe = true)
public class SequenceSearchMojo extends AbstractJarScanMojo {
/**
* Comma separated sequence of bytecode instructions.
*
* @since 1.1
*/
@Parameter(property = "sequence", required = true)
private String sequence;
@Override
protected String validateMojoParameters() {
if (StringUtils.isBlank(this.sequence)) {
return "sequence must not be empty.";
}
return null;
}
@Override
protected IJarScanOperation createOperation() {
return new SequenceSearchOperation(this.sequence);
}
}