/driver-core/src/main/com/mongodb/CreateIndexCommitQuorum.java

http://github.com/mongodb/mongo-java-driver · Java · 163 lines · 90 code · 27 blank · 46 comment · 14 complexity · 152befe505be77918fb445da0ce45c0e MD5 · raw file

  1. /*
  2. * Copyright 2008-present 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. import org.bson.BsonInt32;
  18. import org.bson.BsonString;
  19. import org.bson.BsonValue;
  20. import static com.mongodb.assertions.Assertions.notNull;
  21. /**
  22. * A commit quorum specifies how many data-bearing members of a replica set, including the primary, must
  23. * complete the index builds successfully before the primary marks the indexes as ready.
  24. *
  25. * @mongodb.driver.manual reference/command/createIndexes/ Create indexes
  26. * @mongodb.server.release 4.4
  27. * @since 4.1
  28. */
  29. public abstract class CreateIndexCommitQuorum {
  30. /**
  31. * A create index commit quorum of majority.
  32. */
  33. public static final CreateIndexCommitQuorum MAJORITY = new CreateIndexCommitQuorumWithMode("majority");
  34. /**
  35. * A create index commit quorum of voting members.
  36. */
  37. public static final CreateIndexCommitQuorum VOTING_MEMBERS = new CreateIndexCommitQuorumWithMode("votingMembers");
  38. /**
  39. * Create a create index commit quorum with a mode value.
  40. *
  41. * @param mode the mode value
  42. * @return a create index commit quorum of the specified mode
  43. */
  44. public static CreateIndexCommitQuorum create(final String mode) {
  45. return new CreateIndexCommitQuorumWithMode(mode);
  46. }
  47. /**
  48. * Create a create index commit quorum with a w value.
  49. *
  50. * @param w the w value
  51. * @return a create index commit quorum with the specified w value
  52. */
  53. public static CreateIndexCommitQuorum create(final int w) {
  54. return new CreateIndexCommitQuorumWithW(w);
  55. }
  56. /**
  57. * Converts the create index commit quorum to a Bson value.
  58. *
  59. * @return the BsonValue that represents the create index commit quorum
  60. */
  61. public abstract BsonValue toBsonValue();
  62. private CreateIndexCommitQuorum() {
  63. }
  64. private static final class CreateIndexCommitQuorumWithMode extends CreateIndexCommitQuorum {
  65. private final String mode;
  66. private CreateIndexCommitQuorumWithMode(final String mode) {
  67. notNull("mode", mode);
  68. this.mode = mode;
  69. }
  70. public String getMode() {
  71. return mode;
  72. }
  73. @Override
  74. public BsonValue toBsonValue() {
  75. return new BsonString(mode);
  76. }
  77. @Override
  78. public boolean equals(final Object o) {
  79. if (this == o) {
  80. return true;
  81. }
  82. if (o == null || getClass() != o.getClass()) {
  83. return false;
  84. }
  85. CreateIndexCommitQuorumWithMode that = (CreateIndexCommitQuorumWithMode) o;
  86. return mode.equals(that.mode);
  87. }
  88. @Override
  89. public int hashCode() {
  90. return mode.hashCode();
  91. }
  92. @Override
  93. public String toString() {
  94. return "CreateIndexCommitQuorum{"
  95. + "mode=" + mode
  96. + '}';
  97. }
  98. }
  99. private static final class CreateIndexCommitQuorumWithW extends CreateIndexCommitQuorum {
  100. private final int w;
  101. private CreateIndexCommitQuorumWithW(final int w) {
  102. if (w < 0) {
  103. throw new IllegalArgumentException("w cannot be less than zero");
  104. }
  105. this.w = w;
  106. }
  107. public int getW() {
  108. return w;
  109. }
  110. @Override
  111. public BsonValue toBsonValue() {
  112. return new BsonInt32(w);
  113. }
  114. @Override
  115. public boolean equals(final Object o) {
  116. if (this == o) {
  117. return true;
  118. }
  119. if (o == null || getClass() != o.getClass()) {
  120. return false;
  121. }
  122. CreateIndexCommitQuorumWithW that = (CreateIndexCommitQuorumWithW) o;
  123. return w == that.w;
  124. }
  125. @Override
  126. public int hashCode() {
  127. return w;
  128. }
  129. @Override
  130. public String toString() {
  131. return "CreateIndexCommitQuorum{"
  132. + "w=" + w
  133. + '}';
  134. }
  135. }
  136. }