com.mongodb.connection.DeleteCommandMessage Maven / Gradle / Ivy
/*
* Copyright (c) 2008-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
*
* 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.connection;
import com.mongodb.MongoNamespace;
import com.mongodb.WriteConcern;
import com.mongodb.bulk.DeleteRequest;
import com.mongodb.internal.validator.NoOpFieldNameValidator;
import org.bson.BsonBinaryWriter;
import org.bson.FieldNameValidator;
import org.bson.codecs.EncoderContext;
import org.bson.io.BsonOutput;
import java.util.Collections;
import java.util.List;
/**
* A message for the delete command.
*
* @mongodb.driver.manual reference/command/insert/#dbcmd.delete Delete Command
*/
class DeleteCommandMessage extends BaseWriteCommandMessage {
private final List deletes;
/**
* Construct an instance.
*
* @param namespace the namespace
* @param ordered whether the writes are ordered
* @param writeConcern the write concern
* @param settings the message settings
* @param deletes the list of delete requests
*/
public DeleteCommandMessage(final MongoNamespace namespace, final boolean ordered, final WriteConcern writeConcern,
final MessageSettings settings, final List deletes) {
super(namespace, ordered, writeConcern, null, settings);
this.deletes = deletes;
}
@Override
public int getItemCount() {
return deletes.size();
}
@Override
protected FieldNameValidator getFieldNameValidator() {
return new NoOpFieldNameValidator();
}
/**
* Gets the list of requests.
*
* @return the list of requests
*/
public List getRequests() {
return Collections.unmodifiableList(deletes);
}
@Override
protected String getCommandName() {
return "delete";
}
@Override
protected BaseWriteCommandMessage writeTheWrites(final BsonOutput bsonOutput, final int commandStartPosition,
final BsonBinaryWriter writer) {
DeleteCommandMessage nextMessage = null;
writer.writeStartArray("deletes");
for (int i = 0; i < deletes.size(); i++) {
writer.mark();
DeleteRequest deleteRequest = deletes.get(i);
writer.writeStartDocument();
writer.pushMaxDocumentSize(getSettings().getMaxDocumentSize());
writer.writeName("q");
getCodec(deleteRequest.getFilter()).encode(writer, deleteRequest.getFilter(), EncoderContext.builder().build());
writer.writeInt32("limit", deleteRequest.isMulti() ? 0 : 1);
writer.popMaxDocumentSize();
writer.writeEndDocument();
if (exceedsLimits(bsonOutput.getPosition() - commandStartPosition, i + 1)) {
writer.reset();
nextMessage = new DeleteCommandMessage(getWriteNamespace(), isOrdered(), getWriteConcern(), getSettings(),
deletes.subList(i, deletes.size()));
break;
}
}
writer.writeEndArray();
return nextMessage;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy