Home

Awesome

:warning: This repository is no longer mantained consider using Room as an alternative :warning:

Build Status Android Arsenal

ReactiveCache

The act of caching data with ReactiveCache is just another transformation in the reactive chain. ReactiveCache's API exposes both Single, SingleTransformer and Completable reactive types to gracefully merge the caching actions with the data stream.

Features

SetUp

Add to top level gradle.build file

allprojects {
    repositories {
        maven { url "https://jitpack.io" }
    }
}

Add to app module gradle.build file

dependencies {
    compile 'com.github.VictorAlbertos:ReactiveCache:1.1.3-2.x'
    compile 'com.github.VictorAlbertos.Jolyglot:gson:0.0.4'
    compile 'io.reactivex.rxjava2:rxjava:2.0.4'
}

Usage

ReactiveCache

Create a single instace of ReactiveCache for your entire application. The builder offers some additional configurations.

ReactiveCache reactiveCache = new ReactiveCache.Builder()
        .using(application.getFilesDir(), new GsonSpeaker());

evictAll() returns a Completable which evicts the cached data for every provider:

cacheProvider.evictAll()

<a name="provider"></a> Provider

Call reactiveCache#provider() to create a Provider to manage cache operations. The builder offers some additional configurations.

Provider<List<Model>> cacheProvider =
		reactiveCache.<List<Model>>provider()
        .withKey("models");

replace() returns a SingleTransformer which replaces the provider data with the item emitted from the Single source. If the source throws an exception, calling replace() doesn't evict the provider data.

api.getModels()
	.compose(cacheProvider.replace())

read() returns an Single which emits the provider data. If there isn't any data available, throws an exception.

cacheProvider.read()

readWithLoader() returns a SingleTransformer which emits the provider data. If there isn't any data available, it subscribes to the Single source to cache and emit its item.

api.getModels()
     .compose(cacheProvider.readWithLoader())

evict() returns a Completable which evicts the provider data:

cacheProvider.evict()

ProviderGroup

Call reactiveCache#providerGroup() to create a ProviderGroup to manage cache operations with pagination support. The builder offers some additional configurations.

ProviderGroup<List<Model>> cacheProvider =
		reactiveCache.<List<Model>>providerGroup()
        .withKey("modelsPaginated");

ProviderGroup exposes the same methods as Provider but requesting a key as an argument. That way the scope of the provider data in every operation is constrained to the data associated with the key.

api.getModels(group)
	.compose(cacheProvider.replace(group))

cacheProvider.read(group)

api.getModels(group)
     .compose(cacheProvider.readWithLoader())

cacheProvider.evict(group)

evict() is an overloaded method to evict the provider data for the entire collection of groups.

cacheProvider.evict()

<a name="built-in"></a> Built-in functions for writing operations

When the data is encoded as type List<Model>, you may use ProviderList and ProviderGroupList. Both clases inherit from their base clase (Provider and ProviderGroup respectively), so -besides exposing all their base funcionality- they offer a supletory api to perform write operations.

Call reactiveCache#providerList() to create a ProviderList.

ProviderList<Model> cacheProvider =
		reactiveCache.<Model>providerList()
        .withKey("models");

Or call reactiveCache#providerGroupList() to create a ProviderGroupList.

ProviderGroupList<Model> cacheProviderGroup =
		reactiveCache.<Model>providerGroupList()
        .withKey("modelsPaginated");

Both cacheProvider.entries() and cacheProviderGroup.entries(group) return an ActionsList<Model> instance which allows to easily operate with the cached data thought a whole set of functions.

ActionsList<Model> actions = cacheProvider.entries();
ActionsList<Model> actions = cacheProviderGroup.entries(group);

Every function exposed through actions return a Completable which must be subscribed to in order to consume the action. Follow some examples:

actions.addFirst(new Model())

//Add a new element at 5 position
actions.add((position, count) -> position == 5, new Model())

//Evict first element if the cache has already 300 records
actions.evictFirst(count -> count > 300)

