All Downloads are FREE. Search and download functionalities are using the official Maven repository.

sviolet.thistle.model.concurrent.lock.UnsafeSpinLock Maven / Gradle / Ivy

There is a newer version: 22.1.0
Show newest version
/*
 * Copyright (C) 2015-2018 S.Violet
 *
 * 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.
 *
 * Project GitHub: https://github.com/shepherdviolet/thistle
 * Email: [email protected]
 */

package sviolet.thistle.model.concurrent.lock;

import java.util.concurrent.atomic.AtomicBoolean;

/**
 * 慎用!!! 不规范的使用会导致严重的问题!!!
* IT'S UNSAFE !!! Irregular use can cause serious problems !!!
* * 简易自旋锁, 未提供任何保护措施, 需要仔细阅读源码并谨慎使用.
* * * private UnsafeSpinLock spinLock = new UnsafeSpinLock(); * * public void setXXX(int xxx) { * try { * spinLock.lock(); * //do something ... * } finally { * spinLock.unlock(); * } * } * * * @author S.Violet */ public class UnsafeSpinLock { private AtomicBoolean lock = new AtomicBoolean(false); /** * 上锁 IT'S UNSAFE !!! Irregular use can cause serious problems !!!
* * * private UnsafeSpinLock spinLock = new UnsafeSpinLock(); * * public void setXXX(int xxx) { * try { * spinLock.lock(); * //do something ... * } finally { * spinLock.unlock(); * } * } * * */ public void lock(){ while (true) { if (!lock.get() && lock.compareAndSet(false, true)) { break; } else { Thread.yield(); } } } /** * 解锁 IT'S UNSAFE !!! Irregular use can cause serious problems !!!
* * * private UnsafeSpinLock spinLock = new UnsafeSpinLock(); * * public void setXXX(int xxx) { * try { * spinLock.lock(); * //do something ... * } finally { * spinLock.unlock(); * } * } * * */ public void unlock(){ lock.set(false); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy