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

com.datastax.oss.driver.internal.querybuilder.select.CollectionSelector 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.select;

import com.datastax.oss.driver.api.core.CqlIdentifier;
import com.datastax.oss.driver.api.querybuilder.select.Selector;
import com.datastax.oss.driver.internal.querybuilder.CqlHelper;
import com.datastax.oss.driver.shaded.guava.common.base.Preconditions;
import com.datastax.oss.driver.shaded.guava.common.collect.Iterables;
import edu.umd.cs.findbugs.annotations.NonNull;
import edu.umd.cs.findbugs.annotations.Nullable;
import java.util.Objects;
import net.jcip.annotations.Immutable;

@Immutable
public abstract class CollectionSelector implements Selector {

  private final Iterable elementSelectors;
  private final String opening;
  private final String closing;
  private final CqlIdentifier alias;

  protected CollectionSelector(
      @NonNull Iterable elementSelectors,
      @NonNull String opening,
      @NonNull String closing,
      @Nullable CqlIdentifier alias) {
    Preconditions.checkNotNull(elementSelectors);
    Preconditions.checkArgument(
        elementSelectors.iterator().hasNext(), "Must have at least one selector");
    checkNoAlias(elementSelectors);
    Preconditions.checkNotNull(opening);
    Preconditions.checkNotNull(closing);
    this.elementSelectors = elementSelectors;
    this.opening = opening;
    this.closing = closing;
    this.alias = alias;
  }

  @Override
  public void appendTo(@NonNull StringBuilder builder) {
    CqlHelper.append(elementSelectors, builder, opening, ",", closing);
    if (alias != null) {
      builder.append(" AS ").append(alias.asCql(true));
    }
  }

  @NonNull
  public Iterable getElementSelectors() {
    return elementSelectors;
  }

  @Nullable
  @Override
  public CqlIdentifier getAlias() {
    return alias;
  }

  @Override
  public boolean equals(Object other) {
    if (other == this) {
      return true;
    } else if (other instanceof CollectionSelector) {
      CollectionSelector that = (CollectionSelector) other;
      return Iterables.elementsEqual(this.elementSelectors, that.elementSelectors)
          && this.opening.equals(that.opening)
          && this.closing.equals(that.closing)
          && Objects.equals(this.alias, that.alias);
    } else {
      return false;
    }
  }

  @Override
  public int hashCode() {
    return Objects.hash(elementSelectors, opening, closing, alias);
  }

  private static void checkNoAlias(Iterable elementSelectors) {
    String offendingAliases = null;
    for (Selector selector : elementSelectors) {
      CqlIdentifier alias = selector.getAlias();
      if (alias != null) {
        if (offendingAliases == null) {
          offendingAliases = alias.asCql(true);
        } else {
          offendingAliases += ", " + alias.asCql(true);
        }
      }
    }
    if (offendingAliases != null) {
      throw new IllegalArgumentException(
          "Can't use aliases in selection list, offending aliases: " + offendingAliases);
    }
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy