blob: 3d80fbd8cf806d21e5b88648ca46f25eb5df917a [file] [log] [blame]
import androidx.room.EntityDeleteOrUpdateAdapter
import androidx.room.EntityInsertAdapter
import androidx.room.EntityUpsertAdapter
import androidx.room.RoomDatabase
import androidx.room.util.performSuspending
import androidx.sqlite.SQLiteStatement
import javax.`annotation`.processing.Generated
import kotlin.Int
import kotlin.Long
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
import kotlin.reflect.KClass
@Generated(value = ["androidx.room.RoomProcessor"])
@Suppress(names = ["UNCHECKED_CAST", "DEPRECATION", "REDUNDANT_PROJECTION", "REMOVAL"])
public class MyDao_Impl(
__db: RoomDatabase,
) : MyDao {
private val __db: RoomDatabase
private val __insertAdapterOfMyEntity: EntityInsertAdapter<MyEntity>
private val __deleteAdapterOfMyEntity: EntityDeleteOrUpdateAdapter<MyEntity>
private val __updateAdapterOfMyEntity: EntityDeleteOrUpdateAdapter<MyEntity>
private val __upsertAdapterOfMyEntity: EntityUpsertAdapter<MyEntity>
init {
this.__db = __db
this.__insertAdapterOfMyEntity = object : EntityInsertAdapter<MyEntity>() {
protected override fun createQuery(): String =
"INSERT OR ABORT INTO `MyEntity` (`pk`,`other`) VALUES (?,?)"
protected override fun bind(statement: SQLiteStatement, entity: MyEntity) {
statement.bindLong(1, entity.pk.toLong())
statement.bindText(2, entity.other)
}
}
this.__deleteAdapterOfMyEntity = object : EntityDeleteOrUpdateAdapter<MyEntity>() {
protected override fun createQuery(): String = "DELETE FROM `MyEntity` WHERE `pk` = ?"
protected override fun bind(statement: SQLiteStatement, entity: MyEntity) {
statement.bindLong(1, entity.pk.toLong())
}
}
this.__updateAdapterOfMyEntity = object : EntityDeleteOrUpdateAdapter<MyEntity>() {
protected override fun createQuery(): String =
"UPDATE OR ABORT `MyEntity` SET `pk` = ?,`other` = ? WHERE `pk` = ?"
protected override fun bind(statement: SQLiteStatement, entity: MyEntity) {
statement.bindLong(1, entity.pk.toLong())
statement.bindText(2, entity.other)
statement.bindLong(3, entity.pk.toLong())
}
}
this.__upsertAdapterOfMyEntity = EntityUpsertAdapter<MyEntity>(object :
EntityInsertAdapter<MyEntity>() {
protected override fun createQuery(): String =
"INSERT INTO `MyEntity` (`pk`,`other`) VALUES (?,?)"
protected override fun bind(statement: SQLiteStatement, entity: MyEntity) {
statement.bindLong(1, entity.pk.toLong())
statement.bindText(2, entity.other)
}
}, object : EntityDeleteOrUpdateAdapter<MyEntity>() {
protected override fun createQuery(): String =
"UPDATE `MyEntity` SET `pk` = ?,`other` = ? WHERE `pk` = ?"
protected override fun bind(statement: SQLiteStatement, entity: MyEntity) {
statement.bindLong(1, entity.pk.toLong())
statement.bindText(2, entity.other)
statement.bindLong(3, entity.pk.toLong())
}
})
}
public override suspend fun insert(vararg entities: MyEntity): List<Long> =
performSuspending(__db, false, true) { _connection ->
val _result: List<Long> = __insertAdapterOfMyEntity.insertAndReturnIdsList(_connection,
entities)
_result
}
public override suspend fun delete(entity: MyEntity): Int = performSuspending(__db, false, true) {
_connection ->
var _result: Int = 0
_result += __deleteAdapterOfMyEntity.handle(_connection, entity)
_result
}
public override suspend fun update(entity: MyEntity): Int = performSuspending(__db, false, true) {
_connection ->
var _result: Int = 0
_result += __updateAdapterOfMyEntity.handle(_connection, entity)
_result
}
public override suspend fun upsert(vararg entities: MyEntity): List<Long> =
performSuspending(__db, false, true) { _connection ->
val _result: List<Long> = __upsertAdapterOfMyEntity.upsertAndReturnIdsList(_connection,
entities)
_result
}
public companion object {
public fun getRequiredConverters(): List<KClass<*>> = emptyList()
}
}