summaryrefslogtreecommitdiff
path: root/lib/binarytools/BinaryReader.h
blob: a98742f1c009f0486fa72bf255162bfe7f549d39 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#pragma once

#include <string>
#include <memory>
#include <vector>
#include "endianness.h"
#include "Stream.h"

class BinaryReader;

namespace LUS {

class BinaryReader {
  public:
    BinaryReader(char* nBuffer, size_t nBufferSize);
    BinaryReader(uint8_t* nBuffer, size_t nBufferSize);
    BinaryReader(Stream* nStream);
    BinaryReader(std::shared_ptr<Stream> nStream);

    void Close();

    void SetEndianness(Endianness endianness);
    Endianness GetEndianness() const;

    void Seek(int32_t offset, SeekOffsetType seekType);
    uint32_t GetBaseAddress();
    size_t GetLength();

    void Read(int32_t length);
    void Read(char* buffer, int32_t length);
    char ReadChar();
    int8_t ReadInt8();
    int16_t ReadInt16();
    int32_t ReadInt32();
    uint8_t ReadUByte();
    uint16_t ReadUInt16();
    uint32_t ReadUInt32();
    uint64_t ReadUInt64();
    unsigned short ReadUShort();
    short ReadShort();
    float ReadFloat();
    double ReadDouble();
    std::string ReadString();
    std::string ReadCString();

    std::vector<char> ToVector();

  protected:
    std::shared_ptr<Stream> mStream;
    Endianness mEndianness = Endianness::Native;
};
} // namespace LUS