blob: 6bab674ac91c3e688e147435f611df54c0392f15 [file] [log] [blame]
/*
* 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 org.apache.cassandra.spark.sparksql;
import java.util.ArrayList;
import java.util.List;
import com.google.common.annotations.VisibleForTesting;
import org.apache.cassandra.spark.config.SchemaFeature;
import org.apache.cassandra.spark.data.DataLayer;
import org.apache.cassandra.spark.sparksql.filters.CdcOffsetFilter;
import org.apache.cassandra.spark.sparksql.filters.PartitionKeyFilter;
import org.apache.spark.sql.catalyst.InternalRow;
import org.apache.spark.sql.sources.v2.reader.InputPartitionReader;
import org.apache.spark.sql.types.StructType;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
/**
* Wrapper iterator around SparkCellIterator to normalize cells into Spark SQL rows
*/
public class SparkRowIterator extends AbstractSparkRowIterator implements InputPartitionReader<InternalRow>
{
@VisibleForTesting
public SparkRowIterator(int partitionId, @NotNull DataLayer dataLayer)
{
this(partitionId, dataLayer, null, new ArrayList<>());
}
protected SparkRowIterator(int partitionId,
@NotNull DataLayer dataLayer,
@Nullable StructType requiredSchema,
@NotNull List<PartitionKeyFilter> partitionKeyFilters)
{
this(partitionId, dataLayer, requiredSchema, partitionKeyFilters, null);
}
protected SparkRowIterator(int partitionId,
@NotNull DataLayer dataLayer,
@Nullable StructType columnFilter,
@NotNull List<PartitionKeyFilter> partitionKeyFilters,
@Nullable CdcOffsetFilter cdcOffsetFilter)
{
super(partitionId, dataLayer, columnFilter, partitionKeyFilters, cdcOffsetFilter);
}
@Override
@NotNull
RowBuilder newBuilder()
{
RowBuilder builder = new FullRowBuilder(cqlTable, noValueColumns);
for (SchemaFeature feature : requestedFeatures)
{
builder = feature.decorate(builder);
}
builder.reset();
return builder;
}
}