mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-05 15:28:29 +08:00
Psoserv now outputs its version when starting up.
This commit is contained in:
parent
2a510ec116
commit
c11b84c950
@ -14,12 +14,15 @@ buildscript {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/** Source code generated by the build script goes here. */
|
||||||
|
val generatedCommonSrc = File(buildDir, "generated-src/commonMain/kotlin")
|
||||||
|
|
||||||
val serializationVersion: String by project.extra
|
val serializationVersion: String by project.extra
|
||||||
|
|
||||||
kotlin {
|
kotlin {
|
||||||
sourceSets {
|
sourceSets {
|
||||||
commonMain {
|
commonMain {
|
||||||
kotlin.setSrcDirs(kotlin.srcDirs + file("build/generated-src/commonMain/kotlin"))
|
kotlin.setSrcDirs(kotlin.srcDirs + generatedCommonSrc)
|
||||||
dependencies {
|
dependencies {
|
||||||
api(project(":core"))
|
api(project(":core"))
|
||||||
api("org.jetbrains.kotlinx:kotlinx-serialization-core:$serializationVersion")
|
api("org.jetbrains.kotlinx:kotlinx-serialization-core:$serializationVersion")
|
||||||
@ -39,9 +42,7 @@ val generateOpcodes = tasks.register("generateOpcodes") {
|
|||||||
|
|
||||||
val packageName = "world.phantasmal.psolib.asm"
|
val packageName = "world.phantasmal.psolib.asm"
|
||||||
val opcodesFile = file("srcGeneration/asm/opcodes.yml")
|
val opcodesFile = file("srcGeneration/asm/opcodes.yml")
|
||||||
val outputFile = file(
|
val outputFile = File(generatedCommonSrc, "${packageName.replace('.', '/')}/Opcodes.kt")
|
||||||
"build/generated-src/commonMain/kotlin/${packageName.replace('.', '/')}/Opcodes.kt"
|
|
||||||
)
|
|
||||||
|
|
||||||
inputs.file(opcodesFile)
|
inputs.file(opcodesFile)
|
||||||
outputs.file(outputFile)
|
outputs.file(outputFile)
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
import org.graalvm.buildtools.gradle.tasks.BuildNativeImageTask
|
import org.graalvm.buildtools.gradle.tasks.BuildNativeImageTask
|
||||||
|
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
|
||||||
|
|
||||||
plugins {
|
plugins {
|
||||||
id("world.phantasmal.jvm")
|
id("world.phantasmal.jvm")
|
||||||
@ -7,23 +8,61 @@ plugins {
|
|||||||
id("org.graalvm.buildtools.native") version "0.9.2"
|
id("org.graalvm.buildtools.native") version "0.9.2"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
version = "0.0.1"
|
||||||
|
|
||||||
|
/** Source code generated by the build script goes here. */
|
||||||
|
val generatedSrc = File(buildDir, "generated-src/main/kotlin")
|
||||||
|
|
||||||
|
kotlin {
|
||||||
|
sourceSets {
|
||||||
|
main {
|
||||||
|
kotlin.setSrcDirs(kotlin.srcDirs + generatedSrc)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
val generateVersionInfo by tasks.registering {
|
||||||
|
group = "code generation"
|
||||||
|
|
||||||
|
val packageName = "world.phantasmal.psoserv"
|
||||||
|
val outputFile = File(generatedSrc, "${packageName.replace('.', '/')}/VersionInfo.kt")
|
||||||
|
|
||||||
|
inputs.property("version", version)
|
||||||
|
outputs.file(outputFile)
|
||||||
|
|
||||||
|
doLast {
|
||||||
|
outputFile.writeText("""
|
||||||
|
package $packageName
|
||||||
|
|
||||||
|
object VersionInfo {
|
||||||
|
val version: String = "$version"
|
||||||
|
}
|
||||||
|
""".trimIndent())
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
tasks.withType<KotlinCompile>().configureEach {
|
||||||
|
dependsOn(generateVersionInfo)
|
||||||
|
}
|
||||||
|
|
||||||
val mainClassFqn = "world.phantasmal.psoserv.MainKt"
|
val mainClassFqn = "world.phantasmal.psoserv.MainKt"
|
||||||
val agentOutputDir = File(buildDir, "agent-output")
|
val nativeAgentOutputDir = File(buildDir, "agent-output")
|
||||||
|
|
||||||
application {
|
application {
|
||||||
mainClass.set(mainClassFqn)
|
mainClass.set(mainClassFqn)
|
||||||
}
|
}
|
||||||
|
|
||||||
val nativeAgentRun by tasks.registering(JavaExec::class) {
|
val nativeAgentRun by tasks.registering(JavaExec::class) {
|
||||||
description = "Run with the GraalVM native-image-agent to produce reflection info etc. for the nativeBuild task."
|
description =
|
||||||
|
"Run with the GraalVM native-image-agent to produce reflection info etc. for the nativeBuild task."
|
||||||
group = "application"
|
group = "application"
|
||||||
|
|
||||||
dependsOn(tasks.build)
|
dependsOn(tasks.build)
|
||||||
outputs.dir(agentOutputDir)
|
outputs.dir(nativeAgentOutputDir)
|
||||||
|
|
||||||
mainClass.set(mainClassFqn)
|
mainClass.set(mainClassFqn)
|
||||||
classpath = sourceSets.main.get().runtimeClasspath
|
classpath = sourceSets.main.get().runtimeClasspath
|
||||||
jvmArgs = listOf("-agentlib:native-image-agent=config-output-dir=$agentOutputDir")
|
jvmArgs = listOf("-agentlib:native-image-agent=config-output-dir=$nativeAgentOutputDir")
|
||||||
args = listOf(
|
args = listOf(
|
||||||
"--nostart",
|
"--nostart",
|
||||||
"--config=graalvm-agent.conf",
|
"--config=graalvm-agent.conf",
|
||||||
@ -35,13 +74,13 @@ nativeBuild {
|
|||||||
mainClass.set(mainClassFqn)
|
mainClass.set(mainClassFqn)
|
||||||
buildArgs.addAll(
|
buildArgs.addAll(
|
||||||
"--allow-incomplete-classpath",
|
"--allow-incomplete-classpath",
|
||||||
"-H:ConfigurationFileDirectories=$agentOutputDir",
|
"-H:ConfigurationFileDirectories=$nativeAgentOutputDir",
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
tasks.withType<BuildNativeImageTask>().configureEach {
|
tasks.withType<BuildNativeImageTask>().configureEach {
|
||||||
dependsOn(nativeAgentRun)
|
dependsOn(nativeAgentRun)
|
||||||
inputs.dir(agentOutputDir)
|
inputs.dir(nativeAgentOutputDir)
|
||||||
}
|
}
|
||||||
|
|
||||||
val serializationVersion: String by project.extra
|
val serializationVersion: String by project.extra
|
||||||
|
@ -28,7 +28,7 @@ private val LOGGER = KotlinLogging.logger("main")
|
|||||||
|
|
||||||
fun main(args: Array<String>) {
|
fun main(args: Array<String>) {
|
||||||
try {
|
try {
|
||||||
LOGGER.info { "Initializing." }
|
LOGGER.info { "Initializing psoserv version ${VersionInfo.version}." }
|
||||||
|
|
||||||
// Try to get config file location from arguments first.
|
// Try to get config file location from arguments first.
|
||||||
var configFile: File? = null
|
var configFile: File? = null
|
||||||
|
Loading…
Reference in New Issue
Block a user