Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
*
* Copyright (c) 2008-2015 Oracle and/or its affiliates. All rights reserved.
*
* The contents of this file are subject to the terms of either the GNU
* General Public License Version 2 only ("GPL") or the Common Development
* and Distribution License("CDDL") (collectively, the "License"). You
* may not use this file except in compliance with the License. You can
* obtain a copy of the License at
* https://glassfish.dev.java.net/public/CDDL+GPL_1_1.html
* or packager/legal/LICENSE.txt. See the License for the specific
* language governing permissions and limitations under the License.
*
* When distributing the software, include this License Header Notice in each
* file and include the License file at packager/legal/LICENSE.txt.
*
* GPL Classpath Exception:
* Oracle designates this particular file as subject to the "Classpath"
* exception as provided by Oracle in the GPL Version 2 section of the License
* file that accompanied this code.
*
* Modifications:
* If applicable, add the following below the License Header, with the fields
* enclosed by brackets [] replaced by your own identifying information:
* "Portions Copyright [year] [name of copyright owner]"
*
* Contributor(s):
* If you wish your version of this file to be governed by only the CDDL or
* only the GPL Version 2, indicate your decision by adding "[Contributor]
* elects to include this software in this distribution under the [CDDL or GPL
* Version 2] license." If you don't indicate a single choice of license, a
* recipient has the option to distribute your version of this file under
* either the CDDL, the GPL Version 2 or to extend the choice of license to
* its licensees as provided above. However, if you add GPL Version 2 code
* and therefore, elected the GPL Version 2 license, then the option applies
* only if the new code is made subject to such option by the copyright
* holder.
*/
package com.pdd.pop.ext.glassfish.grizzly.asyncqueue;
import java.io.IOException;
import java.util.Queue;
import java.util.concurrent.ConcurrentLinkedQueue;
import java.util.concurrent.atomic.AtomicIntegerFieldUpdater;
import java.util.concurrent.atomic.AtomicReferenceFieldUpdater;
import com.pdd.pop.ext.glassfish.grizzly.WriteHandler;
/**
* Class represents common implementation of asynchronous processing queue.
*
* @param {@link AsyncQueueRecord} type
*
* @author Alexey Stashok
*/
public final class TaskQueue {
private volatile boolean isClosed;
/**
* The queue of tasks, which will be processed asynchronously
*/
private final Queue queue;
private static final AtomicReferenceFieldUpdater currentElementUpdater =
AtomicReferenceFieldUpdater.newUpdater(TaskQueue.class, AsyncQueueRecord.class, "currentElement");
private volatile E currentElement;
private static final AtomicIntegerFieldUpdater spaceInBytesUpdater =
AtomicIntegerFieldUpdater.newUpdater(TaskQueue.class, "spaceInBytes");
private volatile int spaceInBytes;
private final MutableMaxQueueSize maxQueueSizeHolder;
private static final AtomicIntegerFieldUpdater writeHandlersCounterUpdater =
AtomicIntegerFieldUpdater.newUpdater(TaskQueue.class, "writeHandlersCounter");
private volatile int writeHandlersCounter;
protected final Queue writeHandlersQueue =
new ConcurrentLinkedQueue();
// ------------------------------------------------------------ Constructors
protected TaskQueue(final MutableMaxQueueSize maxQueueSizeHolder) {
this.maxQueueSizeHolder = maxQueueSizeHolder;
queue = new ConcurrentLinkedQueue();
}
// ---------------------------------------------------------- Public Methods
public static TaskQueue createTaskQueue(
final MutableMaxQueueSize maxQueueSizeHolder) {
return new TaskQueue(maxQueueSizeHolder);
}
/**
* Returns the number of queued bytes.
*
* @return the number of queued bytes.
*/
public int size() {
return spaceInBytes;
}
/**
* Pools the current processing task.
* Note: after this operation call, any element could be put at the head of the queue
* using {@link #setCurrentElement(com.pdd.pop.ext.glassfish.grizzly.asyncqueue.AsyncQueueRecord)}
* without overwriting any existing queue element.
*
* @return the current processing task
*/
@SuppressWarnings("unchecked")
public E poll() {
E current = (E) currentElementUpdater.getAndSet(this, null);
return current != null ? current : queue.poll();
}
/**
* Get the current processing task, if the current in not set, take the
* task from the queue.
* Note: after this operation call, the current element could be removed
* from the queue using {@link #setCurrentElement(com.pdd.pop.ext.glassfish.grizzly.asyncqueue.AsyncQueueRecord)}
* and passing null as a parameter, this is a little bit more optimal
* alternative to {@link #poll()}.
*
* @return the current processing task
*/
public E peek() {
E current = currentElement;
if (current == null) {
current = queue.poll();
if (current != null) {
currentElement = current;
}
}
if (current != null &&
isClosed && currentElementUpdater.compareAndSet(this, current, null)) {
current.notifyFailure(new IOException("Connection closed"));
return null;
}
return current;
}
/**
* Reserves memory space in the queue.
*
* @param amount
* @return the new memory (in bytes) consumed by the queue.
*/
public int reserveSpace(final int amount) {
return spaceInBytesUpdater.addAndGet(this, amount);
}
/**
* Releases memory space in the queue.
*
* @param amount
* @return the new memory (in bytes) consumed by the queue.
*/
public int releaseSpace(final int amount) {
return spaceInBytesUpdater.addAndGet(this, -amount);
}
/**
* Releases memory space in the queue and notifies registered
* {@link QueueMonitor}s about the update.
*
* @param amount
* @return the new memory (in bytes) consumed by the queue.
*/
public int releaseSpaceAndNotify(final int amount) {
final int space = releaseSpace(amount);
doNotify();
return space;
}
/**
* Returns the number of queued bytes.
*
* @return the number of queued bytes.
*/
public int spaceInBytes() {
return spaceInBytes;
}
/**
* Get the queue of tasks, which will be processed asynchronously
* @return the queue of tasks, which will be processed asynchronously
*/
public Queue getQueue() {
return queue;
}
public void notifyWritePossible(final WriteHandler writeHandler) {
notifyWritePossible(writeHandler, maxQueueSizeHolder.getMaxQueueSize());
}
public void notifyWritePossible(final WriteHandler writeHandler, final int maxQueueSize) {
if (writeHandler == null) {
return;
}
if (isClosed) {
writeHandler.onError(new IOException("Connection is closed"));
return;
}
if (maxQueueSize < 0 || spaceInBytes() < maxQueueSize) {
try {
writeHandler.onWritePossible();
} catch (Throwable e) {
writeHandler.onError(e);
}
return;
}
offerWriteHandler(writeHandler);
if (spaceInBytes() < maxQueueSize && removeWriteHandler(writeHandler)) {
try {
writeHandler.onWritePossible();
} catch (Throwable e) {
writeHandler.onError(e);
}
} else {
checkWriteHandlerOnClose(writeHandler);
}
}
public final boolean forgetWritePossible(final WriteHandler writeHandler) {
return removeWriteHandler(writeHandler);
}
private void checkWriteHandlerOnClose(final WriteHandler writeHandler) {
if (isClosed && removeWriteHandler(writeHandler)) {
writeHandler.onError(new IOException("Connection is closed"));
}
}
// ------------------------------------------------------- Protected Methods
public void doNotify() {
if (maxQueueSizeHolder == null ||
writeHandlersCounter == 0) {
return;
}
final int maxQueueSize = maxQueueSizeHolder.getMaxQueueSize();
while (spaceInBytes() < maxQueueSize) {
WriteHandler writeHandler = pollWriteHandler();
if (writeHandler == null) {
return;
}
try {
writeHandler.onWritePossible();
} catch (Throwable e) {
writeHandler.onError(e);
}
}
}
/**
* Set current task element.
* @param task current element.
*/
public void setCurrentElement(final E task) {
currentElement = task;
if (task != null && isClosed &&
currentElementUpdater.compareAndSet(this, task, null)) {
task.notifyFailure(new IOException("Connection closed"));
}
}
public boolean compareAndSetCurrentElement(final E expected, final E newValue) {
if (currentElementUpdater.compareAndSet(this, expected, newValue)) {
if (newValue != null && isClosed &&
currentElementUpdater.compareAndSet(this, newValue, null)) {
newValue.notifyFailure(new IOException("Connection closed"));
return false;
}
return true;
}
return false;
}
/**
* Remove the task from queue.
* @param task the task to remove.
* @return true if tasked was removed, or false otherwise.
*/
public boolean remove(final E task) {
return queue.remove(task);
}
/**
* Add the new task into the task queue.
*
* @param task new task.
*/
public void offer(final E task) {
queue.offer(task);
if (isClosed && queue.remove(task)) {
task.notifyFailure(new IOException("Connection closed"));
}
}
public boolean isEmpty() {
return spaceInBytes == 0;
}
public void onClose() {
onClose(null);
}
public void onClose(final Throwable cause) {
isClosed = true;
IOException error = null;
if (!isEmpty()) {
if (error == null) {
error = new IOException("Connection closed", cause);
}
AsyncQueueRecord record;
while ((record = poll()) != null) {
record.notifyFailure(error);
}
}
WriteHandler writeHandler;
while ((writeHandler = pollWriteHandler()) != null) {
if (error == null) {
error = new IOException("Connection closed", cause);
}
writeHandler.onError(error);
}
}
private void offerWriteHandler(final WriteHandler writeHandler) {
writeHandlersCounterUpdater.incrementAndGet(this);
writeHandlersQueue.offer(writeHandler);
}
private boolean removeWriteHandler(final WriteHandler writeHandler) {
if (writeHandlersQueue.remove(writeHandler)) {
writeHandlersCounterUpdater.decrementAndGet(this);
return true;
}
return false;
}
private WriteHandler pollWriteHandler() {
final WriteHandler record = writeHandlersQueue.poll();
if (record != null) {
writeHandlersCounterUpdater.decrementAndGet(this);
return record;
}
return null;
}
//----------------------------------------------------------- Nested Classes
public interface MutableMaxQueueSize {
int getMaxQueueSize();
}
}