me.ahoo.cosid.spring.redis.SpringRedisIdSegmentDistributor Maven / Gradle / Ivy
/*
* Copyright [2021-present] [ahoo wang (https://github.com/Ahoo-Wang)].
* 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.
*/
package me.ahoo.cosid.spring.redis;
import static me.ahoo.cosid.spring.redis.SpringRedisMachineIdDistributor.hashTag;
import me.ahoo.cosid.CosId;
import me.ahoo.cosid.segment.IdSegmentDistributor;
import com.google.common.base.Preconditions;
import com.google.common.base.Strings;
import lombok.extern.slf4j.Slf4j;
import org.springframework.data.redis.core.StringRedisTemplate;
import javax.annotation.Nonnull;
/**
* Spring Redis IdSegmentDistributor.
*
* @author ahoo wang
*/
@Slf4j
public class SpringRedisIdSegmentDistributor implements IdSegmentDistributor {
private final String namespace;
private final String name;
/**
* hash tag : namespace.name
* cosid:{namespace.name}:adder
*/
private final String adderKey;
private final long offset;
private final long step;
private final StringRedisTemplate redisTemplate;
private volatile long lastMaxId;
public SpringRedisIdSegmentDistributor(String namespace,
String name,
StringRedisTemplate redisTemplate) {
this(namespace, name, DEFAULT_OFFSET, DEFAULT_STEP, redisTemplate);
}
public SpringRedisIdSegmentDistributor(String namespace,
String name,
long offset,
long step,
StringRedisTemplate redisTemplate) {
Preconditions.checkArgument(!Strings.isNullOrEmpty(namespace), "namespace can not be empty!");
Preconditions.checkArgument(!Strings.isNullOrEmpty(name), "name can not be empty!");
Preconditions.checkArgument(offset >= 0, "offset:[%s] must be greater than or equal to 0!", offset);
Preconditions.checkArgument(step > 0, "step:[%s] must be greater than 0!", step);
this.namespace = namespace;
this.name = name;
this.offset = offset;
this.step = step;
this.redisTemplate = redisTemplate;
this.adderKey = CosId.COSID + ":" + hashTag(getNamespacedName()) + ".adder";
}
void ensureOffset() {
if (log.isDebugEnabled()) {
log.debug("Ensure Offset [{}] offset:[{}].", adderKey, offset);
}
Boolean notExists = redisTemplate.opsForValue().setIfAbsent(adderKey, String.valueOf(offset));
if (log.isDebugEnabled()) {
log.debug("Ensure Offset [{}] offset:[{}] - notExists:[{}].", adderKey, offset, notExists);
}
}
public String getAdderKey() {
return adderKey;
}
@Nonnull
@Override
public String getNamespace() {
return namespace;
}
@Nonnull
@Override
public String getName() {
return name;
}
public long getOffset() {
return offset;
}
@Override
public long getStep() {
return step;
}
@Override
public long nextMaxId(long step) {
IdSegmentDistributor.ensureStep(step);
if (log.isDebugEnabled()) {
log.debug("Next MaxId [{}] step:[{}].", adderKey, step);
}
final long nextMinMaxId = lastMaxId + step;
Long nextMaxId = redisTemplate.opsForValue().increment(adderKey, step);
assert nextMaxId != null;
Preconditions.checkNotNull(nextMaxId, "nextMaxId can not be null!");
if (log.isDebugEnabled()) {
log.debug("Next MaxId [{}] step:[{}] - nextMaxId:[{}].", adderKey, step, nextMaxId);
}
Preconditions.checkState(nextMaxId >= nextMinMaxId, "nextMaxId:[%s] must be greater than nextMinMaxId:[%s]!", nextMaxId, nextMinMaxId);
this.lastMaxId = nextMaxId;
return nextMaxId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy