LLVM 19.0.0git
BinaryStream.h
Go to the documentation of this file.
1//===- BinaryStream.h - Base interface for a stream of data -----*- C++ -*-===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8
9#ifndef LLVM_SUPPORT_BINARYSTREAM_H
10#define LLVM_SUPPORT_BINARYSTREAM_H
11
12#include "llvm/ADT/ArrayRef.h"
15#include "llvm/Support/Error.h"
16#include <cstdint>
17
18namespace llvm {
19
22 BSF_Write = 1, // Stream supports writing.
23 BSF_Append = 2, // Writing can occur at offset == length.
24 LLVM_MARK_AS_BITMASK_ENUM(/* LargestValue = */ BSF_Append)
25};
26
27/// An interface for accessing data in a stream-like format, but which
28/// discourages copying. Instead of specifying a buffer in which to copy
29/// data on a read, the API returns an ArrayRef to data owned by the stream's
30/// implementation. Since implementations may not necessarily store data in a
31/// single contiguous buffer (or even in memory at all), in such cases a it may
32/// be necessary for an implementation to cache such a buffer so that it can
33/// return it.
35public:
36 virtual ~BinaryStream() = default;
37
38 virtual llvm::endianness getEndian() const = 0;
39
40 /// Given an offset into the stream and a number of bytes, attempt to
41 /// read the bytes and set the output ArrayRef to point to data owned by the
42 /// stream.
44 ArrayRef<uint8_t> &Buffer) = 0;
45
46 /// Given an offset into the stream, read as much as possible without
47 /// copying any data.
49 ArrayRef<uint8_t> &Buffer) = 0;
50
51 /// Return the number of bytes of data in this stream.
52 virtual uint64_t getLength() = 0;
53
54 /// Return the properties of this stream.
55 virtual BinaryStreamFlags getFlags() const { return BSF_None; }
56
57protected:
59 if (Offset > getLength())
60 return make_error<BinaryStreamError>(stream_error_code::invalid_offset);
61 if (getLength() < DataSize + Offset)
62 return make_error<BinaryStreamError>(stream_error_code::stream_too_short);
63 return Error::success();
64 }
65};
66
67/// A BinaryStream which can be read from as well as written to. Note
68/// that writing to a BinaryStream always necessitates copying from the input
69/// buffer to the stream's backing store. Streams are assumed to be buffered
70/// so that to be portable it is necessary to call commit() on the stream when
71/// all data has been written.
73public:
74 ~WritableBinaryStream() override = default;
75
76 /// Attempt to write the given bytes into the stream at the desired
77 /// offset. This will always necessitate a copy. Cannot shrink or grow the
78 /// stream, only writes into existing allocated space.
80
81 /// For buffered streams, commits changes to the backing store.
82 virtual Error commit() = 0;
83
84 /// Return the properties of this stream.
85 BinaryStreamFlags getFlags() const override { return BSF_Write; }
86
87protected:
89 if (!(getFlags() & BSF_Append))
90 return checkOffsetForRead(Offset, DataSize);
91
92 if (Offset > getLength())
93 return make_error<BinaryStreamError>(stream_error_code::invalid_offset);
94 return Error::success();
95 }
96};
97
98} // end namespace llvm
99
100#endif // LLVM_SUPPORT_BINARYSTREAM_H
uint64_t Size
ArrayRef - Represent a constant reference to an array (0 or more elements consecutively in memory),...
Definition: ArrayRef.h:41
An interface for accessing data in a stream-like format, but which discourages copying.
Definition: BinaryStream.h:34
virtual llvm::endianness getEndian() const =0
virtual uint64_t getLength()=0
Return the number of bytes of data in this stream.
virtual ~BinaryStream()=default
virtual Error readBytes(uint64_t Offset, uint64_t Size, ArrayRef< uint8_t > &Buffer)=0
Given an offset into the stream and a number of bytes, attempt to read the bytes and set the output A...
virtual Error readLongestContiguousChunk(uint64_t Offset, ArrayRef< uint8_t > &Buffer)=0
Given an offset into the stream, read as much as possible without copying any data.
virtual BinaryStreamFlags getFlags() const
Return the properties of this stream.
Definition: BinaryStream.h:55
Error checkOffsetForRead(uint64_t Offset, uint64_t DataSize)
Definition: BinaryStream.h:58
Lightweight error class with error context and mandatory checking.
Definition: Error.h:160
static ErrorSuccess success()
Create a success value.
Definition: Error.h:334
A BinaryStream which can be read from as well as written to.
Definition: BinaryStream.h:72
Error checkOffsetForWrite(uint64_t Offset, uint64_t DataSize)
Definition: BinaryStream.h:88
~WritableBinaryStream() override=default
virtual Error writeBytes(uint64_t Offset, ArrayRef< uint8_t > Data)=0
Attempt to write the given bytes into the stream at the desired offset.
BinaryStreamFlags getFlags() const override
Return the properties of this stream.
Definition: BinaryStream.h:85
virtual Error commit()=0
For buffered streams, commits changes to the backing store.
This is an optimization pass for GlobalISel generic memory operations.
Definition: AddressRanges.h:18
@ Offset
Definition: DWP.cpp:456
BinaryStreamFlags
Definition: BinaryStream.h:20
@ BSF_None
Definition: BinaryStream.h:21
@ BSF_Append
Definition: BinaryStream.h:23
@ BSF_Write
Definition: BinaryStream.h:22
endianness
Definition: bit.h:70