Skip to content

Instantly share code, notes, and snippets.

@IlyaGulya
Forked from technoir42/SingleCacheSuccess.java
Last active July 4, 2019 16:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save IlyaGulya/d8f4ca1e992c103f13fbca4b8308f54f to your computer and use it in GitHub Desktop.
Save IlyaGulya/d8f4ca1e992c103f13fbca4b8308f54f to your computer and use it in GitHub Desktop.
/*
* Copyright 2019 Sergey Chelombitko
*
* 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.
*/
import java.util.concurrent.TimeUnit;
import java.util.concurrent.atomic.AtomicBoolean;
import java.util.concurrent.atomic.AtomicLong;
import java.util.concurrent.atomic.AtomicReference;
import dagger.internal.Preconditions;
import io.reactivex.Single;
import io.reactivex.SingleObserver;
import io.reactivex.disposables.Disposable;
import io.reactivex.plugins.RxJavaPlugins;
/**
* Stores the success value from the source Single and replays it to observers.
*/
public final class SingleCacheSuccess<T> extends Single<T> implements SingleObserver<T> {
@SuppressWarnings("rawtypes")
private static final CacheDisposable[] EMPTY = new CacheDisposable[0];
@SuppressWarnings("rawtypes")
private static final CacheDisposable[] TERMINATED = new CacheDisposable[0];
private final Single<T> source;
private CacheStrategy cacheStrategy;
private final AtomicBoolean wip = new AtomicBoolean();
private final AtomicReference<CacheDisposable<T>[]> observers;
private T value;
public static <T> Single<T> create(Single<T> source) {
Preconditions.checkNotNull(source, "source is null");
return RxJavaPlugins.onAssembly(new SingleCacheSuccess<>(source, new InfiniteCacheStrategy()));
}
public static <T> Single<T> create(Single<T> source, long ttl, TimeUnit unit) {
Preconditions.checkNotNull(source, "source is null");
Preconditions.checkNotNull(unit, "unit is null");
return RxJavaPlugins.onAssembly(new SingleCacheSuccess<>(source, new TtlCacheStrategy(ttl, unit)));
}
public static <T> Single<T> create(Single<T> source, CacheStrategy cacheStrategy) {
Preconditions.checkNotNull(source, "source is null");
Preconditions.checkNotNull(cacheStrategy, "cacheStrategy is null");
return RxJavaPlugins.onAssembly(new SingleCacheSuccess<>(source, cacheStrategy));
}
@SuppressWarnings("unchecked")
private SingleCacheSuccess(Single<T> source, final CacheStrategy cacheStrategy) {
this.source = source;
this.cacheStrategy = cacheStrategy;
this.observers = new AtomicReference<CacheDisposable<T>[]>(EMPTY);
}
@Override
protected void subscribeActual(SingleObserver<? super T> observer) {
final CacheDisposable<T> d = new CacheDisposable<>(observer, this);
observer.onSubscribe(d);
if (observers.get() == TERMINATED && cacheStrategy.isExpired()) {
observers.set(EMPTY);
wip.set(false);
}
if (add(d)) {
if (d.isDisposed()) {
remove(d);
}
} else {
observer.onSuccess(value);
return;
}
if (!wip.getAndSet(true)) {
source.subscribe(this);
}
}
@Override
public void onSubscribe(Disposable d) {
// not supported by this operator
}
@Override
@SuppressWarnings("unchecked")
public void onSuccess(T value) {
this.value = value;
this.cacheStrategy.success();
for (CacheDisposable<T> observer : observers.getAndSet(TERMINATED)) {
if (!observer.isDisposed()) {
observer.actual.onSuccess(value);
}
}
}
@Override
@SuppressWarnings("unchecked")
public void onError(Throwable e) {
wip.set(false);
for (CacheDisposable<T> observer : observers.getAndSet(EMPTY)) {
if (!observer.isDisposed()) {
observer.actual.onError(e);
}
}
}
@SuppressWarnings("unchecked")
private boolean add(CacheDisposable<T> observer) {
for (; ; ) {
final CacheDisposable<T>[] a = observers.get();
if (a == TERMINATED) {
return false;
}
final int n = a.length;
final CacheDisposable<T>[] b = new CacheDisposable[n + 1];
System.arraycopy(a, 0, b, 0, n);
b[n] = observer;
if (observers.compareAndSet(a, b)) {
return true;
}
}
}
@SuppressWarnings("unchecked")
private void remove(CacheDisposable<T> observer) {
for (; ; ) {
final CacheDisposable<T>[] a = observers.get();
final int n = a.length;
if (n == 0) {
return;
}
int j = -1;
for (int i = 0; i < n; i++) {
if (a[i] == observer) {
j = i;
break;
}
}
if (j < 0) {
return;
}
final CacheDisposable<T>[] b;
if (n == 1) {
b = EMPTY;
} else {
b = new CacheDisposable[n - 1];
System.arraycopy(a, 0, b, 0, j);
System.arraycopy(a, j + 1, b, j, n - j - 1);
}
if (observers.compareAndSet(a, b)) {
return;
}
}
}
private static final class CacheDisposable<T> extends AtomicBoolean implements Disposable {
private static final long serialVersionUID = 4746876330948546833L;
final SingleObserver<? super T> actual;
private final SingleCacheSuccess<T> parent;
CacheDisposable(SingleObserver<? super T> actual, SingleCacheSuccess<T> parent) {
this.actual = actual;
this.parent = parent;
}
@Override
public boolean isDisposed() {
return get();
}
@Override
public void dispose() {
if (compareAndSet(false, true)) {
parent.remove(this);
}
}
}
public interface CacheStrategy {
boolean isExpired();
void success();
void invalidate();
}
private static class InfiniteCacheStrategy implements CacheStrategy {
@Override
public boolean isExpired() {
return false;
}
@Override
public void success() {
}
@Override
public void invalidate() {
}
}
public static class TtlCacheStrategy implements CacheStrategy {
private long ttlMillis;
private AtomicLong cachedTimeMs = new AtomicLong();
public TtlCacheStrategy(final long ttl, final TimeUnit timeUnit) {
this.ttlMillis = timeUnit.toMillis(ttl);
}
@Override
public boolean isExpired() {
return Math.abs(System.currentTimeMillis() - cachedTimeMs.get()) > ttlMillis;
}
@Override
public void success() {
cachedTimeMs.set(System.currentTimeMillis());
}
@Override
public void invalidate() {
cachedTimeMs.set(0);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment