com.mongodb.connection.BulkWriteBatchCombiner 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.connection;
import com.mongodb.MongoBulkWriteException;
import com.mongodb.ServerAddress;
import com.mongodb.WriteConcern;
import com.mongodb.bulk.BulkWriteError;
import com.mongodb.bulk.BulkWriteResult;
import com.mongodb.bulk.BulkWriteUpsert;
import com.mongodb.bulk.WriteConcernError;
import com.mongodb.internal.connection.IndexMap;
import java.util.ArrayList;
import java.util.Comparator;
import java.util.List;
import java.util.Set;
import java.util.TreeSet;
import static com.mongodb.assertions.Assertions.notNull;
import static java.util.Arrays.asList;
/**
* This class is not part of the public API. It may be changed or removed at any time.
*/
@Deprecated
public class BulkWriteBatchCombiner {
private final ServerAddress serverAddress;
private final boolean ordered;
private final WriteConcern writeConcern;
private int insertedCount;
private int matchedCount;
private int deletedCount;
private Integer modifiedCount = 0;
private final Set writeUpserts = new TreeSet(new Comparator() {
@Override
public int compare(final BulkWriteUpsert o1, final BulkWriteUpsert o2) {
return (o1.getIndex() < o2.getIndex()) ? -1 : ((o1.getIndex() == o2.getIndex()) ? 0 : 1);
}
});
private final Set writeErrors = new TreeSet(new Comparator() {
@Override
public int compare(final BulkWriteError o1, final BulkWriteError o2) {
return (o1.getIndex() < o2.getIndex()) ? -1 : ((o1.getIndex() == o2.getIndex()) ? 0 : 1);
}
});
private final List writeConcernErrors = new ArrayList();
/**
* Construct an instance.
*
* @param serverAddress the server address
* @param ordered ordered
* @param writeConcern the write concern
*/
public BulkWriteBatchCombiner(final ServerAddress serverAddress, final boolean ordered, final WriteConcern writeConcern) {
this.writeConcern = notNull("writeConcern", writeConcern);
this.ordered = ordered;
this.serverAddress = notNull("serverAddress", serverAddress);
}
/**
* Add a result
*
* @param result the result
* @param indexMap the index map
*/
public void addResult(final BulkWriteResult result, final IndexMap indexMap) {
insertedCount += result.getInsertedCount();
matchedCount += result.getMatchedCount();
deletedCount += result.getDeletedCount();
if (result.isModifiedCountAvailable() && modifiedCount != null) {
modifiedCount += result.getModifiedCount();
} else {
modifiedCount = null;
}
mergeUpserts(result.getUpserts(), indexMap);
}
/**
* Add an error result
*
* @param exception the exception
* @param indexMap the index map
*/
public void addErrorResult(final MongoBulkWriteException exception, final IndexMap indexMap) {
addResult(exception.getWriteResult(), indexMap);
mergeWriteErrors(exception.getWriteErrors(), indexMap);
mergeWriteConcernError(exception.getWriteConcernError());
}
/**
* Add a write error result
*
* @param writeError the write error
* @param indexMap the index map
*/
public void addWriteErrorResult(final BulkWriteError writeError, final IndexMap indexMap) {
notNull("writeError", writeError);
mergeWriteErrors(asList(writeError), indexMap);
}
/**
* Add a write concern error result
*
* @param writeConcernError the write concern error
*/
public void addWriteConcernErrorResult(final WriteConcernError writeConcernError) {
notNull("writeConcernError", writeConcernError);
mergeWriteConcernError(writeConcernError);
}
/**
* Add a list of error results and a write concern error
*
* @param writeErrors the errors
* @param writeConcernError the write concern error
* @param indexMap the index map
*/
public void addErrorResult(final List writeErrors,
final WriteConcernError writeConcernError, final IndexMap indexMap) {
mergeWriteErrors(writeErrors, indexMap);
mergeWriteConcernError(writeConcernError);
}
/**
* Gets the combined result.
*
* @return the result
*/
public BulkWriteResult getResult() {
throwOnError();
return createResult();
}
/**
* True if ordered and has write errors.
*
* @return true if no more batches should be sent
*/
public boolean shouldStopSendingMoreBatches() {
return ordered && hasWriteErrors();
}
/**
* Gets whether there are errors in the combined result.
*
* @return whether there are errors in the combined result
*/
public boolean hasErrors() {
return hasWriteErrors() || hasWriteConcernErrors();
}
/**
* Gets the combined errors as an exception
* @return the bulk write exception, or null if there were no errors
*/
public MongoBulkWriteException getError() {
return hasErrors() ? new MongoBulkWriteException(createResult(),
new ArrayList(writeErrors),
writeConcernErrors.isEmpty() ? null
: writeConcernErrors.get(writeConcernErrors.size() - 1),
serverAddress) : null;
}
private void mergeWriteConcernError(final WriteConcernError writeConcernError) {
if (writeConcernError != null) {
if (writeConcernErrors.isEmpty()) {
writeConcernErrors.add(writeConcernError);
} else if (!writeConcernError.equals(writeConcernErrors.get(writeConcernErrors.size() - 1))) {
writeConcernErrors.add(writeConcernError);
}
}
}
private void mergeWriteErrors(final List newWriteErrors, final IndexMap indexMap) {
for (BulkWriteError cur : newWriteErrors) {
this.writeErrors.add(new BulkWriteError(cur.getCode(), cur.getMessage(), cur.getDetails(), indexMap.map(cur.getIndex())
));
}
}
private void mergeUpserts(final List upserts, final IndexMap indexMap) {
for (BulkWriteUpsert bulkWriteUpsert : upserts) {
writeUpserts.add(new BulkWriteUpsert(indexMap.map(bulkWriteUpsert.getIndex()), bulkWriteUpsert.getId()));
}
}
private void throwOnError() {
if (hasErrors()) {
throw getError();
}
}
private BulkWriteResult createResult() {
return writeConcern.isAcknowledged()
? BulkWriteResult.acknowledged(insertedCount, matchedCount, deletedCount, modifiedCount,
new ArrayList(writeUpserts))
: BulkWriteResult.unacknowledged();
}
private boolean hasWriteErrors() {
return !writeErrors.isEmpty();
}
private boolean hasWriteConcernErrors() {
return !writeConcernErrors.isEmpty();
}
}