blob: d69a03eccfdbc434dbe296cea63c854317548724 [file] [log] [blame]
Andrew Scull5e1ddfa2018-08-14 10:06:54 +01001//===- BinaryStream.h - Base interface for a stream of data -----*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
10#ifndef LLVM_SUPPORT_BINARYSTREAM_H
11#define LLVM_SUPPORT_BINARYSTREAM_H
12
13#include "llvm/ADT/ArrayRef.h"
14#include "llvm/ADT/BitmaskEnum.h"
15#include "llvm/Support/BinaryStreamError.h"
16#include "llvm/Support/Endian.h"
17#include "llvm/Support/Error.h"
18#include <cstdint>
19
20namespace llvm {
21
22enum BinaryStreamFlags {
23 BSF_None = 0,
24 BSF_Write = 1, // Stream supports writing.
25 BSF_Append = 2, // Writing can occur at offset == length.
26 LLVM_MARK_AS_BITMASK_ENUM(/* LargestValue = */ BSF_Append)
27};
28
29/// \brief An interface for accessing data in a stream-like format, but which
30/// discourages copying. Instead of specifying a buffer in which to copy
31/// data on a read, the API returns an ArrayRef to data owned by the stream's
32/// implementation. Since implementations may not necessarily store data in a
33/// single contiguous buffer (or even in memory at all), in such cases a it may
34/// be necessary for an implementation to cache such a buffer so that it can
35/// return it.
36class BinaryStream {
37public:
38 virtual ~BinaryStream() = default;
39
40 virtual llvm::support::endianness getEndian() const = 0;
41
42 /// \brief Given an offset into the stream and a number of bytes, attempt to
43 /// read the bytes and set the output ArrayRef to point to data owned by the
44 /// stream.
45 virtual Error readBytes(uint32_t Offset, uint32_t Size,
46 ArrayRef<uint8_t> &Buffer) = 0;
47
48 /// \brief Given an offset into the stream, read as much as possible without
49 /// copying any data.
50 virtual Error readLongestContiguousChunk(uint32_t Offset,
51 ArrayRef<uint8_t> &Buffer) = 0;
52
53 /// \brief Return the number of bytes of data in this stream.
54 virtual uint32_t getLength() = 0;
55
56 /// \brief Return the properties of this stream.
57 virtual BinaryStreamFlags getFlags() const { return BSF_None; }
58
59protected:
60 Error checkOffsetForRead(uint32_t Offset, uint32_t DataSize) {
61 if (Offset > getLength())
62 return make_error<BinaryStreamError>(stream_error_code::invalid_offset);
63 if (getLength() < DataSize + Offset)
64 return make_error<BinaryStreamError>(stream_error_code::stream_too_short);
65 return Error::success();
66 }
67};
68
69/// \brief A BinaryStream which can be read from as well as written to. Note
70/// that writing to a BinaryStream always necessitates copying from the input
71/// buffer to the stream's backing store. Streams are assumed to be buffered
72/// so that to be portable it is necessary to call commit() on the stream when
73/// all data has been written.
74class WritableBinaryStream : public BinaryStream {
75public:
76 ~WritableBinaryStream() override = default;
77
78 /// \brief Attempt to write the given bytes into the stream at the desired
79 /// offset. This will always necessitate a copy. Cannot shrink or grow the
80 /// stream, only writes into existing allocated space.
81 virtual Error writeBytes(uint32_t Offset, ArrayRef<uint8_t> Data) = 0;
82
83 /// \brief For buffered streams, commits changes to the backing store.
84 virtual Error commit() = 0;
85
86 /// \brief Return the properties of this stream.
87 BinaryStreamFlags getFlags() const override { return BSF_Write; }
88
89protected:
90 Error checkOffsetForWrite(uint32_t Offset, uint32_t DataSize) {
91 if (!(getFlags() & BSF_Append))
92 return checkOffsetForRead(Offset, DataSize);
93
94 if (Offset > getLength())
95 return make_error<BinaryStreamError>(stream_error_code::invalid_offset);
96 return Error::success();
97 }
98};
99
100} // end namespace llvm
101
102#endif // LLVM_SUPPORT_BINARYSTREAM_H