/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

  1. /*
  2. * Copyright (c) 2008-2014 MongoDB, Inc.
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16. package com.mongodb.operation;
  17. import com.mongodb.MongoWriteConcernException;
  18. import com.mongodb.ServerAddress;
  19. import com.mongodb.WriteConcernResult;
  20. import com.mongodb.bulk.WriteConcernError;
  21. import com.mongodb.operation.CommandOperationHelper.CommandTransformer;
  22. import org.bson.BsonBoolean;
  23. import org.bson.BsonDocument;
  24. import org.bson.BsonInt32;
  25. final class FindAndModifyHelper {
  26. static <T> CommandTransformer<BsonDocument, T> transformer() {
  27. return new CommandTransformer<BsonDocument, T>() {
  28. @SuppressWarnings("unchecked")
  29. @Override
  30. public T apply(final BsonDocument result, final ServerAddress serverAddress) {
  31. if (result.containsKey("writeConcernError")) {
  32. throw new MongoWriteConcernException(createWriteConcernError(result.getDocument("writeConcernError")),
  33. createWriteConcernResult(result.getDocument("lastErrorObject",
  34. new BsonDocument())),
  35. serverAddress);
  36. }
  37. if (!result.isDocument("value")) {
  38. return null;
  39. }
  40. return BsonDocumentWrapperHelper.toDocument(result.getDocument("value", null));
  41. }
  42. };
  43. }
  44. private static WriteConcernError createWriteConcernError(final BsonDocument writeConcernErrorDocument) {
  45. return new WriteConcernError(writeConcernErrorDocument.getNumber("code").intValue(),
  46. writeConcernErrorDocument.getString("errmsg").getValue(),
  47. writeConcernErrorDocument.getDocument("errInfo", new BsonDocument()));
  48. }
  49. private static WriteConcernResult createWriteConcernResult(final BsonDocument result) {
  50. BsonBoolean updatedExisting = result.getBoolean("updatedExisting", BsonBoolean.FALSE);
  51. return WriteConcernResult.acknowledged(result.getNumber("n", new BsonInt32(0)).intValue(),
  52. updatedExisting.getValue(), result.get("upserted"));
  53. }
  54. private FindAndModifyHelper() {
  55. }
  56. }