//Update the element with id 5
actions.update(model -> model.getId() == 5, model -> {
    mock.setActive();
    return mock;
})

//Update all inactive modelds
actions.updateIterable(model -> model.isInactive(), model -> {
    model.setActive();
    return mock;
})

This table summarizes the available functions.

Use cases

Next examples illustrate how to use ReactiveCache on the data layer for client Android applications. They follow the well-known repository pattern in order to deal with data coming from a remote repository (server) and a local one (ReactiveCache).

Simple user session.

class UserRepository {
    private final Provider<User> cacheProvider;
    private final ApiUser api;

    UserRepository(ApiUser api, ReactiveCache reactiveCache) {
      this.api = api;
      this.cacheProvider = reactiveCache.<User>provider()
          .withKey("user");
    }

    Single<User> login(String email) {
      return api.loginUser(email)
          .compose(cacheProvider.replace());
    }

    Single<Boolean> isLogged() {
      return cacheProvider.read()
          .map(user -> true)
          .onErrorReturn(observer -> false);
    }

    Single<User> profile() {
      return cacheProvider.read();
    }

    Completable updateUserName(String name) {
      return cacheProvider.read()
          .map(user -> {
            user.setName(name);
            return user;
          })
          .compose(cacheProvider.replace())
          .toCompletable();
    }

    Completable logout() {
      return api.logout().andThen(cacheProvider.evict());
    }
}

Adding and removing tasks.

class TasksRepository {
    private final ProviderList<Task> cacheProvider;
    private final ApiTasks api;

    TasksRepository(ApiTasks api, ReactiveCache reactiveCache) {
      this.api = api;
      this.cacheProvider = reactiveCache.<Task>providerList()
          .withKey("tasks");
    }

    Single<Reply<List<Task>>> tasks(boolean refresh) {
      return refresh ? api.tasks().compose(cacheProvider.replaceAsReply())
          : api.tasks().compose(cacheProvider.readWithLoaderAsReply());
    }

    Completable addTask(String name, String desc) {
      return api.addTask(1, name, desc)
          .andThen(cacheProvider.entries()
              .addFirst(new Task(1, name, desc)));
    }

    Completable removeTask(int id) {
      return api.removeTask(id)
          .andThen(cacheProvider.entries()
              .evict((position, count, element) -> element.getId() == id));
    }
}

Paginated feed of events.

class EventsRepository {
    private final ProviderGroup<List<Event>> cacheProvider;
    private final ApiEvents apiEvents;

    EventsRepository(ApiEvents apiEvents, ReactiveCache reactiveCache) {
      this.apiEvents = apiEvents;
      this.cacheProvider = reactiveCache.<List<Event>>providerGroup()
          .withKey("events");
    }

    Single<Reply<List<Event>>> events(boolean refresh, int page) {
      if (refresh) {
        return apiEvents.events(page)
            .compose(cacheProvider.replaceAsReply(page));
      }

      return apiEvents.events(page)
          .compose(cacheProvider.readWithLoaderAsReply(page));
    }
}

Configuration

<a name="config_reactive_cache"></a> ReactiveCache

When building ReactiveCache the next global configurations are available thought the builder:

ReactiveCache reactiveCache = new ReactiveCache.Builder()
        .diskCacheSize(100)
        .encrypt("myStrongKey1234")
        .useExpiredDataWhenNoLoaderAvailable()
        .migrations(Arrays.asList(
            new MigrationCache(1, new Class[] {Model.class}),
            new MigrationCache(1, new Class[] {Model1.class})))
        .using(application.getFilesDir(), new GsonSpeaker());

<a name="config_providers"></a> Config provider

When building Provider, ProviderList, ProviderGroup or ProviderGroupList the next configuration is available thought the builder:

 Provider<Model> cacheModel = reactiveCache.<Model>provider()
          .encrypt(true)
          .expirable(false)
          .lifeCache(60, TimeUnit.MINUTES)
          .withKey("model");

Author

Víctor Albertos

Another author's libraries using RxJava: