
org.mybatis.dynamic.sql.util.kotlin.KotlinSubQueryBuilders.kt Maven / Gradle / Ivy
/*
* Copyright ${license.git.copyrightYears} the original author or authors.
*
* 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 org.mybatis.dynamic.sql.util.kotlin
import org.mybatis.dynamic.sql.BasicColumn
import org.mybatis.dynamic.sql.SqlBuilder
import org.mybatis.dynamic.sql.SqlColumn
import org.mybatis.dynamic.sql.select.SelectModel
import org.mybatis.dynamic.sql.util.Buildable
@MyBatisDslMarker
sealed class KotlinBaseSubQueryBuilder> : Buildable {
private lateinit var selectBuilder: KotlinSelectBuilder
fun select(vararg selectList: BasicColumn, completer: SelectCompleter): T =
select(selectList.toList(), completer)
fun select(selectList: List, completer: SelectCompleter): T =
applySelf {
selectBuilder = KotlinSelectBuilder(SqlBuilder.select(selectList)).apply(completer)
}
fun selectDistinct(vararg selectList: BasicColumn, completer: SelectCompleter): T =
selectDistinct(selectList.toList(), completer)
fun selectDistinct(selectList: List, completer: SelectCompleter): T =
applySelf {
selectBuilder = KotlinSelectBuilder(SqlBuilder.selectDistinct(selectList)).apply(completer)
}
override fun build(): SelectModel =
try {
selectBuilder.build()
} catch (e: UninitializedPropertyAccessException) {
throw UninitializedPropertyAccessException(
"You must specify a select statement", e
)
}
private fun applySelf(block: T.() -> Unit): T =
self().apply { block() }
protected abstract fun self(): T
}
class KotlinSubQueryBuilder : KotlinBaseSubQueryBuilder() {
override fun self(): KotlinSubQueryBuilder = this
}
class KotlinQualifiedSubQueryBuilder : KotlinBaseSubQueryBuilder() {
var correlationName: String? = null
operator fun String.unaryPlus(): KotlinQualifiedSubQueryBuilder {
correlationName = this
return self()
}
override fun self(): KotlinQualifiedSubQueryBuilder = this
}
class KotlinInsertSelectSubQueryBuilder : KotlinBaseSubQueryBuilder() {
private lateinit var lateColumnList: List>
val columnList: List>
get(): List> =
try {
lateColumnList
} catch (e: UninitializedPropertyAccessException) {
throw UninitializedPropertyAccessException(
"You must specify a column list in an insert with select statement", e
)
}
fun columns(vararg columnList: SqlColumn<*>): KotlinInsertSelectSubQueryBuilder =
columns(columnList.asList())
fun columns(columnList: List>): KotlinInsertSelectSubQueryBuilder =
apply {
this.lateColumnList = columnList
}
override fun self(): KotlinInsertSelectSubQueryBuilder = this
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy