/driver/src/main/com/mongodb/WriteResult.java

http://github.com/mongodb/mongo-java-driver · Java · 133 lines · 54 code · 16 blank · 63 comment · 3 complexity · 89192243f86b85500ffe9399aa3aa914 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;
  17. /**
  18. * This class lets you access the results of the previous acknowledged write. If the write was unacknowledged, all property access
  19. * methods will throw {@link java.lang.UnsupportedOperationException}.
  20. *
  21. * @see WriteConcern#UNACKNOWLEDGED
  22. */
  23. public class WriteResult {
  24. private final boolean acknowledged;
  25. private final int n;
  26. private final boolean updateOfExisting;
  27. private final Object upsertedId;
  28. /**
  29. * Gets an instance representing an unacknowledged write.
  30. *
  31. * @return an instance representing an unacknowledged write
  32. * @since 3.0
  33. */
  34. public static WriteResult unacknowledged() {
  35. return new WriteResult();
  36. }
  37. /**
  38. * Construct a new instance.
  39. *
  40. * @param n the number of existing documents affected by this operation
  41. * @param updateOfExisting true if the operation was an update and an existing document was updated
  42. * @param upsertedId the _id of a document that was upserted by this operation
  43. */
  44. public WriteResult(final int n, final boolean updateOfExisting, final Object upsertedId) {
  45. this.acknowledged = true;
  46. this.n = n;
  47. this.updateOfExisting = updateOfExisting;
  48. this.upsertedId = upsertedId;
  49. }
  50. WriteResult() {
  51. acknowledged = false;
  52. n = 0;
  53. updateOfExisting = false;
  54. upsertedId = null;
  55. }
  56. /**
  57. * Returns true if the write was acknowledged.
  58. *
  59. * @return true if the write was acknowledged
  60. * @see com.mongodb.WriteConcern#UNACKNOWLEDGED
  61. * @since 3.0
  62. */
  63. public boolean wasAcknowledged() {
  64. return acknowledged;
  65. }
  66. /**
  67. * Gets the "n" field, which contains the number of documents affected in the write operation.
  68. *
  69. * @return the value of the "n" field
  70. * @throws java.lang.UnsupportedOperationException if the write was unacknowledged
  71. * @see WriteConcern#UNACKNOWLEDGED
  72. */
  73. public int getN() {
  74. throwIfUnacknowledged("n");
  75. return n;
  76. }
  77. /**
  78. * Gets the _id value of an upserted document that resulted from this write. Note that for MongoDB servers prior to version 2.6,
  79. * this method will return null unless the _id of the upserted document was of type ObjectId.
  80. *
  81. * @return the value of the _id of an upserted document
  82. * @throws java.lang.UnsupportedOperationException if the write was unacknowledged
  83. * @since 2.12
  84. */
  85. public Object getUpsertedId() {
  86. throwIfUnacknowledged("upsertedId");
  87. return upsertedId;
  88. }
  89. /**
  90. * Returns true if this write resulted in an update of an existing document.
  91. *
  92. * @return whether the write resulted in an update of an existing document.
  93. * @throws java.lang.UnsupportedOperationException if the write was unacknowledged
  94. * @since 2.12
  95. */
  96. public boolean isUpdateOfExisting() {
  97. throwIfUnacknowledged("updateOfExisting");
  98. return updateOfExisting;
  99. }
  100. @Override
  101. public String toString() {
  102. if (acknowledged) {
  103. return "WriteResult{"
  104. + ", n=" + n
  105. + ", updateOfExisting=" + updateOfExisting
  106. + ", upsertedId=" + upsertedId
  107. + '}';
  108. } else {
  109. return "WriteResult{acknowledged=false}";
  110. }
  111. }
  112. private void throwIfUnacknowledged(final String property) {
  113. if (!acknowledged) {
  114. throw new UnsupportedOperationException("Cannot get " + property + " property for an unacknowledged write");
  115. }
  116. }
  117. }