spring-data-redis DefaultReactiveGeoOperations 源码
spring-data-redis DefaultReactiveGeoOperations 代码
文件路径:/src/main/java/org/springframework/data/redis/core/DefaultReactiveGeoOperations.java
/*
* Copyright 2017-2022 the original author or authors.
*
* 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
*
* https://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.
*/
package org.springframework.data.redis.core;
import reactor.core.publisher.Flux;
import reactor.core.publisher.Mono;
import java.nio.ByteBuffer;
import java.util.Collection;
import java.util.List;
import java.util.Map;
import java.util.function.Function;
import java.util.stream.Collectors;
import org.reactivestreams.Publisher;
import org.springframework.data.geo.Circle;
import org.springframework.data.geo.Distance;
import org.springframework.data.geo.GeoResult;
import org.springframework.data.geo.Metric;
import org.springframework.data.geo.Point;
import org.springframework.data.redis.connection.ReactiveGeoCommands;
import org.springframework.data.redis.connection.RedisGeoCommands;
import org.springframework.data.redis.connection.RedisGeoCommands.GeoLocation;
import org.springframework.data.redis.connection.RedisGeoCommands.GeoRadiusCommandArgs;
import org.springframework.data.redis.domain.geo.GeoReference;
import org.springframework.data.redis.domain.geo.GeoReference.GeoMemberReference;
import org.springframework.data.redis.domain.geo.GeoShape;
import org.springframework.data.redis.serializer.RedisSerializationContext;
import org.springframework.util.Assert;
/**
* Default implementation of {@link ReactiveGeoOperations}.
*
* @author Mark Paluch
* @author Christoph Strobl
* @since 2.0
*/
class DefaultReactiveGeoOperations<K, V> implements ReactiveGeoOperations<K, V> {
private final ReactiveRedisTemplate<?, ?> template;
private final RedisSerializationContext<K, V> serializationContext;
DefaultReactiveGeoOperations(ReactiveRedisTemplate<?, ?> template,
RedisSerializationContext<K, V> serializationContext) {
this.template = template;
this.serializationContext = serializationContext;
}
@Override
public Mono<Long> add(K key, Point point, V member) {
Assert.notNull(key, "Key must not be null");
Assert.notNull(point, "Point must not be null");
Assert.notNull(member, "Member must not be null");
return createMono(connection -> connection.geoAdd(rawKey(key), point, rawValue(member)));
}
@Override
public Mono<Long> add(K key, GeoLocation<V> location) {
Assert.notNull(key, "Key must not be null");
Assert.notNull(location, "GeoLocation must not be null");
return createMono(connection -> connection.geoAdd(rawKey(key),
new GeoLocation<>(rawValue(location.getName()), location.getPoint())));
}
@Override
public Mono<Long> add(K key, Map<V, Point> memberCoordinateMap) {
Assert.notNull(key, "Key must not be null");
Assert.notNull(memberCoordinateMap, "MemberCoordinateMap must not be null");
return createMono(connection -> {
Mono<List<GeoLocation<ByteBuffer>>> serializedList = Flux
.fromIterable(() -> memberCoordinateMap.entrySet().iterator())
.map(entry -> new GeoLocation<>(rawValue(entry.getKey()), entry.getValue())).collectList();
return serializedList.flatMap(list -> connection.geoAdd(rawKey(key), list));
});
}
@Override
public Mono<Long> add(K key, Iterable<GeoLocation<V>> geoLocations) {
Assert.notNull(key, "Key must not be null");
Assert.notNull(geoLocations, "GeoLocations must not be null");
return createMono(connection -> {
Mono<List<GeoLocation<ByteBuffer>>> serializedList = Flux.fromIterable(geoLocations)
.map(location -> new GeoLocation<>(rawValue(location.getName()), location.getPoint())).collectList();
return serializedList.flatMap(list -> connection.geoAdd(rawKey(key), list));
});
}
@Override
public Flux<Long> add(K key, Publisher<? extends Collection<GeoLocation<V>>> locations) {
Assert.notNull(key, "Key must not be null");
Assert.notNull(locations, "Locations must not be null");
return createFlux(connection -> Flux.from(locations)
.map(locationList -> locationList.stream()
.map(location -> new GeoLocation<>(rawValue(location.getName()), location.getPoint()))
.collect(Collectors.toList()))
.flatMap(list -> connection.geoAdd(rawKey(key), list)));
}
@Override
public Mono<Distance> distance(K key, V member1, V member2) {
Assert.notNull(key, "Key must not be null");
Assert.notNull(member1, "Member 1 must not be null");
Assert.notNull(member2, "Member 2 must not be null");
return createMono(connection -> connection.geoDist(rawKey(key), rawValue(member1), rawValue(member2)));
}
@Override
public Mono<Distance> distance(K key, V member1, V member2, Metric metric) {
Assert.notNull(key, "Key must not be null");
Assert.notNull(member1, "Member 1 must not be null");
Assert.notNull(member2, "Member 2 must not be null");
Assert.notNull(metric, "Metric must not be null");
return createMono(connection -> connection.geoDist(rawKey(key), rawValue(member1), rawValue(member2), metric));
}
@Override
public Mono<String> hash(K key, V member) {
Assert.notNull(key, "Key must not be null");
Assert.notNull(member, "Member must not be null");
return createMono(connection -> connection.geoHash(rawKey(key), rawValue(member)));
}
@Override
@SafeVarargs
public final Mono<List<String>> hash(K key, V... members) {
Assert.notNull(key, "Key must not be null");
Assert.notEmpty(members, "Members must not be null or empty");
Assert.noNullElements(members, "Members must not contain null elements");
return createMono(connection -> Flux.fromArray(members) //
.map(this::rawValue) //
.collectList() //
.flatMap(serialized -> connection.geoHash(rawKey(key), serialized)));
}
@Override
public Mono<Point> position(K key, V member) {
Assert.notNull(key, "Key must not be null");
Assert.notNull(member, "Member must not be null");
return createMono(connection -> connection.geoPos(rawKey(key), rawValue(member)));
}
@Override
@SafeVarargs
public final Mono<List<Point>> position(K key, V... members) {
Assert.notNull(key, "Key must not be null");
Assert.notEmpty(members, "Members must not be null or empty");
Assert.noNullElements(members, "Members must not contain null elements");
return createMono(connection -> Flux.fromArray(members) //
.map(this::rawValue) //
.collectList() //
.flatMap(serialized -> connection.geoPos(rawKey(key), serialized)));
}
@Override
public Flux<GeoResult<GeoLocation<V>>> radius(K key, Circle within) {
Assert.notNull(key, "Key must not be null");
Assert.notNull(within, "Circle must not be null");
return createFlux(connection -> connection.geoRadius(rawKey(key), within).map(this::readGeoResult));
}
@Override
public Flux<GeoResult<GeoLocation<V>>> radius(K key, Circle within, GeoRadiusCommandArgs args) {
Assert.notNull(key, "Key must not be null");
Assert.notNull(within, "Circle must not be null");
Assert.notNull(args, "GeoRadiusCommandArgs must not be null");
return createFlux(connection -> connection.geoRadius(rawKey(key), within, args) //
.map(this::readGeoResult));
}
@Override
public Flux<GeoResult<GeoLocation<V>>> radius(K key, V member, double radius) {
Assert.notNull(key, "Key must not be null");
Assert.notNull(member, "Member must not be null");
return createFlux(connection -> connection.geoRadiusByMember(rawKey(key), rawValue(member), new Distance(radius)) //
.map(this::readGeoResult));
}
@Override
public Flux<GeoResult<GeoLocation<V>>> radius(K key, V member, Distance distance) {
Assert.notNull(key, "Key must not be null");
Assert.notNull(member, "Member must not be null");
Assert.notNull(distance, "Distance must not be null");
return createFlux(connection -> connection.geoRadiusByMember(rawKey(key), rawValue(member), distance) //
.map(this::readGeoResult));
}
@Override
public Flux<GeoResult<GeoLocation<V>>> radius(K key, V member, Distance distance, GeoRadiusCommandArgs args) {
Assert.notNull(key, "Key must not be null");
Assert.notNull(member, "Member must not be null");
Assert.notNull(distance, "Distance must not be null");
Assert.notNull(args, "GeoRadiusCommandArgs must not be null");
return createFlux(connection -> connection.geoRadiusByMember(rawKey(key), rawValue(member), distance, args))
.map(this::readGeoResult);
}
@Override
@SafeVarargs
public final Mono<Long> remove(K key, V... members) {
Assert.notNull(key, "Key must not be null");
Assert.notEmpty(members, "Members must not be null or empty");
Assert.noNullElements(members, "Members must not contain null elements");
return template.doCreateMono(connection -> Flux.fromArray(members) //
.map(this::rawValue) //
.collectList() //
.flatMap(serialized -> connection.zSetCommands().zRem(rawKey(key), serialized)));
}
@Override
public Mono<Boolean> delete(K key) {
Assert.notNull(key, "Key must not be null");
return template.doCreateMono(connection -> connection.keyCommands().del(rawKey(key))).map(l -> l != 0);
}
@Override
public Flux<GeoResult<GeoLocation<V>>> search(K key, GeoReference<V> reference,
GeoShape geoPredicate, RedisGeoCommands.GeoSearchCommandArgs args) {
Assert.notNull(key, "Key must not be null");
Assert.notNull(reference, "GeoReference must not be null");
GeoReference<ByteBuffer> rawReference = getGeoReference(reference);
return template.doCreateFlux(connection -> connection.geoCommands()
.geoSearch(rawKey(key), rawReference, geoPredicate, args).map(this::readGeoResult));
}
@Override
public Mono<Long> searchAndStore(K key, K destKey, GeoReference<V> reference,
GeoShape geoPredicate, RedisGeoCommands.GeoSearchStoreCommandArgs args) {
Assert.notNull(key, "Key must not be null");
Assert.notNull(reference, "GeoReference must not be null");
GeoReference<ByteBuffer> rawReference = getGeoReference(reference);
return template.doCreateMono(connection -> connection.geoCommands().geoSearchStore(rawKey(destKey), rawKey(key),
rawReference, geoPredicate, args));
}
private <T> Mono<T> createMono(Function<ReactiveGeoCommands, Publisher<T>> function) {
Assert.notNull(function, "Function must not be null");
return template.doCreateMono(connection -> function.apply(connection.geoCommands()));
}
private <T> Flux<T> createFlux(Function<ReactiveGeoCommands, Publisher<T>> function) {
Assert.notNull(function, "Function must not be null");
return template.doCreateFlux(connection -> function.apply(connection.geoCommands()));
}
@SuppressWarnings("unchecked")
private GeoReference<ByteBuffer> getGeoReference(GeoReference<V> reference) {
return reference instanceof GeoReference.GeoMemberReference
? GeoReference
.fromMember(rawValue(((GeoMemberReference<V>) reference).getMember()))
: (GeoReference<ByteBuffer>) reference;
}
private ByteBuffer rawKey(K key) {
return serializationContext.getKeySerializationPair().write(key);
}
private ByteBuffer rawValue(V value) {
return serializationContext.getValueSerializationPair().write(value);
}
private V readValue(ByteBuffer buffer) {
return serializationContext.getValueSerializationPair().read(buffer);
}
private GeoResult<GeoLocation<V>> readGeoResult(GeoResult<GeoLocation<ByteBuffer>> source) {
return new GeoResult<>(new GeoLocation(readValue(source.getContent().getName()), source.getContent().getPoint()),
source.getDistance());
}
}
相关信息
相关文章
spring-data-redis AbstractOperations 源码
spring-data-redis BoundGeoOperations 源码
spring-data-redis BoundHashOperations 源码
spring-data-redis BoundKeyOperations 源码
spring-data-redis BoundListOperations 源码
spring-data-redis BoundOperationsProxyFactory 源码
spring-data-redis BoundSetOperations 源码
spring-data-redis BoundStreamOperations 源码
0
赞
热门推荐
-
2、 - 优质文章
-
3、 gate.io
-
8、 golang
-
9、 openharmony
-
10、 Vue中input框自动聚焦