A very simple & quick question on Java libraries: is there a ready-made class that implements a Queue with a fixed maximum size - i.e. it always allows addition of elements, but it will silently remove head elements to accomodate space for newly added elements.

Of course, it's trivial to implement it manually: import java.util.LinkedList;

public class LimitedQueue<E> extends LinkedList<E> {

    private int limit;

    public LimitedQueue(int limit) {
        this.limit = limit;
    }

    @Override
    public boolean add(E o) {
        super.add(o);
        while (size() > limit) { super.remove(); }
        return true;
    }
}

As far as I see, there's no standard implementation in Java stdlibs, but may be there's one in Apache Commons or something like that?

link|improve this question

1  
Related stackoverflow.com/questions/590069/… – andersoj Mar 31 '11 at 11:47
How funny: I just implemented this yesterday. Will post. – Kevin Bourrillion Mar 31 '11 at 14:21
2  
@Kevin: You're such a tease. – Mark Peters Apr 12 '11 at 14:58
1  
Personnaly I would not introduce another library if this would the only use of this library... – Nicolas Bousquet Apr 14 '11 at 16:31
feedback

5 Answers

up vote 14 down vote accepted
+50

Apache commons collections has a CircularFifoBuffer which is what you are looking for. quoting the javadoc:

CircularFifoBuffer is a first in first out buffer with a fixed size that replaces its oldest element if full.

link|improve this answer
That's a good candidate, but, alas, it doesn't use generics :( – GreyCat Apr 15 '11 at 10:49
1  
In that case use the release that was ported for Java 1.5 and uses Generics: link it's an unofficial release, but I don't think that there's any problem with it – Asaf Apr 15 '11 at 10:55
1  
Also, from checking now I see that they already implemented generics in the trunk of the next version, so if you just want the source code you can pick it up from their repository here, some more possible resources in a previous question – Asaf Apr 15 '11 at 11:02
Thanks! Looks that's the most viable alternative for now :) – GreyCat Apr 18 '11 at 20:52
feedback

Use composition not extends (yes I mean extends, as in a reference to the extends keyword in java and yes this is inheritance). Composition is superier because it completely shields your implementation, allowing you to change the implementation without impacting the users of your class.

I recommend trying something like this (I'm typing directly into this window, so buyer beware of syntax errors):

public LimitedSizeQueue implements Queue
{
  private int maxSize;
  private LinkedList storageArea;

  public LimitedSizeQueue(final int maxSize)
  {
    this.maxSize = maxSize;
    storageArea = new LinkedList();
  }

  public boolean offer(ElementType element)
  {
    if (storageArea.size() < maxSize)
    {
      storageArea.addFirst(element);
    }
    else
    {
      ... remove last element;
      storageArea.addFirst(element);
    }
  }

  ... the rest of this class

A better option (based on the answer by Asaf) might be to wrap the Apache Collections CircularFifoBuffer with a generic class. For example:

public LimitedSizeQueue<ElementType> implements Queue<ElementType>
{
    private int maxSize;
    private CircularFifoBuffer storageArea;

    public LimitedSizeQueue(final int maxSize)
    {
        if (maxSize > 0)
        {
            this.maxSize = maxSize;
            storateArea = new CircularFifoBuffer(maxSize);
        }
        else
        {
            throw new IllegalArgumentException("blah blah blah");
        }
    }

    ... implement the Queue interface using the CircularFifoBuffer class
}
link|improve this answer
+1 if you explain why composition is a better choice (other than "prefer composition over inheritance) ... and there is a very good reason – kdgregory Apr 14 '11 at 18:29
Composition is a poor choice for my task here: it means at least twice the number of objects => at least twice more often garbage collection. I use large quantities (tens of millions) of these limited-size queues, like that: Map<Long, LimitedSizeQueue<String>>. – GreyCat Apr 15 '11 at 10:52
@GreyCat - I take it you haven't looked at how LinkedList is implemented, then. The extra object created as a wrapper around the list will be pretty minor, even with "tens of millions" of instances. – kdgregory Apr 15 '11 at 13:22
I was going for "reduces the size of the interface," but "shields the implementation" is pretty much the same thing. Either answers Mark Peter's complaints about the OP's approach. – kdgregory Apr 16 '11 at 13:34
feedback

The only thing I know that has limited space is the BlockingQueue interface (which is e.g. implemented by the ArrayBlockingQueue class) - but they do not remove the first element if filled, but instead block the put operation until space is free (removed by other thread).

To my knowledge your trivial implementation is the easiest way to get such an behaviour.

link|improve this answer
This has already been suggested and deleted. – Mark Peters Apr 12 '11 at 15:06
I've already browsed through Java stdlib classes, and, sadly, BlockingQueue is not an answer. I've thought of other common libraries, such as Apache Commons, Eclipse's libraries, Spring's, Google's additions, etc? – GreyCat Apr 12 '11 at 15:22
feedback

You can use a MinMaxPriorityQueue from Google Guava, from the javadoc:

A min-max priority queue can be configured with a maximum size. If so, each time the size of the queue exceeds that value, the queue automatically removes its greatest element according to its comparator (which might be the element that was just added). This is different from conventional bounded queues, which either block or reject new elements when full.

link|improve this answer
1  
Do you understand what a priority queue is, and how it differs from the OP's example? – kdgregory Apr 12 '11 at 15:52
Sure, i just say u can use the MinMaxPriorityQueue, u must not care about the Priority part since there is no MinMaxQueue in the guava libs. – Moritz Heuser Apr 12 '11 at 15:56
@kdgregory: It can be used with some extra work. Just keep an long cursor = Long.MAX_VALUE, use it as the priority value and decrement it each time you add to the queue. In practice that will almost certainly be sufficient. – Mark Peters Apr 12 '11 at 16:57
1  
@Mark Peters - I just don't know what to say. Sure, you can make a priority queue behave like a fifo queue. You could also make a Map behave like a List. But both ideas show a complete incomprehension of algorithms and software design. – kdgregory Apr 12 '11 at 17:56
1  
@Mark Peters - isn't every question on SO about a good way to do something? – jtahlborn Apr 14 '11 at 17:30
show 5 more comments
feedback

An LRUMap is another possibility, also from Apache Commons.

http://commons.apache.org/collections/apidocs/org/apache/commons/collections/map/LRUMap.html

link|improve this answer
I don't really understand how to adapt LRUMap to act as a queue and I guess it would be rather hard to use even if it's possible. – GreyCat Aug 23 '11 at 1:59
feedback

Your Answer

 
or
required, but never shown

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