ContentPager

class ContentPager


ContentPager provides support for loading "paged" data on a background thread using the ContentResolver framework. This provides an effective compatibility layer for the ContentResolver "paging" support added in Android O. Those Android O changes, like this class, help reduce or eliminate the occurrence of expensive inter-process shared memory operations (aka "CursorWindow swaps") happening on the UI thread when working with remote providers.

The list of terms used in this document:

  • "The provider" is a android.content.ContentProvider supplying data identified by a specific content Uri. A provider is the source of data, and for the sake of this documents, the provider resides in a remote process.
  • "supports paging" A provider supports paging when it returns a pre-paged Cursor that honors the paging contract. See @link ContentResolver#QUERY_ARG_OFFSET} and QUERY_ARG_LIMIT for details on the contract.
  • "CursorWindow swaps" The process by which new data is loaded into a shared memory via a CursorWindow instance. This is a prominent contributor to UI jank in applications that use Cursor as backing data for UI elements like RecyclerView.

Details

Data will be loaded from a content uri in one of two ways, depending on the runtime environment and if the provider supports paging.

  • If the system is Android O and greater and the provider supports paging, the Cursor will be returned, effectively unmodified, to a ContentCallback supplied by your application.
  • If the system is less than Android O or the provider does not support paging, the loader will fetch an unpaged Cursor from the provider. The unpaged Cursor will be held by the ContentPager, and data will be copied into a new cursor in a background thread. The new cursor will be returned to a ContentCallback supplied by your application.

In either cases, when an application employs this library it can generally assume that there will be no CursorWindow swap. But picking the right limit for records can help reduce or even eliminate some heavy lifting done to guard against swaps.

How do we avoid that entirely?

Picking a reasonable item limit

Authors are encouraged to experiment with limits using real data and the widest column projection they'll use in their app. The total number of records that will fit into shared memory varies depending on multiple factors.

  • The number of columns being requested in the cursor projection. Limit the number of columns, to reduce the size of each row.
  • The size of the data in each column.
  • the Cursor type.

If the cursor is running in-process, there may be no need for paging. Depending on the Cursor implementation chosen there may be no shared memory/CursorWindow in use. NOTE: If the provider is running in your process, you should implement paging support inorder to make your app run fast and to consume the fewest resources possible.

In common cases where there is a low volume (in the hundreds) of records in the dataset being queried, all of the data should easily fit in shared memory. A debugger can be handy to understand with greater accuracy how many results can fit in shared memory. Inspect the Cursor object returned from a call to query. If the underlying type is a android.database.CrossProcessCursor or android.database.AbstractWindowedCursor it'll have a CursorWindow field. Check getNumRows. If getNumRows returns less than getCount, then you've found something close to the max rows that'll fit in a page. If the data in row is expected to be relatively stable in size, reduce row count by 15-20% to get a reasonable max page size.

What if the limit I guessed was wrong?

