ru.pocketbyte.locolaser.kotlinmpp.resource.KotlinAbsResources.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of resource-kotlin-mpp Show documentation
Show all versions of resource-kotlin-mpp Show documentation
Implementation of platform for LocoLaser tool to work with Kotlin MPP projects.
The newest version!
package ru.pocketbyte.locolaser.kotlinmpp.resource
import ru.pocketbyte.locolaser.config.resources.ResourceFileProvider
import ru.pocketbyte.locolaser.config.resources.filter.ResourcesFilter
import ru.pocketbyte.locolaser.resource.AbsResources
import java.io.File
abstract class KotlinAbsResources(
dir: File,
name: String,
resourceFileProvider: ResourceFileProvider,
filter: ResourcesFilter?
) : AbsResources(dir, name, resourceFileProvider, filter) {
companion object {
const val KOTLIN_FILE_EXTENSION = "kt"
}
val className: String
val classPackage: String
override val fileExtension: String = KOTLIN_FILE_EXTENSION
init {
val lastSegmentIndex = name.lastIndexOf(".")
if (lastSegmentIndex <= 0)
throw IllegalArgumentException("Invalid resource name: $name")
this.className = name.substring(lastSegmentIndex + 1)
this.classPackage = name.substring(0, lastSegmentIndex)
}
}