com.zeoflow.depot.solver.prepared.result.PreparedQueryResultAdapter.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of depot-compiler Show documentation
Show all versions of depot-compiler Show documentation
The Depot persistence library provides an abstraction layer over SQLite to allow for more robust database access while using the full power of SQLite.
The newest version!
/*
* Copyright (C) 2021 ZeoFlow SRL
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.zeoflow.depot.solver.prepared.result
import com.zeoflow.depot.ext.KotlinTypeNames
import com.zeoflow.depot.ext.L
import com.zeoflow.depot.ext.N
import com.zeoflow.depot.ext.T
import com.zeoflow.depot.parser.QueryType
import com.zeoflow.depot.compiler.processing.XType
import com.zeoflow.depot.compiler.processing.isInt
import com.zeoflow.depot.compiler.processing.isKotlinUnit
import com.zeoflow.depot.compiler.processing.isLong
import com.zeoflow.depot.compiler.processing.isVoid
import com.zeoflow.depot.compiler.processing.isVoidObject
import com.zeoflow.depot.solver.CodeGenScope
import com.zeoflow.depot.solver.prepared.binder.PreparedQueryResultBinder
import com.squareup.javapoet.FieldSpec
/**
* An adapter for [PreparedQueryResultBinder] that executes queries with INSERT, UPDATE or DELETE
* statements.
*/
class PreparedQueryResultAdapter(
private val returnType: XType,
private val queryType: QueryType
) {
companion object {
fun create(
returnType: XType,
queryType: QueryType
) = if (isValidReturnType(returnType, queryType)) {
PreparedQueryResultAdapter(returnType, queryType)
} else {
null
}
private fun isValidReturnType(returnType: XType, queryType: QueryType): Boolean {
if (returnType.isVoid() || returnType.isVoidObject() || returnType.isKotlinUnit()) {
return true
} else {
return when (queryType) {
QueryType.INSERT -> returnType.isLong()
QueryType.UPDATE, QueryType.DELETE -> returnType.isInt()
else -> false
}
}
}
}
fun executeAndReturn(
stmtQueryVal: String,
preparedStmtField: String?,
dbField: FieldSpec,
scope: CodeGenScope
) {
scope.builder().apply {
val stmtMethod = if (queryType == QueryType.INSERT) {
"executeInsert"
} else {
"executeUpdateDelete"
}
addStatement("$N.beginTransaction()", dbField)
beginControlFlow("try").apply {
if (returnType.isVoid() || returnType.isVoidObject() || returnType.isKotlinUnit()) {
addStatement("$L.$L()", stmtQueryVal, stmtMethod)
addStatement("$N.setTransactionSuccessful()", dbField)
if (returnType.isVoidObject()) {
addStatement("return null")
} else if (returnType.isKotlinUnit()) {
addStatement("return $T.INSTANCE", KotlinTypeNames.UNIT)
}
} else {
val resultVar = scope.getTmpVar("_result")
addStatement(
"final $L $L = $L.$L()",
returnType.typeName, resultVar, stmtQueryVal, stmtMethod
)
addStatement("$N.setTransactionSuccessful()", dbField)
addStatement("return $L", resultVar)
}
}
nextControlFlow("finally").apply {
addStatement("$N.endTransaction()", dbField)
if (preparedStmtField != null) {
addStatement("$N.release($L)", preparedStmtField, stmtQueryVal)
}
}
endControlFlow()
}
}
}