All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.mongodb.operation.FindAndModifyHelper 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.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  CommandTransformer transformer() {
        return new CommandTransformer() {
            @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() {
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy