/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
- /*
- * Copyright 2008-present MongoDB, Inc.
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
- package com.mongodb;
- import com.mongodb.annotations.Immutable;
- import com.mongodb.annotations.NotThreadSafe;
- import com.mongodb.lang.Nullable;
- import com.mongodb.session.ClientSession;
- import java.util.Objects;
- import static com.mongodb.assertions.Assertions.notNull;
- /**
- * The options to apply to a {@code ClientSession}.
- *
- * @mongodb.server.release 3.6
- * @since 3.6
- * @see ClientSession
- * @mongodb.driver.dochub core/causal-consistency Causal Consistency
- */
- @Immutable
- public final class ClientSessionOptions {
- private final Boolean causallyConsistent;
- private final Boolean snapshot;
- private final TransactionOptions defaultTransactionOptions;
- /**
- * Whether operations using the session should causally consistent with each other.
- *
- * @return whether operations using the session should be causally consistent. A null value indicates to use the global default,
- * which is currently true.
- * @mongodb.driver.dochub core/causal-consistency Causal Consistency
- */
- @Nullable
- public Boolean isCausallyConsistent() {
- return causallyConsistent;
- }
- /**
- * Whether read operations using this session should all share the same snapshot.
- *
- * @return whether read operations using this session should all share the same snapshot. A null value indicates to use the global
- * default, which is false.
- * @since 4.3
- * @mongodb.server.release 5.0
- * @mongodb.driver.manual reference/read-concern-snapshot/#read-concern-and-atclustertime Snapshot reads
- */
- @Nullable
- public Boolean isSnapshot() {
- return snapshot;
- }
- /**
- * Gets the default transaction options for the session.
- *
- * @return the default transaction options for the session
- * @since 3.8
- * @mongodb.server.release 4.0
- */
- public TransactionOptions getDefaultTransactionOptions() {
- return defaultTransactionOptions;
- }
- @Override
- public boolean equals(final Object o) {
- if (this == o) {
- return true;
- }
- if (o == null || getClass() != o.getClass()) {
- return false;
- }
- ClientSessionOptions that = (ClientSessionOptions) o;
- if (!Objects.equals(causallyConsistent, that.causallyConsistent)) {
- return false;
- }
- if (!Objects.equals(snapshot, that.snapshot)) {
- return false;
- }
- if (!Objects.equals(defaultTransactionOptions, that.defaultTransactionOptions)) {
- return false;
- }
- return true;
- }
- @Override
- public int hashCode() {
- int result = causallyConsistent != null ? causallyConsistent.hashCode() : 0;
- result = 31 * result + (snapshot != null ? snapshot.hashCode() : 0);
- result = 31 * result + (defaultTransactionOptions != null ? defaultTransactionOptions.hashCode() : 0);
- return result;
- }
- @Override
- public String toString() {
- return "ClientSessionOptions{"
- + "causallyConsistent=" + causallyConsistent
- + "snapshot=" + snapshot
- + ", defaultTransactionOptions=" + defaultTransactionOptions
- + '}';
- }
- /**
- * Gets an instance of a builder
- *
- * @return a builder instance
- */
- public static Builder builder() {
- return new Builder();
- }
- /**
- * Gets an instance of a builder initialized with the given options
- *
- * @param options the options with which to initialize the builder
- * @return a builder instance
- * @since 3.8
- */
- public static Builder builder(final ClientSessionOptions options) {
- notNull("options", options);
- Builder builder = new Builder();
- builder.causallyConsistent = options.isCausallyConsistent();
- builder.snapshot = options.isSnapshot();
- builder.defaultTransactionOptions = options.getDefaultTransactionOptions();
- return builder;
- }
- /**
- * A builder for instances of {@code ClientSession}
- */
- @NotThreadSafe
- public static final class Builder {
- private Boolean causallyConsistent;
- private Boolean snapshot;
- private TransactionOptions defaultTransactionOptions = TransactionOptions.builder().build();
- /**
- * Sets whether operations using the session should causally consistent with each other.
- *
- * @param causallyConsistent whether operations using the session should be causally consistent
- * @return this
- * @mongodb.driver.dochub core/causal-consistency Causal Consistency
- */
- public Builder causallyConsistent(final boolean causallyConsistent) {
- this.causallyConsistent = causallyConsistent;
- return this;
- }
- /**
- * Sets whether read operations using the session should share the same snapshot.
- *
- * <p>
- * The default value is unset, in which case the driver will use the global default value, which is currently false.
- * </p>
- *
- * @param snapshot true for snapshot reads, false otherwise
- * @return this
- * @since 4.3
- * @mongodb.server.release 5.0
- * @mongodb.driver.manual reference/read-concern-snapshot/#read-concern-and-atclustertime Snapshot reads
- */
- public Builder snapshot(final boolean snapshot) {
- this.snapshot = snapshot;
- return this;
- }
- /**
- * Sets whether operations using the session should causally consistent with each other.
- *
- * @param defaultTransactionOptions the default transaction options to use for all transactions on this session,
- * @return this
- * @since 3.8
- * @mongodb.server.release 4.0
- */
- public Builder defaultTransactionOptions(final TransactionOptions defaultTransactionOptions) {
- this.defaultTransactionOptions = notNull("defaultTransactionOptions", defaultTransactionOptions);
- return this;
- }
- /**
- * Build the session options instance.
- *
- * @return The {@code ClientSessionOptions}
- */
- public ClientSessionOptions build() {
- return new ClientSessionOptions(this);
- }
- private Builder() {
- }
- }
- private ClientSessionOptions(final Builder builder) {
- if (builder.causallyConsistent != null && builder.causallyConsistent && builder.snapshot != null && builder.snapshot) {
- throw new IllegalArgumentException("A session can not be both a snapshot and causally consistent");
- }
- this.causallyConsistent = builder.causallyConsistent != null || builder.snapshot == null
- ? builder.causallyConsistent
- : Boolean.valueOf(!builder.snapshot);
- this.snapshot = builder.snapshot;
- this.defaultTransactionOptions = builder.defaultTransactionOptions;
- }
- }