org.infinispan.hotrod.HotRodSyncCache Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of infinispan-hotrod-jakarta Show documentation
Show all versions of infinispan-hotrod-jakarta Show documentation
Infinispan Hot Rod Client Jakarta EE
The newest version!
package org.infinispan.hotrod;
import static org.infinispan.hotrod.impl.Util.await;
import java.util.Map;
import java.util.Set;
import java.util.concurrent.Flow;
import java.util.stream.Collectors;
import org.infinispan.api.common.CacheEntry;
import org.infinispan.api.common.CacheEntryVersion;
import org.infinispan.api.common.CacheOptions;
import org.infinispan.api.common.CacheWriteOptions;
import org.infinispan.api.common.CloseableIterable;
import org.infinispan.api.common.process.CacheEntryProcessorResult;
import org.infinispan.api.common.process.CacheProcessorOptions;
import org.infinispan.api.configuration.CacheConfiguration;
import org.infinispan.api.sync.SyncCache;
import org.infinispan.api.sync.SyncCacheEntryProcessor;
import org.infinispan.api.sync.SyncQuery;
import org.infinispan.api.sync.SyncStreamingCache;
import org.infinispan.api.sync.events.cache.SyncCacheEntryListener;
import org.infinispan.hotrod.impl.cache.RemoteCache;
import org.reactivestreams.FlowAdapters;
import io.reactivex.rxjava3.core.Flowable;
import io.reactivex.rxjava3.core.Single;
/**
* @since 14.0
**/
public class HotRodSyncCache implements SyncCache {
private final HotRod hotrod;
private final RemoteCache remoteCache;
HotRodSyncCache(HotRod hotrod, RemoteCache remoteCache) {
this.hotrod = hotrod;
this.remoteCache = remoteCache;
}
// This method is blocking - but only invoked by user code
@SuppressWarnings("checkstyle:ForbiddenMethod")
private E blockingGet(Single single) {
return single.blockingGet();
}
@Override
public String name() {
return remoteCache.getName();
}
@Override
public CacheConfiguration configuration() {
return await(remoteCache.configuration());
}
@Override
public HotRodSyncContainer container() {
return hotrod.sync();
}
@Override
public CacheEntry getEntry(K key, CacheOptions options) {
return await(remoteCache.getEntry(key, options));
}
@Override
public CacheEntry put(K key, V value, CacheWriteOptions options) {
return await(remoteCache.put(key, value, options));
}
@Override
public void set(K key, V value, CacheWriteOptions options) {
await(remoteCache.set(key, value, options));
}
@Override
public CacheEntry putIfAbsent(K key, V value, CacheWriteOptions options) {
return await(remoteCache.putIfAbsent(key, value, options));
}
@Override
public boolean setIfAbsent(K key, V value, CacheWriteOptions options) {
return await(remoteCache.setIfAbsent(key, value, options));
}
@Override
public boolean replace(K key, V value, CacheEntryVersion version, CacheWriteOptions options) {
return await(remoteCache.replace(key, value, version, options));
}
@Override
public CacheEntry getOrReplaceEntry(K key, V value, CacheEntryVersion version, CacheWriteOptions options) {
return await(remoteCache.getOrReplaceEntry(key, value, version, options));
}
@Override
public boolean remove(K key, CacheOptions options) {
return await(remoteCache.remove(key, options));
}
@Override
public boolean remove(K key, CacheEntryVersion version, CacheOptions options) {
return await(remoteCache.remove(key, version, options));
}
@Override
public CacheEntry getAndRemove(K key, CacheOptions options) {
return await(remoteCache.getAndRemove(key, options));
}
@Override
public CloseableIterable keys(CacheOptions options) {
throw new UnsupportedOperationException();
}
@Override
public CloseableIterable> entries(CacheOptions options) {
throw new UnsupportedOperationException();
}
@Override
public void putAll(Map entries, CacheWriteOptions options) {
await(remoteCache.putAll(entries, options));
}
@Override
public Map getAll(Set keys, CacheOptions options) {
return blockingGet(Flowable.fromPublisher(FlowAdapters.toPublisher(remoteCache.getAll(keys, options)))
.collect(Collectors.toMap(CacheEntry::key, CacheEntry::value)));
}
@Override
public Map getAll(CacheOptions options, K... keys) {
return blockingGet(Flowable.fromPublisher(FlowAdapters.toPublisher(remoteCache.getAll(options, keys)))
.collect(Collectors.toMap(CacheEntry::key, CacheEntry::value)));
}
@Override
public Set removeAll(Set keys, CacheWriteOptions options) {
return blockingGet(Flowable.fromPublisher(FlowAdapters.toPublisher(remoteCache.removeAll(keys, options)))
.collect(Collectors.toSet()));
}
@Override
public Map> getAndRemoveAll(Set keys, CacheWriteOptions options) {
return blockingGet(Flowable.fromPublisher(FlowAdapters.toPublisher(remoteCache.getAndRemoveAll(keys, options)))
.collect(Collectors.toMap(CacheEntry::key, ce -> ce)));
}
@Override
public long estimateSize(CacheOptions options) {
return await(remoteCache.estimateSize(options));
}
@Override
public void clear(CacheOptions options) {
await(remoteCache.clear(options));
}
@Override
public SyncQuery query(String query, CacheOptions options) {
return new HotRodSyncQuery(query, options);
}
@Override
public AutoCloseable listen(SyncCacheEntryListener listener) {
throw new UnsupportedOperationException();
}
@Override
public Set> process(Set keys, SyncCacheEntryProcessor processor, CacheProcessorOptions options) {
Flow.Publisher> flowPublisher = remoteCache.process(keys,
// TODO: do we worry about the sync processor here? Guessing we need to offload it to another thread ?
new SyncToAsyncEntryProcessor<>(processor), options);
return blockingGet(Flowable.fromPublisher(FlowAdapters.toPublisher(flowPublisher))
.collect(Collectors.toSet()));
}
@Override
public Set> processAll(SyncCacheEntryProcessor processor, CacheProcessorOptions options) {
Flow.Publisher> flowPublisher = remoteCache.processAll(
// TODO: do we worry about the sync processor here? Guessing we need to offload it to another thread ?
new SyncToAsyncEntryProcessor<>(processor), options);
return blockingGet(Flowable.fromPublisher(FlowAdapters.toPublisher(flowPublisher))
.collect(Collectors.toSet()));
}
@Override
public SyncStreamingCache streaming() {
return new HotRodSyncStreamingCache(hotrod, remoteCache);
}
}