com.mongodb.BulkWriteHelper 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 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;
import org.bson.BsonDocument;
import org.bson.BsonDocumentReader;
import org.bson.codecs.Decoder;
import org.bson.codecs.DecoderContext;
import java.util.ArrayList;
import java.util.List;
final class BulkWriteHelper {
static BulkWriteResult translateBulkWriteResult(final com.mongodb.bulk.BulkWriteResult bulkWriteResult,
final Decoder decoder) {
if (bulkWriteResult.wasAcknowledged()) {
return new AcknowledgedBulkWriteResult(bulkWriteResult.getInsertedCount(), bulkWriteResult.getMatchedCount(),
bulkWriteResult.getDeletedCount(), bulkWriteResult.getModifiedCount(),
translateBulkWriteUpserts(bulkWriteResult.getUpserts(), decoder));
} else {
return new UnacknowledgedBulkWriteResult();
}
}
static List translateBulkWriteUpserts(final List upserts,
final Decoder decoder) {
List retVal = new ArrayList(upserts.size());
for (com.mongodb.bulk.BulkWriteUpsert cur : upserts) {
retVal.add(new com.mongodb.BulkWriteUpsert(cur.getIndex(), getUpsertedId(cur, decoder)));
}
return retVal;
}
private static Object getUpsertedId(final com.mongodb.bulk.BulkWriteUpsert cur, final Decoder decoder) {
return decoder.decode(new BsonDocumentReader(new BsonDocument("_id", cur.getId())), DecoderContext.builder().build()).get("_id");
}
static BulkWriteException translateBulkWriteException(final MongoBulkWriteException e, final Decoder decoder) {
return new BulkWriteException(translateBulkWriteResult(e.getWriteResult(), decoder), translateWriteErrors(e.getWriteErrors()),
translateWriteConcernError(e.getWriteConcernError()), e.getServerAddress());
}
static WriteConcernError translateWriteConcernError(final com.mongodb.bulk.WriteConcernError writeConcernError) {
return writeConcernError == null ? null : new WriteConcernError(writeConcernError.getCode(), writeConcernError.getMessage(),
DBObjects.toDBObject(writeConcernError.getDetails()));
}
static List translateWriteErrors(final List errors) {
List retVal = new ArrayList(errors.size());
for (com.mongodb.bulk.BulkWriteError cur : errors) {
retVal.add(new BulkWriteError(cur.getCode(), cur.getMessage(), DBObjects.toDBObject(cur.getDetails()), cur.getIndex()));
}
return retVal;
}
private BulkWriteHelper() {
}
}