MapperReadKeyValuesRepo

Read-only one-to-many key-values repository adapter that applies type mapping via MapperRepo. Converts outer (From) key/value types to inner (To) types before delegating to to, and converts results back from inner to outer types.

Parameters

to

The underlying ReadKeyValuesRepo to delegate operations to

mapper

The MapperRepo providing bidirectional key/value type conversions

Type Parameters

FromKey

The outer key type exposed by this repo

FromValue

The outer value type exposed by this repo

ToKey

The inner key type used by the underlying to repo

ToValue

The inner value type used by the underlying to repo

Constructors

Link copied to clipboard

Properties

Link copied to clipboard

Provides a mapper for converting keys between inner and outer types.

Link copied to clipboard

Provides a mapper for converting values between inner and outer types.

Functions

Link copied to clipboard

Wraps this ReadKeyValuesRepo as a ReadKeyValueFromKeyValuesRepo, exposing each key mapped to a List of all associated values.

Link copied to clipboard
Link copied to clipboard
open suspend override fun contains(k: FromKey): Boolean

Checks if the specified key exists in the repository.

open suspend override fun contains(k: FromKey, v: FromValue): Boolean

Checks if the specified key-value pair exists in the repository.

Link copied to clipboard
open suspend override fun count(): Long

Returns the total count of key-value pairs in the repository.

open suspend override fun count(k: FromKey): Long

Returns the count of values associated with the specified key.

Link copied to clipboard

Computes the difference between all entries in this ReadKeyValuesRepo and the given other map.

Link copied to clipboard
Link copied to clipboard
open suspend override fun get(k: FromKey, pagination: Pagination, reversed: Boolean = false): PaginationResult<FromValue>

Retrieves a paginated list of values associated with the given key.

Link copied to clipboard
open suspend fun getAll(reverseLists: Boolean = false): Map<FromKey, List<FromValue>>

WARNING!!! THIS METHOD PROBABLY IS NOT EFFICIENT, USE WITH CAUTION

open suspend fun getAll(k: FromKey, reversed: Boolean = false): List<FromValue>
Link copied to clipboard
open suspend override fun keys(pagination: Pagination, reversed: Boolean = false): PaginationResult<FromKey>

Retrieves a paginated list of keys.

open suspend override fun keys(v: FromValue, pagination: Pagination, reversed: Boolean = false): PaginationResult<FromKey>

Retrieves keys that have the specified value associated with them.

Link copied to clipboard

Creates a pagination starting from the first page with size equal to the total count of items in this ReadKeyValuesRepo. This effectively creates a single page containing all items.

Link copied to clipboard
open suspend override fun ToKey.toInnerKey(): FromKey

Converts a key from the outer type to the inner type.

Link copied to clipboard
open suspend override fun ToValue.toInnerValue(): FromValue

Converts a value from the outer type to the inner type.

Link copied to clipboard
open suspend override fun FromKey.toOutKey(): ToKey

Converts a key from the inner type to the outer type.

Link copied to clipboard
open suspend override fun FromValue.toOutValue(): ToValue

Converts a value from the inner type to the outer type.

Link copied to clipboard

Wraps this ReadKeyValuesRepo with a MapperRepo to expose a mapped ReadKeyValuesRepo.

inline fun <FromKey, FromValue, ToKey, ToValue> ReadKeyValuesRepo<ToKey, ToValue>.withMapper(noinline keyFromToTo: suspend FromKey.() -> ToKey = { this as ToKey }, noinline valueFromToTo: suspend FromValue.() -> ToValue = { this as ToValue }, noinline keyToToFrom: suspend ToKey.() -> FromKey = { this as FromKey }, noinline valueToToFrom: suspend ToValue.() -> FromValue = { this as FromValue }): ReadKeyValuesRepo<FromKey, FromValue>

Wraps this ReadKeyValuesRepo with inline conversion lambdas to expose a mapped ReadKeyValuesRepo.