com.firenio.baseio.concurrent.ScspLinkedQueue Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of baseio-all Show documentation
Show all versions of baseio-all Show documentation
The all in one project of baseio
/*
* Copyright 2015 The Baseio Project
*
* 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.
*/
package com.firenio.baseio.concurrent;
import java.util.concurrent.atomic.AtomicInteger;
public class ScspLinkedQueue {
private volatile Node head = null; // volatile ?
// not sure if this useful
long p00, p01, p02, p03, p04, p05, p06, p07;
long p10, p11, p12, p13, p14, p15, p16, p17;
private AtomicInteger size = new AtomicInteger();
private volatile Node tail = null;
public ScspLinkedQueue() {
this.head = new Node<>();
this.tail = head;
}
Node getTail() {
return tail;
}
protected int incrementAndGet() {
return size.incrementAndGet();
}
public void offer(V v) {
Node node = new Node<>();
tail.v = v;
tail.next = node;
tail = node;
size.incrementAndGet();
}
public V poll() {
if (size.get() == 0) {
return null;
}
size.decrementAndGet();
Node h = head;
head = h.next;
return h.v;
}
public int size() {
return size.get();
}
static class Node {
Node next;
V v;
}
}