blob: 3ea2e4c340275abc66a9e2744339062867feb9f3 [file] [log] [blame]
/*
* ============================================================================
* The Apache Software License, Version 1.1
* ============================================================================
*
* Copyright (C) 1999 The Apache Software Foundation. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modifica-
* tion, are permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
*
* 3. The end-user documentation included with the redistribution, if any, must
* include the following acknowledgment: "This product includes software
* developed by the Apache Software Foundation (http://www.apache.org/)."
* Alternately, this acknowledgment may appear in the software itself, if
* and wherever such third-party acknowledgments normally appear.
*
* 4. The names "log4j" and "Apache Software Foundation" must not be used to
* endorse or promote products derived from this software without prior
* written permission. For written permission, please contact
* apache@apache.org.
*
* 5. Products derived from this software may not be called "Apache", nor may
* "Apache" appear in their name, without prior written permission of the
* Apache Software Foundation.
*
* THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES,
* INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
* FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
* APACHE SOFTWARE FOUNDATION OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
* INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLU-
* DING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
* OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
* ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* This software consists of voluntary contributions made by many individuals
* on behalf of the Apache Software Foundation. For more information on the
* Apache Software Foundation, please see <http://www.apache.org/>.
*
*/
package org.apache.log4j.chainsaw;
import java.util.AbstractList;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
/**
*
* CyclicBuffer implementation that is Object generic, and implements the List interface.
*
* Original CyclicBuffer @author Ceki G&uuml;lc&uuml;
*
* This implementation (although there's very little change) @author Paul Smith <psmith@apache.org>
*
*/
class CyclicBufferList extends AbstractList implements List {
Object[] ea;
int first;
int last;
int numElems;
int maxSize;
/**
Instantiate a new CyclicBuffer of at most <code>maxSize</code> events.
The <code>maxSize</code> argument must a positive integer.
@param maxSize The maximum number of elements in the buffer.
*/
public CyclicBufferList(int maxSize) {
if (maxSize < 1) {
throw new IllegalArgumentException(
"The maxSize argument (" + maxSize + ") is not a positive integer.");
}
this.maxSize = maxSize;
clear();
}
public CyclicBufferList() {
this(5000);
}
/**
* Check if the given index is in range. If not, throw an appropriate
* runtime exception.
*/
private void RangeCheck(int index) {
if ((index >= ea.length) || (index < 0)) {
throw new IndexOutOfBoundsException(
"Index: " + index + ", Size: " + ea.length);
}
}
/**
* Removes the element at the specified position in this list.
* Shifts any subsequent elements to the left (subtracts one from their
* indices).
*
* @param index the index of the element to removed.
* @return the element that was removed from the list.
* @throws IndexOutOfBoundsException if index out of range <tt>(index
* &lt; 0 || index &gt;= size())</tt>.
*/
public Object remove(int index) {
Object oldValue = ea[index];
List list = new ArrayList(Arrays.asList(ea));
list.remove(index);
ea = list.toArray(ea);
numElems = ea.length;
numElems--;
if (--last <= 0) {
last = numElems;
}
if (first == maxSize) {
first = 0;
}
return oldValue;
}
public Object set(int index, Object element) {
Object previous = ea[index];
ea[index] = element;
return previous;
}
/**
Add an <code>event</code> as the last event in the buffer.
*/
public boolean add(Object event) {
ea[last] = event;
if (++last == maxSize) {
last = 0;
}
if (numElems < maxSize) {
numElems++;
} else if (++first == maxSize) {
first = 0;
}
return true;
}
/**
Get the <i>i</i>th oldest event currently in the buffer. If
<em>i</em> is outside the range 0 to the number of elements
currently in the buffer, then <code>null</code> is returned.
*/
public Object get(int i) {
if ((i < 0) || (i >= numElems)) {
return null;
}
return ea[(first + i) % maxSize];
}
public int getMaxSize() {
return maxSize;
}
/**
Get the oldest (first) element in the buffer. The oldest element
is removed from the buffer.
*/
public Object get() {
Object r = null;
if (numElems > 0) {
numElems--;
r = ea[first];
ea[first] = null;
if (++first == maxSize) {
first = 0;
}
}
return r;
}
/**
Get the number of elements in the buffer. This number is
guaranteed to be in the range 0 to <code>maxSize</code>
(inclusive).
*/
public int size() {
return numElems;
}
/**
Resize the cyclic buffer to <code>newSize</code>.
@throws IllegalArgumentException if <code>newSize</code> is negative.
*/
public void resize(int newSize) {
if (newSize < 0) {
throw new IllegalArgumentException(
"Negative array size [" + newSize + "] not allowed.");
}
if (newSize == numElems) {
return; // nothing to do
}
Object[] temp = new Object[newSize];
int loopLen = (newSize < numElems) ? newSize : numElems;
for (int i = 0; i < loopLen; i++) {
temp[i] = ea[first];
ea[first] = null;
if (++first == numElems) {
first = 0;
}
}
ea = temp;
first = 0;
numElems = loopLen;
maxSize = newSize;
if (loopLen == newSize) {
last = 0;
} else {
last = loopLen;
}
}
/* (non-Javadoc)
* @see java.util.Collection#clear()
*/
public void clear() {
ea = new Object[maxSize];
first = 0;
last = 0;
numElems = 0;
}
}