vote up 9 vote down star
3

I want a simple class that implements a fixed-size circular buffer. It should be efficient, easy on the eyes, generically typed.

EDIT: It need not be MT-capable, for now. I can always add a lock later, it won't be high-concurrency in any case.

Methods should be: .Add and I guess .List, where I retrieve all the entries. On second thought, Retrieval I think should be done via an indexer. At any moment I will want to be able to retrieve any element in the buffer by index. But keep in mind that from one moment to the next Element[n] may be different, as the Circular buffer fills up and rolls over.

This isn't a stack, it's a circular buffer. Regarding "overflow": I would expect internally there would be an array holding the items, and over time the head and tail of the buffer will rotate around that fixed array. But that should be invisible from the user. There should be no externally-detectable "overflow" event or behavior.

This is not a school assignment - it is most commonly going to be used for a MRU cache or a fixed-size transaction or event log.

flag

Should it be thread-safe? What operations are required, just enqueue and dequeue? Or do you also want: current length, random access reads, clear? Should overflow and underflow result in exceptions or should they use a "bool TryDequeue(out T item)" pattern? – Weeble Feb 26 at 11:29

6 Answers

vote up 9 vote down check

I would use an array of T, a head and tail pointer, and add and get methods.

Like: (Bug hunting is left to the user)

// Hijack these for simplicity
import java.nio.BufferOverflowException;
import java.nio.BufferUnderflowException;

public class CircularBuffer<T> {

  private T[] buffer;

  private int tail;

  private int head;

  @SuppressWarnings("unchecked")
  public CircularBuffer(int n) {
    buffer = (T[]) new Object[n];
    tail = 0;
    head = 0;
  }

  public void add(T toAdd) {
    if (head != (tail - 1)) {
        buffer[head++] = toAdd;
    } else {
        throw new BufferOverflowException();
    }
    head = head % buffer.length;
  }

  public T get() {
    T t = null;
    int adjTail = tail > head ? tail - buffer.length : tail;
    if (adjTail < head) {
        t = (T) buffer[tail++];
        tail = tail % buffer.length;
    } else {
        throw new BufferUnderflowException();
    }
    return t;
  }

  public String toString() {
    return "CircularBuffer(size=" + buffer.length + ", head=" + head + ", tail=" + tail + ")";
  }

  public static void main(String[] args) {
    CircularBuffer<String> b = new CircularBuffer<String>(3);
    for (int i = 0; i < 10; i++) {
        System.out.println("Start: " + b);
        b.add("One");
        System.out.println("One: " + b);
        b.add("Two");
        System.out.println("Two: " + b);
        System.out.println("Got '" + b.get() + "', now " + b);

        b.add("Three");
        System.out.println("Three: " + b);
        // Test Overflow
        // b.add("Four");
        // System.out.println("Four: " + b);

        System.out.println("Got '" + b.get() + "', now " + b);
        System.out.println("Got '" + b.get() + "', now " + b);
        // Test Underflow
        // System.out.println("Got '" + b.get() + "', now " + b);

        // Back to start, let's shift on one
        b.add("Foo");
        b.get();
    }
  }
}
link|flag
One bug found: The get() method does not set the elements of the internal array to null after the elements are removed from it, so there is a slight memory leak. – Esko Luontola Feb 27 at 0:21
Yes, correct. :) I should have noticed that - my fault for not printing the elements in the list in the test code. Not as big as the bug of not using a standard API class or that in many use cases the thread-safe producer/consumer queue is more sensible ... – JeeBee Feb 27 at 0:49
Why write "buffer = (T[]) new Object[n];" and not simply "buffer = new T[n];"? The cast in "t = (T) buffer[tail++];" also looks unnecessary to me. Or is this some Java peculiarity that I'm overlooking...? – Thomas Feb 27 at 2:24
You can not write "new T[n]" in Java, see the question "Can I create an array whose component type is a type parameter?" at angelikalanger.com/GenericsFAQ/FAQSections/… – Esko Luontola Feb 27 at 10:52
1  
Unless I am severely misunderstanding the spec, this code has significant flaws. It is possible to insert an infinite number of elements into the queue without getting BufferOverflowException if you do not attempt to retrieve an element. There is a much better implementation at cs.utsa.edu/~wagner/CS2213/…. – vulgarbarbarian Jul 9 at 13:55
show 2 more comments
vote up 2 vote down

