Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dwolla/async-utils
Safely convert final tagless-style algebras implemented in Future to cats-effect Async
https://github.com/dwolla/async-utils
hacktoberfest
Last synced: about 10 hours ago
JSON representation
Safely convert final tagless-style algebras implemented in Future to cats-effect Async
- Host: GitHub
- URL: https://github.com/dwolla/async-utils
- Owner: Dwolla
- License: mit
- Created: 2021-06-03T23:10:20.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-10-23T16:07:58.000Z (14 days ago)
- Last Synced: 2024-10-23T19:04:15.512Z (14 days ago)
- Topics: hacktoberfest
- Language: Scala
- Homepage:
- Size: 322 KB
- Stars: 2
- Watchers: 12
- Forks: 3
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
# Async Utilities
[![Dwolla/async-utils CI](https://github.com/Dwolla/async-utils/actions/workflows/ci.yml/badge.svg)](https://github.com/Dwolla/async-utils/actions)
[![license](https://img.shields.io/github/license/Dwolla/async-utils.svg)](https://github.com/Dwolla/async-utils/blob/main/LICENSE.txt)
[![GitHub release (latest SemVer)](https://img.shields.io/github/v/release/dwolla/async-utils)](https://github.com/Dwolla/async-utils/releases)## Use `ReaderT` for safely converting `Future`-based traits to cats-effect
You have a higher-kinded trait like this:
```scala
trait FooService[F[_]] {
def foo(i: Int): F[Unit]
}
```and an implementation in `Future`:
```scala
class FutureFoo extends FooService[Future] {
def foo(i: Int): Future[Unit] = Future(println(i))
}
```(Perhaps the implementation was automatically generated by a tool like [Twitter Scrooge](https://github.com/twitter/scrooge), in which case, scroll down for Twitter Future and Finagle support!)
With cats-tagless, you can auto-derive a `FunctorK[FooService]` instance and an implementation in `ReaderT[Future, FooService[Future], *]`:
```scala
object FooService {
import cats.tagless._implicit def FooServiceReaderT[F[_]]: FooService[ReaderT[F, FooService[F], *]] =
Derive.readerT[FooService, F]
implicit val FooServiceFunctorK: FunctorK[FooService] = Derive.functorK
}
```These implicit instances can be automatically added to the code generated by Scrooge by running the `AddCatsTaglessInstances` scalafix rule! See below for more detail.
Now you can safely convert your `Future`-based implementation into one in `F[_] : Async`:
```scala
import cats.tagless.syntax.all._
import com.dwolla.util.async.stdlib._val futureFoo: FooService[Future] = new FutureFoo
val fooService: FooService[IO] = futureFoo.asyncMapK[IO]
```## Artifacts
The Group ID for each artifact is `"com.dwolla"`. All artifacts are published to Maven Central.
Artifact
Description
Scala 2.12
Scala 2.13
Scala.js
"async-utils-core"
Shared definition ofAsyncFunctorK
and supporting code
✅
✅
✅
"async-utils"
Implementation for stdlib ScalaFuture
✅
✅
✅
"async-utils-twitter"
Implementation for TwitterFuture
✅
✅
❌
"async-utils-finagle"
Safely create Thrift clients and servers using cats-effect as the effect type
✅
✅
❌
"async-utils-finagle-natchez"
Bridge between Natchez tracing and Finagle's built-in Zipkin support
✅
✅
❌
"finagle-tagless-scalafix"
Automatically adds implicit instances needed by `asyncMapK` to the companion objects of Finagle services generated by Scrooge
✅
✅
❌## Twitter Ecosystem Releases
Twitter uses a `{YEAR}-{MONTH}` version scheme, where the combination of the two forms a major version.The "current" version of the artifacts published by this project intend to track
the latest Twitter ecosystem release, with previously supported versions published
as supplemental artifacts with the supported release version appended to
the artifact name.For example, the latest Twitter ecosystem version is `22.7.0`, so the latest version of
`com.dwolla::async-utils-twitter` depends on `com.twitter::util-core:22.7.0`. In addition,
we publish artifacts named like `com.dwolla::async-utils-twitter-22.4.0` for each of the
previously supported Twitter ecosystem releases.## Twitter Futures
```scala
import cats.data.ReaderT
import cats.tagless.{Derive, FunctorK}
import com.twitter.util.Closable// generated by twitter-scrooge
trait FooScroogeService[F[_]] {
def foo(i: Int): F[Unit]def asClosable: Closable = Closable.nop
}object FooScroogeService {
// Let Scalafix generate these instances for you!
// Follow the instructions in the `Scalafix Rule` section below.
implicit def FooScroogeServiceReaderT[F[_]]: FooScroogeService[ReaderT[F, FooScroogeService[F], *]] =
Derive.readerT[FooScroogeService, F]
implicit val FooScroogeServiceFunctorK: FunctorK[FooScroogeService] = Derive.functorK[FooScroogeService]
}
```### Finagle Clients
Safely create a Finagle client in `IO` from an implementation in Twitter Future:
```scala
import com.dwolla.util.async.finagle.ThriftClient
import com.dwolla.util.async.twitter._val fooClient: Resource[IO, FooScroogeService[IO]] = ThriftClient[FooScroogeService]("destination")
```### Finagle Servers
Safely create a Finagle server in Twitter Future from an implementation in `IO`:
```scala
import com.dwolla.util.async.finagle.ThriftServer
import com.dwolla.util.async.twitter._val fooImpl: FooScroogeService[IO] = new FooScroogeService[IO] {
def foo(i: Int): IO[Unit] = IO(println(i))
}val thriftServer: IO[Nothing] = ThriftServer("address", fooImpl)
```## Scalafix Rule
Add Scalafix to your project's build by [following the instructions](https://scalacenter.github.io/scalafix/docs/users/installation.html#sbt):
1. Add the Scalafix plugin to the project by adding this to `project/plugins.sbt`:
```scala
addSbtPlugin("ch.epfl.scala" % "sbt-scalafix" % "0.12.1")
```2. Enable SemanticDB by adding this to `build.sbt`:
```scala
ThisBuild / semanticdbEnabled := true
ThisBuild / semanticdbVersion := scalafixSemanticdb.revision
ThisBuild / scalafixScalaBinaryVersion := CrossVersion.binaryScalaVersion(scalaVersion.value)
ThisBuild / scalafixDependencies += "com.dwolla" %% "finagle-tagless-scalafix" % "1.1.1"
```3. Run the Scalafix rule automatically after generating the Thrift sources by adding this to `build.sbt`:
```scala
Compile / scalafix / unmanagedSources := (Compile / sources).value
scalafixOnCompile := true
libraryDependencies ++= {
val catsTaglessV = "0.14.0"
Seq(
"org.typelevel" %% "cats-tagless-core" % catsTaglessV,
"org.typelevel" %% "cats-tagless-macros" % catsTaglessV,
)
}
```and adding this to `.scalafix.conf`:
```hocon
triggered.rules = [ AddCatsTaglessInstances ]
```### `AddCatsTaglessInstances`
The `AddCatsTaglessInstances` rule finds generated Thrift service traits and adds implicit instances of
`ThriftService[Kleisli[F, ThriftService[Future], *]]` and `FunctorK[ThriftService]` to each service's
companion object.Twitter's Scrooge project changed the way it generates code for Thrift services, removing the
higher-kinded service trait used by this library, leaving only the `MethodPerEndpoint` trait
that used to extend the higher-kinded service trait, setting the type parameter to `com.twitter.util.Future`.
The `AddCatsTaglessInstances` rule now addresses this as well, rewriting `MethodPerEndpoint` to
`{Name}Service` and reintroducing the type parameter. (A new `MethodPerEndpoint` is also added,
going back to how it used to `extend {Name}Service[Future]`.)This Scalafix rule should be idempotent, so it can be rerun many times.
### `AdaptHigherKindedThriftCode`
Because the `AddCatsTaglessInstances` rewrite rule couldn't easily move the new `{Name}Service` trait up
to the same level as the `{Name}Service` object, the new traits must be addressed differently. In other
words, instead of finding the trait at `com.example.ThriftService`, it will now be
at `com.example.ThriftService.ThriftService`.The `AdaptHigherKindedThriftCode` rule exists to adapt existing code to the new location. It will
find references to traits that extend `com.twitter.finagle.thrift.ThriftService` and have a type
parameter of the correct shape, and add the object name before the trait name (i.e., rewriting
`ThriftService` to `ThriftService.ThriftService` or `com.example.ThriftService` to
`com.example.ThriftService.ThriftService`).This rule is not idempotent, but it will typically only be executed once per codebase.
The order in which the rule is executed matters. Follow these steps:
1. Add Scalafix to your project by following steps 1 and 2 under "Scalafix Rule" above.
2. Look at your project's sbt project graph. Because the rule is a semantic rule, it depends
on the compiler being able to compile the code it will modify. This means the leaves of
the project graph need to be updated before the nodes that depend on each leaf.
For example, run `Test/scalafix AdaptHigherKindedThriftCode` before
running `Compile/scalafix AdaptHigherKindedThriftCode`.
3. Only after running the `AdaptHigherKindedThriftCode` rule should you update the Scrooge
and Finagle version being used in the project. Once this is updated, you can run the
`AddCatsTaglessInstances` rule on the updated generated code.## Credits
Thanks to [Georgi Krastev and the cats-tagless project](https://github.com/typelevel/cats-tagless/pull/250/files) for the idea to use `ReaderT` in this way.