Files
nearby/internal/platform/base_input_stream.h
T
Guogang Li 0ce08ab931 internal fix
PiperOrigin-RevId: 723992593
2025-02-06 10:43:23 -08:00

72 lines
2.2 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.
#ifndef PLATFORM_BASE_BASE_INPUT_STREAM_H_
#define PLATFORM_BASE_BASE_INPUT_STREAM_H_
#include <algorithm>
#include <cstddef>
#include <cstdint>
#include <optional>
#include "internal/platform/byte_array.h"
#include "internal/platform/exception.h"
#include "internal/platform/input_stream.h"
namespace nearby {
// A base {@link InputStream } for reading the contents of a byte array.
class BaseInputStream : public InputStream {
public:
explicit BaseInputStream(ByteArray &buffer) : buffer_{buffer} {}
BaseInputStream(const BaseInputStream &) = delete;
BaseInputStream &operator=(const BaseInputStream &) = delete;
~BaseInputStream() override { Close(); }
ExceptionOr<ByteArray> Read(std::int64_t size) override;
ExceptionOr<size_t> Skip(size_t offset) override {
size_t real_offset = std::min(offset, buffer_.size() - position_);
position_ += real_offset;
return ExceptionOr<size_t>(real_offset);
}
Exception Close() override {
// Do nothing.
return {Exception::kSuccess};
}
std::optional<std::uint8_t> ReadUint8();
std::optional<std::int8_t> ReadInt8();
std::optional<std::uint16_t> ReadUint16();
std::optional<std::int16_t> ReadInt16();
std::optional<std::uint32_t> ReadUint32();
std::optional<std::int32_t> ReadInt32();
std::optional<std::uint64_t> ReadUint64();
std::optional<std::int64_t> ReadInt64();
std::optional<ByteArray> ReadBytes(int size);
bool IsAvailable(int size) const {
return buffer_.size() - position_ >= size;
}
private:
ByteArray &buffer_;
size_t position_{0};
};
} // namespace nearby
#endif // PLATFORM_BASE_BASE_INPUT_STREAM_H_