I would use ArrayBlockingQueue or one of the other prebuilt Queue implementations, depending on what the needs are. Very rarely there is need to implement such a data structure yourself (unless it's a school assignment).

EDIT: Now that you have added the requirement "to retrieve any element in the buffer by index", I suppose that you need to implement your own class (unless google-collections or some other library provides one). A circular buffer is quite easy to implement, as JeeBee's example shows. You may also look at ArrayBlockingQueue's source code - its code is quite clean, just remove the locking and unneeded methods, and add methods for accessing it by index.

link|flag
I thought so too - I thought a fixed-size circ buffer would be in the bag of tools, but for some reason I don't see them in the normal Java base class library or in the .NET base class lib. – Cheeso Feb 26 at 23:35
(This is not a school assignment!) – Cheeso Feb 26 at 23:37
I have need for a fixed-sized queue that implements a persistence mechanism when one of two conditions fire: 1 a periodic timer, to batch all unsaved messages, and a second buffer to hold expired messages that haven't been saved yet. I haven't tried, I'm using a persist-immediate queue at the moment, hoping I don't end up with performance issues when my message traffic scales from zero to 1000s/sec. – Chris Kaminski Jul 14 at 17:50
vote up 0 vote down

A circular buffer is a queue that works in a fixed pre-allocated buffer. Using large long-lived buffers in a garbage collected runtime environment as provided by C# or Java is not a good idea. Just use a Queue, you'll get the solution for buffer overflows for free.

link|flag
vote up 1 vote down

Just use someone else's implementation:

The Power Collections Deque<T> is implemented by a circular buffer.

The power collections library is patchy but the Deque is perfectly acceptable expanding circular buffer.

Since you indicate that you do not want expansion and instead desire overwrite you could fairly easily modify the code to overwrite. This would simply involve removing the check for the pointers being logically adjacent and just writing anyway. At the same time the private buffer could be made readonly.

link|flag
Expanding? Does that mean it gets larger without me being able to control it? – Cheeso Feb 26 at 23:31
yes, but modifying it to either refuse (Exception) or overwrite the last value is not hard... – ShuggyCoUk Feb 26 at 23:40
Throw an exception every time I add an item in the circbuffer after the first n items? Geez, that sounds like a bad practice. – Cheeso Feb 27 at 5:33
1  
depends on the semantics, if you don't want the buffer to expand then you have three options: 1) calling code is supposed to check if it is full and not add (so the add should throw). 2) atempts to add simply disappear into nothing 3) data already in the buffer is overwritten. – ShuggyCoUk Feb 27 at 8:03
if you don't want data in the buffer or data wanting to be in the buffer to be lost the only reasonable response is to throw if something screws up which would fore it (or get bigger to cope with more data) – ShuggyCoUk Feb 27 at 8:04
show 3 more comments
vote up 0 vote down

if an lru cache would work, consider just using http://java.sun.com/javase/6/docs/api/java/util/LinkedHashMap.html#LinkedHashMap(int,%20float,%20boolean), http://java.sun.com/javase/6/docs/api/java/util/LinkedHashMap.html#removeEldestEntry(java.util.Map.Entry)

link|flag
vote up 1 vote down

Check out http://www.cs.utsa.edu/~wagner/CS2213/queue/queue.html for a solid implementation that just needs to be genericized.

link|flag
nice! useful. Thanks. – Cheeso Jul 9 at 14:46

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.