BinaryReader.cpp 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. #include "BinaryReader.h"
  2. #include <stdlib.h>
  3. bell::BinaryReader::BinaryReader(std::shared_ptr<ByteStream> stream) {
  4. this->stream = stream;
  5. }
  6. size_t bell::BinaryReader::position() {
  7. return stream->position();
  8. }
  9. size_t bell::BinaryReader::size() {
  10. return stream->size();
  11. }
  12. void bell::BinaryReader::close() {
  13. stream->close();
  14. }
  15. void bell::BinaryReader::skip(size_t pos) {
  16. uint8_t b[pos];
  17. stream->read((uint8_t *)b, pos);
  18. }
  19. int32_t bell::BinaryReader::readInt() {
  20. uint8_t b[4];
  21. stream->read((uint8_t *) b,4);
  22. return static_cast<int32_t>(
  23. (b[3]) |
  24. (b[2] << 8) |
  25. (b[1] << 16)|
  26. (b[0] << 24) );
  27. }
  28. int16_t bell::BinaryReader::readShort() {
  29. uint8_t b[2];
  30. stream->read((uint8_t *) b,2);
  31. return static_cast<int16_t>(
  32. (b[1]) |
  33. (b[1] << 8));
  34. }
  35. uint32_t bell::BinaryReader::readUInt() {
  36. return readInt() & 0xffffffffL;
  37. }
  38. uint8_t bell::BinaryReader::readByte() {
  39. uint8_t b[1];
  40. stream->read((uint8_t *) b,1);
  41. return b[0];
  42. }
  43. std::vector<uint8_t> bell::BinaryReader::readBytes(size_t size) {
  44. std::vector<uint8_t> data(size);
  45. stream->read(&data[0], size);
  46. return data;
  47. }
  48. long long bell::BinaryReader::readLong() {
  49. long high = readInt();
  50. long low = readInt();
  51. return static_cast<long long>(
  52. (high << 32) | low );
  53. }