477385 - Problem in MANIFEST.MF with version 9.2.10 / 9.2.13.

Reintroduced class SpinLock, for compatibility sake when working with
mixed versions of Jetty.
This commit is contained in:
Simone Bordet 2015-09-15 10:07:46 +02:00
parent 25cfffbe1e
commit b36b2a9458
1 changed files with 82 additions and 0 deletions

View File

@ -0,0 +1,82 @@
//
// ========================================================================
// Copyright (c) 1995-2015 Mort Bay Consulting Pty. Ltd.
// ------------------------------------------------------------------------
// All rights reserved. This program and the accompanying materials
// are made available under the terms of the Eclipse Public License v1.0
// and Apache License v2.0 which accompanies this distribution.
//
// The Eclipse Public License is available at
// http://www.eclipse.org/legal/epl-v10.html
//
// The Apache License v2.0 is available at
// http://www.opensource.org/licenses/apache2.0.php
//
// You may elect to redistribute this code under either of these licenses.
// ========================================================================
//
package org.eclipse.jetty.util.thread;
import java.util.concurrent.atomic.AtomicReference;
/**
* <p>This spin lock is a lock designed to protect VERY short sections
* of critical code. Threads attempting to take the lock will spin
* forever until the lock is available, thus it is important that
* the code protected by this lock is extremely simple and non
* blocking. The reason for this lock is that it prevents a thread
* from giving up a CPU core when contending for the lock.</p>
* <pre>
* try(SpinLock.Lock lock = spinlock.lock())
* {
* // something very quick and non blocking
* }
* </pre>
* <p>Further analysis however, shows that spin locks behave really
* bad under heavy contention and where the number of threads
* exceeds the number of cores, which are common scenarios for a
* server, so this class was removed from usage, preferring
* standard locks instead.</p>
* @deprecated Do not use it anymore, prefer normal locks
*/
@Deprecated
public class SpinLock
{
private final AtomicReference<Thread> _lock = new AtomicReference<>(null);
private final Lock _unlock = new Lock();
public Lock lock()
{
Thread thread = Thread.currentThread();
while(true)
{
if (!_lock.compareAndSet(null,thread))
{
if (_lock.get()==thread)
throw new IllegalStateException("SpinLock is not reentrant");
continue;
}
return _unlock;
}
}
public boolean isLocked()
{
return _lock.get()!=null;
}
public boolean isLockedThread()
{
return _lock.get()==Thread.currentThread();
}
public class Lock implements AutoCloseable
{
@Override
public void close()
{
_lock.set(null);
}
}
}