#include "BinaryReader.h" #include bell::BinaryReader::BinaryReader(std::shared_ptr stream) { this->stream = stream; } size_t bell::BinaryReader::position() { return stream->position(); } size_t bell::BinaryReader::size() { return stream->size(); } void bell::BinaryReader::close() { stream->close(); } void bell::BinaryReader::skip(size_t pos) { uint8_t b[pos]; stream->read((uint8_t *)b, pos); } int32_t bell::BinaryReader::readInt() { uint8_t b[4]; stream->read((uint8_t *) b,4); return static_cast( (b[3]) | (b[2] << 8) | (b[1] << 16)| (b[0] << 24) ); } int16_t bell::BinaryReader::readShort() { uint8_t b[2]; stream->read((uint8_t *) b,2); return static_cast( (b[1]) | (b[1] << 8)); } uint32_t bell::BinaryReader::readUInt() { return readInt() & 0xffffffffL; } uint8_t bell::BinaryReader::readByte() { uint8_t b[1]; stream->read((uint8_t *) b,1); return b[0]; } std::vector bell::BinaryReader::readBytes(size_t size) { std::vector data(size); stream->read(&data[0], size); return data; } long long bell::BinaryReader::readLong() { long high = readInt(); long low = readInt(); return static_cast( (high << 32) | low ); }