Files
Guogang Li a2bcb2db27 Fix asan/msan bug
PiperOrigin-RevId: 780237506
2025-07-07 13:30:50 -07:00

190 lines
5.8 KiB
C++

// Copyright 2020 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// https://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
#include "internal/platform/stream_reader.h"
#include <cstddef>
#include <cstdint>
#include <optional>
#include "internal/platform/byte_array.h"
#include "internal/platform/exception.h"
namespace nearby {
std::optional<std::uint8_t> StreamReader::ReadBits(int bits) {
if (bits > 8 || bits <= 0) {
return std::nullopt;
}
if (bits_unused_ == 0) {
if (!IsAvailable(1)) {
return std::nullopt;
}
bits_buffer_ = (uint8_t)buffer_->data()[position_++];
bits_unused_ = 8;
}
if (bits_unused_ < bits) {
return std::nullopt;
}
uint8_t mask = (1 << bits) - 1;
uint8_t value = (bits_buffer_ >> (bits_unused_ - bits)) & mask;
bits_unused_ -= bits;
return value;
}
std::optional<std::uint8_t> StreamReader::ReadUint8() {
constexpr int byte_size = sizeof(std::uint8_t);
std::optional<ByteArray> read_bytes = ReadBytes(byte_size);
if (!read_bytes.has_value()) {
return std::nullopt;
}
const char *data = read_bytes->data();
return static_cast<std::uint8_t>(data[0]);
}
std::optional<std::int8_t> StreamReader::ReadInt8() {
constexpr int byte_size = sizeof(std::int8_t);
std::optional<ByteArray> read_bytes = ReadBytes(byte_size);
if (!read_bytes.has_value()) {
return std::nullopt;
}
const char *data = read_bytes->data();
return static_cast<std::int8_t>(data[0]);
}
std::optional<std::uint16_t> StreamReader::ReadUint16() {
constexpr int byte_size = sizeof(std::uint16_t);
std::optional<ByteArray> read_bytes = ReadBytes(byte_size);
if (!read_bytes.has_value()) {
return std::nullopt;
}
// Convert from network order.
const unsigned char *data =
reinterpret_cast<const unsigned char *>(read_bytes->data());
return static_cast<uint16_t>(data[0] << 8 | data[1]);
}
std::optional<std::int16_t> StreamReader::ReadInt16() {
constexpr int byte_size = sizeof(std::int16_t);
std::optional<ByteArray> read_bytes = ReadBytes(byte_size);
if (!read_bytes.has_value()) {
return std::nullopt;
}
// Convert from network order.
const unsigned char *data =
reinterpret_cast<const unsigned char *>(read_bytes->data());
return static_cast<int16_t>(data[0] << 8 | data[1]);
}
std::optional<std::uint32_t> StreamReader::ReadUint32() {
constexpr int byte_size = sizeof(std::uint32_t);
std::optional<ByteArray> read_bytes = ReadBytes(byte_size);
if (!read_bytes.has_value()) {
return std::nullopt;
}
// Convert from network order.
const unsigned char *data =
reinterpret_cast<const unsigned char *>(read_bytes->data());
return static_cast<uint32_t>(data[0] << 24 | data[1] << 16 | data[2] << 8 |
data[3]);
}
std::optional<std::int32_t> StreamReader::ReadInt32() {
constexpr int byte_size = sizeof(std::uint32_t);
std::optional<ByteArray> read_bytes = ReadBytes(byte_size);
if (!read_bytes.has_value()) {
return std::nullopt;
}
// Convert from network order.
const unsigned char *data =
reinterpret_cast<const unsigned char *>(read_bytes->data());
return static_cast<int32_t>(data[0] << 24 | data[1] << 16 | data[2] << 8 |
data[3]);
}
std::optional<std::uint64_t> StreamReader::ReadUint64() {
constexpr int byte_size = sizeof(std::uint64_t);
std::optional<ByteArray> read_bytes = ReadBytes(byte_size);
if (!read_bytes.has_value()) {
return std::nullopt;
}
// Convert from network order.
const unsigned char *data =
reinterpret_cast<const unsigned char *>(read_bytes->data());
return static_cast<uint64_t>(data[0]) << 56 |
static_cast<uint64_t>(data[1]) << 48 |
static_cast<uint64_t>(data[2]) << 40 |
static_cast<uint64_t>(data[3]) << 32 |
static_cast<uint64_t>(data[4]) << 24 |
static_cast<uint64_t>(data[5]) << 16 |
static_cast<uint64_t>(data[6]) << 8 | static_cast<uint64_t>(data[7]);
}
std::optional<std::int64_t> StreamReader::ReadInt64() {
constexpr int byte_size = sizeof(std::int64_t);
std::optional<ByteArray> read_bytes = ReadBytes(byte_size);
if (!read_bytes.has_value()) {
return std::nullopt;
}
// Convert from network order.
const unsigned char *data =
reinterpret_cast<const unsigned char *>(read_bytes->data());
return static_cast<int64_t>(data[0]) << 56 |
static_cast<int64_t>(data[1]) << 48 |
static_cast<int64_t>(data[2]) << 40 |
static_cast<int64_t>(data[3]) << 32 |
static_cast<int64_t>(data[4]) << 24 |
static_cast<int64_t>(data[5]) << 16 |
static_cast<int64_t>(data[6]) << 8 | static_cast<int64_t>(data[7]);
}
std::optional<ByteArray> StreamReader::ReadBytes(int size) {
if (bits_unused_ != 0) {
return std::nullopt;
}
ExceptionOr<ByteArray> read_bytes_result = Read(size);
if (!read_bytes_result.ok()) {
return std::nullopt;
}
return read_bytes_result.result();
}
ExceptionOr<ByteArray> StreamReader::Read(std::int64_t size) {
if (!IsAvailable(size)) {
return ExceptionOr<ByteArray>{Exception::kIo};
}
ByteArray read_bytes{static_cast<size_t>(size)};
if (read_bytes.CopyAt(/*offset=*/0, *buffer_,
/*source_offset=*/position_)) {
position_ += size;
return ExceptionOr<ByteArray>{read_bytes};
} else {
return ExceptionOr<ByteArray>{Exception::kIo};
}
}
} // namespace nearby