6#ifndef BITCOIN_STREAMS_H
7#define BITCOIN_STREAMS_H
74 CVectorWriter(
int nTypeIn,
int nVersionIn, std::vector<uint8_t> &vchDataIn,
86 template <
typename... Args>
87 CVectorWriter(
int nTypeIn,
int nVersionIn, std::vector<uint8_t> &vchDataIn,
88 size_t nPosIn, Args &&...args)
98 if (nOverwrite < src.
size()) {
154 if (dst.
size() == 0) {
160 throw std::ios_base::failure(
"SpanReader::read(): end of data");
225 std::vector<value_type>::const_iterator last) {
237 vch.insert(it, first, last);
255 vch.insert(it, first, last);
266 return vch.erase(
vch.begin(),
vch.end());
270 return vch.erase(it);
277 if (last ==
vch.end()) {
279 return vch.erase(
vch.begin(),
vch.end());
285 return vch.erase(first, last);
293 bool Rewind(std::optional<size_type> n = std::nullopt) {
314 if (dst.
size() == 0) {
320 if (!next_read_pos.has_value() || next_read_pos.value() >
vch.size()) {
321 throw std::ios_base::failure(
"DataStream::read(): end of data");
324 if (next_read_pos.value() ==
vch.size()) {
335 if (!next_read_pos.has_value() || next_read_pos.value() >
vch.size()) {
336 throw std::ios_base::failure(
"DataStream::ignore(): end of data");
338 if (next_read_pos.value() ==
vch.size()) {
366 void Xor(
const std::vector<uint8_t> &key) {
367 if (key.size() == 0) {
372 vch[i] ^= std::byte{key[j++]};
378 if (j == key.size()) j = 0;
433 if (nbits < 0 || nbits > 64) {
434 throw std::out_of_range(
"nbits must be between 0 and 64");
444 int bits = std::min(8 -
m_offset, nbits);
446 data |=
static_cast<uint8_t
>(m_buffer << m_offset) >> (8 - bits);
476 void Write(uint64_t data,
int nbits) {
477 if (nbits < 0 || nbits > 64) {
478 throw std::out_of_range(
"nbits must be between 0 and 64");
482 int bits = std::min(8 -
m_offset, nbits);
532 return std::fclose(rel);
566 void ignore(
size_t nSize);
631 unsigned int readNow =
vchBuf.size() - pos;
633 if (nAvail < readNow) {
639 size_t nBytes = fread((
void *)&
vchBuf[pos], 1, readNow,
src);
641 throw std::ios_base::failure(
642 feof(
src) ?
"CBufferedFile::Fill: end of file"
643 :
"CBufferedFile::Fill: fread failed");
657 throw std::ios_base::failure(
658 "Attempt to position past buffer limit");
666 size_t buffer_available{
667 static_cast<size_t>(
vchBuf.size() - buffer_offset)};
668 size_t bytes_until_source_pos{
671 std::min({length, buffer_available, bytes_until_source_pos})};
673 return std::make_pair(&
vchBuf[buffer_offset], advance);
678 int nTypeIn,
int nVersionIn)
682 if (nRewindIn >= nBufSize) {
683 throw std::ios_base::failure(
684 "Rewind limit must be less than buffer size");
710 while (dst.
size() > 0) {
712 memcpy(dst.
data(), buffer_pointer, length);
731 size_t bufsize =
vchBuf.size();
732 if (nPos + bufsize <
nSrcPos) {
748 bool SetLimit(uint64_t nPos = std::numeric_limits<uint64_t>::max()) {
772 const size_t len{std::min<size_t>(
vchBuf.size() - buf_offset,
774 const auto it_start{
vchBuf.begin() + buf_offset};
775 const auto it_find{std::find(it_start, it_start + len,
byte)};
776 const size_t inc{size_t(std::distance(it_start, it_find))};
782 if (buf_offset >=
vchBuf.size()) {
Non-refcounted RAII wrapper for FILE*.
std::FILE * release()
Get wrapped FILE* with transfer of ownership.
void ignore(size_t nSize)
AutoFile & operator=(const AutoFile &)=delete
void read(Span< std::byte > dst)
AutoFile & operator<<(const T &obj)
AutoFile(const AutoFile &)=delete
bool IsNull() const
Return true if the wrapped FILE* is nullptr, false otherwise.
std::FILE * Get() const
Get wrapped FILE* without transfer of ownership.
AutoFile & operator>>(T &&obj)
std::size_t detail_fread(Span< std::byte > dst)
Implementation detail, only used internally.
void write(Span< const std::byte > src)
AutoFile(std::FILE *file)
uint8_t m_buffer
Buffered byte read in from the input stream.
uint64_t Read(int nbits)
Read the specified number of bits from the stream.
BitStreamReader(IStream &istream)
int m_offset
Number of high order bits in m_buffer already returned by previous Read() calls.
void Write(uint64_t data, int nbits)
Write the nbits least significant bits of a 64-bit int to the output stream.
uint8_t m_buffer
Buffered byte waiting to be written to the output stream.
BitStreamWriter(OStream &ostream)
int m_offset
Number of high order bits in m_buffer already written by previous Write() calls and not yet flushed t...
void Flush()
Flush any unwritten bits to the output stream, padding with 0's to the next byte boundary.
CAutoFile & operator>>(T &&obj)
CAutoFile(FILE *filenew, int nTypeIn, int nVersionIn)
CAutoFile & operator<<(const T &obj)
Non-refcounted RAII wrapper around a FILE* that implements a ring buffer to deserialize from.
bool SetLimit(uint64_t nPos=std::numeric_limits< uint64_t >::max())
Prevent reading beyond a certain position.
uint64_t nReadLimit
up to which position we're allowed to read
bool Fill()
read data from the source to fill the buffer
CBufferedFile(FILE *fileIn, uint64_t nBufSize, uint64_t nRewindIn, int nTypeIn, int nVersionIn)
uint64_t nRewind
how many bytes we guarantee to rewind
void read(Span< std::byte > dst)
read a number of bytes
std::vector< std::byte > vchBuf
the buffer
uint64_t GetPos() const
return the current reading position
CBufferedFile & operator>>(T &&obj)
void FindByte(std::byte byte)
search for a given byte in the stream, and remain positioned on it
std::pair< std::byte *, size_t > AdvanceStream(size_t length)
Advance the stream's read pointer (m_read_pos) by up to 'length' bytes, filling the buffer from the f...
uint64_t nSrcPos
how many bytes have been read from source
void SkipTo(const uint64_t file_pos)
Move the read position ahead in the stream to the given position.
uint64_t m_read_pos
how many bytes have been read from this
bool SetPos(uint64_t nPos)
rewind to a given reading position
CBufferedFile & operator=(const CBufferedFile &)=delete
CBufferedFile(const CBufferedFile &)=delete
bool eof() const
check whether we're at the end of the source file
CDataStream & operator<<(const T &obj)
CDataStream(int nTypeIn, int nVersionIn)
CDataStream(Span< const value_type > sp, int nTypeIn, int nVersionIn)
CDataStream & operator>>(T &&obj)
CDataStream(Span< const uint8_t > sp, int type, int version)
Minimal stream for overwriting and/or appending to an existing byte vector.
void write(Span< const std::byte > src)
CVectorWriter(int nTypeIn, int nVersionIn, std::vector< uint8_t > &vchDataIn, size_t nPosIn, Args &&...args)
(other params same as above)
std::vector< uint8_t > & vchData
CVectorWriter & operator<<(const T &obj)
CVectorWriter(int nTypeIn, int nVersionIn, std::vector< uint8_t > &vchDataIn, size_t nPosIn)
Double ended buffer combining vector and stream-like interfaces.
void write(Span< const value_type > src)
DataStream & operator<<(const T &obj)
vector_type::difference_type difference_type
DataStream & operator>>(T &&obj)
reference operator[](size_type pos)
void Xor(const std::vector< uint8_t > &key)
XOR the contents of this stream with a certain key.
void resize(size_type n, value_type c=value_type{})
void insert(iterator it, const value_type *first, const value_type *last)
const_reference operator[](size_type pos) const
void insert(iterator it, std::vector< value_type >::const_iterator first, std::vector< value_type >::const_iterator last)
DataStream(Span< const value_type > sp)
vector_type::size_type size_type
iterator erase(iterator it)
SerializeData vector_type
const value_type * data() const
vector_type::const_reference const_reference
vector_type::const_iterator const_iterator
DataStream(Span< const uint8_t > sp)
void reserve(size_type n)
vector_type::reverse_iterator reverse_iterator
const_iterator begin() const
void read(Span< value_type > dst)
vector_type::size_type m_read_pos
vector_type::iterator iterator
vector_type::value_type value_type
void ignore(size_t num_ignore)
vector_type::allocator_type allocator_type
const_iterator end() const
bool Rewind(std::optional< size_type > n=std::nullopt)
vector_type::reference reference
iterator erase(iterator first, iterator last)
OverrideStream(Stream *stream_, int nType_, int nVersion_)
void read(Span< std::byte > dst)
void write(Span< const std::byte > src)
OverrideStream< Stream > & operator>>(T &&obj)
OverrideStream< Stream > & operator<<(const T &obj)
A Span is an object that can refer to a contiguous sequence of objects.
constexpr std::size_t size() const noexcept
CONSTEXPR_IF_NOT_DEBUG Span< C > subspan(std::size_t offset) const noexcept
constexpr C * data() const noexcept
constexpr C * begin() const noexcept
constexpr bool empty() const noexcept
constexpr C * end() const noexcept
Minimal stream for reading from an existing byte array by Span.
Span< const uint8_t > m_data
SpanReader & operator>>(T &obj)
void read(Span< std::byte > dst)
SpanReader(int type, int version, Span< const uint8_t > data)
Implement std::hash so RCUPtr can be used as a key for maps or sets.
std::optional< T > CheckedAdd(const T i, const T j) noexcept
void Serialize(Stream &, V)=delete
void SerializeMany(Stream &s)
void Unserialize(Stream &, V)=delete
uint8_t * UCharCast(char *c)
Span< const std::byte > AsBytes(Span< T > s) noexcept
OverrideStream< S > WithOrVersion(S *s, int nVersionFlag)
std::vector< std::byte, zero_after_free_allocator< std::byte > > SerializeData
Byte-vector that clears its contents before deletion.