antipatterns

Palantir open source project

License

License

Categories

Categories

Ant Build Tools
GroupId

GroupId

com.palantir.antipatterns
ArtifactId

ArtifactId

antipatterns
Last Version

Last Version

1.0
Release Date

Release Date

Type

Type

jar
Description

Description

antipatterns
Palantir open source project
Project URL

Project URL

https://github.com/palantir/antipatterns
Project Organization

Project Organization

Palantir Technologies Inc
Source Code Management

Source Code Management

https://github.com/palantir/antipatterns

Download antipatterns

How to add to project

<!-- https://jarcasting.com/artifacts/com.palantir.antipatterns/antipatterns/ -->
<dependency>
    <groupId>com.palantir.antipatterns</groupId>
    <artifactId>antipatterns</artifactId>
    <version>1.0</version>
</dependency>
// https://jarcasting.com/artifacts/com.palantir.antipatterns/antipatterns/
implementation 'com.palantir.antipatterns:antipatterns:1.0'
// https://jarcasting.com/artifacts/com.palantir.antipatterns/antipatterns/
implementation ("com.palantir.antipatterns:antipatterns:1.0")
'com.palantir.antipatterns:antipatterns:jar:1.0'
<dependency org="com.palantir.antipatterns" name="antipatterns" rev="1.0">
  <artifact name="antipatterns" type="jar" />
</dependency>
@Grapes(
@Grab(group='com.palantir.antipatterns', module='antipatterns', version='1.0')
)
libraryDependencies += "com.palantir.antipatterns" % "antipatterns" % "1.0"
[com.palantir.antipatterns/antipatterns "1.0"]

Dependencies

There are no dependencies for this project. It is a standalone project that does not depend on any other jars.

Project Modules

There are no modules declared in this project.

antipatterns

A FindBugs plugin for detecting misuse of inheritance and the final keyword in Java, inspired by codingantihero. Eliminate fragile subclassing and un-mockable APIs!

antipatterns legitimately uncovered a bunch of weird ass extending that was happening -- Dan Fox

The plugin name, 'antipatterns', is aspirational: we hope to add more modern Java antipatterns in future, and would love to consider any suggestions in our issue tracker.

CircleCI Build Status Download

Checking for antipatterns

Gradle: To enable the antipatterns plugin in Gradle, just use the findbugsPlugins extension point:

plugin 'findbugs'
dependencies {
    findbugsPlugins 'com.palantir.antipatterns:antipatterns:+'
}

Now running gradle check will include the antipatterns checks.

Maven: If you're using the FindBugs Maven plugin:

<configuration>
  <plugins>
    <plugin>
      <groupId>com.palantir.antipatterns</groupId>
      <artifactId>antipatterns</artifactId>
      <version>[1.0.0,)</version>
    </plugin>
  </plugins>
</configuration>

Standalone: Alternatively, if you're running FindBugs standalone, download the latest antipatterns version, and place it in the plugin directory in your FindBugs installation.

ExtendsConcreteTypeDetector

Antipattern detected: Extending a non-abstract type.

Motivation: Fragile. Designing for extension is expensive, and should only be done when necessary. Extending types that are not intended to be extended is dangerous, as the implementation may change in ways that do not affect composition, but break subclasses; for instance, changing one method to call another (to remove duplication) or to stop calling it (to improve performance). Preventing extension of a type that's not designed for it is expensive in Java: declaring the class final breaks dynamic proxies like Mockito; hiding the constructor behind a public factory method requires more code, and is often less idiomatic. (It's also easy to miss when a constructor has been accidentally left public.) Instead, types that are designed for extension should unambiguously indicate it by being declared abstract; types that are not abstract should never be extended.

Suggested alternatives: Instances of this antipattern should be refactored in one of the following ways (assuming type Bar extends type Foo):

  1. Abstract class: Extract an abstract superclass, AbstractFoo, and have both Foo and Bar extend it.
  2. Delegation pattern: Add a field of type Foo to Bar, typically called delegate, and explicitly call Foo's methods from Bar's methods.
  3. Strategy pattern: Add a strategy object to Foo that allows you to configure it to act like a Bar.

Related detectors: DesignForExtension places additional constraints on classes intended to be extended.

FinalSignatureDetector

Antipattern detected: Accepting or returning a final type in a public method.

Motivation: Untestable. Unit testing involves isolating the component being tested from the rest of the system by substituting the real implementation of its dependencies for test doubles. Final types subvert this by being impossible to substitute: the JVM itself prevents behaviour substitution. This is clearly overkill for most Java code, and disables really useful testing tools, such as Mockito's smart nulls. If you provide a library, exposing final types forces your users to use the Adapter pattern to hide your library behind a testable façade.

Suggested alternatives: Instances of this antipattern should be refactored in one of the following ways (assuming type Bar has a method baz that consumes or returns type Foo):

  1. Interface: Rename Foo as FooImpl, and extract an interface called Foo. Consume/return the Foo interface rather than the concrete FooImpl type in Bar.baz.
  2. Factory method: Remove the final keyword from Foo, and instead declare the constructor private to prevent subclassing. Make a static factory method on Foo to allow instances to be constructed.
  3. Pin your API: Remove the final keyword from Foo, and guarantee not to make subclass-breaking changes in future. Effective Java suggests that "one reasonable approach is to ensure that the class never invokes any of its overridable methods and to document this fact."
  4. Trust your users: Remove the final keyword from Foo, and trust your users not to make any fragile subclasses. Use the antipatterns plugin to enforce this contract within your own company. May be a bit optimistic for a big open-source project like Guava, but otherwise the cleanest option.

Related detectors: DesignForExtension requires public methods on non-final classes be abstract, final or empty; if you want to follow options 3 or 4, you will need to disable it. FinalClass requires that classes with private constructors be declared as final; if you want to follow option 2, you will need to disable it. Option 1 is compatible with both detectors.

Building from source

To build antipatterns from source, run ./gradlew shadowJar. To run the tests, run ./gradlew integrationTest. Publishing a new artifact is done automatically in CircleCI when a new tag is committed to GitHub.

com.palantir.antipatterns

Palantir Technologies

Versions

Version
1.0
1.0-beta.4