The library includes safeguards that protect against situations where an author specifies a record limit that exceeds the number of rows accessible without a CursorWindow swap. In such a circumstance, the Cursor will be adapted to report a count ({Cursor#getCount}) that reflects only records available without CursorWindow swap. But this involves extra work that can be eliminated with a correct limit.

In addition to adjusted coujnt, EXTRA_SUGGESTED_LIMIT will be included in cursor extras. When EXTRA_SUGGESTED_LIMIT is present in extras, the client should strongly consider using this value as the limit for subsequent queries as doing so should help avoid the ned to wrap pre-paged cursors.

Lifecycle and cleanup

Cursors resulting from queries are owned by the requesting client. So they must be closed by the client at the appropriate time.

However, the library retains an internal cache of content that needs to be cleaned up. In order to cleanup, call reset.

Projections

Note that projection is ignored when determining the identity of a query. When adding or removing projection, clients should call reset to clear cached data.

Summary

Nested types

Callback by which a client receives results of a query.

@IntDef(value = [ContentPager.CURSOR_DISPOSITION_COPIED, ContentPager.CURSOR_DISPOSITION_PAGED, ContentPager.CURSOR_DISPOSITION_REPAGED, ContentPager.CURSOR_DISPOSITION_WRAPPED])
@Retention(value = RetentionPolicy.SOURCE)
annotation ContentPager.CursorDisposition

Implementations of this interface provide the mechanism for execution of queries off the UI thread.

Callback that receives a cursor once a query as been executed on the Runner.

Constants

const Int

The cursor size exceeded page size.

const Int

The cursor was provider paged.

const Int

The cursor was pre-paged, but total size was larger than CursorWindow size.

const Int

The cursor was not pre-paged, but total size was smaller than page size.

const String!
EXTRA_HONORED_ARGS = "android.content.extra.HONORED_ARGS"
const String!
EXTRA_REQUESTED_LIMIT = "android-support:extra-ignored-limit"

Denotes the requested limit, if the limit was not-honored.

const String!
EXTRA_SUGGESTED_LIMIT = "android-support:extra-suggested-limit"

Specifies a limit likely to fit in CursorWindow limit.

const String!
EXTRA_TOTAL_COUNT = "android.content.extra.TOTAL_COUNT"
const String!
QUERY_ARG_LIMIT = "android:query-arg-limit"
const String!
QUERY_ARG_OFFSET = "android:query-arg-offset"

Public constructors

ContentPager(
    resolver: ContentResolver!,
    queryRunner: ContentPager.QueryRunner!
)

Creates a new ContentPager with a default cursor cache size of 1.

ContentPager(
    resolver: ContentResolver,
    queryRunner: ContentPager.QueryRunner,
    cursorCacheSize: Int
)

Creates a new ContentPager.

Public functions

java-static Bundle
createArgs(offset: Int, limit: Int)

Builds a Bundle with offset and limit values suitable for with query.

Query
@MainThread
query(
    @RequiresPermission.Read uri: Uri,
    projection: Array<String!>?,
    queryArgs: Bundle,
    cancellationSignal: CancellationSignal?,
    callback: ContentPager.ContentCallback
)

Initiates loading of content.

Unit

Clears any cached data.

Constants

CURSOR_DISPOSITION_COPIED

Added in 1.0.0
const val CURSOR_DISPOSITION_COPIED = 1: Int

The cursor size exceeded page size. A new cursor with with page data was created.

CURSOR_DISPOSITION_PAGED

Added in 1.0.0
const val CURSOR_DISPOSITION_PAGED = 2: Int

The cursor was provider paged.

CURSOR_DISPOSITION_REPAGED

Added in 1.0.0
const val CURSOR_DISPOSITION_REPAGED = 3: Int

The cursor was pre-paged, but total size was larger than CursorWindow size.

CURSOR_DISPOSITION_WRAPPED

Added in 1.0.0
const val CURSOR_DISPOSITION_WRAPPED = 4: Int

The cursor was not pre-paged, but total size was smaller than page size. Cursor wrapped to supply data in extras only.

EXTRA_HONORED_ARGS

Added in 1.0.0
const val EXTRA_HONORED_ARGS = "android.content.extra.HONORED_ARGS": String!

EXTRA_REQUESTED_LIMIT

Added in 1.0.0
const val EXTRA_REQUESTED_LIMIT = "android-support:extra-ignored-limit": String!

Denotes the requested limit, if the limit was not-honored.

EXTRA_SUGGESTED_LIMIT

Added in 1.0.0
const val EXTRA_SUGGESTED_LIMIT = "android-support:extra-suggested-limit": String!

Specifies a limit likely to fit in CursorWindow limit.

EXTRA_TOTAL_COUNT

Added in 1.0.0
const val EXTRA_TOTAL_COUNT = "android.content.extra.TOTAL_COUNT": String!

QUERY_ARG_LIMIT

Added in 1.0.0
const val QUERY_ARG_LIMIT = "android:query-arg-limit": String!
See also
QUERY_ARG_LIMIT

QUERY_ARG_OFFSET

Added in 1.0.0
const val QUERY_ARG_OFFSET = "android:query-arg-offset": String!
See also
QUERY_ARG_OFFSET

Public constructors

ContentPager

Added in 1.0.0
ContentPager(
    resolver: ContentResolver!,
    queryRunner: ContentPager.QueryRunner!
)

Creates a new ContentPager with a default cursor cache size of 1.

ContentPager

Added in 1.0.0
ContentPager(
    resolver: ContentResolver,
    queryRunner: ContentPager.QueryRunner,
    cursorCacheSize: Int
)

Creates a new ContentPager.

Parameters
resolver: ContentResolver

The content resolver to use when performing queries.

queryRunner: ContentPager.QueryRunner

The query running to use. This provides a means of executing queries on a background thread.

cursorCacheSize: Int

Specifies the size of the unpaged cursor cache. If you will only be querying a single content Uri, 1 is sufficient. If you wish to use a single ContentPager for queries against several independent Uris this number should be increased to reflect that. Remember that adding or modifying a query argument creates a new Uri.

Public functions

createArgs

Added in 1.0.0
java-static fun createArgs(offset: Int, limit: Int): Bundle

Builds a Bundle with offset and limit values suitable for with query.

Parameters
offset: Int

must be greater than or equal to 0.

limit: Int

can be any value. Only values greater than or equal to 0 are respected. If any other value results in no upper limit on results. Note that a well behaved client should probably supply a reasonable limit. See class documentation on how to select a limit.

Returns
Bundle

Mutable Bundle pre-populated with offset and limits vales.

query

Added in 1.0.0
@MainThread
fun query(
    @RequiresPermission.Read uri: Uri,
    projection: Array<String!>?,
    queryArgs: Bundle,
    cancellationSignal: CancellationSignal?,
    callback: ContentPager.ContentCallback
): Query

Initiates loading of content. For details on all params but callback, see query.

Parameters
@RequiresPermission.Read uri: Uri

The URI, using the content:// scheme, for the content to retrieve.

projection: Array<String!>?

A list of which columns to return. Passing null will return the default project as determined by the provider. This can be inefficient, so it is best to supply a projection.

queryArgs: Bundle

A Bundle containing any arguments to the query.

cancellationSignal: CancellationSignal?

A signal to cancel the operation in progress, or null if none. If the operation is canceled, then OperationCanceledException will be thrown when the query is executed.

callback: ContentPager.ContentCallback

The callback that will receive the query results.

Returns
Query

A Query object describing the query.

reset

Added in 1.0.0
@MainThread
fun reset(): Unit

Clears any cached data. This method must be called in order to cleanup runtime state (like cursors).