Paper/build.gradle.kts

299 lines
9.5 KiB
Plaintext
Raw Permalink Normal View History

import io.papermc.paperweight.PaperweightException
2023-12-06 04:35:33 +01:00
import io.papermc.paperweight.tasks.BaseTask
import io.papermc.paperweight.util.*
import org.gradle.api.tasks.testing.logging.TestExceptionFormat
import org.gradle.api.tasks.testing.logging.TestLogEvent
2023-12-06 04:35:33 +01:00
import java.io.ByteArrayOutputStream
import java.nio.file.Path
2023-12-06 05:46:41 +01:00
import java.util.regex.Pattern
2023-12-06 04:35:33 +01:00
import kotlin.io.path.*
plugins {
java
2021-08-18 00:11:04 +02:00
`maven-publish`
2024-04-30 19:30:14 +02:00
id("io.papermc.paperweight.core") version "1.6.3"
}
allprojects {
apply(plugin = "java")
2021-08-18 00:11:04 +02:00
apply(plugin = "maven-publish")
java {
toolchain {
2024-04-23 19:02:08 +02:00
languageVersion = JavaLanguageVersion.of(21)
}
}
}
val paperMavenPublicUrl = "https://repo.papermc.io/repository/maven-public/"
subprojects {
tasks.withType<JavaCompile> {
options.encoding = Charsets.UTF_8.name()
2024-04-23 19:02:08 +02:00
options.release = 21
}
tasks.withType<Javadoc> {
options.encoding = Charsets.UTF_8.name()
}
tasks.withType<ProcessResources> {
filteringCharset = Charsets.UTF_8.name()
}
tasks.withType<Test> {
testLogging {
showStackTraces = true
exceptionFormat = TestExceptionFormat.FULL
events(TestLogEvent.STANDARD_OUT)
}
}
repositories {
mavenCentral()
maven(paperMavenPublicUrl)
2024-04-25 02:46:57 +02:00
maven("https://s01.oss.sonatype.org/content/repositories/snapshots/") // TODO - Adventure snapshot
}
}
2022-04-07 18:36:19 +02:00
val spigotDecompiler: Configuration by configurations.creating
repositories {
2021-06-13 05:18:50 +02:00
mavenCentral()
maven(paperMavenPublicUrl) {
2022-04-07 18:36:19 +02:00
content {
onlyForConfigurations(
configurations.paperclip.name,
spigotDecompiler.name,
)
}
}
}
dependencies {
2024-04-30 00:16:07 +02:00
paramMappings("net.fabricmc:yarn:1.20.6+build.1:mergedv2")
2024-04-28 01:26:28 +02:00
remapper("net.fabricmc:tiny-remapper:0.10.2:fat")
decompiler("org.vineflower:vineflower:1.10.1")
spigotDecompiler("io.papermc:patched-spigot-fernflower:0.1+build.13")
2023-03-20 06:18:33 +01:00
paperclip("io.papermc:paperclip:3.0.3")
}
paperweight {
2023-12-06 19:48:37 +01:00
minecraftVersion = providers.gradleProperty("mcVersion")
serverProject = project(":paper-server")
2023-12-06 19:48:37 +01:00
paramMappingsRepo = paperMavenPublicUrl
remapRepo = paperMavenPublicUrl
decompileRepo = paperMavenPublicUrl
2022-04-07 18:36:19 +02:00
craftBukkit {
2023-12-06 19:48:37 +01:00
fernFlowerJar = layout.file(spigotDecompiler.elements.map { it.single().asFile })
2022-04-07 18:36:19 +02:00
}
paper {
2023-12-06 19:48:37 +01:00
spigotApiPatchDir = layout.projectDirectory.dir("patches/api")
spigotServerPatchDir = layout.projectDirectory.dir("patches/server")
2021-06-11 14:02:28 +02:00
2023-12-06 19:48:37 +01:00
mappingsPatch = layout.projectDirectory.file("build-data/mappings-patch.tiny")
reobfMappingsPatch = layout.projectDirectory.file("build-data/reobf-mappings-patch.tiny")
2021-06-27 05:11:45 +02:00
reobfPackagesToFix.addAll(
"co.aikar.timings",
"com.destroystokyo.paper",
"com.mojang",
"io.papermc.paper",
2021-12-02 08:21:14 +01:00
"ca.spottedleaf",
2021-06-27 05:11:45 +02:00
"net.kyori.adventure.bossbar",
"net.minecraft",
"org.bukkit.craftbukkit",
2021-12-02 08:21:14 +01:00
"org.spigotmc",
2021-06-27 05:11:45 +02:00
)
}
}
2021-08-18 00:11:04 +02:00
tasks.generateDevelopmentBundle {
2023-12-06 19:48:37 +01:00
apiCoordinates = "io.papermc.paper:paper-api"
mojangApiCoordinates = "io.papermc.paper:paper-mojangapi"
libraryRepositories.addAll(
"https://repo.maven.apache.org/maven2/",
paperMavenPublicUrl,
2024-04-25 02:46:57 +02:00
"https://s01.oss.sonatype.org/content/repositories/snapshots/", // TODO - Adventure snapshot
2021-08-18 00:11:04 +02:00
)
}
publishing {
2022-02-21 21:44:17 +01:00
if (project.providers.gradleProperty("publishDevBundle").isPresent) {
2021-08-18 00:11:04 +02:00
publications.create<MavenPublication>("devBundle") {
artifact(tasks.generateDevelopmentBundle) {
artifactId = "dev-bundle"
}
}
}
}
allprojects {
publishing {
repositories {
maven("https://repo.papermc.io/repository/maven-snapshots/") {
2021-08-18 00:11:04 +02:00
name = "paperSnapshots"
credentials(PasswordCredentials::class)
}
}
}
}
tasks.register("printMinecraftVersion") {
doLast {
println(providers.gradleProperty("mcVersion").get().trim())
}
}
2022-03-04 10:41:03 +01:00
tasks.register("printPaperVersion") {
doLast {
println(project.version)
}
}
2023-12-06 04:35:33 +01:00
// see gradle.properties
if (providers.gradleProperty("updatingMinecraft").getOrElse("false").toBoolean()) {
tasks.collectAtsFromPatches {
2023-12-06 19:48:37 +01:00
val dir = layout.projectDirectory.dir("patches/unapplied/server")
if (dir.path.isDirectory()) {
extraPatchDir = dir
}
2023-12-06 04:35:33 +01:00
}
tasks.withType<io.papermc.paperweight.tasks.RebuildGitPatches>().configureEach {
2023-12-06 19:48:37 +01:00
filterPatches = false
2023-12-06 04:35:33 +01:00
}
tasks.register("continueServerUpdate", RebasePatches::class) {
2023-12-06 05:59:31 +01:00
description = "Moves the next X patches from unapplied to applied, and applies them. X being the number of patches that apply cleanly, plus the terminal failure if any."
2023-12-06 04:35:33 +01:00
projectDir = project.projectDir
appliedPatches = file("patches/server")
unappliedPatches = file("patches/unapplied/server")
2023-12-06 19:48:37 +01:00
applyTaskName = "applyServerPatches"
2024-04-23 20:44:28 +02:00
patchedDir = "Paper-Server"
2023-12-06 04:35:33 +01:00
}
}
@UntrackedTask(because = "Does not make sense to track state")
abstract class RebasePatches : BaseTask() {
@get:Internal
abstract val projectDir: DirectoryProperty
@get:InputFiles
abstract val appliedPatches: DirectoryProperty
@get:InputFiles
abstract val unappliedPatches: DirectoryProperty
2023-12-06 19:48:37 +01:00
@get:Input
abstract val applyTaskName: Property<String>
2024-04-23 20:44:28 +02:00
@get:Input
abstract val patchedDir: Property<String>
2023-12-06 04:35:33 +01:00
private fun unapplied(): List<Path> =
unappliedPatches.path.listDirectoryEntries("*.patch").sortedBy { it.name }
2023-12-06 05:46:41 +01:00
private fun appliedLoc(patch: Path): Path = appliedPatches.path.resolve(unappliedPatches.path.relativize(patch))
companion object {
val regex = Pattern.compile("Patch failed at ([0-9]{4}) (.*)")
val continuationRegex = Pattern.compile("^\\s{1}.+\$")
2023-12-06 05:46:41 +01:00
const val subjectPrefix = "Subject: [PATCH] "
}
2023-12-06 04:35:33 +01:00
@TaskAction
fun run() {
val patchedDirPath = projectDir.path.resolve(patchedDir.get())
if (patchedDirPath.isDirectory()) {
val status = Git(patchedDirPath)("status").getText()
if (status.contains("You are in the middle of an am session.")) {
throw PaperweightException("Cannot continue update when $patchedDirPath is in the middle of an am session.")
}
}
2023-12-06 05:46:41 +01:00
val unapplied = unapplied()
for (patch in unapplied) {
patch.copyTo(appliedLoc(patch))
}
2023-12-06 04:35:33 +01:00
2023-12-06 05:46:41 +01:00
val out = ByteArrayOutputStream()
val proc = ProcessBuilder()
.directory(projectDir.path)
2023-12-06 19:48:37 +01:00
.command("./gradlew", applyTaskName.get())
2023-12-06 05:46:41 +01:00
.redirectErrorStream(true)
.start()
val f = redirect(proc.inputStream, out)
2023-12-06 05:46:41 +01:00
val exit = proc.waitFor()
f.get()
2023-12-06 05:46:41 +01:00
if (exit != 0) {
val outStr = String(out.toByteArray())
val matcher = regex.matcher(outStr)
if (!matcher.find()) error("Could not determine failure point")
val failedSubjectFragment = matcher.group(2)
val failed = unapplied.single { p ->
p.useLines { lines ->
val collect = mutableListOf<String>()
for (line in lines) {
if (line.startsWith(subjectPrefix)) {
collect += line
} else if (collect.size == 1) {
if (continuationRegex.matcher(line).matches()) {
collect += line
} else {
break
}
}
}
val subjectLine = collect.joinToString("").substringAfter(subjectPrefix)
2023-12-06 05:46:41 +01:00
subjectLine.startsWith(failedSubjectFragment)
}
}
// delete successful & failure point from unapplied patches dir
for (path in unapplied) {
path.deleteIfExists()
if (path == failed) {
break
}
}
2023-12-06 04:35:33 +01:00
2023-12-06 05:46:41 +01:00
// delete failed from patches dir
var started = false
for (path in unapplied) {
if (path == failed) {
started = true
continue
}
if (started) {
appliedLoc(path).deleteIfExists()
}
}
2024-04-23 20:44:28 +02:00
// Delete the build file before resetting the AM session in case it has compilation errors
patchedDirPath.resolve("build.gradle.kts").deleteIfExists()
2023-12-06 05:46:41 +01:00
// Apply again to reset the am session (so it ends on the failed patch, to allow us to rebuild after fixing it)
val apply2 = ProcessBuilder()
2023-12-06 04:35:33 +01:00
.directory(projectDir.path)
2023-12-06 19:48:37 +01:00
.command("./gradlew", applyTaskName.get())
2023-12-06 04:35:33 +01:00
.redirectErrorStream(true)
.start()
val f1 = redirect(apply2.inputStream, System.out)
2023-12-06 21:24:41 +01:00
apply2.waitFor()
f1.get()
2023-12-06 04:35:33 +01:00
2023-12-06 05:46:41 +01:00
logger.lifecycle(outStr)
logger.lifecycle("Patch failed at $failed; See Git output above.")
} else {
unapplied.forEach { it.deleteIfExists() }
logger.lifecycle("All patches applied!")
2023-12-06 04:35:33 +01:00
}
2023-12-06 05:46:41 +01:00
val git = Git(projectDir.path)
git("add", appliedPatches.path.toString() + "/*").runSilently()
git("add", unappliedPatches.path.toString() + "/*").runSilently()
2023-12-06 04:35:33 +01:00
}
}