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

http://github.com/mongodb/mongo-java-driver · Java · 222 lines · 103 code · 25 blank · 94 comment · 21 complexity · 30c049d22b540a067ce5ee60f617b877 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 com.mongodb.annotations.Immutable;
  18. import com.mongodb.annotations.NotThreadSafe;
  19. import com.mongodb.lang.Nullable;
  20. import com.mongodb.session.ClientSession;
  21. import java.util.Objects;
  22. import static com.mongodb.assertions.Assertions.notNull;
  23. /**
  24. * The options to apply to a {@code ClientSession}.
  25. *
  26. * @mongodb.server.release 3.6
  27. * @since 3.6
  28. * @see ClientSession
  29. * @mongodb.driver.dochub core/causal-consistency Causal Consistency
  30. */
  31. @Immutable
  32. public final class ClientSessionOptions {
  33. private final Boolean causallyConsistent;
  34. private final Boolean snapshot;
  35. private final TransactionOptions defaultTransactionOptions;
  36. /**
  37. * Whether operations using the session should causally consistent with each other.
  38. *
  39. * @return whether operations using the session should be causally consistent. A null value indicates to use the global default,
  40. * which is currently true.
  41. * @mongodb.driver.dochub core/causal-consistency Causal Consistency
  42. */
  43. @Nullable
  44. public Boolean isCausallyConsistent() {
  45. return causallyConsistent;
  46. }
  47. /**
  48. * Whether read operations using this session should all share the same snapshot.
  49. *
  50. * @return whether read operations using this session should all share the same snapshot. A null value indicates to use the global
  51. * default, which is false.
  52. * @since 4.3
  53. * @mongodb.server.release 5.0
  54. * @mongodb.driver.manual reference/read-concern-snapshot/#read-concern-and-atclustertime Snapshot reads
  55. */
  56. @Nullable
  57. public Boolean isSnapshot() {
  58. return snapshot;
  59. }
  60. /**
  61. * Gets the default transaction options for the session.
  62. *
  63. * @return the default transaction options for the session
  64. * @since 3.8
  65. * @mongodb.server.release 4.0
  66. */
  67. public TransactionOptions getDefaultTransactionOptions() {
  68. return defaultTransactionOptions;
  69. }
  70. @Override
  71. public boolean equals(final Object o) {
  72. if (this == o) {
  73. return true;
  74. }
  75. if (o == null || getClass() != o.getClass()) {
  76. return false;
  77. }
  78. ClientSessionOptions that = (ClientSessionOptions) o;
  79. if (!Objects.equals(causallyConsistent, that.causallyConsistent)) {
  80. return false;
  81. }
  82. if (!Objects.equals(snapshot, that.snapshot)) {
  83. return false;
  84. }
  85. if (!Objects.equals(defaultTransactionOptions, that.defaultTransactionOptions)) {
  86. return false;
  87. }
  88. return true;
  89. }
  90. @Override
  91. public int hashCode() {
  92. int result = causallyConsistent != null ? causallyConsistent.hashCode() : 0;
  93. result = 31 * result + (snapshot != null ? snapshot.hashCode() : 0);
  94. result = 31 * result + (defaultTransactionOptions != null ? defaultTransactionOptions.hashCode() : 0);
  95. return result;
  96. }
  97. @Override
  98. public String toString() {
  99. return "ClientSessionOptions{"
  100. + "causallyConsistent=" + causallyConsistent
  101. + "snapshot=" + snapshot
  102. + ", defaultTransactionOptions=" + defaultTransactionOptions
  103. + '}';
  104. }
  105. /**
  106. * Gets an instance of a builder
  107. *
  108. * @return a builder instance
  109. */
  110. public static Builder builder() {
  111. return new Builder();
  112. }
  113. /**
  114. * Gets an instance of a builder initialized with the given options
  115. *
  116. * @param options the options with which to initialize the builder
  117. * @return a builder instance
  118. * @since 3.8
  119. */
  120. public static Builder builder(final ClientSessionOptions options) {
  121. notNull("options", options);
  122. Builder builder = new Builder();
  123. builder.causallyConsistent = options.isCausallyConsistent();
  124. builder.snapshot = options.isSnapshot();
  125. builder.defaultTransactionOptions = options.getDefaultTransactionOptions();
  126. return builder;
  127. }
  128. /**
  129. * A builder for instances of {@code ClientSession}
  130. */
  131. @NotThreadSafe
  132. public static final class Builder {
  133. private Boolean causallyConsistent;
  134. private Boolean snapshot;
  135. private TransactionOptions defaultTransactionOptions = TransactionOptions.builder().build();
  136. /**
  137. * Sets whether operations using the session should causally consistent with each other.
  138. *
  139. * @param causallyConsistent whether operations using the session should be causally consistent
  140. * @return this
  141. * @mongodb.driver.dochub core/causal-consistency Causal Consistency
  142. */
  143. public Builder causallyConsistent(final boolean causallyConsistent) {
  144. this.causallyConsistent = causallyConsistent;
  145. return this;
  146. }
  147. /**
  148. * Sets whether read operations using the session should share the same snapshot.
  149. *
  150. * <p>
  151. * The default value is unset, in which case the driver will use the global default value, which is currently false.
  152. * </p>
  153. *
  154. * @param snapshot true for snapshot reads, false otherwise
  155. * @return this
  156. * @since 4.3
  157. * @mongodb.server.release 5.0
  158. * @mongodb.driver.manual reference/read-concern-snapshot/#read-concern-and-atclustertime Snapshot reads
  159. */
  160. public Builder snapshot(final boolean snapshot) {
  161. this.snapshot = snapshot;
  162. return this;
  163. }
  164. /**
  165. * Sets whether operations using the session should causally consistent with each other.
  166. *
  167. * @param defaultTransactionOptions the default transaction options to use for all transactions on this session,
  168. * @return this
  169. * @since 3.8
  170. * @mongodb.server.release 4.0
  171. */
  172. public Builder defaultTransactionOptions(final TransactionOptions defaultTransactionOptions) {
  173. this.defaultTransactionOptions = notNull("defaultTransactionOptions", defaultTransactionOptions);
  174. return this;
  175. }
  176. /**
  177. * Build the session options instance.
  178. *
  179. * @return The {@code ClientSessionOptions}
  180. */
  181. public ClientSessionOptions build() {
  182. return new ClientSessionOptions(this);
  183. }
  184. private Builder() {
  185. }
  186. }
  187. private ClientSessionOptions(final Builder builder) {
  188. if (builder.causallyConsistent != null && builder.causallyConsistent && builder.snapshot != null && builder.snapshot) {
  189. throw new IllegalArgumentException("A session can not be both a snapshot and causally consistent");
  190. }
  191. this.causallyConsistent = builder.causallyConsistent != null || builder.snapshot == null
  192. ? builder.causallyConsistent
  193. : Boolean.valueOf(!builder.snapshot);
  194. this.snapshot = builder.snapshot;
  195. this.defaultTransactionOptions = builder.defaultTransactionOptions;
  196. }
  197. }