/driver-core/src/main/com/mongodb/operation/FindAndModifyHelper.java
http://github.com/mongodb/mongo-java-driver · Java · 65 lines · 41 code · 9 blank · 15 comment · 2 complexity · 573b68bfadc209c17b0f21405f229a1d MD5 · raw file
- /*
- * 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.operation;
- import com.mongodb.MongoWriteConcernException;
- import com.mongodb.ServerAddress;
- import com.mongodb.WriteConcernResult;
- import com.mongodb.bulk.WriteConcernError;
- import com.mongodb.operation.CommandOperationHelper.CommandTransformer;
- import org.bson.BsonBoolean;
- import org.bson.BsonDocument;
- import org.bson.BsonInt32;
- final class FindAndModifyHelper {
- static <T> CommandTransformer<BsonDocument, T> transformer() {
- return new CommandTransformer<BsonDocument, T>() {
- @SuppressWarnings("unchecked")
- @Override
- public T apply(final BsonDocument result, final ServerAddress serverAddress) {
- if (result.containsKey("writeConcernError")) {
- throw new MongoWriteConcernException(createWriteConcernError(result.getDocument("writeConcernError")),
- createWriteConcernResult(result.getDocument("lastErrorObject",
- new BsonDocument())),
- serverAddress);
- }
- if (!result.isDocument("value")) {
- return null;
- }
- return BsonDocumentWrapperHelper.toDocument(result.getDocument("value", null));
- }
- };
- }
- private static WriteConcernError createWriteConcernError(final BsonDocument writeConcernErrorDocument) {
- return new WriteConcernError(writeConcernErrorDocument.getNumber("code").intValue(),
- writeConcernErrorDocument.getString("errmsg").getValue(),
- writeConcernErrorDocument.getDocument("errInfo", new BsonDocument()));
- }
- private static WriteConcernResult createWriteConcernResult(final BsonDocument result) {
- BsonBoolean updatedExisting = result.getBoolean("updatedExisting", BsonBoolean.FALSE);
- return WriteConcernResult.acknowledged(result.getNumber("n", new BsonInt32(0)).intValue(),
- updatedExisting.getValue(), result.get("upserted"));
- }
- private FindAndModifyHelper() {
- }
- }