me.ahoo.cosid.spring.redis.SpringRedisMachineIdDistributor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cosid-spring-redis Show documentation
Show all versions of cosid-spring-redis Show documentation
Universal, flexible, high-performance distributed ID generator.
The newest version!
/*
* 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.machine.ClockBackwardsSynchronizer.getBackwardsTimeStamp;
import me.ahoo.cosid.machine.ClockBackwardsSynchronizer;
import me.ahoo.cosid.machine.AbstractMachineIdDistributor;
import me.ahoo.cosid.machine.InstanceId;
import me.ahoo.cosid.machine.MachineIdDistributor;
import me.ahoo.cosid.machine.MachineIdLostException;
import me.ahoo.cosid.machine.MachineIdOverflowException;
import me.ahoo.cosid.machine.MachineState;
import me.ahoo.cosid.machine.MachineStateStorage;
import com.google.common.base.Preconditions;
import lombok.extern.slf4j.Slf4j;
import org.springframework.core.io.ClassPathResource;
import org.springframework.core.io.Resource;
import org.springframework.data.redis.core.StringRedisTemplate;
import org.springframework.data.redis.core.script.RedisScript;
import java.time.Duration;
import java.util.Collections;
import java.util.List;
/**
* Spring Redis MachineIdDistributor.
*
*
*
* @author ahoo wang
*/
@Slf4j
public class SpringRedisMachineIdDistributor extends AbstractMachineIdDistributor {
public static final Resource MACHINE_ID_DISTRIBUTE_SOURCE = new ClassPathResource("machine_id_distribute.lua");
@SuppressWarnings("rawtypes")
public static final RedisScript MACHINE_ID_DISTRIBUTE = RedisScript.of(MACHINE_ID_DISTRIBUTE_SOURCE, List.class);
public static final Resource MACHINE_ID_REVERT_SOURCE = new ClassPathResource("machine_id_revert.lua");
public static final RedisScript MACHINE_ID_REVERT = RedisScript.of(MACHINE_ID_REVERT_SOURCE, Long.class);
public static final Resource MACHINE_ID_REVERT_STABLE_SOURCE = new ClassPathResource("machine_id_revert_stable.lua");
public static final RedisScript MACHINE_ID_REVERT_STABLE = RedisScript.of(MACHINE_ID_REVERT_STABLE_SOURCE, Long.class);
public static final Resource MACHINE_ID_GUARD_SOURCE = new ClassPathResource("machine_id_guard.lua");
public static final RedisScript MACHINE_ID_GUARD = RedisScript.of(MACHINE_ID_GUARD_SOURCE, Long.class);
private final StringRedisTemplate redisTemplate;
public SpringRedisMachineIdDistributor(StringRedisTemplate redisTemplate,
MachineStateStorage machineStateStorage,
ClockBackwardsSynchronizer clockBackwardsSynchronizer) {
super(machineStateStorage, clockBackwardsSynchronizer);
this.redisTemplate = redisTemplate;
}
@Override
protected MachineState distributeRemote(String namespace, int machineBit, InstanceId instanceId, Duration safeGuardDuration) {
if (log.isInfoEnabled()) {
log.info("Distribute Remote instanceId:[{}] - machineBit:[{}] @ namespace:[{}].", instanceId, machineBit, namespace);
}
List keys = Collections.singletonList(hashTag(namespace));
Object[] values = {instanceId.getInstanceId(), String.valueOf(MachineIdDistributor.maxMachineId(machineBit)), String.valueOf(System.currentTimeMillis()),
String.valueOf(MachineIdDistributor.getSafeGuardAt(safeGuardDuration, instanceId.isStable()))};
@SuppressWarnings("unchecked")
List state = (List) redisTemplate.execute(MACHINE_ID_DISTRIBUTE, keys, values);
assert state != null;
Preconditions.checkNotNull(state, "state can not be null!");
Preconditions.checkState(!state.isEmpty(), "state can not be empty!");
Long machineId = state.get(0);
assert null != machineId;
int realMachineId = machineId.intValue();
if (realMachineId == -1) {
throw new MachineIdOverflowException(MachineIdDistributor.totalMachineIds(machineBit), instanceId);
}
long lastStamp = NOT_FOUND_LAST_STAMP;
if (state.size() == 2) {
lastStamp = state.get(1);
}
MachineState machineState = MachineState.of(realMachineId, lastStamp);
if (log.isInfoEnabled()) {
log.info("Distribute Remote machineState:[{}] - instanceId:[{}] - machineBit:[{}] @ namespace:[{}].", machineState, instanceId, machineBit, namespace);
}
return machineState;
}
/**
* when {@link InstanceId#isStable()} is true,do not revert machineId.
*/
@Override
protected void revertRemote(String namespace, InstanceId instanceId, MachineState machineState) {
if (log.isInfoEnabled()) {
log.info("Revert Remote [{}] instanceId:[{}] @ namespace:[{}].", machineState, instanceId, namespace);
}
RedisScript script = MACHINE_ID_REVERT;
if (instanceId.isStable()) {
script = MACHINE_ID_REVERT_STABLE;
}
long lastStamp = machineState.getLastTimeStamp();
if (getBackwardsTimeStamp(lastStamp) < 0) {
lastStamp = System.currentTimeMillis();
}
List keys = Collections.singletonList(hashTag(namespace));
Object[] values = {instanceId.getInstanceId(), String.valueOf(lastStamp)};
redisTemplate.execute(script, keys, values);
}
@Override
protected void guardRemote(String namespace, InstanceId instanceId, MachineState machineState, Duration safeGuardDuration) {
if (log.isDebugEnabled()) {
log.debug("Guard Remote [{}] instanceId:[{}] @ namespace:[{}].", machineState, instanceId, namespace);
}
List keys = Collections.singletonList(hashTag(namespace));
Object[] values = {instanceId.getInstanceId(), String.valueOf(machineState.getLastTimeStamp())};
Long affected = redisTemplate.execute(MACHINE_ID_GUARD, keys, values);
if (null != affected && 0 == affected) {
throw new MachineIdLostException(namespace, instanceId, machineState);
}
}
/**
* redis hash-tag for redis-cluster.
*
* @param key key
* @return hash-tag key
*/
public static String hashTag(String key) {
return "{" + key + "}";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy