blob: b7d5ef12ed71d1bb608ec2498e0b5f071241c95a [file] [log] [blame]
/*
* Copyright (C) 2017 The Android Open Source Project
*
* 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 androidx.room.solver.binderprovider
import androidx.room.ext.PagingTypeNames
import androidx.room.parser.ParsedQuery
import androidx.room.processing.XDeclaredType
import androidx.room.processing.XType
import androidx.room.processor.Context
import androidx.room.processor.ProcessorErrors
import androidx.room.solver.QueryResultBinderProvider
import androidx.room.solver.query.result.ListQueryResultAdapter
import androidx.room.solver.query.result.PositionalDataSourceQueryResultBinder
import androidx.room.solver.query.result.QueryResultBinder
class DataSourceQueryResultBinderProvider(val context: Context) : QueryResultBinderProvider {
private val dataSourceTypeMirror: XType? by lazy {
context.processingEnv.findType(PagingTypeNames.DATA_SOURCE)
}
private val positionalDataSourceTypeMirror: XType? by lazy {
context.processingEnv.findType(PagingTypeNames.POSITIONAL_DATA_SOURCE)
}
override fun provide(declared: XDeclaredType, query: ParsedQuery): QueryResultBinder {
if (query.tables.isEmpty()) {
context.logger.e(ProcessorErrors.OBSERVABLE_QUERY_NOTHING_TO_OBSERVE)
}
val typeArg = declared.typeArguments.last()
val listAdapter = context.typeAdapterStore.findRowAdapter(typeArg, query)?.let {
ListQueryResultAdapter(it)
}
val tableNames = ((listAdapter?.accessedTableNames() ?: emptyList()) +
query.tables.map { it.name }).toSet()
return PositionalDataSourceQueryResultBinder(listAdapter, tableNames)
}
override fun matches(declared: XDeclaredType): Boolean {
if (dataSourceTypeMirror == null || positionalDataSourceTypeMirror == null) {
return false
}
if (declared.typeArguments.isEmpty()) {
return false
}
val erasure = declared.erasure()
val isDataSource = dataSourceTypeMirror!!.isAssignableFrom(erasure)
if (!isDataSource) {
return false
}
val isPositional = positionalDataSourceTypeMirror!!.isAssignableFrom(erasure)
if (!isPositional) {
context.logger.e(ProcessorErrors.PAGING_SPECIFY_DATA_SOURCE_TYPE)
}
return true
}
}