A framework for model-agnostic software performance analysis. The framework currently features:
- An opinionated way to define performance analyzers
- A strictly-typed definition of analysis results
Attention: This project is a work in progress and as such, the API is unstable and may change anytime. For recent changes refer to the change log.
Define a dependency to this project using JitPack:
<dependency>
<groupId>com.github.DECLARE-Project</groupId>
<artifactId>fastpan</artifactId>
<version>v1.0.0</version>
</dependency>
Make sure to define the JitPack repository:
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
Download the latest release from the GitHub releases.
- Check out this project from source.
- Hop on a shell and run
mvn clean install
. You may also do this from your favorite IDE. - You may export this project as standalone JAR library including all required dependencies by running
mvn clean package
. The JAR file is then created in/target/*.jar
.
To define a performance analyzer, you need to implement two interfaces: PerformanceAnalyzer
and AnalysisContext
. Both interfaces are generic and require you to write the analyzer for a certain <SYSTEM>
, which refers to the class you use to model the system to be analyzed.
The PerformanceAnalyzer
can be seen as a factory to setup and configure the actual analysis. By doing so, the variability analysis can make use of the analyzer to setup and run the analysis for an arbitrary number of systems. Implementing a PerformanceAnalyzer
is straightforward:
public class MyAnalyzer implements PerformanceAnalyzer<MySystem, MyAnalysisContext> {
/**
* Returns the capabilities of this performance analysis approach.
*/
Set<AnalysisCapability> capabilities() {
return new HashSet<>(Arrays.asList(AnalysisCapability.FAST_EXECUTION));
}
/**
* Determines whether the analysis approach supports the given system.
*/
boolean supports(MySystem system) {
return true;
}
/**
* Sets up and configures the analysis.
*/
MyAnalysisContext setupAnalysis(MySystem system) {
// setup dependencies, configurations, and so on
return new MyAnalysisContext(system);
}
}
The AnalysisContext
now defines the actual analysis and provides the results:
public class MyPerformanceResult extends AbstractPerformanceResult {
// tailor the result to provide additional context for MySystem
}
public class MyAnalysisContext implements AnalysisContext<MySystem> {
private MySystem system;
public MyAnalysisContext(MySystem system) { this.system = system; }
/**
* Runs the analysis and yields the performance results.
*/
PerformanceResult<?> analyze() {
// do some heavy computation
MyPerformanceResult result = new MyPerformanceResult();
// attach a mean service time of 240ms to a specific element of MySystem
result.attach(Attach.to(mySystemElement).serviceTime(Duration.ofMilliseconds(240)).mean());
return result;
}
}
TBD.
There are performance analyzers in the wild using this abstraction. Take them and integrate them into your project.
- palladio-headless: Binds to the Palladio LQNS solver to deliver analysis results. Works without Eclipse and is open to be extended by more analyzers of the Palladio tool suite.
- fastpan-variability-analyzer: Provides a decision-tree based approach to analyze a variability-aware performance model.
Want to add your analyzer to the list? Just submit a pull request.
To release a new version, run the following commands:
mvn release:prepare
mvn release:perform -Darguments="-Dmaven.javadoc.skip=true"
Open a PR :-)
See all changes made to this project in the change log. This project follows semantic versioning.
This project is licensed under the terms of the MIT license.
Project created and maintained by Fabian Keller in the scope of his master's thesis.