Git Product home page Git Product logo

sbt-shading's Introduction

sbt-shading

Enforces that a library's components are all versioned.

For example:

What Incorrect Correct
Artifact name lib-stats lib-stats-v2
Packages com.rallyhealth.stats.Stats com.rallyhealth.stats.v2.Stats
Directories com/rallyhealth/stats/Stats com/rallyhealth/stats/v2/Stats

Mitigates runtime dependency hell by enabling multiple incompatible major versions of a library to coexist together safely.

Setup

Add the latest release to your plugins.sbt:

plugins.sbt

addSbtPlugin("com.rallyhealth.sbt" %% "sbt-shading" % "x.y.z")

build.sbt

lazy val `lib-stats` = project
  .enablePlugins(ShadingPlugin)

Add v2 to your packages:

Incorrect Correct
src/main/scala/com/rallyhealth/foo/... src/main/scala/com/rallyhealth/foo/v2...
src/test/scala/com/rallyhealth/foo/... src/test/scala/com/rallyhealth/foo/v2...
src/it/scala/com/rallyhealth/foo/... src/it/scala/com/rallyhealth/foo/v2...

Usage

Shading is checked automatically during the following SBT tasks

  • publish
  • test

Shading is not checked during compile because it does not affect compilation: your code should compile fine whether it is shaded or not. Shading is a correctness test (like unit tests).

If you want to check shading yourself you can run

sbt> shadingCheck

or

$ sbt shadingCheck

When the plugin detects a violation it will print something like this:

