-
Notifications
You must be signed in to change notification settings - Fork 70
feat: add avro input&output stream based on arrow stream impl #105
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
654d96c
9b2f080
52f073f
6b07e7f
ca3b460
111bf4a
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,148 @@ | ||
| /* | ||
| * Licensed to the Apache Software Foundation (ASF) under one | ||
| * or more contributor license agreements. See the NOTICE file | ||
| * distributed with this work for additional information | ||
| * regarding copyright ownership. The ASF licenses this file | ||
| * to you 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 | ||
| * | ||
| * http://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 "avro_stream_internal.h" | ||
|
|
||
| #include <format> | ||
|
|
||
| #include <arrow/result.h> | ||
|
|
||
| #include "iceberg/exception.h" | ||
|
|
||
| namespace iceberg::avro { | ||
|
|
||
| AvroInputStream::AvroInputStream( | ||
| std::shared_ptr<arrow::io::RandomAccessFile> input_stream, int64_t buffer_size) | ||
| : input_stream_(std::move(input_stream)), | ||
| buffer_size_(buffer_size), | ||
| buffer_(buffer_size) {} | ||
|
|
||
| AvroInputStream::~AvroInputStream() = default; | ||
|
|
||
| bool AvroInputStream::next(const uint8_t** data, size_t* len) { | ||
| // Return all unconsumed data in the buffer | ||
| if (buffer_pos_ < available_bytes_) { | ||
| *data = buffer_.data() + buffer_pos_; | ||
| *len = available_bytes_ - buffer_pos_; | ||
| byte_count_ += available_bytes_ - buffer_pos_; | ||
| buffer_pos_ = available_bytes_; | ||
| return true; | ||
| } | ||
|
|
||
| // Read from the input stream when the buffer is empty | ||
| auto result = input_stream_->Read(buffer_.size(), buffer_.data()); | ||
| // TODO(xiao.dong) Avro interface requires to return false if an error has occurred or | ||
| // reach EOF, so error message can not be raised to the caller, add some log after we | ||
| // have a logging system | ||
| if (!result.ok() || result.ValueUnsafe() <= 0) { | ||
| return false; | ||
| } | ||
| available_bytes_ = result.ValueUnsafe(); | ||
| buffer_pos_ = 0; | ||
|
|
||
| // Return the whole buffer | ||
| *data = buffer_.data(); | ||
| *len = available_bytes_; | ||
| byte_count_ += available_bytes_; | ||
| buffer_pos_ = available_bytes_; | ||
|
|
||
| return true; | ||
| } | ||
|
|
||
| void AvroInputStream::backup(size_t len) { | ||
| if (len > buffer_pos_) { | ||
| throw IcebergError( | ||
| std::format("Cannot backup {} bytes, only {} bytes available", len, buffer_pos_)); | ||
| } | ||
|
|
||
| buffer_pos_ -= len; | ||
| byte_count_ -= len; | ||
| } | ||
|
|
||
| void AvroInputStream::skip(size_t len) { | ||
| // The range to skip is within the buffer | ||
| if (buffer_pos_ + len <= available_bytes_) { | ||
| buffer_pos_ += len; | ||
| byte_count_ += len; | ||
| return; | ||
| } | ||
|
|
||
| seek(byte_count_ + len); | ||
| } | ||
|
|
||
| size_t AvroInputStream::byteCount() const { return byte_count_; } | ||
|
|
||
| void AvroInputStream::seek(int64_t position) { | ||
| auto status = input_stream_->Seek(position); | ||
| if (!status.ok()) { | ||
| throw IcebergError( | ||
| std::format("Failed to seek to {}, got {}", position, status.ToString())); | ||
| } | ||
|
|
||
| buffer_pos_ = 0; | ||
| available_bytes_ = 0; | ||
| byte_count_ = position; | ||
| } | ||
|
|
||
| AvroOutputStream::AvroOutputStream(std::shared_ptr<arrow::io::OutputStream> output_stream, | ||
| int64_t buffer_size) | ||
| : output_stream_(std::move(output_stream)), | ||
| buffer_size_(buffer_size), | ||
| buffer_(buffer_size) {} | ||
|
|
||
| AvroOutputStream::~AvroOutputStream() = default; | ||
|
|
||
| bool AvroOutputStream::next(uint8_t** data, size_t* len) { | ||
| if (buffer_pos_ > 0) { | ||
| flush(); | ||
| } | ||
|
|
||
| *data = buffer_.data(); | ||
| *len = buffer_.size(); | ||
| buffer_pos_ = buffer_.size(); // Assume all will be used until backup is called | ||
|
|
||
| return true; | ||
| } | ||
|
|
||
| void AvroOutputStream::backup(size_t len) { | ||
| if (len > buffer_pos_) { | ||
| throw IcebergError( | ||
| std::format("Cannot backup {} bytes, only {} bytes available", len, buffer_pos_)); | ||
| } | ||
| buffer_pos_ -= len; | ||
| } | ||
|
|
||
| uint64_t AvroOutputStream::byteCount() const { return flushed_bytes_ + buffer_pos_; } | ||
|
|
||
| void AvroOutputStream::flush() { | ||
| if (buffer_pos_ > 0) { | ||
| auto status = output_stream_->Write(buffer_.data(), buffer_pos_); | ||
| if (!status.ok()) { | ||
| throw IcebergError(std::format("Write failed {}", status.ToString())); | ||
| } | ||
| flushed_bytes_ += buffer_pos_; | ||
| buffer_pos_ = 0; | ||
| } | ||
| auto status = output_stream_->Flush(); | ||
| if (!status.ok()) { | ||
| throw IcebergError(std::format("Flush failed {}", status.ToString())); | ||
| } | ||
| } | ||
|
|
||
| } // namespace iceberg::avro | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,98 @@ | ||
| /* | ||
| * Licensed to the Apache Software Foundation (ASF) under one | ||
| * or more contributor license agreements. See the NOTICE file | ||
| * distributed with this work for additional information | ||
| * regarding copyright ownership. The ASF licenses this file | ||
| * to you 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 | ||
| * | ||
| * http://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. | ||
| */ | ||
|
|
||
| #pragma once | ||
|
|
||
| #include <arrow/io/interfaces.h> | ||
| #include <avro/Stream.hh> | ||
|
|
||
| namespace iceberg::avro { | ||
|
|
||
| class AvroInputStream : public ::avro::SeekableInputStream { | ||
| public: | ||
| explicit AvroInputStream(std::shared_ptr<::arrow::io::RandomAccessFile> input_stream, | ||
| int64_t buffer_size); | ||
|
|
||
| ~AvroInputStream() override; | ||
|
|
||
| /// \brief Returns some of available data. | ||
| /// \return true if some data is available, false if no more data is available or an | ||
| /// error has occurred. | ||
| bool next(const uint8_t** data, size_t* len) override; | ||
|
|
||
| /// \brief "Returns" back some of the data to the stream. The returned data must be less | ||
| /// than what was obtained in the last call to next(). | ||
| void backup(size_t len) override; | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Could you elaborate why we need a backup method when reading Avro? Does not make a lot of sense to me.
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is a public interface from avro-cpp. IIRC, it internally reads a large chunk into the buffer and then backup some if read too much to reduce I/O. |
||
|
|
||
| /// \brief Skips number of bytes specified by len. | ||
| void skip(size_t len) override; | ||
|
|
||
| /// \brief Returns the number of bytes read from this stream so far. | ||
| /// All the bytes made available through next are considered to be used unless, | ||
| /// returned back using backup. | ||
| size_t byteCount() const override; | ||
|
|
||
| /// \brief Seek to a specific position in the stream. This may invalidate pointers | ||
| /// returned from next(). This will also reset byteCount() to the given | ||
| /// position. | ||
| void seek(int64_t position) override; | ||
|
|
||
| private: | ||
| std::shared_ptr<::arrow::io::RandomAccessFile> input_stream_; | ||
| const int64_t buffer_size_; | ||
| std::vector<uint8_t> buffer_; | ||
| size_t byte_count_ = 0; // bytes read from the input stream | ||
| size_t buffer_pos_ = 0; // next position to read in the buffer | ||
| size_t available_bytes_ = 0; // bytes available in the buffer | ||
| }; | ||
|
|
||
| class AvroOutputStream : public ::avro::OutputStream { | ||
| public: | ||
| explicit AvroOutputStream(std::shared_ptr<::arrow::io::OutputStream> output_stream, | ||
| int64_t buffer_size); | ||
|
|
||
| ~AvroOutputStream() override; | ||
|
|
||
| /// \brief Returns a buffer that can be written into. | ||
| /// On successful return, data has the pointer to the buffer | ||
| /// and len has the number of bytes available at data. | ||
| bool next(uint8_t** data, size_t* len) override; | ||
|
|
||
| /// \brief "Returns" back to the stream some of the buffer obtained | ||
| /// from in the last call to next(). | ||
| void backup(size_t len) override; | ||
|
|
||
| /// \brief Number of bytes written so far into this stream. The whole buffer | ||
| /// returned by next() is assumed to be written unless some of | ||
| /// it was returned using backup(). | ||
| uint64_t byteCount() const override; | ||
|
|
||
| /// \brief Flushes any data remaining in the buffer to the stream's underlying | ||
| /// store, if any. | ||
| void flush() override; | ||
|
|
||
| private: | ||
| std::shared_ptr<::arrow::io::OutputStream> output_stream_; | ||
| const int64_t buffer_size_; | ||
| std::vector<uint8_t> buffer_; | ||
| size_t buffer_pos_ = 0; // position in the buffer | ||
| uint64_t flushed_bytes_ = 0; // bytes flushed to the output stream | ||
| }; | ||
|
|
||
| } // namespace iceberg::avro | ||
Uh oh!
There was an error while loading. Please reload this page.