// // Copyright (c) 2006-2017 Benjamin Kaufmann // // This file is part of Clasp. See http://www.cs.uni-potsdam.de/clasp/ // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to // deal in the Software without restriction, including without limitation the // rights to use, copy, modify, merge, publish, distribute, sublicense, and/or // sell copies of the Software, and to permit persons to whom the Software is // furnished to do so, subject to the following conditions: // // The above copyright notice and this permission notice shall be included in // all copies or substantial portions of the Software. // // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS // IN THE SOFTWARE. // #ifndef CLASP_POD_VECTOR_H_INCLUDED #define CLASP_POD_VECTOR_H_INCLUDED #include #include #include #include namespace Clasp { #if CLASP_USE_STD_VECTOR template struct PodVector { typedef std::vector type; static void destruct(type& t) {t.clear();} }; #else //! Type selector for a vector type optimized for storing POD-types. template struct PodVector { typedef bk_lib::pod_vector type; static void destruct(type& t) { for (typename type::size_type i = 0, end = t.size(); i != end; ++i) { t[i].~Type(); } t.clear(); } }; #endif inline uint32 toU32(std::size_t x) { assert(sizeof(std::size_t) <= sizeof(uint32) || x <= static_cast(UINT32_MAX)); return static_cast(x); } template inline uint32 sizeVec(const T& c) { return toU32(c.size()); } template inline void releaseVec(T& t) { T().swap(t); } template inline void shrinkVecTo(T& t, typename T::size_type j) { t.erase(t.begin()+j, t.end()); } template inline void growVecTo(T& vec, typename T::size_type j, const typename T::value_type& val = typename T::value_type()) { if (vec.size() < j) { if (vec.capacity() < j) { vec.reserve(j + j / 2); } vec.resize(j, val); } } template void moveDown(T& t, typename T::size_type from, typename T::size_type to) { for (typename T::size_type end = t.size(); from != end;) { t[to++] = t[from++]; } shrinkVecTo(t, to); } //! A simple vector-based fifo queue for storing POD-types. template struct PodQueue { typedef typename PodVector::type vec_type; typedef typename vec_type::size_type size_type; PodQueue() : qFront(0) {} bool empty() const { return qFront == vec.size(); } size_type size() const { return vec.size() - qFront; } const T& front() const { return vec[qFront]; } const T& back() const { return vec.back(); } T& front() { return vec[qFront]; } T& back() { return vec.back(); } void push(const T& x){ vec.push_back(x); } void pop() { ++qFront; } T pop_ret() { return vec[qFront++]; } void clear() { vec.clear(); qFront = 0; } void rewind() { qFront = 0; } vec_type vec; // the underlying vector holding the items size_type qFront; // front position }; } #endif