#include #include #include #include namespace DB { namespace { void copyDataImpl(ReadBuffer & from, WriteBuffer & to, bool check_bytes, size_t bytes, const std::atomic * is_cancelled) { /// If read to the end of the buffer, eof() either fills the buffer with new data and moves the cursor to the beginning, or returns false. while (bytes > 0 && !from.eof()) { if (is_cancelled && *is_cancelled) return; /// buffer() - a piece of data available for reading; position() - the cursor of the place to which you have already read. size_t count = std::min(bytes, static_cast(from.buffer().end() - from.position())); to.write(from.position(), count); from.position() += count; bytes -= count; } if (check_bytes && bytes > 0) throw Exception("Attempt to read after EOF.", ErrorCodes::ATTEMPT_TO_READ_AFTER_EOF); } void copyDataImpl(ReadBuffer & from, WriteBuffer & to, bool check_bytes, size_t bytes, std::function cancellation_hook) { /// If read to the end of the buffer, eof() either fills the buffer with new data and moves the cursor to the beginning, or returns false. while (bytes > 0 && !from.eof()) { if (cancellation_hook) cancellation_hook(); /// buffer() - a piece of data available for reading; position() - the cursor of the place to which you have already read. size_t count = std::min(bytes, static_cast(from.buffer().end() - from.position())); to.write(from.position(), count); from.position() += count; bytes -= count; } if (check_bytes && bytes > 0) throw Exception("Attempt to read after EOF.", ErrorCodes::ATTEMPT_TO_READ_AFTER_EOF); } } void copyData(ReadBuffer & from, WriteBuffer & to) { copyDataImpl(from, to, false, std::numeric_limits::max(), nullptr); } void copyData(ReadBuffer & from, WriteBuffer & to, const std::atomic & is_cancelled) { copyDataImpl(from, to, false, std::numeric_limits::max(), &is_cancelled); } void copyData(ReadBuffer & from, WriteBuffer & to, std::function cancellation_hook) { copyDataImpl(from, to, false, std::numeric_limits::max(), cancellation_hook); } void copyData(ReadBuffer & from, WriteBuffer & to, size_t bytes) { copyDataImpl(from, to, true, bytes, nullptr); } void copyData(ReadBuffer & from, WriteBuffer & to, size_t bytes, const std::atomic & is_cancelled) { copyDataImpl(from, to, true, bytes, &is_cancelled); } void copyData(ReadBuffer & from, WriteBuffer & to, size_t bytes, std::function cancellation_hook) { copyDataImpl(from, to, true, bytes, cancellation_hook); } }