2005-09-14 21:33:16 +02:00
|
|
|
/*
|
2018-04-09 09:04:33 +02:00
|
|
|
Copyright (c) 2007-2018, 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.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
2016-06-20 17:32:06 +02:00
|
|
|
#ifndef TORRENT_BUFFER_HPP_INCLUDED
|
|
|
|
#define TORRENT_BUFFER_HPP_INCLUDED
|
2005-09-14 21:33:16 +02:00
|
|
|
|
2007-09-23 02:51:45 +02:00
|
|
|
#include <cstring>
|
2015-01-20 18:05:45 +01:00
|
|
|
#include <limits> // for numeric_limits
|
2009-12-15 14:11:07 +01:00
|
|
|
#include <cstdlib> // malloc/free/realloc
|
2015-01-02 12:11:09 +01:00
|
|
|
#include <algorithm> // for std::swap
|
2016-06-18 20:01:38 +02:00
|
|
|
#include <cstdint>
|
2016-06-20 17:32:06 +02:00
|
|
|
|
|
|
|
#include "libtorrent/invariant_check.hpp"
|
|
|
|
#include "libtorrent/assert.hpp"
|
2016-07-22 18:31:42 +02:00
|
|
|
#include "libtorrent/span.hpp"
|
2017-01-29 21:37:42 +01:00
|
|
|
#include "libtorrent/aux_/throw.hpp"
|
2016-06-27 02:41:03 +02:00
|
|
|
|
|
|
|
#if defined __GLIBC__
|
|
|
|
#include <malloc.h>
|
|
|
|
#elif defined _MSC_VER
|
|
|
|
#include <malloc.h>
|
2017-10-03 19:47:50 +02:00
|
|
|
#elif defined __FreeBSD__
|
|
|
|
#include <malloc_np.h>
|
2016-06-27 02:41:03 +02:00
|
|
|
#elif defined TORRENT_BSD
|
|
|
|
#include <malloc/malloc.h>
|
|
|
|
#endif
|
2016-05-23 14:15:39 +02:00
|
|
|
|
2005-09-14 21:33:16 +02:00
|
|
|
namespace libtorrent {
|
|
|
|
|
2016-06-27 02:41:03 +02:00
|
|
|
// the buffer is allocated once and cannot be resized. The size() may be
|
|
|
|
// larger than requested, in case the underlying allocator over allocated. In
|
|
|
|
// order to "grow" an allocation, create a new buffer and initialize it by
|
|
|
|
// the range of bytes from the existing, and move-assign the new over the
|
|
|
|
// old.
|
2005-09-14 21:33:16 +02:00
|
|
|
class buffer
|
|
|
|
{
|
|
|
|
public:
|
2018-11-01 23:05:30 +01:00
|
|
|
using difference_type = std::ptrdiff_t;
|
|
|
|
using index_type = std::ptrdiff_t;
|
2016-06-27 02:41:03 +02:00
|
|
|
|
|
|
|
// allocate an uninitialized buffer of the specified size
|
2018-11-01 23:05:30 +01:00
|
|
|
explicit buffer(difference_type size = 0)
|
2005-09-14 21:33:16 +02:00
|
|
|
{
|
2018-11-01 23:05:30 +01:00
|
|
|
TORRENT_ASSERT(size < (std::numeric_limits<std::int32_t>::max)());
|
2016-06-27 02:41:03 +02:00
|
|
|
|
|
|
|
if (size == 0) return;
|
|
|
|
|
2016-10-08 07:12:34 +02:00
|
|
|
// this rounds up the size to be 8 bytes aligned
|
|
|
|
// it mostly makes sense for platforms without support
|
|
|
|
// for a variation of "malloc_size()"
|
2018-11-01 23:05:30 +01:00
|
|
|
size = (size + 7) & (~difference_type(0x7));
|
2016-06-27 02:41:03 +02:00
|
|
|
|
2017-01-29 21:37:42 +01:00
|
|
|
// we have to use malloc here, to be compatible with the fancy query
|
|
|
|
// functions below
|
2018-11-01 23:05:30 +01:00
|
|
|
m_begin = static_cast<char*>(std::malloc(static_cast<std::size_t>(size)));
|
2017-01-29 21:37:42 +01:00
|
|
|
if (m_begin == nullptr) aux::throw_ex<std::bad_alloc>();
|
2016-06-27 02:41:03 +02:00
|
|
|
|
|
|
|
// the actual allocation may be larger than we requested. If so, let the
|
|
|
|
// user take advantage of every single byte
|
2019-04-20 17:02:29 +02:00
|
|
|
#if (defined __GLIBC__ && !defined __UCLIBC__) || defined __FreeBSD__
|
2018-11-01 23:05:30 +01:00
|
|
|
m_size = static_cast<difference_type>(::malloc_usable_size(m_begin));
|
2016-06-27 02:41:03 +02:00
|
|
|
#elif defined _MSC_VER
|
2018-11-01 23:05:30 +01:00
|
|
|
m_size = static_cast<difference_type>(::_msize(m_begin));
|
2016-06-27 02:41:03 +02:00
|
|
|
#elif defined TORRENT_BSD
|
2018-11-01 23:05:30 +01:00
|
|
|
m_size = static_cast<difference_type>(::malloc_size(m_begin));
|
2016-06-27 02:41:03 +02:00
|
|
|
#else
|
|
|
|
m_size = size;
|
|
|
|
#endif
|
2005-09-14 21:33:16 +02:00
|
|
|
}
|
|
|
|
|
2016-06-27 02:41:03 +02:00
|
|
|
// allocate an uninitialized buffer of the specified size
|
|
|
|
// and copy the initialization range into the start of the buffer
|
2018-11-01 23:05:30 +01:00
|
|
|
buffer(difference_type const size, span<char const> initialize)
|
2016-06-27 02:41:03 +02:00
|
|
|
: buffer(size)
|
2005-09-18 12:18:23 +02:00
|
|
|
{
|
2016-06-27 02:41:03 +02:00
|
|
|
TORRENT_ASSERT(initialize.size() <= size);
|
2018-02-18 00:36:57 +01:00
|
|
|
if (!initialize.empty())
|
2016-06-27 02:41:03 +02:00
|
|
|
{
|
2018-11-01 23:05:30 +01:00
|
|
|
std::copy(initialize.begin(), initialize.begin()
|
|
|
|
+ (std::min)(initialize.size(), size), m_begin);
|
2016-06-27 02:41:03 +02:00
|
|
|
}
|
2005-09-18 12:18:23 +02:00
|
|
|
}
|
|
|
|
|
2016-06-27 02:41:03 +02:00
|
|
|
buffer(buffer const& b) = delete;
|
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
buffer(buffer&& b)
|
|
|
|
: m_begin(b.m_begin)
|
|
|
|
, m_size(b.m_size)
|
|
|
|
{
|
2016-06-20 17:32:06 +02:00
|
|
|
b.m_begin = nullptr;
|
2016-06-27 02:41:03 +02:00
|
|
|
b.m_size = 0;
|
2014-07-06 21:18:00 +02:00
|
|
|
}
|
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;
|
2016-06-20 17:32:06 +02:00
|
|
|
b.m_begin = nullptr;
|
2016-06-27 02:41:03 +02:00
|
|
|
b.m_size = 0;
|
2015-04-03 22:15:48 +02:00
|
|
|
return *this;
|
|
|
|
}
|
2013-12-17 01:51:01 +01:00
|
|
|
|
2016-06-27 02:41:03 +02:00
|
|
|
buffer& operator=(buffer const& b) = delete;
|
2005-09-14 21:33:16 +02:00
|
|
|
|
2016-06-27 02:41:03 +02:00
|
|
|
~buffer() { std::free(m_begin); }
|
|
|
|
|
2016-07-24 09:52:20 +02:00
|
|
|
char* data() { return m_begin; }
|
|
|
|
char const* data() const { return m_begin; }
|
2018-11-01 23:05:30 +01:00
|
|
|
difference_type size() const { return m_size; }
|
2005-09-18 12:18:23 +02:00
|
|
|
|
2014-07-06 21:18:00 +02:00
|
|
|
bool empty() const { return m_size == 0; }
|
2018-11-01 23:05:30 +01:00
|
|
|
char& operator[](index_type const i) { TORRENT_ASSERT(i < size()); return m_begin[i]; }
|
|
|
|
char const& operator[](difference_type const 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);
|
2007-09-23 02:51:45 +02:00
|
|
|
}
|
2016-07-24 09:52:20 +02:00
|
|
|
|
2007-09-23 02:51:45 +02:00
|
|
|
private:
|
2016-06-27 02:41:03 +02:00
|
|
|
char* m_begin = nullptr;
|
|
|
|
// m_begin points to an allocation of this size.
|
2018-11-01 23:05:30 +01:00
|
|
|
difference_type m_size = 0;
|
2007-09-23 02:51:45 +02:00
|
|
|
};
|
2005-09-14 21:33:16 +02:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2017-04-23 03:33:38 +02:00
|
|
|
#endif // TORRENT_BUFFER_HPP_INCLUDED
|