com.mongodb.connection.UpdateCommandMessage Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mongo-java-driver Show documentation
Show all versions of mongo-java-driver Show documentation
The MongoDB Java Driver uber-artifact, containing mongodb-driver, mongodb-driver-core, and bson
The newest version!
/*
* 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.UpdateRequest;
import com.mongodb.bulk.WriteRequest;
import com.mongodb.internal.validator.CollectibleDocumentFieldNameValidator;
import com.mongodb.internal.validator.MappedFieldNameValidator;
import com.mongodb.internal.validator.NoOpFieldNameValidator;
import com.mongodb.internal.validator.UpdateFieldNameValidator;
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.HashMap;
import java.util.List;
import java.util.Map;
/**
* A message for the update command.
*
* @mongodb.driver.manual reference/command/insert/#dbcmd.update Update Command
*/
class UpdateCommandMessage extends BaseWriteCommandMessage {
private final List updates;
/**
* Construct an instance.
*
* @param namespace the namespace
* @param ordered whether the writes are ordered
* @param writeConcern the write concern
* @param updates the list of update requests
* @param settings the message settings
*/
public UpdateCommandMessage(final MongoNamespace namespace, final boolean ordered, final WriteConcern writeConcern,
final List updates,
final MessageSettings settings) {
super(namespace, ordered, writeConcern, settings);
this.updates = updates;
}
/**
* Gets the update requests.
*
* @return the list of update requests
*/
public List getRequests() {
return Collections.unmodifiableList(updates);
}
@Override
protected UpdateCommandMessage writeTheWrites(final BsonOutput bsonOutput, final int commandStartPosition,
final BsonBinaryWriter writer) {
UpdateCommandMessage nextMessage = null;
writer.writeStartArray("updates");
for (int i = 0; i < updates.size(); i++) {
writer.mark();
UpdateRequest update = updates.get(i);
writer.writeStartDocument();
writer.pushMaxDocumentSize(getSettings().getMaxDocumentSize());
writer.writeName("q");
getCodec(update.getFilter()).encode(writer, update.getFilter(), EncoderContext.builder().build());
writer.writeName("u");
int bufferPosition = bsonOutput.getPosition();
getCodec(update.getUpdate()).encode(writer, update.getUpdate(), EncoderContext.builder().build());
if (update.getType() == WriteRequest.Type.UPDATE && bsonOutput.getPosition() == bufferPosition + 8) {
throw new IllegalArgumentException("Invalid BSON document for an update");
}
if (update.isMulti()) {
writer.writeBoolean("multi", update.isMulti());
}
if (update.isUpsert()) {
writer.writeBoolean("upsert", update.isUpsert());
}
writer.popMaxDocumentSize();
writer.writeEndDocument();
if (exceedsLimits(bsonOutput.getPosition() - commandStartPosition, i + 1)) {
writer.reset();
nextMessage = new UpdateCommandMessage(getWriteNamespace(),
isOrdered(),
getWriteConcern(),
updates.subList(i, updates.size()),
getSettings());
break;
}
}
writer.writeEndArray();
return nextMessage;
}
@Override
public int getItemCount() {
return updates.size();
}
@Override
protected FieldNameValidator getFieldNameValidator() {
Map rootMap = new HashMap();
rootMap.put("updates", new UpdatesValidator());
return new MappedFieldNameValidator(new NoOpFieldNameValidator(), rootMap);
}
@Override
protected String getCommandName() {
return "update";
}
private class UpdatesValidator implements FieldNameValidator {
private int i = 0;
@Override
public boolean validate(final String fieldName) {
return true;
}
@Override
public FieldNameValidator getValidatorForField(final String fieldName) {
if (!fieldName.equals("u")) {
return new NoOpFieldNameValidator();
}
UpdateRequest updateRequest = getRequests().get(i);
i++;
if (updateRequest.getType() == WriteRequest.Type.REPLACE) {
return new CollectibleDocumentFieldNameValidator();
} else {
return new UpdateFieldNameValidator();
}
}
}
}