1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264
|
# frozen_string_literal: true
# rubocop:todo all
# Copyright (C) 2014-2020 MongoDB Inc.
#
# 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.
module Mongo
module Grid
class FSBucket
module Stream
# A stream that reads files from the FSBucket.
#
# @since 2.1.0
class Read
include Enumerable
# @return [ FSBucket ] fs The fs bucket from which this stream reads.
#
# @since 2.1.0
attr_reader :fs
# @return [ Hash ] options The stream options.
#
# @since 2.1.0
attr_reader :options
# @return [ BSON::ObjectId, Object ] file_id The id of the file being read.
#
# @since 2.1.0
attr_reader :file_id
# Create a stream for reading files from the FSBucket.
#
# @example Create the stream.
# Stream::Read.new(fs, options)
#
# @param [ FSBucket ] fs The GridFS bucket object.
# @param [ Hash ] options The read stream options.
#
# @option options [ BSON::Document ] :file_info_doc For internal
# driver use only. A BSON document to use as file information.
#
# @since 2.1.0
def initialize(fs, options)
@fs = fs
@options = options.dup
@file_id = @options.delete(:file_id)
@options.freeze
@open = true
@timeout_holder = CsotTimeoutHolder.new(
operation_timeouts: {
operation_timeout_ms: options[:timeout_ms],
inherited_timeout_ms: fs.database.timeout_ms
}
)
end
# Iterate through chunk data streamed from the FSBucket.
#
# @example Iterate through the chunk data.
# stream.each do |data|
# buffer << data
# end
#
# @return [ Enumerator ] The enumerator.
#
# @raise [ Error::MissingFileChunk ] If a chunk is found out of sequence.
#
# @yieldparam [ Hash ] Each chunk of file data.
#
# @since 2.1.0
def each
ensure_readable!
info = file_info
num_chunks = (info.length + info.chunk_size - 1) / info.chunk_size
num_read = 0
if block_given?
view.each_with_index.reduce(0) do |length_read, (doc, index)|
chunk = Grid::File::Chunk.new(doc)
validate!(index, num_chunks, chunk, length_read)
data = chunk.data.data
yield data
num_read += 1
length_read += data.size
end.tap do
if num_read < num_chunks
raise Error::MissingFileChunk.new(num_chunks, num_read)
end
end
else
view.to_enum
end
end
# Read all file data.
#
# @example Read the file data.
# stream.read
#
# @return [ String ] The file data.
#
# @raise [ Error::MissingFileChunk ] If a chunk is found out of sequence.
#
# @since 2.1.0
def read
to_a.join
end
# Close the read stream.
#
# If the stream is already closed, this method does nothing.
#
# @example Close the stream.
# stream.close
#
# @return [ BSON::ObjectId, Object ] The file id.
#
# @since 2.1.0
def close
if @open
view.close_query
@open = false
end
file_id
end
# Is the stream closed.
#
# @example Is the stream closd.
# stream.closed?
#
# @return [ true, false ] Whether the stream is closed.
#
# @since 2.1.0
def closed?
!@open
end
# Get the read preference.
#
# @note This method always returns a BSON::Document instance, even
# though the constructor specifies the type of :read as a Hash, not
# as a BSON::Document.
#
# @return [ BSON::Document ] The read preference.
# The document may have the following fields:
# - *:mode* -- read preference specified as a symbol; valid values are
# *:primary*, *:primary_preferred*, *:secondary*, *:secondary_preferred*
# and *:nearest*.
# - *:tag_sets* -- an array of hashes.
# - *:local_threshold*.
def read_preference
@read_preference ||= begin
pref = options[:read] || fs.read_preference
if BSON::Document === pref
pref
else
BSON::Document.new(pref)
end
end
end
# Get the files collection file information document for the file
# being read.
#
# @note The file information is cached in the stream. Subsequent
# calls to file_info will return the same information that the
# first call returned, and will not query the database again.
#
# @return [ File::Info ] The file information object.
#
# @since 2.1.0
def file_info
@file_info ||= begin
doc = options[:file_info_doc] ||
fs.files_collection.find(
{ _id: file_id },
{ timeout_ms: @timeout_holder.remaining_timeout_ms! }
).first
if doc
File::Info.new(Options::Mapper.transform(doc, File::Info::MAPPINGS.invert))
else
nil
end
end
end
private
def ensure_open!
raise Error::ClosedStream.new if closed?
end
def ensure_file_info!
raise Error::FileNotFound.new(file_id, :id) unless file_info
end
def ensure_readable!
ensure_open!
ensure_file_info!
end
def view
@view ||= begin
opts = if read_preference
options.merge(read: read_preference)
else
options
end
if @timeout_holder.csot?
opts[:timeout_ms] = @timeout_holder.remaining_timeout_ms!
opts[:timeout_mode] = :cursor_lifetime
end
fs.chunks_collection.find({ :files_id => file_id }, opts).sort(:n => 1)
end
end
def validate!(index, num_chunks, chunk, length_read)
validate_n!(index, chunk)
validate_length!(index, num_chunks, chunk, length_read)
end
def raise_unexpected_chunk_length!(chunk)
close
raise Error::UnexpectedChunkLength.new(file_info.chunk_size, chunk)
end
def validate_length!(index, num_chunks, chunk, length_read)
if num_chunks > 0 && chunk.data.data.size > 0
raise Error::ExtraFileChunk.new unless index < num_chunks
if index == num_chunks - 1
unless chunk.data.data.size + length_read == file_info.length
raise_unexpected_chunk_length!(chunk)
end
elsif chunk.data.data.size != file_info.chunk_size
raise_unexpected_chunk_length!(chunk)
end
end
end
def validate_n!(index, chunk)
unless index == chunk.n
close
raise Error::MissingFileChunk.new(index, chunk)
end
end
end
end
end
end
end
|