/driver-core/src/main/com/mongodb/operation/UpdateOperation.java

http://github.com/mongodb/mongo-java-driver · Java · 121 lines · 74 code · 14 blank · 33 comment · 6 complexity · 7b37473fed9d7321ee4e45f1eb98129a 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.MongoNamespace;
  18. import com.mongodb.WriteConcern;
  19. import com.mongodb.WriteConcernResult;
  20. import com.mongodb.async.SingleResultCallback;
  21. import com.mongodb.bulk.BulkWriteResult;
  22. import com.mongodb.bulk.UpdateRequest;
  23. import com.mongodb.bulk.WriteRequest;
  24. import com.mongodb.connection.AsyncConnection;
  25. import com.mongodb.connection.Connection;
  26. import java.util.List;
  27. import static com.mongodb.assertions.Assertions.notNull;
  28. import static com.mongodb.operation.OperationHelper.AsyncCallableWithConnection;
  29. import static com.mongodb.operation.OperationHelper.checkValidWriteRequestCollations;
  30. /**
  31. * An operation that updates a document in a collection.
  32. *
  33. * @since 3.0
  34. */
  35. public class UpdateOperation extends BaseWriteOperation {
  36. private final List<UpdateRequest> updates;
  37. /**
  38. * Construct an instance.
  39. *
  40. * @param namespace the database and collection namespace for the operation.
  41. * @param ordered whether the updates are ordered.
  42. * @param writeConcern the write concern for the operation.
  43. * @param updates the update requests.
  44. */
  45. public UpdateOperation(final MongoNamespace namespace, final boolean ordered, final WriteConcern writeConcern,
  46. final List<UpdateRequest> updates) {
  47. super(namespace, ordered, writeConcern);
  48. this.updates = notNull("update", updates);
  49. }
  50. /**
  51. * Gets the list of update requests.
  52. *
  53. * @return the update requests
  54. */
  55. public List<UpdateRequest> getUpdateRequests() {
  56. return updates;
  57. }
  58. @Override
  59. protected WriteConcernResult executeProtocol(final Connection connection) {
  60. checkValidWriteRequestCollations(connection, updates);
  61. return connection.update(getNamespace(), isOrdered(), getWriteConcern(), updates);
  62. }
  63. @Override
  64. protected void executeProtocolAsync(final AsyncConnection connection, final SingleResultCallback<WriteConcernResult> callback) {
  65. checkValidWriteRequestCollations(connection, updates, new AsyncCallableWithConnection(){
  66. @Override
  67. public void call(final AsyncConnection connection, final Throwable t) {
  68. if (t != null) {
  69. callback.onResult(null, t);
  70. } else {
  71. connection.updateAsync(getNamespace(), isOrdered(), getWriteConcern(), updates, callback);
  72. }
  73. }
  74. });
  75. }
  76. @Override
  77. protected BulkWriteResult executeCommandProtocol(final Connection connection) {
  78. checkValidWriteRequestCollations(connection, updates);
  79. return connection.updateCommand(getNamespace(), isOrdered(), getWriteConcern(), getBypassDocumentValidation(), updates);
  80. }
  81. @Override
  82. protected void executeCommandProtocolAsync(final AsyncConnection connection, final SingleResultCallback<BulkWriteResult> callback) {
  83. checkValidWriteRequestCollations(connection, updates, new AsyncCallableWithConnection(){
  84. @Override
  85. public void call(final AsyncConnection connection, final Throwable t) {
  86. if (t != null) {
  87. callback.onResult(null, t);
  88. } else {
  89. connection.updateCommandAsync(getNamespace(), isOrdered(), getWriteConcern(), getBypassDocumentValidation(), updates,
  90. callback);
  91. }
  92. }
  93. });
  94. }
  95. @Override
  96. protected WriteRequest.Type getType() {
  97. return WriteRequest.Type.UPDATE;
  98. }
  99. @Override
  100. protected int getCount(final BulkWriteResult bulkWriteResult) {
  101. return bulkWriteResult.getMatchedCount() + bulkWriteResult.getUpserts().size();
  102. }
  103. @Override
  104. protected boolean getUpdatedExisting(final BulkWriteResult bulkWriteResult) {
  105. return bulkWriteResult.getMatchedCount() > 0;
  106. }
  107. }