https://github.com/MutabilityDetector/MutabilityDetector
Lightweight analysis tool for detecting mutability in Java classes
https://github.com/MutabilityDetector/MutabilityDetector
Last synced: about 2 months ago
JSON representation
Lightweight analysis tool for detecting mutability in Java classes
- Host: GitHub
- URL: https://github.com/MutabilityDetector/MutabilityDetector
- Owner: MutabilityDetector
- License: apache-2.0
- Created: 2012-11-27T23:16:32.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2023-10-06T03:03:56.000Z (over 1 year ago)
- Last Synced: 2025-02-07T07:32:13.634Z (2 months ago)
- Language: Java
- Size: 10.4 MB
- Stars: 240
- Watchers: 18
- Forks: 76
- Open Issues: 28
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
- awesome-java - Mutability Detector
README
[](http://www.javadoc.io/doc/org.mutabilitydetector/MutabilityDetector)
[](mailto:[email protected])
[](https://gitter.im/MutabilityDetector/main?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
[](https://travis-ci.org/MutabilityDetector/MutabilityDetector)## What is Mutability Detector?
Mutability Detector is designed to analyse Java classes and report on whether instances of a given class are immutable. It can be used:* In a unit test, with an assertion like `assertImmutable(MyClass.class)`. Is your class actually immutable? What about after that change you just made?
* As a FindBugs plugin. Those classes you annotated with `@Immutable`, are they actually?
* At runtime. Does your API require being given immutable objects?
* From the command line. Do you want to quickly run Mutability Detector over an entire code base?
## Why Try To Detect Mutability?Developing classes to be immutable has several benefits. An immutable object is one which cannot be changed once it is constructed. While writing concurrent programs, using immutable objects can greatly simplify complex systems, as sharing an object across threads is much safer. There are a few rules for what makes an object immutable, and it is easy to break the rules and render the object unsafe. This could lead to subtle, hard-to-detect bugs which could lower the integrity of the system. Using an automated tool to recognise mutability where it's not intended can reduce the complexity of writing immutable classes.
Mutability Detector analyses on the strict side, very few classes are found to be perfectly immutable, for instance, java.lang.String and java.lang.Integer are not immutable because of a non-final field, and primitive array field, respectively. Mutability Detector will not be released under a 1.0 version until these cases can be correctly analysed.
If this sounds like it may be interesting or useful to you, continue reading for more information on getting started. You may also want to take a look at the [Mutability Detector Blog](http://mutability-detector.blogspot.co.uk/).
## Getting Started
To use Mutability Detector directly, either from the command line, at runtime in your application, or as part of your unit tests, grab the jar available [from Maven Central](https://search.maven.org/remote_content?g=org.mutabilitydetector&a=MutabilityDetector&v=LATEST). Or you can declare it in your Maven-compatible build tool, with the following coordinates:
org.mutabilitydetector
MutabilityDetector
[latest version here]
test
[](http://www.javadoc.io/doc/org.mutabilitydetector/MutabilityDetector)### Using Mutability Detector in Unit Testing
Just add MutabilityDetector to your unit testing classpath. Adding your first assertion is as simple as:import static org.mutabilitydetector.unittesting.MutabilityAssert.assertImmutable;
@Test public void checkMyClassIsImmutable() {
assertImmutable(MyClass.class);
}
Though it is possible (or likely) that you will have to configure the assertion to deal with any false positives that arise. See the [JavaDoc on `MutabilityAssert`](https://www.javadoc.io/page/org.mutabilitydetector/MutabilityDetector/latest/org/mutabilitydetector/unittesting/MutabilityAssert.html) for further information.### Using Mutability Detector from the Command Line
An example of how to run it is probably the most useful. If you want to analyse MyCodebase.jar use:
`java -jar MutabilityDetector.jar -classpath path/to/MyCodebase.jar`
Mutability Detector can handle jars as seen above, or directories of class files (thanks go to the authors of [classpath-explorer](http://code.google.com/p/classpath-explorer/)). So if your codebase was in the filesystem as directories and .class files, and the directory MyCodebase was the root of that, you could run:
`java -jar MutabilityDetector.jar -classpath path/to/MyCodebase`
The output is a list of the analysed classes against the result of asking "Is immutable?", ie. `IMMUTABLE`, `NOT_IMMUTABLE`, `EFFECTIVELY_IMMUTABLE`.
Execute `java -jar MutabilityDetector.jar --help` for a complete listing of the command line options.
### Using Mutability Detector within Your Application
It is possible to use Mutability Detector at runtime. For example, consider if you have a library which requires that objects passed to it are immutable. On receiving such an object, you can ask Mutability Detector if it is actually immutable.
Check out the code snippet in [this example](https://github.com/MutabilityDetector/ClientOfMutabilityDetector/blob/master/src/main/java/org/mutabilitydetector/runtime/RuntimeAnalysisExample.java), which shows correct usage against trunk code.
### FindBugs Plugin
To have Mutability Detector inspect your classes during a FindBugs analysis, grab the MutabilityDetector4FindBugs jar, and configure it to be picked up by FindBugs during a normal analysis, as described [here](http://code.google.com/p/findbugs/wiki/DetectorPluginTutorial#Loading_Our_Plugin).
Mutability Detector will perform it's analysis on any classes annotated with `@Immutable`.
MutabilityDetector4FindBugs is also available from Maven Central, with the following coordinates:
org.mutabilitydetector
MutabilityDetector4FindBugs
[latest version here]
test
[](http://www.javadoc.io/doc/org.mutabilitydetector/MutabilityDetector4FindBugs)