line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
# Copyright 2018 - present MongoDB, Inc. |
2
|
|
|
|
|
|
|
# |
3
|
|
|
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License"); |
4
|
|
|
|
|
|
|
# you may not use this file except in compliance with the License. |
5
|
|
|
|
|
|
|
# You may obtain a copy of the License at |
6
|
|
|
|
|
|
|
# |
7
|
|
|
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0 |
8
|
|
|
|
|
|
|
# |
9
|
|
|
|
|
|
|
# Unless required by applicable law or agreed to in writing, software |
10
|
|
|
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS, |
11
|
|
|
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
12
|
|
|
|
|
|
|
# See the License for the specific language governing permissions and |
13
|
|
|
|
|
|
|
# limitations under the License. |
14
|
|
|
|
|
|
|
|
15
|
58
|
|
|
58
|
|
408
|
use strict; |
|
58
|
|
|
|
|
136
|
|
|
58
|
|
|
|
|
1715
|
|
16
|
58
|
|
|
58
|
|
301
|
use warnings; |
|
58
|
|
|
|
|
136
|
|
|
58
|
|
|
|
|
10597
|
|
17
|
|
|
|
|
|
|
package MongoDB::Op::_ChangeStream; |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
# Encapsulate changestream operation; return MongoDB::QueryResult |
20
|
|
|
|
|
|
|
# and operationTime if supported |
21
|
|
|
|
|
|
|
|
22
|
58
|
|
|
58
|
|
421
|
use version; |
|
58
|
|
|
|
|
126
|
|
|
58
|
|
|
|
|
312
|
|
23
|
|
|
|
|
|
|
our $VERSION = 'v2.2.0'; |
24
|
|
|
|
|
|
|
|
25
|
58
|
|
|
58
|
|
4196
|
use Moo; |
|
58
|
|
|
|
|
143
|
|
|
58
|
|
|
|
|
336
|
|
26
|
|
|
|
|
|
|
|
27
|
58
|
|
|
58
|
|
18645
|
use boolean; |
|
58
|
|
|
|
|
175
|
|
|
58
|
|
|
|
|
415
|
|
28
|
58
|
|
|
58
|
|
4328
|
use BSON::Timestamp; |
|
58
|
|
|
|
|
151
|
|
|
58
|
|
|
|
|
1704
|
|
29
|
58
|
|
|
58
|
|
365
|
use MongoDB::Op::_Command; |
|
58
|
|
|
|
|
142
|
|
|
58
|
|
|
|
|
1910
|
|
30
|
58
|
|
|
|
|
481
|
use MongoDB::_Types qw( |
31
|
|
|
|
|
|
|
ArrayOfHashRef |
32
|
|
|
|
|
|
|
Boolish |
33
|
|
|
|
|
|
|
BSONTimestamp |
34
|
58
|
|
|
58
|
|
363
|
); |
|
58
|
|
|
|
|
126
|
|
35
|
58
|
|
|
|
|
511
|
use Types::Standard qw( |
36
|
|
|
|
|
|
|
HashRef |
37
|
|
|
|
|
|
|
InstanceOf |
38
|
|
|
|
|
|
|
Num |
39
|
|
|
|
|
|
|
Str |
40
|
|
|
|
|
|
|
Maybe |
41
|
58
|
|
|
58
|
|
74144
|
); |
|
58
|
|
|
|
|
155
|
|
42
|
|
|
|
|
|
|
|
43
|
58
|
|
|
58
|
|
66015
|
use namespace::clean; |
|
58
|
|
|
|
|
141
|
|
|
58
|
|
|
|
|
420
|
|
44
|
|
|
|
|
|
|
|
45
|
|
|
|
|
|
|
has client => ( |
46
|
|
|
|
|
|
|
is => 'ro', |
47
|
|
|
|
|
|
|
required => 1, |
48
|
|
|
|
|
|
|
isa => InstanceOf ['MongoDB::MongoClient'], |
49
|
|
|
|
|
|
|
); |
50
|
|
|
|
|
|
|
|
51
|
|
|
|
|
|
|
has pipeline => ( |
52
|
|
|
|
|
|
|
is => 'ro', |
53
|
|
|
|
|
|
|
required => 1, |
54
|
|
|
|
|
|
|
isa => ArrayOfHashRef, |
55
|
|
|
|
|
|
|
); |
56
|
|
|
|
|
|
|
|
57
|
|
|
|
|
|
|
has options => ( |
58
|
|
|
|
|
|
|
is => 'ro', |
59
|
|
|
|
|
|
|
required => 1, |
60
|
|
|
|
|
|
|
isa => HashRef, |
61
|
|
|
|
|
|
|
); |
62
|
|
|
|
|
|
|
|
63
|
|
|
|
|
|
|
has maxAwaitTimeMS => ( |
64
|
|
|
|
|
|
|
is => 'rw', |
65
|
|
|
|
|
|
|
isa => Num, |
66
|
|
|
|
|
|
|
); |
67
|
|
|
|
|
|
|
|
68
|
|
|
|
|
|
|
has full_document => ( |
69
|
|
|
|
|
|
|
is => 'ro', |
70
|
|
|
|
|
|
|
isa => Str, |
71
|
|
|
|
|
|
|
predicate => 'has_full_document', |
72
|
|
|
|
|
|
|
); |
73
|
|
|
|
|
|
|
|
74
|
|
|
|
|
|
|
has resume_after => ( |
75
|
|
|
|
|
|
|
is => 'ro', |
76
|
|
|
|
|
|
|
predicate => 'has_resume_after', |
77
|
|
|
|
|
|
|
); |
78
|
|
|
|
|
|
|
|
79
|
|
|
|
|
|
|
has start_after => ( |
80
|
|
|
|
|
|
|
is => 'ro', |
81
|
|
|
|
|
|
|
predicate => 'has_start_after', |
82
|
|
|
|
|
|
|
); |
83
|
|
|
|
|
|
|
|
84
|
|
|
|
|
|
|
has all_changes_for_cluster => ( |
85
|
|
|
|
|
|
|
is => 'ro', |
86
|
|
|
|
|
|
|
isa => Boolish, |
87
|
|
|
|
|
|
|
default => sub { 0 }, |
88
|
|
|
|
|
|
|
); |
89
|
|
|
|
|
|
|
|
90
|
|
|
|
|
|
|
has start_at_operation_time => ( |
91
|
|
|
|
|
|
|
is => 'ro', |
92
|
|
|
|
|
|
|
isa => BSONTimestamp, |
93
|
|
|
|
|
|
|
predicate => 'has_start_at_operation_time', |
94
|
|
|
|
|
|
|
); |
95
|
|
|
|
|
|
|
|
96
|
|
|
|
|
|
|
with $_ for qw( |
97
|
|
|
|
|
|
|
MongoDB::Role::_PrivateConstructor |
98
|
|
|
|
|
|
|
MongoDB::Role::_CollectionOp |
99
|
|
|
|
|
|
|
MongoDB::Role::_ReadOp |
100
|
|
|
|
|
|
|
MongoDB::Role::_WriteOp |
101
|
|
|
|
|
|
|
MongoDB::Role::_CommandCursorOp |
102
|
|
|
|
|
|
|
); |
103
|
|
|
|
|
|
|
|
104
|
|
|
|
|
|
|
sub execute { |
105
|
0
|
|
|
0
|
0
|
|
my ( $self, $link, $topology ) = @_; |
106
|
|
|
|
|
|
|
|
107
|
0
|
|
|
|
|
|
my $options = $self->options; |
108
|
0
|
|
|
|
|
|
my $is_2_6 = $link->supports_write_commands; |
109
|
|
|
|
|
|
|
|
110
|
|
|
|
|
|
|
# maxTimeMS isn't available until 2.6 and the aggregate command |
111
|
|
|
|
|
|
|
# will reject it as unrecognized |
112
|
0
|
0
|
|
|
|
|
delete $options->{maxTimeMS} unless $is_2_6; |
113
|
|
|
|
|
|
|
|
114
|
|
|
|
|
|
|
# bypassDocumentValidation isn't available until 3.2 (wire version 4) & dont send if false |
115
|
0
|
0
|
0
|
|
|
|
unless ($link->supports_document_validation && $options->{bypassDocumentValidation}) { |
116
|
0
|
|
|
|
|
|
delete $options->{bypassDocumentValidation}; |
117
|
|
|
|
|
|
|
} |
118
|
|
|
|
|
|
|
|
119
|
0
|
0
|
0
|
|
|
|
if ( defined $options->{collation} and !$link->supports_collation ) { |
120
|
0
|
|
|
|
|
|
MongoDB::UsageError->throw( |
121
|
|
|
|
|
|
|
"MongoDB host '" . $link->address . "' doesn't support collation" ); |
122
|
|
|
|
|
|
|
} |
123
|
|
|
|
|
|
|
|
124
|
|
|
|
|
|
|
# If 'cursor' is explicitly false, we disable using cursors, even |
125
|
|
|
|
|
|
|
# for MongoDB 2.6+. This allows users operating with a 2.6+ mongos |
126
|
|
|
|
|
|
|
# and pre-2.6 mongod in shards to avoid fatal errors. This |
127
|
|
|
|
|
|
|
# workaround should be removed once MongoDB 2.4 is no longer supported. |
128
|
|
|
|
|
|
|
my $use_cursor = $is_2_6 |
129
|
0
|
|
0
|
|
|
|
&& ( !exists( $options->{cursor} ) || $options->{cursor} ); |
130
|
|
|
|
|
|
|
|
131
|
|
|
|
|
|
|
# batchSize is not a command parameter itself like other options |
132
|
0
|
|
|
|
|
|
my $batchSize = delete $options->{batchSize}; |
133
|
|
|
|
|
|
|
|
134
|
|
|
|
|
|
|
# If we're doing cursors, we first respect an explicit batchSize option; |
135
|
|
|
|
|
|
|
# next we fallback to the legacy (deprecated) cursor option batchSize; finally we |
136
|
|
|
|
|
|
|
# just give an empty document. Other than batchSize we ignore any other |
137
|
|
|
|
|
|
|
# legacy cursor options. If we're not doing cursors, don't send any |
138
|
|
|
|
|
|
|
# cursor option at all, as servers will choke on it. |
139
|
0
|
0
|
|
|
|
|
if ($use_cursor) { |
140
|
0
|
0
|
|
|
|
|
if ( defined $batchSize ) { |
|
|
0
|
|
|
|
|
|
141
|
0
|
|
|
|
|
|
$options->{cursor} = { batchSize => $batchSize }; |
142
|
|
|
|
|
|
|
} |
143
|
|
|
|
|
|
|
elsif ( ref $options->{cursor} eq 'HASH' ) { |
144
|
0
|
|
|
|
|
|
$batchSize = $options->{cursor}{batchSize}; |
145
|
0
|
0
|
|
|
|
|
$options->{cursor} = defined($batchSize) ? { batchSize => $batchSize } : {}; |
146
|
|
|
|
|
|
|
} |
147
|
|
|
|
|
|
|
else { |
148
|
0
|
|
|
|
|
|
$options->{cursor} = {}; |
149
|
|
|
|
|
|
|
} |
150
|
|
|
|
|
|
|
} |
151
|
|
|
|
|
|
|
else { |
152
|
0
|
|
|
|
|
|
delete $options->{cursor}; |
153
|
|
|
|
|
|
|
} |
154
|
|
|
|
|
|
|
|
155
|
0
|
0
|
0
|
|
|
|
if ( $self->coll_name eq 1 && ! $link->supports_db_aggregation ) { |
156
|
0
|
|
|
|
|
|
MongoDB::Error->throw( |
157
|
|
|
|
|
|
|
"Calling aggregate with a collection name of '1' is not supported on Wire Version < 6" ); |
158
|
|
|
|
|
|
|
} |
159
|
|
|
|
|
|
|
|
160
|
|
|
|
|
|
|
my @pipeline = ( |
161
|
|
|
|
|
|
|
{'$changeStream' => { |
162
|
|
|
|
|
|
|
($self->has_start_at_operation_time |
163
|
|
|
|
|
|
|
? (startAtOperationTime => $self->start_at_operation_time) |
164
|
|
|
|
|
|
|
: () |
165
|
|
|
|
|
|
|
), |
166
|
|
|
|
|
|
|
($self->all_changes_for_cluster |
167
|
|
|
|
|
|
|
? (allChangesForCluster => true) |
168
|
|
|
|
|
|
|
: () |
169
|
|
|
|
|
|
|
), |
170
|
|
|
|
|
|
|
($self->has_full_document |
171
|
|
|
|
|
|
|
? (fullDocument => $self->full_document) |
172
|
|
|
|
|
|
|
: () |
173
|
|
|
|
|
|
|
), |
174
|
|
|
|
|
|
|
($self->has_resume_after |
175
|
|
|
|
|
|
|
? (resumeAfter => $self->resume_after) |
176
|
|
|
|
|
|
|
: () |
177
|
|
|
|
|
|
|
), |
178
|
|
|
|
|
|
|
($self->has_start_after |
179
|
|
|
|
|
|
|
? (startAfter => $self->start_after) |
180
|
|
|
|
|
|
|
: () |
181
|
|
|
|
|
|
|
), |
182
|
|
|
|
|
|
|
}}, |
183
|
0
|
0
|
|
|
|
|
@{ $self->pipeline }, |
|
0
|
0
|
|
|
|
|
|
|
|
0
|
|
|
|
|
|
|
|
0
|
|
|
|
|
|
|
|
0
|
|
|
|
|
|
184
|
|
|
|
|
|
|
); |
185
|
|
|
|
|
|
|
|
186
|
|
|
|
|
|
|
my @command = ( |
187
|
|
|
|
|
|
|
aggregate => $self->coll_name, |
188
|
|
|
|
|
|
|
pipeline => \@pipeline, |
189
|
|
|
|
|
|
|
%$options, |
190
|
|
|
|
|
|
|
$link->supports_read_concern |
191
|
0
|
0
|
|
|
|
|
? @{ $self->read_concern->as_args( $self->session) } |
|
0
|
|
|
|
|
|
|
192
|
|
|
|
|
|
|
: (), |
193
|
|
|
|
|
|
|
); |
194
|
|
|
|
|
|
|
|
195
|
0
|
|
|
|
|
|
my $op = MongoDB::Op::_Command->_new( |
196
|
|
|
|
|
|
|
db_name => $self->db_name, |
197
|
|
|
|
|
|
|
query => Tie::IxHash->new(@command), |
198
|
|
|
|
|
|
|
query_flags => {}, |
199
|
|
|
|
|
|
|
bson_codec => $self->bson_codec, |
200
|
|
|
|
|
|
|
read_preference => $self->read_preference, |
201
|
|
|
|
|
|
|
session => $self->session, |
202
|
|
|
|
|
|
|
monitoring_callback => $self->monitoring_callback, |
203
|
|
|
|
|
|
|
); |
204
|
|
|
|
|
|
|
|
205
|
0
|
|
|
|
|
|
my $res = $op->execute( $link, $topology ); |
206
|
|
|
|
|
|
|
|
207
|
|
|
|
|
|
|
# Fake up a single-batch cursor if we didn't get a cursor response. |
208
|
|
|
|
|
|
|
# We use the 'results' fields as the first (and only) batch |
209
|
0
|
0
|
|
|
|
|
if ( !$res->output->{cursor} ) { |
210
|
|
|
|
|
|
|
$res->output->{cursor} = { |
211
|
|
|
|
|
|
|
ns => '', |
212
|
|
|
|
|
|
|
id => 0, |
213
|
0
|
|
0
|
|
|
|
firstBatch => ( delete $res->output->{result} ) || [], |
214
|
|
|
|
|
|
|
postBatchResumeToken => 0, |
215
|
|
|
|
|
|
|
}; |
216
|
|
|
|
|
|
|
} |
217
|
|
|
|
|
|
|
|
218
|
|
|
|
|
|
|
return { |
219
|
|
|
|
|
|
|
result => $self->_build_result_from_cursor($res), |
220
|
|
|
|
|
|
|
$link->supports_4_0_changestreams |
221
|
|
|
|
|
|
|
? (operationTime => $res->output->{operationTime}) |
222
|
0
|
0
|
|
|
|
|
: (), |
223
|
|
|
|
|
|
|
}; |
224
|
|
|
|
|
|
|
} |
225
|
|
|
|
|
|
|
|
226
|
|
|
|
|
|
|
1; |