ClashMetaForAndroid/core/build.gradle.kts

118 lines
2.9 KiB
Plaintext
Raw Normal View History

import com.github.kr328.golang.GolangBuildTask
import com.github.kr328.golang.GolangPlugin
2021-05-14 19:51:08 +03:00
import java.io.FileOutputStream
import java.net.URL
import java.time.Duration
plugins {
kotlin("android")
id("com.android.library")
2021-05-14 19:51:08 +03:00
id("kotlinx-serialization")
id("golang-android")
2021-05-14 19:51:08 +03:00
}
val geoipDatabaseUrl =
2022-06-16 10:24:43 +03:00
"https://raw.githubusercontent.com/Loyalsoldier/geoip/release/Country.mmdb"
2021-05-14 19:51:08 +03:00
val geoipInvalidate = Duration.ofDays(7)!!
val geoipOutput = buildDir.resolve("intermediates/golang_blob")
val golangSource = file("src/main/golang/native")
2021-05-14 19:51:08 +03:00
golang {
sourceSets {
2022-06-16 10:24:43 +03:00
create("meta-alpha") {
2024-01-16 18:21:27 +03:00
tags.set(listOf("foss","with_gvisor","cmfa"))
2021-09-11 19:39:59 +03:00
srcDir.set(file("src/foss/golang"))
2021-05-14 19:51:08 +03:00
}
2023-05-10 13:10:50 +03:00
create("meta") {
2024-01-16 18:21:27 +03:00
tags.set(listOf("foss","with_gvisor","cmfa"))
2023-05-10 13:10:50 +03:00
srcDir.set(file("src/foss/golang"))
}
all {
fileName.set("libclash.so")
2021-09-11 19:39:59 +03:00
packageName.set("cfa/native")
2021-05-14 19:51:08 +03:00
}
}
}
2021-05-14 19:51:08 +03:00
android {
productFlavors {
all {
externalNativeBuild {
cmake {
arguments("-DGO_SOURCE:STRING=${golangSource}")
arguments("-DGO_OUTPUT:STRING=${GolangPlugin.outputDirOf(project, null, null)}")
arguments("-DFLAVOR_NAME:STRING=$name")
}
}
}
2021-05-14 19:51:08 +03:00
}
externalNativeBuild {
cmake {
path = file("src/main/cpp/CMakeLists.txt")
}
}
}
dependencies {
implementation(project(":common"))
2021-05-14 19:51:08 +03:00
2022-03-22 08:48:02 +03:00
implementation(libs.androidx.core)
implementation(libs.kotlin.coroutine)
implementation(libs.kotlin.serialization.json)
2021-05-14 19:51:08 +03:00
}
afterEvaluate {
tasks.withType(GolangBuildTask::class.java).forEach {
2021-09-11 20:33:52 +03:00
it.inputs.dir(golangSource)
}
}
2021-05-14 19:51:08 +03:00
task("downloadGeoipDatabase") {
val databaseFile = geoipOutput.resolve("Country.mmdb")
val moduleFile = geoipOutput.resolve("go.mod")
val sourceFile = geoipOutput.resolve("blob.go")
val moduleContent = """
module "cfa/blob"
""".trimIndent()
val sourceContent = """
package blob
import _ "embed"
//go:embed Country.mmdb
var GeoipDatabase []byte
""".trimIndent()
outputs.dir(geoipOutput)
2021-05-14 19:51:08 +03:00
onlyIf {
System.currentTimeMillis() - databaseFile.lastModified() > geoipInvalidate.toMillis()
}
doLast {
geoipOutput.mkdirs()
moduleFile.writeText(moduleContent)
sourceFile.writeText(sourceContent)
URL(geoipDatabaseUrl).openConnection().getInputStream().use { input ->
FileOutputStream(databaseFile).use { output ->
input.copyTo(output)
}
}
}
}
afterEvaluate {
val downloadTask = tasks["downloadGeoipDatabase"]
tasks.forEach {
if (it.name.startsWith("externalGolangBuild")) {
it.dependsOn(downloadTask)
}
}
2022-06-16 10:24:43 +03:00
}