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

com.datastax.oss.driver.internal.querybuilder.schema.DefaultCreateMaterializedView Maven / Gradle / Ivy

The newest version!
/*
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF licenses this file
 * to you 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.datastax.oss.driver.internal.querybuilder.schema;

import com.datastax.oss.driver.api.core.CqlIdentifier;
import com.datastax.oss.driver.api.core.metadata.schema.ClusteringOrder;
import com.datastax.oss.driver.api.querybuilder.relation.Relation;
import com.datastax.oss.driver.api.querybuilder.schema.CreateMaterializedView;
import com.datastax.oss.driver.api.querybuilder.schema.CreateMaterializedViewPrimaryKey;
import com.datastax.oss.driver.api.querybuilder.schema.CreateMaterializedViewSelection;
import com.datastax.oss.driver.api.querybuilder.schema.CreateMaterializedViewSelectionWithColumns;
import com.datastax.oss.driver.api.querybuilder.schema.CreateMaterializedViewStart;
import com.datastax.oss.driver.api.querybuilder.schema.CreateMaterializedViewWhere;
import com.datastax.oss.driver.api.querybuilder.schema.CreateMaterializedViewWhereStart;
import com.datastax.oss.driver.api.querybuilder.select.Selector;
import com.datastax.oss.driver.internal.querybuilder.CqlHelper;
import com.datastax.oss.driver.internal.querybuilder.ImmutableCollections;
import com.datastax.oss.driver.shaded.guava.common.collect.ImmutableList;
import com.datastax.oss.driver.shaded.guava.common.collect.ImmutableMap;
import com.datastax.oss.driver.shaded.guava.common.collect.ImmutableSet;
import edu.umd.cs.findbugs.annotations.NonNull;
import edu.umd.cs.findbugs.annotations.Nullable;
import java.util.Map;
import net.jcip.annotations.Immutable;

@Immutable
public class DefaultCreateMaterializedView
    implements CreateMaterializedViewStart,
        CreateMaterializedViewSelectionWithColumns,
        CreateMaterializedViewWhere,
        CreateMaterializedViewPrimaryKey,
        CreateMaterializedView {

  private final CqlIdentifier keyspace;
  private final CqlIdentifier viewName;

  private final boolean ifNotExists;

  private final CqlIdentifier baseTableKeyspace;
  private final CqlIdentifier baseTable;

  private final ImmutableList selectors;
  private final ImmutableList whereRelations;
  private final ImmutableSet partitionKeyColumns;
  private final ImmutableSet clusteringKeyColumns;

  private final ImmutableMap orderings;

  private final ImmutableMap options;

  public DefaultCreateMaterializedView(@NonNull CqlIdentifier viewName) {
    this(null, viewName);
  }

  public DefaultCreateMaterializedView(
      @Nullable CqlIdentifier keyspace, @NonNull CqlIdentifier viewName) {
    this(
        keyspace,
        viewName,
        false,
        null,
        null,
        ImmutableList.of(),
        ImmutableList.of(),
        ImmutableSet.of(),
        ImmutableSet.of(),
        ImmutableMap.of(),
        ImmutableMap.of());
  }

  public DefaultCreateMaterializedView(
      @Nullable CqlIdentifier keyspace,
      @NonNull CqlIdentifier viewName,
      boolean ifNotExists,
      @Nullable CqlIdentifier baseTableKeyspace,
      @Nullable CqlIdentifier baseTable,
      @NonNull ImmutableList selectors,
      @NonNull ImmutableList whereRelations,
      @NonNull ImmutableSet partitionKeyColumns,
      @NonNull ImmutableSet clusteringKeyColumns,
      @NonNull ImmutableMap orderings,
      @NonNull ImmutableMap options) {
    this.keyspace = keyspace;
    this.viewName = viewName;
    this.ifNotExists = ifNotExists;
    this.baseTableKeyspace = baseTableKeyspace;
    this.baseTable = baseTable;
    this.selectors = selectors;
    this.whereRelations = whereRelations;
    this.partitionKeyColumns = partitionKeyColumns;
    this.clusteringKeyColumns = clusteringKeyColumns;
    this.orderings = orderings;
    this.options = options;
  }

  @NonNull
  @Override
  public CreateMaterializedViewWhereStart all() {
    return new DefaultCreateMaterializedView(
        keyspace,
        viewName,
        ifNotExists,
        baseTableKeyspace,
        baseTable,
        ImmutableCollections.append(selectors, Selector.all()),
        whereRelations,
        partitionKeyColumns,
        clusteringKeyColumns,
        orderings,
        options);
  }

  @NonNull
  @Override
  public CreateMaterializedViewSelectionWithColumns column(@NonNull CqlIdentifier columnName) {
    return new DefaultCreateMaterializedView(
        keyspace,
        viewName,
        ifNotExists,
        baseTableKeyspace,
        baseTable,
        ImmutableCollections.append(selectors, Selector.column(columnName)),
        whereRelations,
        partitionKeyColumns,
        clusteringKeyColumns,
        orderings,
        options);
  }

  @NonNull
  @Override
  public CreateMaterializedViewSelectionWithColumns columnsIds(
      @NonNull Iterable columnIds) {
    ImmutableList.Builder columnSelectors = ImmutableList.builder();
    for (CqlIdentifier column : columnIds) {
      columnSelectors.add(Selector.column(column));
    }
    return new DefaultCreateMaterializedView(
        keyspace,
        viewName,
        ifNotExists,
        baseTableKeyspace,
        baseTable,
        ImmutableCollections.concat(selectors, columnSelectors.build()),
        whereRelations,
        partitionKeyColumns,
        clusteringKeyColumns,
        orderings,
        options);
  }

  @NonNull
  @Override
  public CreateMaterializedViewWhere where(@NonNull Relation relation) {
    return new DefaultCreateMaterializedView(
        keyspace,
        viewName,
        ifNotExists,
        baseTableKeyspace,
        baseTable,
        selectors,
        ImmutableCollections.append(whereRelations, relation),
        partitionKeyColumns,
        clusteringKeyColumns,
        orderings,
        options);
  }

  @NonNull
  @Override
  public CreateMaterializedViewWhere where(@NonNull Iterable additionalRelations) {
    return new DefaultCreateMaterializedView(
        keyspace,
        viewName,
        ifNotExists,
        baseTableKeyspace,
        baseTable,
        selectors,
        ImmutableCollections.concat(whereRelations, additionalRelations),
        partitionKeyColumns,
        clusteringKeyColumns,
        orderings,
        options);
  }

  @NonNull
  @Override
  public CreateMaterializedViewPrimaryKey withPartitionKey(@NonNull CqlIdentifier columnName) {
    return new DefaultCreateMaterializedView(
        keyspace,
        viewName,
        ifNotExists,
        baseTableKeyspace,
        baseTable,
        selectors,
        whereRelations,
        Utils.appendSet(partitionKeyColumns, columnName),
        clusteringKeyColumns,
        orderings,
        options);
  }

  @NonNull
  @Override
  public CreateMaterializedViewPrimaryKey withClusteringColumn(@NonNull CqlIdentifier columnName) {
    return new DefaultCreateMaterializedView(
        keyspace,
        viewName,
        ifNotExists,
        baseTableKeyspace,
        baseTable,
        selectors,
        whereRelations,
        partitionKeyColumns,
        Utils.appendSet(clusteringKeyColumns, columnName),
        orderings,
        options);
  }

  @NonNull
  @Override
  public CreateMaterializedViewStart ifNotExists() {
    return new DefaultCreateMaterializedView(
        keyspace,
        viewName,
        true,
        baseTableKeyspace,
        baseTable,
        selectors,
        whereRelations,
        partitionKeyColumns,
        clusteringKeyColumns,
        orderings,
        options);
  }

  @NonNull
  @Override
  public CreateMaterializedViewSelection asSelectFrom(@NonNull CqlIdentifier table) {
    return asSelectFrom(null, table);
  }

  @NonNull
  @Override
  public CreateMaterializedViewSelection asSelectFrom(
      CqlIdentifier baseTableKeyspace, @NonNull CqlIdentifier baseTable) {
    return new DefaultCreateMaterializedView(
        keyspace,
        viewName,
        ifNotExists,
        baseTableKeyspace,
        baseTable,
        selectors,
        whereRelations,
        partitionKeyColumns,
        clusteringKeyColumns,
        orderings,
        options);
  }

  @NonNull
  @Override
  public CreateMaterializedView withClusteringOrderByIds(
      @NonNull Map orderings) {
    return withClusteringOrders(ImmutableCollections.concat(this.orderings, orderings));
  }

  @NonNull
  @Override
  public CreateMaterializedView withClusteringOrder(
      @NonNull CqlIdentifier columnName, @NonNull ClusteringOrder order) {
    return withClusteringOrders(ImmutableCollections.append(orderings, columnName, order));
  }

  @NonNull
  public CreateMaterializedView withClusteringOrders(
      @NonNull ImmutableMap orderings) {
    return new DefaultCreateMaterializedView(
        keyspace,
        viewName,
        ifNotExists,
        baseTableKeyspace,
        baseTable,
        selectors,
        whereRelations,
        partitionKeyColumns,
        clusteringKeyColumns,
        orderings,
        options);
  }

  @NonNull
  @Override
  public CreateMaterializedView withOption(@NonNull String name, @NonNull Object value) {
    return new DefaultCreateMaterializedView(
        keyspace,
        viewName,
        ifNotExists,
        baseTableKeyspace,
        baseTable,
        selectors,
        whereRelations,
        partitionKeyColumns,
        clusteringKeyColumns,
        orderings,
        ImmutableCollections.append(options, name, value));
  }

  @NonNull
  @Override
  public String asCql() {
    StringBuilder builder = new StringBuilder("CREATE MATERIALIZED VIEW ");
    if (ifNotExists) {
      builder.append("IF NOT EXISTS ");
    }

    CqlHelper.qualify(keyspace, viewName, builder);

    if (selectors.isEmpty()) {
      // selectors not provided yet.
      return builder.toString();
    }

    CqlHelper.append(selectors, builder, " AS SELECT ", ",", " FROM ");

    if (baseTable == null) {
      // base table not provided yet.
      return builder.toString();
    }

    CqlHelper.qualify(baseTableKeyspace, baseTable, builder);

    if (whereRelations.isEmpty()) {
      // where clause not provided yet.
      return builder.toString();
    }

    CqlHelper.append(whereRelations, builder, " WHERE ", " AND ", " ");

    CqlHelper.buildPrimaryKey(partitionKeyColumns, clusteringKeyColumns, builder);

    if (!orderings.isEmpty() || !options.isEmpty()) {
      boolean firstOption = true;

      if (!orderings.isEmpty()) {
        builder.append(" WITH ");
        firstOption = false;
        builder.append("CLUSTERING ORDER BY (");
        boolean firstClustering = true;

        for (Map.Entry ordering : orderings.entrySet()) {
          if (firstClustering) {
            firstClustering = false;
          } else {
            builder.append(',');
          }
          builder
              .append(ordering.getKey().asCql(true))
              .append(' ')
              .append(ordering.getValue().toString());
        }

        builder.append(')');
      }

      builder.append(OptionsUtils.buildOptions(options, firstOption));
    }
    return builder.toString();
  }

  @Override
  public String toString() {
    return asCql();
  }

  @NonNull
  @Override
  public Map getOptions() {
    return options;
  }

  @Nullable
  public CqlIdentifier getKeyspace() {
    return keyspace;
  }

  @NonNull
  public CqlIdentifier getMaterializedView() {
    return viewName;
  }

  public boolean isIfNotExists() {
    return ifNotExists;
  }

  @Nullable
  public CqlIdentifier getBaseTableKeyspace() {
    return baseTableKeyspace;
  }

  @Nullable
  public CqlIdentifier getBaseTable() {
    return baseTable;
  }

  @NonNull
  public ImmutableList getSelectors() {
    return selectors;
  }

  @NonNull
  public ImmutableList getWhereRelations() {
    return whereRelations;
  }

  @NonNull
  public ImmutableSet getPartitionKeyColumns() {
    return partitionKeyColumns;
  }

  @NonNull
  public ImmutableSet getClusteringKeyColumns() {
    return clusteringKeyColumns;
  }

  @NonNull
  public ImmutableMap getOrderings() {
    return orderings;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy