#
# Copyright 2014 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
#
#
# 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.
#
# Encapsulate running a command and returning a MongoDB::CommandResult
use version;
our $VERSION = 'v0.999.999.6'; # TRIAL
use Moo;
Document
);
HashRef
Str
);
has db_name => (
is => 'ro',
required => 1,
isa => Str,
);
has query => (
is => 'ro',
required => 1,
writer => '_set_query',
isa => Document,
);
has query_flags => (
is => 'ro',
required => 1,
isa => HashRef,
);
with $_ for qw(
MongoDB::Role::_PrivateConstructor
MongoDB::Role::_CommandOp
MongoDB::Role::_ReadOp
MongoDB::Role::_ReadPrefModifier
);
sub execute {
my ( $self, $link, $topology_type ) = @_;
$topology_type ||= 'Single'; # if not specified, assume direct
$self->_apply_read_prefs( $link, $topology_type );
my $res = MongoDB::CommandResult->_new(
output => $self->_send_command( $link, $self->query, $self->query_flags ),
address => $link->address
);
$res->assert;
return $res;
}
1;