forked from premiere/premiere-libtorrent
272 lines
7.5 KiB
C++
272 lines
7.5 KiB
C++
/*
|
|
|
|
Copyright (c) 2008-2016, Arvid Norberg
|
|
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 the author 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 TORRENT_BITFIELD_HPP_INCLUDED
|
|
#define TORRENT_BITFIELD_HPP_INCLUDED
|
|
|
|
#include "libtorrent/assert.hpp"
|
|
#include "libtorrent/config.hpp"
|
|
#include "libtorrent/aux_/byteswap.hpp"
|
|
|
|
#include <cstring> // for memset and memcpy
|
|
#include <cstdlib> // for malloc, free and realloc
|
|
#include <cstdint> // uint32_t
|
|
#include <algorithm> // for min()
|
|
|
|
namespace libtorrent
|
|
{
|
|
// The bitfield type stores any number of bits as a bitfield
|
|
// in a heap allocated array.
|
|
struct TORRENT_EXPORT bitfield
|
|
{
|
|
// constructs a new bitfield. The default constructor creates an empty
|
|
// bitfield. ``bits`` is the size of the bitfield (specified in bits).
|
|
// ``val`` is the value to initialize the bits to. If not specified
|
|
// all bits are initialized to 0.
|
|
//
|
|
// The constructor taking a pointer ``b`` and ``bits`` copies a bitfield
|
|
// from the specified buffer, and ``bits`` number of bits (rounded up to
|
|
// the nearest byte boundary).
|
|
bitfield(): m_buf(nullptr) {}
|
|
bitfield(int bits): m_buf(nullptr)
|
|
{ resize(bits); }
|
|
bitfield(int bits, bool val): m_buf(nullptr)
|
|
{ resize(bits, val); }
|
|
bitfield(char const* b, int bits): m_buf(nullptr)
|
|
{ assign(b, bits); }
|
|
bitfield(bitfield const& rhs): m_buf(nullptr)
|
|
{ assign(rhs.data(), rhs.size()); }
|
|
#if __cplusplus > 199711L
|
|
bitfield(bitfield&& rhs): m_buf(rhs.m_buf)
|
|
{ rhs.m_buf = nullptr; }
|
|
#endif
|
|
|
|
// hidden
|
|
~bitfield() { dealloc(); }
|
|
|
|
// copy bitfield from buffer ``b`` of ``bits`` number of bits, rounded up to
|
|
// the nearest byte boundary.
|
|
void assign(char const* b, int bits)
|
|
{
|
|
resize(bits);
|
|
if (bits > 0)
|
|
{
|
|
std::memcpy(m_buf, b, size_t((bits + 7) / 8));
|
|
clear_trailing_bits();
|
|
}
|
|
}
|
|
|
|
// query bit at ``index``. Returns true if bit is 1, otherwise false.
|
|
bool operator[](int index) const
|
|
{ return get_bit(index); }
|
|
|
|
bool get_bit(int index) const
|
|
{
|
|
TORRENT_ASSERT(index >= 0);
|
|
TORRENT_ASSERT(index < size());
|
|
return (m_buf[index / 32] & aux::host_to_network((0x80000000 >> (index & 31)))) != 0;
|
|
}
|
|
|
|
// set bit at ``index`` to 0 (clear_bit) or 1 (set_bit).
|
|
void clear_bit(int index)
|
|
{
|
|
TORRENT_ASSERT(index >= 0);
|
|
TORRENT_ASSERT(index < size());
|
|
m_buf[index / 32] &= aux::host_to_network(~(0x80000000 >> (index & 31)));
|
|
}
|
|
void set_bit(int index)
|
|
{
|
|
TORRENT_ASSERT(index >= 0);
|
|
TORRENT_ASSERT(index < size());
|
|
m_buf[index / 32] |= aux::host_to_network((0x80000000 >> (index & 31)));
|
|
}
|
|
|
|
// returns true if all bits in the bitfield are set
|
|
bool all_set() const;
|
|
|
|
bool none_set() const
|
|
{
|
|
const int words = num_words();
|
|
for (int i = 0; i < words; ++i)
|
|
{
|
|
if (m_buf[i] != 0) return false;
|
|
}
|
|
return true;
|
|
}
|
|
|
|
// returns the size of the bitfield in bits.
|
|
int size() const
|
|
{
|
|
return m_buf == nullptr ? 0 : int(m_buf[-1]);
|
|
}
|
|
|
|
int num_words() const
|
|
{
|
|
return (size() + 31) / 32;
|
|
}
|
|
|
|
// returns true if the bitfield has zero size.
|
|
bool empty() const { return m_buf == nullptr ? true : m_buf[-1] == 0; }
|
|
|
|
// returns a pointer to the internal buffer of the bitfield.
|
|
char const* data() const { return reinterpret_cast<char const*>(m_buf); }
|
|
|
|
#ifndef TORRENT_NO_DEPRECATE
|
|
TORRENT_DEPRECATED
|
|
char const* bytes() const { return data(); }
|
|
#endif
|
|
|
|
// copy operator
|
|
bitfield& operator=(bitfield const& rhs)
|
|
{
|
|
assign(rhs.data(), rhs.size());
|
|
return *this;
|
|
}
|
|
|
|
void swap(bitfield& rhs)
|
|
{
|
|
std::uint32_t* tmp = m_buf;
|
|
m_buf = rhs.m_buf;
|
|
rhs.m_buf = tmp;
|
|
}
|
|
|
|
// count the number of bits in the bitfield that are set to 1.
|
|
int count() const;
|
|
|
|
struct const_iterator
|
|
{
|
|
friend struct bitfield;
|
|
|
|
typedef bool value_type;
|
|
typedef ptrdiff_t difference_type;
|
|
typedef bool const* pointer;
|
|
typedef bool& reference;
|
|
typedef std::forward_iterator_tag iterator_category;
|
|
|
|
bool operator*() { return (*buf & aux::host_to_network(bit)) != 0; }
|
|
const_iterator& operator++() { inc(); return *this; }
|
|
const_iterator operator++(int)
|
|
{ const_iterator ret(*this); inc(); return ret; }
|
|
const_iterator& operator--() { dec(); return *this; }
|
|
const_iterator operator--(int)
|
|
{ const_iterator ret(*this); dec(); return ret; }
|
|
|
|
const_iterator(): buf(0), bit(0x80000000) {}
|
|
bool operator==(const_iterator const& rhs) const
|
|
{ return buf == rhs.buf && bit == rhs.bit; }
|
|
|
|
bool operator!=(const_iterator const& rhs) const
|
|
{ return buf != rhs.buf || bit != rhs.bit; }
|
|
|
|
private:
|
|
void inc()
|
|
{
|
|
TORRENT_ASSERT(buf);
|
|
if (bit == 0x01)
|
|
{
|
|
bit = 0x80000000;
|
|
++buf;
|
|
}
|
|
else
|
|
{
|
|
bit >>= 1;
|
|
}
|
|
}
|
|
void dec()
|
|
{
|
|
TORRENT_ASSERT(buf);
|
|
if (bit == 0x80000000)
|
|
{
|
|
bit = 0x01;
|
|
--buf;
|
|
}
|
|
else
|
|
{
|
|
bit <<= 1;
|
|
}
|
|
}
|
|
const_iterator(std::uint32_t const* ptr, int offset)
|
|
: buf(ptr), bit(0x80000000 >> offset) {}
|
|
std::uint32_t const* buf;
|
|
std::uint32_t bit;
|
|
};
|
|
|
|
const_iterator begin() const { return const_iterator(m_buf, 0); }
|
|
const_iterator end() const { return const_iterator(
|
|
m_buf + num_words() - (((size() & 31) == 0) ? 0 : 1), size() & 31); }
|
|
|
|
// set the size of the bitfield to ``bits`` length. If the bitfield is extended,
|
|
// the new bits are initialized to ``val``.
|
|
void resize(int bits, bool val);
|
|
|
|
void resize(int bits);
|
|
|
|
// set all bits in the bitfield to 1 (set_all) or 0 (clear_all).
|
|
void set_all()
|
|
{
|
|
std::memset(m_buf, 0xff, size_t(num_words() * 4));
|
|
clear_trailing_bits();
|
|
}
|
|
void clear_all()
|
|
{
|
|
std::memset(m_buf, 0x00, size_t(num_words() * 4));
|
|
}
|
|
|
|
// make the bitfield empty, of zero size.
|
|
void clear() { dealloc(); }
|
|
|
|
private:
|
|
|
|
void clear_trailing_bits()
|
|
{
|
|
// clear the tail bits in the last byte
|
|
if (size() & 31) m_buf[num_words() - 1] &= aux::host_to_network(0xffffffff << (32 - (size() & 31)));
|
|
}
|
|
|
|
void dealloc()
|
|
{
|
|
if (m_buf) std::free(m_buf-1);
|
|
m_buf = nullptr;
|
|
}
|
|
|
|
// the first element is not part of the bitfield, it's the
|
|
// number of bits. For this purpose, the m_buf actually points
|
|
// the element 1, not 0. To access the size (in bits), access
|
|
// m_buf[-1]
|
|
std::uint32_t* m_buf;
|
|
};
|
|
|
|
}
|
|
|
|
#endif // TORRENT_BITFIELD_HPP_INCLUDED
|
|
|