/usr/share/perl5/Mango/Bulk.pm is in libmango-perl 1.29-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 | package Mango::Bulk;
use Mojo::Base -base;
use Carp 'croak';
use Mango::BSON qw(bson_doc bson_encode bson_oid bson_raw);
use Mojo::IOLoop;
has 'collection';
has ordered => 1;
sub execute {
my ($self, $cb) = @_;
# Full results shared with all operations
my $full = {upserted => [], writeConcernErrors => [], writeErrors => []};
$full->{$_} = 0 for qw(nInserted nMatched nModified nRemoved nUpserted);
# Non-blocking
if ($cb) {
return Mojo::IOLoop->next_tick(sub { shift; $self->$cb(undef, $full) })
unless my $group = shift @{$self->{ops}};
return $self->_next($group, $full, $cb);
}
# Blocking
my $db = $self->collection->db;
my $protocol = $db->mango->protocol;
while (my $group = shift @{$self->{ops}}) {
my ($type, $offset, $command) = $self->_group($group);
_merge($type, $offset, $full, $db->command($command));
if (my $err = $protocol->write_error($full)) { croak $err }
}
return $full;
}
sub find { shift->_set(query => shift) }
sub insert {
my ($self, $doc) = @_;
$doc->{_id} //= bson_oid;
return $self->_op(insert => $doc);
}
sub remove { shift->_remove(0) }
sub remove_one { shift->_remove(1) }
sub update { shift->_update(\1, @_) }
sub update_one { shift->_update(\0, @_) }
sub upsert { shift->_set(upsert => 1) }
sub _group {
my ($self, $group) = @_;
my ($type, $offset) = splice @$group, 0, 2;
my $collection = $self->collection;
return $type, $offset, bson_doc $type => $collection->name,
$type eq 'insert' ? 'documents' : "${type}s" => $group,
ordered => $self->ordered ? \1 : \0,
writeConcern => $collection->db->build_write_concern;
}
sub _merge {
my ($type, $offset, $full, $result) = @_;
# Insert
if ($type eq 'insert') { $full->{nInserted} += $result->{n} }
# Update
elsif ($type eq 'update') {
$full->{nModified} += $result->{n};
# Upsert
if (my $upserted = $result->{upserted}) {
push @{$full->{upserted}}, map { $_->{index} += $offset; $_ } @$upserted;
$full->{nUpserted} += @$upserted;
$full->{nMatched} += $result->{n} - @$upserted;
}
else { $full->{nMatched} += $result->{n} }
}
# Delete
elsif ($type eq 'delete') { $full->{nRemoved} += $result->{n} }
# Errors
push @{$full->{writeConcernErrors}}, $result->{writeConcernError}
if $result->{writeConcernError};
push @{$full->{writeErrors}},
map { $_->{index} += $offset; $_ } @{$result->{writeErrors}};
}
sub _next {
my ($self, $group, $full, $cb) = @_;
my ($type, $offset, $command) = $self->_group($group);
$self->collection->db->command(
$command => sub {
my ($db, $err, $result) = @_;
_merge($type, $offset, $full, $result) unless $err;
$err ||= $self->collection->db->mango->protocol->write_error($full);
return $self->$cb($err, $full) if $err;
return $self->$cb(undef, $full) unless my $next = shift @{$self->{ops}};
$self->_next($next, $full, $cb);
}
);
}
sub _op {
my ($self, $type, $doc) = @_;
# Pre-encode documents
my $mango = $self->collection->db->mango;
my $bson_max = $mango->max_bson_size;
my $batch_max = $mango->max_write_batch_size;
my $ops = $self->{ops} ||= [];
my $previous = @$ops ? $ops->[-1] : [];
my $bson = bson_encode $doc;
my $size = length $bson;
my $new = ($self->{size} // 0) + $size;
my $limit = $new > $bson_max || @$previous >= $batch_max + 2;
# Group documents based on type and limits
push @$ops, [$type, $self->{offset} || 0] and delete $self->{size}
if !@$previous || $previous->[0] ne $type || $limit;
push @{$ops->[-1]}, bson_raw $bson;
$self->{size} += $size;
$self->{offset}++;
return $self;
}
sub _remove {
my ($self, $limit) = @_;
my $query = delete $self->{query} // {};
return $self->_op(delete => {q => $query, limit => $limit});
}
sub _set {
my ($self, $key, $value) = @_;
$self->{$key} = $value;
return $self;
}
sub _update {
my ($self, $multi, $update) = @_;
my $query = delete $self->{query} // {};
my $upsert = delete $self->{upsert} ? \1 : \0;
return $self->_op(
update => {q => $query, u => $update, multi => $multi, upsert => $upsert});
}
1;
=encoding utf8
=head1 NAME
Mango::Bulk - MongoDB bulk operations
=head1 SYNOPSIS
use Mango::Bulk;
my $bulk = Mango::Bulk->new(collection => $collection);
$bulk->insert({foo => 'bar'})->insert({foo => 'baz'})->execute;
=head1 DESCRIPTION
L<Mango::Bulk> is a container for MongoDB bulk operations, all operations will
be automatically grouped so they don't exceed L<Mango/"max_bson_size">.
=head1 ATTRIBUTES
L<Mango::Bulk> implements the following attributes.
=head2 collection
my $collection = $bulk->collection;
$bulk = $bulk->collection(Mango::Collection->new);
L<Mango::Collection> object this bulk operation belongs to.
=head2 ordered
my $bool = $bulk->ordered;
$bulk = $bulk->ordered($bool);
Bulk operations are ordered, defaults to a true value.
=head1 METHODS
L<Mango::Bulk> inherits all methods from L<Mojo::Base> and implements the
following new ones.
=head2 execute
my $results = $bulk->execute;
Execute bulk operations. You can also append a callback to perform operation
non-blocking.
$bulk->execute(sub {
my ($bulk, $err, $results) = @_;
...
});
Mojo::IOLoop->start unless Mojo::IOLoop->is_running;
=head2 find
$bulk = $bulk->find({foo => 'bar'});
Query for next update or remove operation.
=head2 insert
$bulk = $bulk->insert({foo => 'bar'});
Insert document.
=head2 remove
$bulk = $bulk->remove;
Remove multiple documents.
=head2 remove_one
$bulk = $bulk->remove_one;
Remove one document.
=head2 update
$bulk = $bulk->update({foo => 'bar'});
Update multiple documents.
=head2 update_one
$bulk = $bulk->update_one({foo => 'baz'});
Update one document.
=head2 upsert
$bulk = $bulk->upsert;
Next update operation will be an C<upsert>.
=head1 SEE ALSO
L<Mango>, L<Mojolicious::Guides>, L<http://mojolicio.us>.
=cut
|