sbt> shadingCheck
[trace] Stack trace suppressed: run last <project>/*:shadingCheckFiles for the full output.
[error] (<project>/*:shadingCheckFiles) com.rallyhealth.sbt.shading.FileShadingErrorsException: Expected name shaded version "v2" for:
[error] src/main/scala/com/rallyhealth/foo/Foo.scala: DirectoryUnshaded, PackageNameUnshaded(com.rallyhealth.foo)
[error] src/main/scala/com/rallyhealth/foo/Bar.scala: DirectoryUnshaded, PackageNameUnshaded(com.rallyhealth.foo)
[error] Total time: 1 s, completed Jul 26, 2018 10:04:47 AM

Depending on shaded libraries

If you are depending on a shaded library you simply need to add the "v2" to the artifact name of your ModuleID declaration:

"com.rallyhealth.foo" %% "lib-stats-v2" % "2.0.0"

To avoid repeating the version in two places -- the artifact and version -- you can use a handy implicit:

import com.rallyhealth.sbt.shading.ShadingImplicits._

"com.rallyhealth.foo" %% "lib-stats" % "2.0.0" shaded

Why Semver is not enough

SemVer alone will not save you from Dependency Hell.

Major versions bring breaking changes.

  1. Major version X (X.y.z | X > 0) MUST be incremented if any backwards incompatible changes are introduced to the public API.

-- http://semver.org/#spec-item-8

A Song of Dependencies and Hell

Chapter 1: Everything works

Consider a library, lib-stats % 1.0.0, that records metrics. It has a com.rallyhealth.stats.Stats.inc() method that everybody loves. Your app uses lib-http, lib-queue, and lib-akka which make use of lib-stats % 1.0.0 to send metrics, and life is good.

Dependency graph. Transitive dependency on lib-stats v1.0.0

Chapter 2: The breaking change

  1. One day, a well-meaning developer decides that Stats.inc() should really be renamed to Stats.increment().
  2. He renames the method and releases lib-stats 2.0.0 as a major version, signaling the breaking change. He also updates lib-queue to make use of it and releases 2.0.0 of that as well.
  3. You need the latest queue-y goodness for a new feature due tomorrow, so you update to the latest lib-queue. Your code compiles. Your unit tests pass. You deploy it to dev.
  4. You're shocked to discover that both HTTP and Caching are broken.

Dependency graph. lib-stats v1.0.0 is evicted by v2.0.0. lib-http and lib-cache are broken.

You post the error to the Engineering room. They say "hurr hurr derpendencies," and tell you you'll have to clean up the mess. You need to ship this feature tomorrow. You cry.

Evictions

So what happened?

  1. Sbt evicted lib-stats 1.0.0 in favor of the newer lib-stats 2.0.0. That's by design. Sbt will only keep the latest version of a library.
  2. lib-http tried to call Stats.inc() but there was no such method defined. There was only Stats.increment().
  3. You look up who renamed the method, but immediately regret doing so as impure thoughts flood your mind.

There must be a better way.

Chapter 3: A Solution Emerges

Eliminating Evictions

Can we prevent the eviction from happening? Yes! If we give the artifacts different names, they won't get evicted. Including the major version in the name, like lib-stats-v2, would do the trick quite nicely. This plugin enforces that.

Preventing Namespace Conflicts

So if both lib-stats-v1 and lib-stats-v2 are on the classpath, how do we keep them from having incompatible versions of com.rallyhealth.stats.Stats?

Simple. This plugin enforces that you include v2 in the package name. You'll end up with com.rallyhealth.stats.v1.Stats and com.rallyhealth.stats.v2.Stats living in harmony.

Dependency graph. lib-stats v1 and v2 are both in the graph. All libraries have compatible dependencies.

Epilogue

Your app uses only shaded internal libraries now. You have two binary-incompatible versions of lib-stats-v* in your app, but you don't care. Everything works just fine.

One day you'll update lib-http and lib-cache to use the new lib-stats-v2, but not today. Your friends are heading to the bar, and you're free to join then.

Your phone vibrates and you see the !love from QA and your product owner telling you how wonderful you are.

You smile as you sip your gin and tonic. Dependency hell is the last thing on your mind.

Errors

If the artifact name, directories, or package names do not include the current major version, the shading checks will fail the build when test or publish are run.

screenshot of build output of all three types of shading errors

Caveats

Renaming

To upgrade from lib-stats-v1 to lib-stats-v2, all classes that import com.rallyhealth.stats.v1.Stats will have to be updated to import com.rallyhealth.stats.v2.Stats.

This may seem like a drawback at first, but it's actually a strength. Introducing breaking changes has become more expensive. They can often be avoided. There's incentive to do so now.

Third party jars

This plugin cannot protect you from unshaded third party libraries. For example, netty 3 does not play nicely with netty 4. However, third party libs move at much slower pace than Rally's internal libs. Historically, most of our pain has been self-induced via internal libs.

Resource management

Take care around using shading with global state and resource consumption (threads, external connections, etc.). For example, if your library acts as a global database connection pool, shading it opens the possibility of having multiple instances active at once and opening extra connections.

If the consequences of duplicating global state is unacceptable, shading may not be the correct solution.

Minor/Patch breakages

This plugin only solves for breaking changes across major versions.

sbt-git-versioning complements this plugin by providing SemVer enforcement for minor/patch releases using the Typesafe Migration Manager.

Alternatives

OSGi

A framework for managing components on the JVM. Requires running inside a third party OSGi server.

Java 9: Project Jigsaw

Released with Java 9. This solves a somewhat different problem: breaking down monolithic JARs -- namely the JDK -- into smaller, more independent parts. It allows a JAR to more explicitly define what classes/packages are being exposed and what transitive dependencies are being shared with the consuming application.

Modules can solve the problem of two different JARs each defining their own internal com.acme.Foo and the ClassLoader properly loading the correct class for each JAR. If the JARs properly declare com.acme.Foo as internal then there should be no conflict.

Unfortunately modules do not solve the problem if both JARs expose their own com.acme.Foo definition. The ClassLoader will still have to guess. Modules also do not help if you depend on different versions of the same JAR since Jigsaw explicitly does not handle versions.

TL;DR: Jigsaw is a partial solution

sbt-assembly shading

sbt-assembly can do auto-shading of artifacts, but gets hairy with multi-project builds and IDE support.

Maintainer

You can ping Doug Roper for any questions.

Testing

This plugin is tested by unit tests and with sbt's built-in scripted plugin.

sbt-shading's People

Contributors

usufruct99 avatar htmldoug avatar

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.