1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147
|
@Component public class DistributedLock {
public static final Logger logger = LoggerFactory.getLogger(DistributedLock.class);
private static final long DEFAULT_TIMEOUT_SECOND = 5;
private static final long DEFAULT_WAITE_TIMEOUT_SECOND = 5;
private static final long LOOP_WAIT_TIME_MILLISECOND = 30; @Autowired @Qualifier("redisCacheService") private BaseCacheService cacheService;
public long lock(String key, Long timeoutSecond, Long waiteTimeoutSecond) {
logger.info("Thread:" + Thread.currentThread().getName() + " start lock"); long beganTime = System.currentTimeMillis() / 1000; if (timeoutSecond != null && timeoutSecond <= 0) { timeoutSecond = DEFAULT_TIMEOUT_SECOND; } timeoutSecond = timeoutSecond == null ? DEFAULT_TIMEOUT_SECOND : timeoutSecond; if (waiteTimeoutSecond != null && waiteTimeoutSecond <= 0) { waiteTimeoutSecond = DEFAULT_WAITE_TIMEOUT_SECOND; } waiteTimeoutSecond = waiteTimeoutSecond == null ? DEFAULT_WAITE_TIMEOUT_SECOND : waiteTimeoutSecond; while (true) { long endTime = System.currentTimeMillis() / 1000; if ((endTime - beganTime) >= waiteTimeoutSecond) { return -1l; } long timeoutTimeMilli = cacheService.getCurrentTimeMilliForCache() + timeoutSecond * 1000;
if (cacheService.setIfAbsent(key, timeoutTimeMilli)) { logger.info("Thread:" + Thread.currentThread().getName() + " lock success"); return timeoutTimeMilli; }
Long value = cacheService.getVal(key, Long.class); if (value != null && value.longValue() < cacheService.getCurrentTimeMilliForCache()) {
Long oldValue = cacheService.getAndSet(key, timeoutTimeMilli);
if (value.equals(oldValue)) { logger.info("Thread:" + Thread.currentThread().getName() + " lock success"); return timeoutTimeMilli; } }
try { Thread.sleep(LOOP_WAIT_TIME_MILLISECOND); } catch (InterruptedException e) { logger.error("DistributedLock lock sleep error", e); } } }
public long lock(String key, Long timeoutSecond) {
logger.info("Thread:" + Thread.currentThread().getName() + " start lock");
if (timeoutSecond != null && timeoutSecond <= 0) { timeoutSecond = DEFAULT_TIMEOUT_SECOND; } timeoutSecond = timeoutSecond == null ? DEFAULT_TIMEOUT_SECOND : timeoutSecond; while (true) { long timeoutTimeMilli = cacheService.getCurrentTimeMilliForCache() + timeoutSecond * 1000;
if (cacheService.setIfAbsent(key, timeoutTimeMilli)) { logger.info("Thread:" + Thread.currentThread().getName() + " lock success"); return timeoutTimeMilli; }
Long value = cacheService.getVal(key, Long.class); if (value != null && value.longValue() < cacheService.getCurrentTimeMilliForCache()) {
Long oldValue = cacheService.getAndSet(key, timeoutTimeMilli);
if (value.equals(oldValue)) { logger.info("Thread:" + Thread.currentThread().getName() + " lock success"); return timeoutTimeMilli; } }
try { Thread.sleep(LOOP_WAIT_TIME_MILLISECOND); } catch (InterruptedException e) { logger.error("DistributedLock lock sleep error", e); } } }
public void unLock(String key, long lockValue) {
logger.info("Thread:" + Thread.currentThread().getName() + " start unlock"); Long value = cacheService.getVal(key, Long.class); if (value != null && value.equals(lockValue)) { cacheService.deleteVal(key); logger.info("Thread:" + Thread.currentThread().getName() + " unlock success"); } } }
|