Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
io.github.arainko.ducktape.internal.Plan.scala Maven / Gradle / Ivy
package io.github.arainko.ducktape.internal
import io.github.arainko.ducktape.*
import io.github.arainko.ducktape.internal.*
import scala.collection.Factory
import scala.collection.immutable.VectorMap
import scala.quoted.*
import scala.reflect.TypeTest
private[ducktape] object Fallible
private[ducktape] type Fallible = Fallible.type
private[ducktape] object Erroneous
private[ducktape] type Erroneous = Erroneous.type
private[ducktape] sealed trait Plan[+E <: Erroneous, +F <: Fallible] {
def source: Structure
def dest: Structure
final def sourcePath: Path = source.path
final def destPath: Path = dest.path
final def narrow[A <: Plan[Erroneous, Fallible]](using tt: TypeTest[Plan[Erroneous, Fallible], A]): Option[A] =
tt.unapply(this)
final def configureAll[FF >: F <: Fallible](
configs: List[Configuration.Instruction[FF]]
)(using Quotes, Context.Of[FF]): Plan.Reconfigured[FF] =
PlanConfigurer.run(this, configs)
final def refine: Either[NonEmptyList[Plan.Error], Plan[Nothing, F]] = ErroneousnessRefiner.run(this)
}
private[ducktape] object Plan {
case class Upcast(
source: Structure,
dest: Structure,
private val alternative: () => Plan[Erroneous, Nothing]
) extends Plan[Nothing, Nothing] {
lazy val alt = alternative()
}
case class UserDefined[+F <: Fallible](
source: Structure,
dest: Structure,
transformer: Summoner.UserDefined[F]
) extends Plan[Nothing, F]
case class Derived[+F <: Fallible](
source: Structure,
dest: Structure,
transformer: Summoner.Derived[F]
) extends Plan[Nothing, F]
case class Configured[+F <: Fallible] private (
source: Structure,
dest: Structure,
config: Configuration[F],
span: Span
) extends Plan[Nothing, F]
case class BetweenProductFunction[+E <: Erroneous, +F <: Fallible](
source: Structure.Product,
dest: Structure.Function,
argPlans: VectorMap[String, Plan[E, F]]
) extends Plan[E, F]
case class BetweenTupleFunction[+E <: Erroneous, +F <: Fallible](
source: Structure.Tuple,
dest: Structure.Function,
argPlans: VectorMap[String, Plan[E, F]]
) extends Plan[E, F]
case class BetweenUnwrappedWrapped(
source: Structure,
dest: Structure.ValueClass
) extends Plan[Nothing, Nothing]
case class BetweenWrappedUnwrapped(
source: Structure.ValueClass,
dest: Structure,
fieldName: String
) extends Plan[Nothing, Nothing]
case class BetweenFallibleNonFallible[+E <: Erroneous](
source: Structure.Wrapped[?],
dest: Structure,
plan: Plan[E, Nothing]
) extends Plan[E, Fallible]
case class BetweenFallibles[+E <: Erroneous](
source: Structure.Wrapped[?],
dest: Structure,
mode: TransformationMode.FailFast[?],
plan: Plan[E, Fallible]
) extends Plan[E, Fallible]
case class BetweenSingletons(
source: Structure.Singleton,
dest: Structure.Singleton
) extends Plan[Nothing, Nothing]
case class BetweenProducts[+E <: Erroneous, +F <: Fallible](
source: Structure.Product,
dest: Structure.Product,
fieldPlans: VectorMap[String, Plan[E, F]]
) extends Plan[E, F]
case class BetweenProductTuple[+E <: Erroneous, +F <: Fallible](
source: Structure.Product,
dest: Structure.Tuple,
plans: Vector[Plan[E, F]]
) extends Plan[E, F]
case class BetweenTupleProduct[+E <: Erroneous, +F <: Fallible](
source: Structure.Tuple,
dest: Structure.Product,
plans: VectorMap[String, Plan[E, F]]
) extends Plan[E, F]
case class BetweenTuples[+E <: Erroneous, +F <: Fallible](
source: Structure.Tuple,
dest: Structure.Tuple,
plans: Vector[Plan[E, F]]
) extends Plan[E, F]
case class BetweenCoproducts[+E <: Erroneous, +F <: Fallible](
source: Structure.Coproduct,
dest: Structure.Coproduct,
casePlans: Vector[Plan[E, F]]
) extends Plan[E, F]
case class BetweenOptions[+E <: Erroneous, +F <: Fallible](
source: Structure.Optional,
dest: Structure.Optional,
plan: Plan[E, F]
) extends Plan[E, F]
case class BetweenNonOptionOption[+E <: Erroneous, +F <: Fallible](
source: Structure,
dest: Structure.Optional,
plan: Plan[E, F]
) extends Plan[E, F]
case class BetweenCollections[+E <: Erroneous, +F <: Fallible](
source: Structure.Collection,
dest: Structure.Collection,
factory: Expr[Factory[?, ?]],
plan: Plan[E, F]
) extends Plan[E, F]
case class Error(
source: Structure,
dest: Structure,
message: ErrorMessage,
suppressed: Option[Plan.Error]
) extends Plan[Erroneous, Nothing]
object Error {
def from(plan: Plan[Erroneous, Fallible], message: ErrorMessage, suppressed: Option[Plan.Error]): Plan.Error =
Plan.Error(
plan.source,
plan.dest,
message,
suppressed
)
}
object Configured {
def from[F <: Fallible](plan: Plan[Erroneous, F], conf: Configuration[F], instruction: Configuration.Instruction[F])(using
Quotes,
Context
): Plan.Configured[F] =
conf.tpe match {
case '[confTpe] =>
// if side is Source then we're operating on either a missing Source case or an override of that,
// which means the dest types need to be narrowed down to the exact type of this config
val dest = if instruction.side.isSource then Structure.Lazy.of[confTpe](plan.dest.path) else plan.dest
Plan.Configured(plan.source, dest, conf, instruction.span)
}
}
given debug: Debug[Plan[Erroneous, Fallible]] = Debug.derived
final case class Reconfigured[+F <: Fallible](
errors: List[Plan.Error],
successes: List[(Path, Side)],
warnings: List[ConfigWarning],
result: Plan[Erroneous, F]
)
object Reconfigured {
given debug: Debug[Reconfigured[Fallible]] = Debug.derived
}
}