-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
96 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,23 @@ | ||
package io.github.iltotore.iron | ||
|
||
import _root_.ciris.ConfigDecoder | ||
import cats.Show | ||
|
||
import _root_.ciris.{ConfigDecoder, ConfigError} | ||
|
||
object ciris: | ||
|
||
inline given [T,A,B](using inline decoder: ConfigDecoder[T,A], inline constraint: _root_.io.github.iltotore.iron.Constraint[A, B], inline show: Show[A]): ConfigDecoder[T, A :| B] = | ||
decoder.mapOption("")(_.refineOption) | ||
/** | ||
* A [[ConfigDecoder]] for refined types. Decodes to the underlying type then checks the constraint. | ||
* | ||
* @param decoder the [[ConfigDecoder]] of the underlying type | ||
* @param constraint the [[Constraint]] implementation to test the decoded value | ||
*/ | ||
inline given [In, A, C](using inline decoder: ConfigDecoder[In, A], inline constraint: Constraint[A, C]): ConfigDecoder[In, A :| C] = | ||
decoder.mapEither((_, value) => value.refineEither[C].left.map(ConfigError(_))) | ||
|
||
/** | ||
* A [[ConfigDecoder]] for new types. Decodes to the underlying type then checks the constraint. | ||
* | ||
* @param decoder the [[ConfigDecoder]] of the underlying type. | ||
* @param mirror the mirror of the [[RefinedTypeOps.Mirror]] | ||
*/ | ||
inline given [In, T](using mirror: RefinedTypeOps.Mirror[T], decoder: ConfigDecoder[In, mirror.IronType]): ConfigDecoder[In, T] = | ||
decoder.asInstanceOf[ConfigDecoder[In, T]] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,22 @@ | ||
package io.github.iltotore.iron | ||
|
||
import _root_.ciris.ConfigDecoder | ||
import io.github.iltotore.iron.ciris.given | ||
import io.github.iltotore.iron.constraint.numeric.Positive | ||
import utest.* | ||
import ciris.given | ||
|
||
|
||
object CirisSuite extends TestSuite: | ||
val tests: Tests = Tests { | ||
|
||
test("summon String => Int :| Pure") { | ||
summon[ ConfigDecoder[String, Int :| Pure]] | ||
} | ||
test("decoder") { | ||
test("ironType") { | ||
test("success") - assert(summon[ConfigDecoder[String, Int :| Positive]].decode(None, "5") == Right(5)) | ||
test("failure") - assert(summon[ConfigDecoder[String, Int :| Positive]].decode(None, "-5").isLeft) | ||
} | ||
|
||
test("summon from Int => Int :| Pure") { | ||
summon[ConfigDecoder[Int, Int :| Pure]] | ||
test("newType") { | ||
test("success") - assert(summon[ConfigDecoder[String, Temperature]].decode(None, "5") == Right(Temperature(5))) | ||
test("failure") - assert(summon[ConfigDecoder[String, Temperature]].decode(None, "-5").isLeft) | ||
} | ||
} | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
package io.github.iltotore.iron | ||
|
||
import io.github.iltotore.iron.constraint.numeric.Positive | ||
|
||
opaque type Temperature = Int :| Positive | ||
object Temperature extends RefinedTypeOps[Int, Positive, Temperature] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
--- | ||
title: "Ciris Support" | ||
--- | ||
|
||
# Ciris Support | ||
|
||
This module provides refined types Encoder/Decoder instances for [Ciris](https://circe.github.io/circe/). | ||
|
||
## Dependency | ||
|
||
SBT: | ||
|
||
```scala | ||
libraryDependencies += "io.github.iltotore" %% "iron-ciris" % "version" | ||
``` | ||
|
||
Mill: | ||
|
||
```scala | ||
ivy"io.github.iltotore::iron-ciris:version" | ||
``` | ||
|
||
### Following examples' dependencies | ||
|
||
SBT: | ||
|
||
```scala | ||
libraryDependencies += "is.cir" %% "ciris" % "3.1.0" | ||
``` | ||
|
||
Mill: | ||
|
||
```scala | ||
ivy"is.cir::ciris::3.1.0" | ||
``` | ||
|
||
## ConfigDecoder instances | ||
|
||
Iron provides `ConfigDecoder` instances for refined types: | ||
|
||
```scala | ||
import cats.syntax.all.* | ||
import ciris.* | ||
|
||
import io.github.iltotore.iron.* | ||
import io.github.iltotore.iron.constraint.all.* | ||
import io.github.iltotore.iron.cats.given | ||
import io.github.iltotore.iron.ciris.given | ||
|
||
type Username = String :| (Not[Blank] & MaxLength[32]) | ||
type Password = String :| (Not[Blank] & MinLength[9]) | ||
|
||
case class DatabaseConfig(username: Username, password: Secret[Password]) | ||
|
||
val databaseConfig: ConfigValue[Effect, DatabaseConfig] = ( | ||
env("DB_USERNAME").as[Username], | ||
env("DB_PASSWORD").as[Password].secret | ||
).mapN(DatabaseConfig.apply) | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters