All Downloads are FREE. Search and download functionalities are using the official Maven repository.

sangria.macros.derive.DeriveMacroSupport.scala Maven / Gradle / Ivy

The newest version!
package sangria.macros.derive

import scala.reflect.internal.{Definitions, StdNames, SymbolTable}
import scala.reflect.macros.blackbox

trait DeriveMacroSupport {
  val c: blackbox.Context
  val universe: c.universe.type = c.universe

  import c.universe._

  def reportErrors(errors: Seq[(Position, String)]) = {
    require(errors.nonEmpty)

    val (lastPos, lastError) = errors.last

    errors.dropRight(1).foreach { case (pos, error) => c.error(pos, error) }

    c.abort(lastPos, lastError)
  }

  protected def symbolName(annotations: List[Annotation]): Option[Tree] =
    annotations.iterator
      .map(_.tree)
      .collectFirst { case q"new $name($arg)" if name.tpe =:= typeOf[GraphQLName] => arg }

  protected def symbolOutputType(annotations: List[Annotation]): Option[Tree] =
    annotations.iterator
      .map(_.tree)
      .collectFirst { case q"new $name($arg)" if name.tpe =:= typeOf[GraphQLOutputType] => arg }

  protected def symbolInputType(annotations: List[Annotation]): Option[Tree] =
    annotations.iterator
      .map(_.tree)
      .collectFirst { case q"new $name($arg)" if name.tpe =:= typeOf[GraphQLInputType] => arg }

  protected def symbolDescription(annotations: List[Annotation]): Option[Tree] =
    annotations.iterator
      .map(_.tree)
      .collectFirst { case q"new $name($arg)" if name.tpe =:= typeOf[GraphQLDescription] => arg }

  protected def symbolDefault(annotations: List[Annotation]): Option[Tree] =
    annotations.iterator
      .map(_.tree)
      .collectFirst { case q"new $name($arg)" if name.tpe =:= typeOf[GraphQLDefault] => arg }

  protected def symbolDeprecation(annotations: List[Annotation]): Option[Tree] =
    annotations.iterator
      .map(_.tree)
      .collectFirst { case q"new $name($arg)" if name.tpe =:= typeOf[GraphQLDeprecated] => arg }

  protected def symbolFieldTags(annotations: List[Annotation]): Tree =
    annotations.iterator
      .map(_.tree)
      .foldLeft(q"List[sangria.execution.FieldTag]()") {
        case (acc, q"new $name(..$fieldTags)") if name.tpe =:= typeOf[GraphQLFieldTags] =>
          q"$acc ++ $fieldTags"
        case (acc, _) => acc
      }

  protected def memberExcluded(annotations: List[Annotation]): Boolean =
    annotations.exists(_.tree.tpe =:= typeOf[GraphQLExclude])

  protected def memberField(annotations: List[Annotation]): Boolean =
    annotations.exists(_.tree.tpe =:= typeOf[GraphQLField])

  // TODO: most probably not needed, so should be removed in future
  protected def defaultMethodArgValue(method: String, pos: Int) = {
    val defs = c.universe.asInstanceOf[Definitions with SymbolTable with StdNames]

    defs.nme.defaultGetterName(defs.newTermName(method), pos)
  }

  def checkSetting[T: WeakTypeTag](setting: Tree) = weakTypeTag[T].tpe =:= c.typecheck(setting).tpe
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy