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.
jvmMain.definitions.RaptorObjectExtensionGraphDefinitionBuilder.kt Maven / Gradle / Ivy
package io.fluidsonic.raptor
import io.fluidsonic.raptor.graphql.internal.*
import io.fluidsonic.stdlib.*
import kotlin.reflect.*
@RaptorDsl
public class RaptorObjectExtensionGraphDefinitionBuilder internal constructor(
private val kotlinType: KotlinType,
private val stackTrace: List,
) {
private val fieldDefinitions: MutableList = mutableListOf()
internal fun build() =
ObjectExtensionGraphDefinition(
additionalDefinitions = emptyList(),
fieldDefinitions = fieldDefinitions.ifEmpty { null }
?: error("At least one field must be defined: field(…)"),
kotlinType = kotlinType,
stackTrace = stackTrace
)
@RaptorDsl
public inline fun field(
name: String,
@BuilderInference noinline configure: RaptorGraphFieldBuilder.WithResolver.() -> Unit,
) {
field(name = name, type = typeOf(), configure = configure)
}
@RaptorDsl
public fun field(
property: KProperty1,
configure: RaptorGraphFieldBuilder.WithResolver.() -> Unit = {},
) {
field(
name = property.name,
type = property.returnType, // TODO
stackTrace = stackTrace(skipCount = 1),
implicitResolver = { property.get(it as Type) }, // TODO
configure = configure
)
}
@RaptorDsl
public fun field(
function: KSuspendFunction2,
configure: RaptorGraphFieldBuilder.WithResolver.() -> Unit = {},
) {
field(
name = function.name,
type = function.returnType,
stackTrace = stackTrace(skipCount = 1),
implicitResolver = { function(it as Type, context) }, // TODO
configure = configure
)
}
@RaptorDsl
public fun field(
name: String,
type: KType,
configure: RaptorGraphFieldBuilder.WithResolver.() -> Unit,
) {
field(
name = name,
type = type,
stackTrace = stackTrace(skipCount = 1),
implicitResolver = null,
configure = configure
)
}
private fun field(
name: String,
type: KType,
stackTrace: List,
implicitResolver: (suspend RaptorGraphOutputScope.(parent: Any) -> Any?)?,
configure: RaptorGraphFieldBuilder.WithResolver.() -> Unit,
) {
if (fieldDefinitions.any { it.name === name })
error("Cannot define multiple fields named '$name'.")
fieldDefinitions += RaptorGraphFieldBuilder.WithResolver(
kotlinType = KotlinType.of(
type = type,
containingType = kotlinType,
allowMaybe = false,
allowNull = true,
allowedVariance = KVariance.OUT,
requireSpecialization = true
),
implicitResolver = implicitResolver,
name = name,
parentKotlinType = kotlinType,
stackTrace = stackTrace
)
.apply(configure)
.build()
}
}