/* Copyright (c) 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_AUX_IO_HPP_INCLUDED #define TORRENT_AUX_IO_HPP_INCLUDED #include #include #include #include "libtorrent/span.hpp" #include "libtorrent/aux_/numeric_cast.hpp" namespace libtorrent { namespace aux { template struct type {}; // reads an integer from a byte stream // in big endian byte order and converts // it to native endianess template inline typename std::enable_if::type read_impl(span& view, type) { T ret = 0; for (Byte const b : view.first(sizeof(T))) { ret <<= 8; ret |= static_cast(b); } view = view.subspan(int(sizeof(T))); return ret; } template inline typename std::enable_if::value && (std::is_integral::value || std::is_enum::value) && sizeof(Byte)==1>::type write_impl(In data, span& view) { T val = static_cast(data); TORRENT_ASSERT(data == static_cast(val)); int shift = int(sizeof(T)) * 8; for (Byte& b : view.first(sizeof(T))) { shift -= 8; b = static_cast((val >> shift) & 0xff); } view = view.subspan(int(sizeof(T))); } // the single-byte case is separate to avoid a warning on the shift-left by // 8 bits (which invokes undefined behavior) template inline typename std::enable_if::type read_impl(span& view, type) { std::uint8_t ret = static_cast(view[0]); view = view.subspan(1); return ret; } template inline typename std::enable_if::type read_impl(span& view, type) { std::uint8_t ret = static_cast(view[0]); view = view.subspan(1); return ret; } // -- adaptors template std::int64_t read_int64(span& view) { return read_impl(view, type()); } template std::uint64_t read_uint64(span& view) { return read_impl(view, type()); } template std::uint32_t read_uint32(span& view) { return read_impl(view, type()); } template std::int32_t read_int32(span& view) { return read_impl(view, type()); } template std::int16_t read_int16(span& view) { return read_impl(view, type()); } template std::uint16_t read_uint16(span& view) { return read_impl(view, type()); } template std::int8_t read_int8(span& view) { return read_impl(view, type()); } template std::uint8_t read_uint8(span& view) { return read_impl(view, type()); } template void write_uint64(T val, span& view) { write_impl(val, view); } template void write_int64(T val, span& view) { write_impl(val, view); } template void write_uint32(T val, span& view) { write_impl(val, view); } template void write_int32(T val, span& view) { write_impl(val, view); } template void write_uint16(T val, span& view) { write_impl(val, view); } template void write_int16(T val, span& view) { write_impl(val, view); } template void write_uint8(T val, span& view) { write_impl(val, view); } template void write_int8(T val, span& view) { write_impl(val, view); } template inline int write_string(std::string const& str, span& view) { TORRENT_ASSERT(view.size() >= numeric_cast(str.size())); std::copy(str.begin(), str.end(), view.begin()); view = view.subspan(int(str.size())); return int(str.size()); } }} #endif // TORRENT_AUX_IO_HPP_INCLUDED