ekt/src/main/kotlin/net/shadowfacts/ekt/EKT.kt

89 lines
2.3 KiB
Kotlin
Raw Normal View History

2017-08-04 19:38:25 +00:00
package net.shadowfacts.ekt
import java.io.File
import javax.script.ScriptContext
import javax.script.ScriptEngineManager
/**
* @author shadowfacts
*/
object EKT {
2017-08-04 20:56:49 +00:00
private val startControlCodes: Map<String, (String) -> String> = mapOf(
":" to { s -> s },
"=" to { s -> ")" + s },
"#" to { s -> "*/" + s }
)
private val endControlCodes: Map<String, (String) -> String> = mapOf(
":" to { s -> s },
"=" to { s -> s + "echo(" },
"#" to { s -> s + "/*" }
)
private val startStringRegex = Regex("(?:^|[^\\\\])([:=#])]")
2017-08-04 20:56:49 +00:00
private val endStringRegex = Regex("\\[([:=#])")
2017-08-04 19:38:25 +00:00
private val scriptPrefix = """
val _result = StringBuilder()
fun echo(s: Any) { _result.append(s) }
"""
private val scriptSuffix = """
_result.toString()
"""
private val manager by lazy {
ScriptEngineManager()
}
2017-08-04 20:58:17 +00:00
fun render(template: String, data: Map<String, Any>, dumpGeneratedScript: File? = null): String {
2017-08-04 19:38:25 +00:00
@Suppress("NAME_SHADOWING")
var template = template
template = template.replace("$", "\${'$'}")
2017-08-04 20:56:49 +00:00
template = ":]$template[:"
2017-08-04 19:38:25 +00:00
template = template.replace(startStringRegex, {
2017-08-04 20:56:49 +00:00
val c = it.groups[1]!!.value
if (c in startControlCodes) {
startControlCodes[c]!!("\necho(\"\"\"")
} else {
throw RuntimeException("Unknown control code: [$c")
}
2017-08-04 19:38:25 +00:00
})
template = template.replace(endStringRegex, {
2017-08-04 20:56:49 +00:00
val c = it.groups[1]!!.value
if (c in endControlCodes) {
endControlCodes[c]!!("\"\"\")\n")
} else {
throw RuntimeException("Unknown control code: $c]")
}
2017-08-04 19:38:25 +00:00
})
val script = scriptPrefix + template + scriptSuffix
2017-08-04 20:58:17 +00:00
dumpGeneratedScript?.apply {
if (!exists()) createNewFile()
writeText(script)
2017-08-04 19:38:25 +00:00
}
return eval(script, data) as String
}
2017-08-04 20:58:17 +00:00
fun render(template: File, data: Map<String, Any>, dumpGeneratedScript: File? = null): String {
2017-08-04 19:52:00 +00:00
return render(template.readText(), data, dumpGeneratedScript)
2017-08-04 19:38:25 +00:00
}
internal fun eval(script: String, data: Map<String, Any> = mapOf()): Any? {
val engine = manager.getEngineByExtension("kts")
val bindings = engine.getBindings(ScriptContext.ENGINE_SCOPE)
bindings.putAll(data)
// Hack to allow data to be accessed by name from template instead of via bindings map
val unwrapBindings = data.keys.map {
val type = data[it]!!::class.qualifiedName
"val $it = bindings[\"$it\"] as $type;"
}.joinToString("\n")
engine.eval(unwrapBindings)
return engine.eval(script)
}
}