All Downloads are FREE. Search and download functionalities are using the official Maven repository.
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.PathSelector.scala Maven / Gradle / Ivy
package io.github.arainko.ducktape.internal
import scala.annotation.tailrec
import scala.quoted.*
private[ducktape] object PathSelector {
def unapply(using Quotes)(expr: quotes.reflect.Term): Some[Path] = {
@tailrec
def recurse(using Quotes)(acc: List[Path.Segment], term: quotes.reflect.Term): Path = {
import quotes.reflect.*
term match {
case Inlined(
Some(
Apply(
TypeApply(Select(tree, "apply"), List(Inferred())),
List(Literal(IntConstant(index)))
)
),
_,
Typed(term, tpe @ Applied(TypeIdent("Elem"), _))
) =>
recurse(acc.prepended(Path.Segment.TupleElement(tpe.tpe.asType, index)), tree)
case Inlined(_, _, tree) =>
Logger.debug("Matched 'Inlined', recursing...")
recurse(acc, tree)
case Lambda(_, tree) =>
Logger.debug("Matched 'Lambda', recursing...")
recurse(acc, tree)
case Block(_, tree) =>
Logger.debug("Matched 'Block', recursing...")
recurse(acc, tree)
case select @ Select(tree, name @ TupleField(index)) =>
Logger.debug(s"Matched 'Select' (matching a tuple field) with name = $name")
if tree.tpe <:< TypeRepr.of[Tuple] then recurse(acc.prepended(Path.Segment.TupleElement(tree.tpe.asType, index)), tree)
else recurse(acc.prepended(Path.Segment.Field(select.tpe.asType, name)), tree)
case select @ Select(tree, name) =>
Logger.debug(s"Matched 'Select' (matching field access) with name = $name")
recurse(acc.prepended(Path.Segment.Field(select.tpe.asType, name)), tree)
case TypeApply(Apply(TypeApply(Select(Ident(_), "at"), _), tree :: Nil), tpe :: Nil) =>
Logger.debug(s"Matched 'TypeApply' (matching '.at')", tpe.tpe.asType)
recurse(acc.prepended(Path.Segment.Case(tpe.tpe.asType)), tree)
case Apply(TypeApply(Select(Ident(_), "element"), elemTpe :: Nil), tree :: Nil) =>
Logger.debug(s"Matched 'Apply(TypeApply(...)) (matching .element)'", elemTpe.tpe.asType)
recurse(acc.prepended(Path.Segment.Element(elemTpe.tpe.asType)), tree)
case Apply(
Apply(
TypeApply(Select(Ident(_), "element"), elemTpe :: _ :: Nil),
Ident(_) :: Nil
),
tree :: Nil
) =>
Logger.debug(s"Matched 'element' of F[Elem] selection", elemTpe.tpe.asType)
recurse(acc.prepended(Path.Segment.Element(elemTpe.tpe.asType)), tree)
// Function arg selection can only happen as the first selection (aka the last one to be parsed) so this not being recursive is fine (?)
case TypeApply(
Select(Apply(Select(ident @ Ident(_), "selectDynamic"), Literal(StringConstant(argName)) :: Nil), "$asInstanceOf$"),
argTpe :: Nil
) =>
Logger.debug(s"Matched 'selectDynamic' (matching a function arg selector) with name = $argName")
Path(ident.tpe.asType, acc.prepended(Path.Segment.Field(argTpe.tpe.asType, argName)).toVector)
case ident @ Ident(_) =>
Logger.debug(s"Matched 'Ident', returning...")
Path(ident.tpe.asType, acc.toVector)
case other =>
Logger.debug(s"Matched an unexpected term")
report.errorAndAbort(s"Couldn't parse an unexpected config option: ${other.show(using Printer.TreeShortCode)}")
}
}
Some(Logger.loggedInfo("Parsed path")(recurse(Nil, expr)))
}
private object TupleField {
def unapply(name: String): Option[Int] =
name.stripPrefix("_").toIntOption.map(_ - 1) // ._1 means .apply(0)
}
}