/* Copyright 2016 The TensorFlow Authors. All Rights Reserved. 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 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 "tensorflow/core/lib/io/random_inputstream.h" #include namespace tensorflow { namespace io { RandomAccessInputStream::RandomAccessInputStream(RandomAccessFile* file, bool owns_file) : file_(file), owns_file_(owns_file) {} RandomAccessInputStream::~RandomAccessInputStream() { if (owns_file_) { delete file_; } } Status RandomAccessInputStream::ReadNBytes(int64 bytes_to_read, string* result) { if (bytes_to_read < 0) { return errors::InvalidArgument("Cannot read negative number of bytes"); } result->clear(); result->resize(bytes_to_read); char* result_buffer = &(*result)[0]; StringPiece data; Status s = file_->Read(pos_, bytes_to_read, &data, result_buffer); if (data.data() != result_buffer) { memmove(result_buffer, data.data(), data.size()); } result->resize(data.size()); if (s.ok() || errors::IsOutOfRange(s)) { pos_ += data.size(); } return s; } // To limit memory usage, the default implementation of SkipNBytes() only reads // 8MB at a time. static constexpr int64 kMaxSkipSize = 8 * 1024 * 1024; Status RandomAccessInputStream::SkipNBytes(int64 bytes_to_skip) { if (bytes_to_skip < 0) { return errors::InvalidArgument("Can't skip a negative number of bytes"); } std::unique_ptr scratch(new char[kMaxSkipSize]); // Try to read 1 bytes first, if we could complete the read then EOF is // not reached yet and we could return. if (bytes_to_skip > 0) { StringPiece data; Status s = file_->Read(pos_ + bytes_to_skip - 1, 1, &data, scratch.get()); if ((s.ok() || errors::IsOutOfRange(s)) && data.size() == 1) { pos_ += bytes_to_skip; return Status::OK(); } } // Read kDefaultSkipSize at a time till bytes_to_skip. while (bytes_to_skip > 0) { int64 bytes_to_read = std::min(kMaxSkipSize, bytes_to_skip); StringPiece data; Status s = file_->Read(pos_, bytes_to_read, &data, scratch.get()); if (s.ok() || errors::IsOutOfRange(s)) { pos_ += data.size(); } else { return s; } if (data.size() < bytes_to_read) { return errors::OutOfRange("reached end of file"); } bytes_to_skip -= bytes_to_read; } return Status::OK(); } int64 RandomAccessInputStream::Tell() const { return pos_; } } // namespace io } // namespace tensorflow