All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.couchbase.client.java.manager.query.CreatePrimaryQueryIndexOptions Maven / Gradle / Ivy

There is a newer version: 3.7.6
Show newest version
/*
 * Copyright 2019 Couchbase, 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.couchbase.client.java.manager.query;

import com.couchbase.client.core.annotation.Stability;
import com.couchbase.client.core.api.manager.CoreCreatePrimaryQueryIndexOptions;
import com.couchbase.client.core.api.manager.CoreScopeAndCollection;
import com.couchbase.client.core.endpoint.http.CoreCommonOptions;
import com.couchbase.client.core.error.InvalidArgumentException;
import com.couchbase.client.java.CommonOptions;

import java.util.HashMap;
import java.util.Map;
import java.util.Optional;

import static com.couchbase.client.core.util.CbStrings.emptyToNull;
import static com.couchbase.client.core.util.Validators.notNull;
import static com.couchbase.client.core.util.Validators.notNullOrEmpty;

/**
 * Allows customizing how a query primary index is created.
 */
public class CreatePrimaryQueryIndexOptions extends CommonOptions {

  private final Map with = new HashMap<>();

  private Optional indexName = Optional.empty();
  private boolean ignoreIfExists;
  private String scopeName;
  private String collectionName;
  private Integer numReplicas;
  private Boolean deferred;

  private CreatePrimaryQueryIndexOptions() {
  }

  /**
   * Creates a new instance with default values.
   *
   * @return the instantiated default options.
   */
  public static CreatePrimaryQueryIndexOptions createPrimaryQueryIndexOptions() {
    return new CreatePrimaryQueryIndexOptions();
  }

  /**
   * The custom name of the primary index.
   *
   * @param indexName the custom name of the primary index.
   * @return this options builder for chaining purposes.
   */
  public CreatePrimaryQueryIndexOptions indexName(final String indexName) {
    this.indexName = Optional.ofNullable(emptyToNull(indexName));
    return this;
  }

  /**
   * Set to true if no exception should be thrown if the primary index already exists (false by default).
   *
   * @param ignoreIfExists true if no exception should be thrown if the index already exists.
   * @return this options builder for chaining purposes.
   */
  public CreatePrimaryQueryIndexOptions ignoreIfExists(final boolean ignoreIfExists) {
    this.ignoreIfExists = ignoreIfExists;
    return this;
  }

  /**
   * Configures the number of index replicas.
   *
   * @param numReplicas the number of replicas used for this index.
   * @return this options builder for chaining purposes.
   */
  public CreatePrimaryQueryIndexOptions numReplicas(final int numReplicas) {
    this.numReplicas = numReplicas;
    return this;
  }

  /**
   * If set to true will defer building of this index (false by default).
   * 

* If you are creating multiple indexes on the same bucket, you may see improved performance by creating * them in deferred mode and then building them all at once. Please use * {@link QueryIndexManager#buildDeferredIndexes(String)} afterwards to build the deferred indexes. * * @param deferred if building this index should be deferred. * @return this options builder for chaining purposes. */ public CreatePrimaryQueryIndexOptions deferred(final boolean deferred) { this.deferred = deferred; return this; } /** * Allows passing in custom options into the N1QL WITH clause for index creation. *

* This method should only be used if no other option is available - use with caution! * * @param optionName the name of the WITH option. * @param optionValue the value of the WITH option. * @return this options builder for chaining purposes. */ public CreatePrimaryQueryIndexOptions with(final String optionName, final Object optionValue) { this.with.put(notNullOrEmpty(optionName, "OptionName"), notNull(optionValue, "OptionValue")); return this; } /** * Sets the scope name for this query management operation. *

* Please note that if the scope name is set, the {@link #collectionName(String)} (String)} must also be set. * * @deprecated `collection.queryIndexes()` should now be used for collection-related query index operations. * @param scopeName the name of the scope. * @return this options class for chaining purposes. */ @Deprecated public CreatePrimaryQueryIndexOptions scopeName(final String scopeName) { this.scopeName = notNullOrEmpty(scopeName, "ScopeName"); return this; } /** * Sets the collection name for this query management operation. *

* Please note that if the collection name is set, the {@link #scopeName(String)} must also be set. * * @deprecated `collection.queryIndexes()` should now be used for collection-related query index operations. * @param collectionName the name of the collection. * @return this options class for chaining purposes. */ @Deprecated public CreatePrimaryQueryIndexOptions collectionName(final String collectionName) { this.collectionName = notNullOrEmpty(collectionName, "CollectionName"); return this; } @Stability.Internal public Built build() { if (collectionName != null && scopeName == null) { throw InvalidArgumentException.fromMessage("If a collectionName is provided, a scopeName must also be provided"); } if (scopeName != null && collectionName == null) { throw InvalidArgumentException.fromMessage("If a scopeName is provided, a collectionName must also be provided"); } return new Built(); } public class Built extends BuiltCommonOptions implements CoreCreatePrimaryQueryIndexOptions { Built() { } @Override public boolean ignoreIfExists() { return ignoreIfExists; } @Override public Integer numReplicas() { return numReplicas; } @Override public Boolean deferred() { return deferred; } @Override public String indexName() { return indexName.orElse(null); } @Override public Map with() { return with; } @Override public CoreScopeAndCollection scopeAndCollection() { if (scopeName != null && collectionName != null) { return new CoreScopeAndCollection(scopeName, collectionName); } return null; } @Override public CoreCommonOptions commonOptions() { return this; } } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy