栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 面试经验 > Java面试题

用悲观锁原理来实现乐观锁的接口

Java面试题 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

用悲观锁原理来实现乐观锁的接口

import java.util.Date;
import java.util.concurrent.TimeUnit;
import java.util.concurrent.locks.Condition;
import java.util.concurrent.locks.Lock;


public class SimpleLock implements Lock {
private boolean locked;

@Override
public void lock() {
boolean intr = Thread.interrupted();
synchronized(this){
while(locked){
try {
wait();
} catch (InterruptedException e) {
intr = true;
}
}
locked = true;
}
if(intr) Thread.currentThread().interrupt();
}

@Override
public void lockInterruptibly() throws InterruptedException {
synchronized(this){
while(locked){
wait();
}
locked = true;
}
}

@Override
public boolean tryLock() {
if(locked){
return false;
} else {
locked = true;
return true;
}
}

private static long clipHigh(long value){
return value < 0 ? Long.MAX_VALUE : value;
}
@Override
public boolean tryLock(long time, TimeUnit unit)
throws InterruptedException {
if(time < 0){
return false;
}
synchronized(this){
long now = System.currentTimeMillis();
long deadline = clipHigh(now + unit.toMillis(time));
synchronized(this){
if(!locked){
return locked = true;
}
for(;;){
long remaining = deadline – now;
if(remaining <= 0){
return false;
}
wait(remaining);
if(!locked){
return locked = true;
}
now = System.currentTimeMillis();
}
}
}
}

@Override
public void unlock() {
synchronized(this){
locked = false;
}
}

@Override
public Condition newCondition() {
return new SimpleCondition();
}

class SimpleCondition implements Condition {

@Override
public void await() throws InterruptedException {
synchronized(this){
unlock();
try{
wait();
} finally {
lock();
}
}
}

@Override
public void awaitUninterruptibly() {
boolean intr = Thread.interrupted();
synchronized(this){
unlock();
try {
wait();
} catch (InterruptedException e) {
intr = true;
} finally {
lock();
}
if(intr)
Thread.currentThread().interrupt();
}
}

@Override
public long awaitNanos(long nanosTimeout) throws InterruptedException {
unlock();
try{
final long start = System.nanoTime();
synchronized(this){
wait(nanosTimeout / 1000000L, (int) (nanosTimeout % 1000000L));
}
return nanosTimeout – (System.nanoTime() – start);
} finally {
lock();
}
}

@Override
public boolean await(long time, TimeUnit unit)
throws InterruptedException {
throw new UnsupportedOperationException();
}

@Override
public boolean awaitUntil(Date deadline) throws InterruptedException {
throw new UnsupportedOperationException();
}

@Override
public void signal() {
synchronized(this){
notify();
}
}

@Override
public void signalAll() {
synchronized(this){
notifyAll();
}
}

}

}

转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/264306.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号