2005-09-14 21:33:16 +02:00
|
|
|
/*
|
2014-02-23 20:12:25 +01:00
|
|
|
Copyright (c) 2007-2014, Arvid Norberg
|
2005-09-14 21:33:16 +02:00
|
|
|
All rights reserved.
|
|
|
|
|
|
|
|
Redistribution and use in source and binary forms, with or without
|
|
|
|
modification, are permitted provided that the following conditions
|
|
|
|
are met:
|
|
|
|
|
|
|
|
* Redistributions of source code must retain the above copyright
|
|
|
|
notice, this list of conditions and the following disclaimer.
|
|
|
|
* Redistributions in binary form must reproduce the above copyright
|
|
|
|
notice, this list of conditions and the following disclaimer in
|
|
|
|
the documentation and/or other materials provided with the distribution.
|
|
|
|
* Neither the name of Rasterbar Software nor the names of its
|
|
|
|
contributors may be used to endorse or promote products derived
|
|
|
|
from this software without specific prior written permission.
|
|
|
|
|
|
|
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
|
|
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
|
|
|
|
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
|
|
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
|
|
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
|
|
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
|
|
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
|
|
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef LIBTORRENT_BUFFER_HPP
|
|
|
|
#define LIBTORRENT_BUFFER_HPP
|
|
|
|
|
2007-09-23 02:51:45 +02:00
|
|
|
#include <cstring>
|
2015-01-20 18:05:45 +01:00
|
|
|
#include <limits> // for numeric_limits
|
2007-09-10 08:12:41 +02:00
|
|
|
#include "libtorrent/invariant_check.hpp"
|
|
|
|
#include "libtorrent/assert.hpp"
|
2009-12-15 14:11:07 +01:00
|
|
|
#include <cstdlib> // malloc/free/realloc
|
2014-07-06 21:18:00 +02:00
|
|
|
#include <boost/cstdint.hpp>
|
2015-01-02 12:11:09 +01:00
|
|
|
#include <algorithm> // for std::swap
|
2005-09-14 21:33:16 +02:00
|
|
|
|
|
|
|
namespace libtorrent {
|
|
|
|
|
|
|
|
class buffer
|
|
|
|
{
|
|
|
|
public:
|
2007-09-23 02:51:45 +02:00
|
|
|
struct interval
|
|
|
|
{
|
2008-04-10 12:03:23 +02:00
|
|
|
interval()
|
|
|
|
: begin(0)
|
|
|
|
, end(0)
|
|
|
|
{}
|
|
|
|
|
2010-03-06 08:16:39 +01:00
|
|
|
interval(char* b, char* e)
|
|
|
|
: begin(b)
|
|
|
|
, end(e)
|
2007-09-23 02:51:45 +02:00
|
|
|
{}
|
2005-09-14 21:33:16 +02:00
|
|
|
|
2007-09-23 02:51:45 +02:00
|
|
|
char operator[](int index) const
|
|
|
|
{
|
2007-10-05 02:30:00 +02:00
|
|
|
TORRENT_ASSERT(begin + index < end);
|
2007-09-23 02:51:45 +02:00
|
|
|
return begin[index];
|
|
|
|
}
|
2006-04-25 23:04:48 +02:00
|
|
|
|
2014-11-29 02:53:22 +01:00
|
|
|
int left() const
|
|
|
|
{
|
|
|
|
TORRENT_ASSERT(end >= begin);
|
|
|
|
TORRENT_ASSERT(end - begin < INT_MAX);
|
|
|
|
return int(end - begin);
|
|
|
|
}
|
2005-09-14 21:33:16 +02:00
|
|
|
|
2007-09-23 02:51:45 +02:00
|
|
|
char* begin;
|
|
|
|
char* end;
|
|
|
|
};
|
2005-09-14 21:33:16 +02:00
|
|
|
|
2007-09-23 02:51:45 +02:00
|
|
|
struct const_interval
|
2005-09-18 12:18:23 +02:00
|
|
|
{
|
2009-03-17 10:34:44 +01:00
|
|
|
const_interval(interval const& i)
|
|
|
|
: begin(i.begin)
|
|
|
|
, end(i.end)
|
|
|
|
{}
|
|
|
|
|
2010-03-06 08:16:39 +01:00
|
|
|
const_interval(char const* b, char const* e)
|
|
|
|
: begin(b)
|
|
|
|
, end(e)
|
2007-09-23 02:51:45 +02:00
|
|
|
{}
|
|
|
|
|
|
|
|
char operator[](int index) const
|
2005-09-14 21:33:16 +02:00
|
|
|
{
|
2007-10-05 02:30:00 +02:00
|
|
|
TORRENT_ASSERT(begin + index < end);
|
2007-09-23 02:51:45 +02:00
|
|
|
return begin[index];
|
2005-09-14 21:33:16 +02:00
|
|
|
}
|
|
|
|
|
2007-09-23 02:51:45 +02:00
|
|
|
bool operator==(const const_interval& p_interval)
|
2005-09-14 21:33:16 +02:00
|
|
|
{
|
2014-11-29 02:53:22 +01:00
|
|
|
return begin == p_interval.begin
|
|
|
|
&& end == p_interval.end;
|
2005-09-14 21:33:16 +02:00
|
|
|
}
|
|
|
|
|
2014-11-29 02:53:22 +01:00
|
|
|
int left() const
|
|
|
|
{
|
|
|
|
TORRENT_ASSERT(end >= begin);
|
|
|
|
TORRENT_ASSERT(end - begin < INT_MAX);
|
|
|
|
return int(end - begin);
|
|
|
|
}
|
2005-09-14 21:33:16 +02:00
|
|
|
|
2007-09-23 02:51:45 +02:00
|
|
|
char const* begin;
|
|
|
|
char const* end;
|
|
|
|
};
|
|
|
|
|
|
|
|
buffer(std::size_t n = 0)
|
|
|
|
: m_begin(0)
|
2014-07-06 21:18:00 +02:00
|
|
|
, m_size(0)
|
|
|
|
, m_capacity(0)
|
2005-09-14 21:33:16 +02:00
|
|
|
{
|
2007-09-23 02:51:45 +02:00
|
|
|
if (n) resize(n);
|
2005-09-14 21:33:16 +02:00
|
|
|
}
|
|
|
|
|
2007-09-23 02:51:45 +02:00
|
|
|
buffer(buffer const& b)
|
|
|
|
: m_begin(0)
|
2014-07-06 21:18:00 +02:00
|
|
|
, m_size(0)
|
|
|
|
, m_capacity(0)
|
2005-09-18 12:18:23 +02:00
|
|
|
{
|
2007-09-23 02:51:45 +02:00
|
|
|
if (b.size() == 0) return;
|
|
|
|
resize(b.size());
|
|
|
|
std::memcpy(m_begin, b.begin(), b.size());
|
2005-09-18 12:18:23 +02:00
|
|
|
}
|
|
|
|
|
2013-12-17 01:51:01 +01:00
|
|
|
#if __cplusplus > 199711L
|
2014-07-06 21:18:00 +02:00
|
|
|
buffer(buffer&& b)
|
|
|
|
: m_begin(b.m_begin)
|
|
|
|
, m_size(b.m_size)
|
|
|
|
, m_capacity(b.m_capacity)
|
|
|
|
{
|
|
|
|
b.m_begin = NULL;
|
|
|
|
b.m_size = b.m_capacity = 0;
|
|
|
|
}
|
2015-04-03 22:15:48 +02:00
|
|
|
|
|
|
|
buffer& operator=(buffer&& b)
|
|
|
|
{
|
|
|
|
if (&b == this) return *this;
|
|
|
|
std::free(m_begin);
|
|
|
|
m_begin = b.m_begin;
|
|
|
|
m_size = b.m_size;
|
|
|
|
m_capacity = b.m_capacity;
|
|
|
|
b.m_begin = NULL;
|
|
|
|
b.m_size = b.m_capacity = 0;
|
|
|
|
return *this;
|
|
|
|
}
|
2013-12-17 01:51:01 +01:00
|
|
|
#endif
|
|
|
|
|
2007-09-23 02:51:45 +02:00
|
|
|
buffer& operator=(buffer const& b)
|
2006-04-25 23:04:48 +02:00
|
|
|
{
|
2009-11-11 06:24:57 +01:00
|
|
|
if (&b == this) return *this;
|
2007-09-23 02:51:45 +02:00
|
|
|
resize(b.size());
|
2011-02-21 06:24:41 +01:00
|
|
|
if (b.size() == 0) return *this;
|
2007-09-23 02:51:45 +02:00
|
|
|
std::memcpy(m_begin, b.begin(), b.size());
|
|
|
|
return *this;
|
2006-04-25 23:04:48 +02:00
|
|
|
}
|
2005-09-14 21:33:16 +02:00
|
|
|
|
2007-09-23 02:51:45 +02:00
|
|
|
~buffer()
|
|
|
|
{
|
2009-11-11 06:24:57 +01:00
|
|
|
std::free(m_begin);
|
2007-09-23 02:51:45 +02:00
|
|
|
}
|
2005-09-18 12:18:23 +02:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
buffer::interval data()
|
|
|
|
{ return interval(m_begin, m_begin + m_size); }
|
|
|
|
buffer::const_interval data() const
|
|
|
|
{ return const_interval(m_begin, m_begin + m_size); }
|
2007-09-23 02:51:45 +02:00
|
|
|
|
|
|
|
void resize(std::size_t n)
|
2005-09-18 12:18:23 +02:00
|
|
|
{
|
2007-09-23 02:51:45 +02:00
|
|
|
reserve(n);
|
2014-07-06 21:18:00 +02:00
|
|
|
m_size = n;
|
2005-09-18 12:18:23 +02:00
|
|
|
}
|
|
|
|
|
2007-09-23 02:51:45 +02:00
|
|
|
void insert(char* point, char const* first, char const* last)
|
|
|
|
{
|
|
|
|
std::size_t p = point - m_begin;
|
2014-07-06 21:18:00 +02:00
|
|
|
if (point == m_begin + m_size)
|
2007-09-23 02:51:45 +02:00
|
|
|
{
|
|
|
|
resize(size() + last - first);
|
|
|
|
std::memcpy(m_begin + p, first, last - first);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
resize(size() + last - first);
|
|
|
|
std::memmove(m_begin + p + (last - first), m_begin + p, last - first);
|
|
|
|
std::memcpy(m_begin + p, first, last - first);
|
|
|
|
}
|
2005-09-18 12:18:23 +02:00
|
|
|
|
2010-03-06 08:16:39 +01:00
|
|
|
void erase(char* b, char* e)
|
2007-09-23 02:51:45 +02:00
|
|
|
{
|
2014-07-06 21:18:00 +02:00
|
|
|
TORRENT_ASSERT(e <= m_begin + m_size);
|
2010-03-06 08:16:39 +01:00
|
|
|
TORRENT_ASSERT(b >= m_begin);
|
|
|
|
TORRENT_ASSERT(b <= e);
|
2014-07-06 21:18:00 +02:00
|
|
|
if (e == m_begin + m_size)
|
2007-09-23 02:51:45 +02:00
|
|
|
{
|
2010-03-06 08:16:39 +01:00
|
|
|
resize(b - m_begin);
|
2007-09-23 02:51:45 +02:00
|
|
|
return;
|
|
|
|
}
|
2014-07-06 21:18:00 +02:00
|
|
|
std::memmove(b, e, m_begin + m_size - e);
|
2015-01-16 21:51:39 +01:00
|
|
|
TORRENT_ASSERT(e >= b);
|
|
|
|
TORRENT_ASSERT(e - b <= std::numeric_limits<boost::uint32_t>::max());
|
|
|
|
TORRENT_ASSERT(boost::uint32_t(e - b) <= m_size);
|
2014-07-06 21:18:00 +02:00
|
|
|
m_size -= e - b;
|
2007-09-23 02:51:45 +02:00
|
|
|
}
|
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
void clear() { m_size = 0; }
|
|
|
|
std::size_t size() const { return m_size; }
|
|
|
|
std::size_t capacity() const { return m_capacity; }
|
2007-09-23 02:51:45 +02:00
|
|
|
void reserve(std::size_t n)
|
|
|
|
{
|
|
|
|
if (n <= capacity()) return;
|
2007-10-05 02:30:00 +02:00
|
|
|
TORRENT_ASSERT(n > 0);
|
2007-09-23 02:51:45 +02:00
|
|
|
|
2009-11-11 06:24:57 +01:00
|
|
|
m_begin = (char*)std::realloc(m_begin, n);
|
2014-07-06 21:18:00 +02:00
|
|
|
m_capacity = n;
|
2007-09-23 02:51:45 +02:00
|
|
|
}
|
2005-09-18 12:18:23 +02:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
bool empty() const { return m_size == 0; }
|
2007-10-07 18:42:31 +02:00
|
|
|
char& operator[](std::size_t i) { TORRENT_ASSERT(i < size()); return m_begin[i]; }
|
|
|
|
char const& operator[](std::size_t i) const { TORRENT_ASSERT(i < size()); return m_begin[i]; }
|
2005-09-14 21:33:16 +02:00
|
|
|
|
2007-09-23 02:51:45 +02:00
|
|
|
char* begin() { return m_begin; }
|
|
|
|
char const* begin() const { return m_begin; }
|
2014-07-06 21:18:00 +02:00
|
|
|
char* end() { return m_begin + m_size; }
|
|
|
|
char const* end() const { return m_begin + m_size; }
|
2005-09-14 21:33:16 +02:00
|
|
|
|
2007-09-23 02:51:45 +02:00
|
|
|
void swap(buffer& b)
|
|
|
|
{
|
|
|
|
using std::swap;
|
|
|
|
swap(m_begin, b.m_begin);
|
2014-07-06 21:18:00 +02:00
|
|
|
swap(m_size, b.m_size);
|
|
|
|
swap(m_capacity, b.m_capacity);
|
2007-09-23 02:51:45 +02:00
|
|
|
}
|
|
|
|
private:
|
2014-07-06 21:18:00 +02:00
|
|
|
char* m_begin;
|
|
|
|
boost::uint32_t m_size;
|
|
|
|
boost::uint32_t m_capacity;
|
2007-09-23 02:51:45 +02:00
|
|
|
};
|
2005-09-14 21:33:16 +02:00
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // LIBTORRENT_BUFFER_HPP
|
|
|
|
|