| |
| import java.io.BufferedOutputStream |
| import java.io.File |
| import java.io.FileOutputStream |
| import java.util.jar.JarEntry |
| import java.util.jar.JarFile |
| import java.util.zip.ZipOutputStream |
| |
| val relocatedProtobuf by configurations.creating |
| val relocatedProtobufSources by configurations.creating |
| |
| val resultsCfg = configurations.create("default") |
| |
| val protobufVersion = rootProject.extra["versions.protobuf-java"] |
| val protobufJarPrefix = "protobuf-$protobufVersion" |
| val outputJarPath = "$buildDir/libs/$protobufJarPrefix-lite.jar" |
| |
| dependencies { |
| relocatedProtobuf(project(":custom-dependencies:protobuf-relocated", configuration = "default")) |
| relocatedProtobufSources(project(":custom-dependencies:protobuf-relocated", configuration = "sources")) |
| } |
| |
| task("prepare") { |
| inputs.files(relocatedProtobuf) // this also adds a dependency |
| outputs.file(outputJarPath) |
| doFirst { |
| File(outputJarPath).parentFile.mkdirs() |
| } |
| doLast { |
| val INCLUDE_START = "<include>**/" |
| val INCLUDE_END = ".java</include>" |
| val POM_PATH = "META-INF/maven/com.google.protobuf/protobuf-java/pom.xml" |
| |
| fun loadAllFromJar(file: File): Map<String, Pair<JarEntry, ByteArray>> { |
| val result = hashMapOf<String, Pair<JarEntry, ByteArray>>() |
| JarFile(file).use { jar -> |
| for (jarEntry in jar.entries()) { |
| result[jarEntry.name] = Pair(jarEntry, jar.getInputStream(jarEntry).readBytes()) |
| } |
| } |
| return result |
| } |
| |
| val allFiles = loadAllFromJar(relocatedProtobuf.singleFile) |
| |
| val keepClasses = arrayListOf<String>() |
| |
| val pomBytes = allFiles[POM_PATH]?.second ?: error("pom.xml is not found in protobuf jar at $POM_PATH") |
| val lines = String(pomBytes).lines() |
| |
| var liteProfileReached = false |
| for (lineUntrimmed in lines) { |
| val line = lineUntrimmed.trim() |
| |
| if (liteProfileReached && line == "</includes>") { |
| break |
| } |
| else if (line == "<id>lite</id>") { |
| liteProfileReached = true |
| continue |
| } |
| |
| if (liteProfileReached && line.startsWith(INCLUDE_START) && line.endsWith(INCLUDE_END)) { |
| keepClasses.add(line.removeSurrounding(INCLUDE_START, INCLUDE_END)) |
| } |
| } |
| |
| assert(liteProfileReached && keepClasses.isNotEmpty()) { "Wrong pom.xml or the format has changed, check its contents at $POM_PATH" } |
| |
| val outputFile = File(outputJarPath).apply { delete() } |
| ZipOutputStream(BufferedOutputStream(FileOutputStream(outputFile))).use { output -> |
| for ((name, value) in allFiles) { |
| val className = name.substringAfter("org/jetbrains/kotlin/protobuf/").substringBeforeLast(".class") |
| if (keepClasses.any { className == it || className.startsWith(it + "$") }) { |
| val (entry, bytes) = value |
| output.putNextEntry(entry) |
| output.write(bytes) |
| output.closeEntry() |
| } |
| } |
| } |
| } |
| addArtifact("archives", this, outputs.files.singleFile) { |
| classifier = "" |
| } |
| addArtifact(resultsCfg, this, outputs.files.singleFile) { |
| classifier = "" |
| } |
| } |
| |
| val clean by task<Delete> { |
| delete(buildDir) |
| } |
| |
| artifacts.add("archives", relocatedProtobufSources.files.single()) { |
| classifier = "sources" |
| } |