com.mongodb.internal.connection.CommandProtocolImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mongodb-driver-core Show documentation
Show all versions of mongodb-driver-core Show documentation
The Java operations layer for the MongoDB Java Driver. Third parties can ' +
'wrap this layer to provide custom higher-level APIs
/*
* Copyright 2008-present 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.
*/
package com.mongodb.internal.connection;
import com.mongodb.MongoNamespace;
import com.mongodb.ReadPreference;
import com.mongodb.async.SingleResultCallback;
import com.mongodb.connection.ClusterConnectionMode;
import com.mongodb.connection.SplittablePayload;
import com.mongodb.session.SessionContext;
import org.bson.BsonDocument;
import org.bson.FieldNameValidator;
import org.bson.codecs.Decoder;
import static com.mongodb.assertions.Assertions.isTrueArgument;
import static com.mongodb.assertions.Assertions.notNull;
import static com.mongodb.internal.connection.ProtocolHelper.getMessageSettings;
class CommandProtocolImpl implements CommandProtocol {
private final MongoNamespace namespace;
private final BsonDocument command;
private final SplittablePayload payload;
private final ReadPreference readPreference;
private final FieldNameValidator commandFieldNameValidator;
private final FieldNameValidator payloadFieldNameValidator;
private final Decoder commandResultDecoder;
private final boolean responseExpected;
private final ClusterConnectionMode clusterConnectionMode;
private SessionContext sessionContext;
CommandProtocolImpl(final String database, final BsonDocument command, final FieldNameValidator commandFieldNameValidator,
final ReadPreference readPreference, final Decoder commandResultDecoder) {
this(database, command, commandFieldNameValidator, readPreference, commandResultDecoder, true, null, null,
ClusterConnectionMode.MULTIPLE);
}
CommandProtocolImpl(final String database, final BsonDocument command, final FieldNameValidator commandFieldNameValidator,
final ReadPreference readPreference, final Decoder commandResultDecoder, final boolean responseExpected,
final SplittablePayload payload, final FieldNameValidator payloadFieldNameValidator,
final ClusterConnectionMode clusterConnectionMode) {
notNull("database", database);
this.namespace = new MongoNamespace(notNull("database", database), MongoNamespace.COMMAND_COLLECTION_NAME);
this.command = notNull("command", command);
this.commandFieldNameValidator = notNull("commandFieldNameValidator", commandFieldNameValidator);
this.readPreference = readPreference;
this.commandResultDecoder = notNull("commandResultDecoder", commandResultDecoder);
this.responseExpected = responseExpected;
this.payload = payload;
this.payloadFieldNameValidator = payloadFieldNameValidator;
this.clusterConnectionMode = notNull("clusterConnectionMode", clusterConnectionMode);
isTrueArgument("payloadFieldNameValidator cannot be null if there is a payload.",
payload == null || payloadFieldNameValidator != null);
}
@Override
public T execute(final InternalConnection connection) {
return connection.sendAndReceive(getCommandMessage(connection), commandResultDecoder, sessionContext);
}
@Override
public void executeAsync(final InternalConnection connection, final SingleResultCallback callback) {
try {
connection.sendAndReceiveAsync(getCommandMessage(connection), commandResultDecoder, sessionContext,
new SingleResultCallback() {
@Override
public void onResult(final T result, final Throwable t) {
if (t != null) {
callback.onResult(null, t);
} else {
callback.onResult(result, null);
}
}
});
} catch (Throwable t) {
callback.onResult(null, t);
}
}
@Override
public CommandProtocolImpl sessionContext(final SessionContext sessionContext) {
this.sessionContext = sessionContext;
return this;
}
private CommandMessage getCommandMessage(final InternalConnection connection) {
return new CommandMessage(namespace, command, commandFieldNameValidator, readPreference,
getMessageSettings(connection.getDescription()), responseExpected, payload,
payloadFieldNameValidator, clusterConnectionMode);
}
}