//===- ByteStream.cpp - Reads stream data from a byte sequence ------------===// // // The LLVM Compiler Infrastructure // // This file is distributed under the University of Illinois Open Source // License. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// #include "llvm/DebugInfo/CodeView/ByteStream.h" #include "llvm/DebugInfo/CodeView/CodeViewError.h" #include "llvm/DebugInfo/CodeView/StreamReader.h" #include using namespace llvm; using namespace llvm::codeview; ByteStream::ByteStream() {} ByteStream::ByteStream(ArrayRef Data) : Data(Data) {} ByteStream::~ByteStream() {} Error ByteStream::readBytes(uint32_t Offset, uint32_t Size, ArrayRef &Buffer) const { if (Data.size() < Size + Offset) return make_error(cv_error_code::insufficient_buffer); Buffer = Data.slice(Offset, Size); return Error::success(); } uint32_t ByteStream::getLength() const { return Data.size(); } StringRef ByteStream::str() const { const char *CharData = reinterpret_cast(Data.data()); return StringRef(CharData, Data.size()); }