vote up 1 vote down star

I notice the thread of similar question: http://stackoverflow.com/questions/1292/limit-size-of-queuet-in-net That's exactly what I want to do, but I am not using .net but GNU C++. I have no reference to the base class in GNU C++, so java like super.() or .net like base.() will not work. I have been trying to inherite from queue class but it turns out in vain.

What I want to do: specify the size of the queue, automatic dequeue when the queue is full. To be specific: if the maximum size of my queue is 2, when i push the 3rd item, the 1st item will be automatically popped out before pushing the new item.

How to implement such a queue?

Thanks.

flag

1  
You need to explain what you mean by "automatic dequeue" - do you mean discard things at the queue's head? – Neil Butterworth Aug 13 at 16:23
@Neil: I was about to ask the very same question, but then I first clikced on the linked posting. :) – sbi Aug 13 at 22:03

4 Answers

vote up 7 vote down check

Make a new class that encapsulates the queue and enforce a size limit in the new class.

link|flag
1  
do you mean: creating a new class with a member variable queue? – Lily Aug 13 at 16:32
+1 This strikes me as the simplest solution. – DeusAduro Aug 13 at 16:33
@Lily, I believe that is what he is getting at. This is fairly straightforward simply because a queue only really has two important mutators, push_back, pop_front. And in your case if it automatically dequeues you might only need push_back as a public member. – DeusAduro Aug 13 at 16:35
I disagree with this solution, since it prevents using this queue where a std lib queue is expected (like this: template< typename T, class C> void f(std::queue<T,C>&)). OTOH, using `std::queue with a different underlying container will allow to use that queue with sufficiently generic code that expects std lib queues. – sbi Aug 14 at 8:17
vote up 1 vote down

It sounds like boost::circuclar_buffer does what you're looking for:

Writing to a Full Buffer

There are several options how to cope with the case if a data source produces more data than can fit in the fixed-sized buffer:

  1. Inform the data source to wait until there is room in the buffer (e.g. by throwing an overflow exception).
  2. If the oldest data is the most important, ignore new data from the source until there is room in the buffer again.
  3. If the latest data is the most important, write over the oldest data.
  4. Let the producer to be responsible for checking the size of the buffer prior writing into it.

It is apparent that the circular_buffer implements the third option. But it may be less apparent it does not implement any other option - especially the first two. One can get an impression that the circular_buffer should implement first three options and offer a mechanism of choosing among them. This impression is wrong. The circular_buffer was designed and optimized to be circular (which means overwriting the oldest data when full). If such a controlling mechanism had been enabled, it would just complicate the matters and the usage of the circular_buffer would be probably less straightforward.

link|flag
vote up 0 vote down

Assuming that by Queue<T> you mean std::queue<T>: A queue is just an adapter for some underlying container that's passed at compile-time. You could use a container that already does what you want. The best fit seems to be a circular buffer, if you can find one that supports the operations necessary for std::queue (I think that's push_back(), pop_front(), and size(), but I haven't checked).

link|flag
vote up 0 vote down

Check out the standard containers here:

http://www.sgi.com/tech/stl/table%5Fof%5Fcontents.html

link|flag
Although beware, that page lists at least one container which is not standard (rope). – Steve Jessop Aug 13 at 16:44
But the documentation is from the creator of the STL so I find it more useful than other STL documentation. And rope is clearly documented as being an SGI extension. – Martin York Aug 13 at 17:20
Martin, is there anything that would solve the original question? If so, I haven't seen it. – sbi Aug 13 at 22:06
@Martin: yes, I certainly think SGI's docs are the best I've seen for STL, online at least. I use them myself for preference. But the fact of things being an extension is usually only documented in the line which specifies the header file. So for a newcomer to the site, especially one expecting "the list of standard containers", I don't think it is entirely obvious. – Steve Jessop Aug 14 at 10:17

Your Answer

Get an OpenID
or

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