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 265 266 267 268 269 270 271 272 273 274 275 276 277 278
|
# Copyright (C) 2014-2017 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.
require 'mongo/cursor/builder'
module Mongo
# Client-side representation of an iterator over a query result set on
# the server.
#
# A +Cursor+ is not created directly by a user. Rather, +CollectionView+
# creates a +Cursor+ in an Enumerable module method.
#
# @example Get an array of 5 users named Emily.
# users.find({:name => 'Emily'}).limit(5).to_a
#
# @example Call a block on each user doc.
# users.find.each { |doc| puts doc }
#
# @note The +Cursor+ API is semipublic.
# @api semipublic
class Cursor
extend Forwardable
include Enumerable
include Retryable
def_delegators :@view, :collection
def_delegators :collection, :client, :database
def_delegators :@server, :cluster
# @return [ Collection::View ] view The collection view.
attr_reader :view
# Creates a +Cursor+ object.
#
# @example Instantiate the cursor.
# Mongo::Cursor.new(view, response, server)
#
# @param [ CollectionView ] view The +CollectionView+ defining the query.
# @param [ Operation::Result ] result The result of the first execution.
# @param [ Server ] server The server this cursor is locked to.
# @param [ Hash ] options The cursor options.
#
# @option options [ true, false ] :disable_retry Whether to disable retrying on
# error when sending getmores.
#
# @since 2.0.0
def initialize(view, result, server, options = {})
@view = view
@server = server
@initial_result = result
@remaining = limit if limited?
@cursor_id = result.cursor_id
@coll_name = nil
@options = options
@session = @options[:session]
register
ObjectSpace.define_finalizer(self, self.class.finalize(result.cursor_id,
cluster,
kill_cursors_op_spec,
server,
@session))
end
# Finalize the cursor for garbage collection. Schedules this cursor to be included
# in a killCursors operation executed by the Cluster's CursorReaper.
#
# @example Finalize the cursor.
# Cursor.finalize(id, cluster, op, server)
#
# @param [ Integer ] cursor_id The cursor's id.
# @param [ Mongo::Cluster ] cluster The cluster associated with this cursor and its server.
# @param [ Hash ] op_spec The killCursors operation specification.
# @param [ Mongo::Server ] server The server to send the killCursors operation to.
#
# @return [ Proc ] The Finalizer.
#
# @since 2.3.0
def self.finalize(cursor_id, cluster, op_spec, server, session)
proc do
cluster.schedule_kill_cursor(cursor_id, op_spec, server)
session.end_session if session && session.implicit?
end
end
# Get a human-readable string representation of +Cursor+.
#
# @example Inspect the cursor.
# cursor.inspect
#
# @return [ String ] A string representation of a +Cursor+ instance.
#
# @since 2.0.0
def inspect
"#<Mongo::Cursor:0x#{object_id} @view=#{@view.inspect}>"
end
# Iterate through documents returned from the query.
#
# @example Iterate over the documents in the cursor.
# cursor.each do |doc|
# ...
# end
#
# @return [ Enumerator ] The enumerator.
#
# @since 2.0.0
def each
process(@initial_result).each { |doc| yield doc }
while more?
return kill_cursors if exhausted?
get_more.each { |doc| yield doc }
end
end
# Get the batch size.
#
# @example Get the batch size.
# cursor.batch_size
#
# @return [ Integer ] The batch size.
#
# @since 2.2.0
def batch_size
@view.batch_size && @view.batch_size > 0 ? @view.batch_size : limit
end
# Is the cursor closed?
#
# @example Is the cursor closed?
# cursor.closed?
#
# @return [ true, false ] If the cursor is closed.
#
# @since 2.2.0
def closed?
!more?
end
# Get the parsed collection name.
#
# @example Get the parsed collection name.
# cursor.coll_name
#
# @return [ String ] The collection name.
#
# @since 2.2.0
def collection_name
@coll_name || collection.name
end
# Get the cursor id.
#
# @example Get the cursor id.
# cursor.id
#
# @note A cursor id of 0 means the cursor was closed on the server.
#
# @return [ Integer ] The cursor id.
#
# @since 2.2.0
def id
@cursor_id
end
# Get the number of documents to return. Used on 3.0 and lower server
# versions.
#
# @example Get the number to return.
# cursor.to_return
#
# @return [ Integer ] The number of documents to return.
#
# @since 2.2.0
def to_return
use_limit? ? @remaining : (batch_size || 0)
end
private
def exhausted?
limited? ? @remaining <= 0 : false
end
def get_more
if @options[:disable_retry]
process(get_more_operation.execute(@server))
else
read_with_retry do
process(get_more_operation.execute(@server))
end
end
end
def get_more_operation
if @server.features.find_command_enabled?
Operation::Commands::GetMore.new(Builder::GetMoreCommand.new(self, @session).specification)
else
Operation::Read::GetMore.new(Builder::OpGetMore.new(self).specification)
end
end
def kill_cursors
unregister
read_with_one_retry do
kill_cursors_operation.execute(@server)
end
ensure
end_session
@cursor_id = 0
end
def end_session
@session.end_session if @session && @session.implicit?
end
def kill_cursors_operation
if @server.features.find_command_enabled?
Operation::Commands::Command.new(kill_cursors_op_spec)
else
Operation::KillCursors.new(kill_cursors_op_spec)
end
end
def kill_cursors_op_spec
if @server.features.find_command_enabled?
Builder::KillCursorsCommand.new(self).specification
else
Builder::OpKillCursors.new(self).specification
end
end
def limited?
limit ? limit > 0 : false
end
def more?
@cursor_id != 0
end
def process(result)
@remaining -= result.returned_count if limited?
@coll_name ||= result.namespace.sub("#{database.name}.", '') if result.namespace
unregister if result.cursor_id == 0
@cursor_id = result.cursor_id
end_session if !more?
result.documents
end
def use_limit?
limited? && batch_size >= @remaining
end
def limit
@view.send(:limit)
end
def register
cluster.register_cursor(@cursor_id)
end
def unregister
cluster.unregister_cursor(@cursor_id)
end
end
end
|