/usr/share/perl5/Mango/Cursor.pm is in libmango-perl 0.22-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 | package Mango::Cursor;
use Mojo::Base -base;
use Mango::BSON 'bson_doc';
use Mojo::IOLoop;
has [qw(batch_size limit skip)] => 0;
has [qw(collection hint id max_scan snapshot sort tailable)];
has [qw(fields query)] => sub { {} };
sub add_batch {
my ($self, $docs) = @_;
push @{$self->{results} ||= []}, @$docs;
return $self;
}
sub all {
my ($self, $cb) = @_;
# Non-blocking
my @all;
return $self->next(sub { shift->_collect(\@all, $cb, @_) }) if $cb;
# Blocking
while (my $next = $self->next) { push @all, $next }
return \@all;
}
sub build_query {
my ($self, $explain) = @_;
my $query = $self->query;
my $hint = $self->hint;
my $max_scan = $self->max_scan;
my $snapshot = $self->snapshot;
my $sort = $self->sort;
return $query unless $explain || $hint || $max_scan || $snapshot || $sort;
$query = bson_doc $query->{'$query'} ? %$query : ('$query' => $query);
$query->{'$explain'} = 1 if $explain;
$query->{'$hint'} = $hint if $hint;
$query->{'$maxScan'} = $max_scan if $max_scan;
$query->{'$snapshot'} = 1 if $snapshot;
$query->{'$orderby'} = $sort if $sort;
return $query;
}
sub clone {
my $self = shift;
my $clone = $self->new;
$clone->$_($self->$_) for qw(batch_size collection fields hint limit);
$clone->$_($self->$_) for qw(max_scan query skip snapshot sort tailable);
return $clone;
}
sub count {
my $self = shift;
my $cb = ref $_[-1] eq 'CODE' ? pop : undef;
my $collection = $self->collection;
my $command = bson_doc
count => $collection->name,
query => $self->build_query,
skip => $self->skip,
limit => $self->limit;
# Non-blocking
return $collection->db->command(
$command => sub {
my ($collection, $err, $doc) = @_;
$self->$cb($err, $doc ? $doc->{n} : 0);
}
) if $cb;
# Blocking
my $doc = $collection->db->command($command);
return $doc ? $doc->{n} : 0;
}
sub distinct {
my ($self, $key) = (shift, shift);
my $cb = ref $_[-1] eq 'CODE' ? pop : undef;
my $collection = $self->collection;
my $command = bson_doc
distinct => $collection->name,
key => $key,
query => $self->build_query;
# Blocking
my $db = $collection->db;
return $db->command($command)->{values} unless $cb;
# Non-blocking
$db->command($command => sub { shift; $self->$cb(shift, shift->{values}) });
}
sub explain {
my ($self, $cb) = @_;
# Non-blocking
my $clone = $self->clone->query($self->build_query(1))->sort(undef);
return $clone->next(sub { shift; $self->$cb(@_) }) if $cb;
# Blocking
return $clone->next;
}
sub next {
my ($self, $cb) = @_;
return defined $self->id ? $self->_continue($cb) : $self->_start($cb);
}
sub rewind {
my ($self, $cb) = @_;
delete @$self{qw(num results)};
return $cb ? $self->_defer($cb) : undef unless defined(my $id = $self->id);
$self->id(undef);
# Non-blocking
my $mango = $self->collection->db->mango;
return $mango->kill_cursors($id => sub { shift; $self->$cb(@_) }) if $cb;
# Blocking
$mango->kill_cursors($id);
}
sub _collect {
my ($self, $all, $cb, $err, $doc) = @_;
return $self->_defer($cb, $err, $all) if $err || !$doc;
push @$all, $doc;
$self->next(sub { shift->_collect($all, $cb, @_) });
}
sub _continue {
my ($self, $cb) = @_;
my $collection = $self->collection;
my $name = $collection->full_name;
my $mango = $collection->db->mango;
# Non-blocking
if ($cb) {
return $self->_defer($cb, undef, $self->_dequeue) if $self->_enough;
return $mango->get_more(($name, $self->_max, $self->id) =>
sub { shift; $self->$cb(shift, $self->_enqueue(shift)) });
}
# Blocking
return $self->_dequeue if $self->_enough;
return $self->_enqueue($mango->get_more($name, $self->_max, $self->id));
}
sub _defer {
my ($self, $cb, @args) = @_;
Mojo::IOLoop->timer(0 => sub { $self->$cb(@args) });
}
sub _dequeue {
my $self = shift;
return undef if $self->_finished;
$self->{num}++;
return shift @{$self->{results}};
}
sub _enough {
my $self = shift;
return $self->id eq '0' || $self->_finished || !!@{$self->{results} // []};
}
sub _enqueue {
my ($self, $reply) = @_;
return unless $reply;
return $self->add_batch($reply->{docs})->id($reply->{cursor})->_dequeue;
}
sub _finished {
my $self = shift;
return undef unless my $limit = $self->limit;
return ($self->{num} // 0) >= abs($limit) ? 1 : undef;
}
sub _max {
my $self = shift;
my $limit = $self->limit;
my $size = $self->batch_size;
return $limit == 0 || $size < $limit ? $size : $limit;
}
sub _start {
my ($self, $cb) = @_;
my $collection = $self->collection;
my $name = $collection->full_name;
my $flags = $self->tailable ? {tailable_cursor => 1, await_data => 1} : {};
my @query = (
$name, $flags, $self->skip, $self->_max, $self->build_query, $self->fields
);
# Non-blocking
return $collection->db->mango->query(
@query => sub { shift; $self->$cb(shift, $self->_enqueue(shift)) })
if $cb;
# Blocking
return $self->_enqueue($collection->db->mango->query(@query));
}
1;
=encoding utf8
=head1 NAME
Mango::Cursor - MongoDB cursor
=head1 SYNOPSIS
use Mango::Cursor;
my $cursor = Mango::Cursor->new(collection => $collection);
my $docs = $cursor->all;
=head1 DESCRIPTION
L<Mango::Cursor> is a container for MongoDB cursors used by
L<Mango::Collection>.
=head1 ATTRIBUTES
L<Mango::Cursor> implements the following attributes.
=head2 batch_size
my $size = $cursor->batch_size;
$cursor = $cursor->batch_size(10);
Number of documents to fetch in one batch, defaults to C<0>.
=head2 collection
my $collection = $cursor->collection;
$cursor = $cursor->collection(Mango::Collection->new);
L<Mango::Collection> object this cursor belongs to.
=head2 fields
my $fields = $cursor->fields;
$cursor = $cursor->fields({foo => 1});
Select fields from documents.
=head2 hint
my $hint = $cursor->hint;
$cursor = $cursor->hint({foo => 1});
Force a specific index to be used.
=head2 id
my $id = $cursor->id;
$cursor = $cursor->id(123456);
Cursor id.
=head2 limit
my $limit = $cursor->limit;
$cursor = $cursor->limit(10);
Limit the number of documents, defaults to C<0>.
=head2 max_scan
my $max = $cursor->max_scan;
$cursor = $cursor->max_scan(500);
Limit the number of documents to scan.
=head2 query
my $query = $cursor->query;
$cursor = $cursor->query({foo => 'bar'});
Original query.
=head2 skip
my $skip = $cursor->skip;
$cursor = $cursor->skip(5);
Number of documents to skip, defaults to C<0>.
=head2 snapshot
my $snapshot = $cursor->snapshot;
$cursor = $cursor->snapshot(1);
Use snapshot mode.
=head2 sort
my $sort = $cursor->sort;
$cursor = $cursor->sort({foo => 1});
$cursor = $cursor->sort(bson_doc(foo => 1, bar => -1));
Sort documents, the order of keys matters.
=head2 tailable
my $tailable = $cursor->tailable;
$cursor = $cursor->tailable(1);
Tailable cursor.
=head1 METHODS
L<Mango::Cursor> inherits all methods from L<Mojo::Base> and implements the
following new ones.
=head2 add_batch
$cursor = $cursor->add_batch($docs);
Add batch of documents to cursor.
=head2 all
my $docs = $cursor->all;
Fetch all documents at once. You can also append a callback to perform
operation non-blocking.
$cursor->all(sub {
my ($cursor, $err, $docs) = @_;
...
});
Mojo::IOLoop->start unless Mojo::IOLoop->is_running;
=head2 build_query
my $query = $cursor->build_query;
my $query = $cursor->build_query($explain);
Generate final query with cursor attributes.
=head2 clone
my $clone = $cursor->clone;
Clone cursor.
=head2 count
my $count = $cursor->count;
Count number of documents this cursor can return. You can also append a
callback to perform operation non-blocking.
$cursor->count(sub {
my ($cursor, $err, $count) = @_;
...
});
Mojo::IOLoop->start unless Mojo::IOLoop->is_running;
=head2 distinct
my $values = $cursor->distinct('foo');
Get all distinct values for key. You can also append a callback to perform
operation non-blocking.
$cursor->distinct(foo => sub {
my ($cursor, $err, $values) = @_;
...
});
Mojo::IOLoop->start unless Mojo::IOLoop->is_running;
=head2 explain
my $doc = $cursor->explain;
Provide information on the query plan. You can also append a callback to
perform operation non-blocking.
$cursor->explain(sub {
my ($cursor, $err, $doc) = @_;
...
});
Mojo::IOLoop->start unless Mojo::IOLoop->is_running;
=head2 next
my $doc = $cursor->next;
Fetch next document. You can also append a callback to perform operation
non-blocking.
$cursor->next(sub {
my ($cursor, $err, $doc) = @_;
...
});
Mojo::IOLoop->start unless Mojo::IOLoop->is_running;
=head2 rewind
$cursor->rewind;
Rewind cursor and kill it on the server. You can also append a callback to
perform operation non-blocking.
$cursor->rewind(sub {
my ($cursor, $err) = @_;
...
});
Mojo::IOLoop->start unless Mojo::IOLoop->is_running;
=head1 SEE ALSO
L<Mango>, L<Mojolicious::Guides>, L<http://mojolicio.us>.
=cut
|