Sirikata
libcore/include/sirikata/core/queue/Queue.hpp
Go to the documentation of this file.
00001 /*  cobra
00002  *  Queue.hpp
00003  *
00004  *  Copyright (c) 2009, Ewen Cheslack-Postava
00005  *  All rights reserved.
00006  *
00007  *  Redistribution and use in source and binary forms, with or without
00008  *  modification, are permitted provided that the following conditions are
00009  *  met:
00010  *  * Redistributions of source code must retain the above copyright
00011  *    notice, this list of conditions and the following disclaimer.
00012  *  * Redistributions in binary form must reproduce the above copyright
00013  *    notice, this list of conditions and the following disclaimer in
00014  *    the documentation and/or other materials provided with the
00015  *    distribution.
00016  *  * Neither the name of cobra nor the names of its contributors may
00017  *    be used to endorse or promote products derived from this software
00018  *    without specific prior written permission.
00019  *
00020  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
00021  * IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
00022  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
00023  * PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER
00024  * OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
00025  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
00026  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
00027  * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
00028  * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
00029  * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
00030  * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
00031  */
00032 
00033 #ifndef _SIRIKATA_QUEUE_HPP_
00034 #define _SIRIKATA_QUEUE_HPP_
00035 
00036 #include <sirikata/core/util/Platform.hpp>
00037 #include "AbstractQueue.hpp"
00038 
00039 namespace Sirikata {
00040 
00041 
00043 template<typename ElementType>
00044 struct MethodSizeFunctor {
00045     uint32 operator()(const ElementType& e) const {
00046         return e.size();
00047     }
00048 };
00049 
00050 template<typename ElementType>
00051 struct MethodSizeFunctor<ElementType*> {
00052     uint32 operator()(const ElementType* e) const {
00053         return e->size();
00054     }
00055 };
00056 
00058 template <typename ElementType, typename SizeFunctorType = MethodSizeFunctor<ElementType> >
00059 class Queue : public AbstractQueue<ElementType> {
00060 
00061     std::deque<ElementType> mElements;
00062     SizeFunctorType mSizeFunctor;
00063     uint32 mMaxSize;
00064     uint32 mSize;
00065 public:
00066     typedef ElementType Type;
00067 
00068     Queue(uint32 max_size){
00069         mMaxSize=max_size;
00070         mSize = 0;
00071     }
00072     ~Queue(){}
00073 
00074     QueueEnum::PushResult push(const ElementType &msg){
00075         uint32 msg_size = mSizeFunctor(msg);
00076         if (mSize + msg_size > mMaxSize) {
00077             if (msg_size > mMaxSize) SILOG(queue,fatal,"Tried to push element larger than maximum queue size: " << msg_size << " > " << mMaxSize);
00078             return QueueEnum::PushExceededMaximumSize;
00079         }
00080         mElements.push_back(msg);
00081         mSize += msg_size;
00082         return QueueEnum::PushSucceeded;
00083     }
00084 
00085     const ElementType& front() const{
00086         return mElements.front();
00087     }
00088 
00089     ElementType& front() {
00090         return mElements.front();
00091     }
00092 
00093     ElementType pop(){
00094         ElementType m = mElements.front();
00095         mElements.pop_front();
00096         uint32 m_size = mSizeFunctor(m);
00097         mSize -= m_size;
00098         return m;
00099     }
00100 
00101     bool empty() const{
00102         return mElements.empty();
00103     }
00104 
00105     uint32 maxSize() const {
00106         return mMaxSize;
00107     }
00108 
00109     uint32 size() const {
00110         return mSize;
00111     }
00112 
00119 };
00120 
00121 } // namespace Sirikata
00122 
00123 #endif //_SIRIKATA_QUEUE_HPP_