org.apache.cassandra.cql3.selection.ResultSetBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cassandra-all Show documentation
Show all versions of cassandra-all Show documentation
The Apache Cassandra Project develops a highly scalable second-generation distributed database, bringing together Dynamo's fully distributed design and Bigtable's ColumnFamily-based data model.
/*
* 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.cql3.selection;
import java.nio.ByteBuffer;
import java.util.ArrayList;
import java.util.List;
import org.apache.cassandra.cql3.ResultSet;
import org.apache.cassandra.cql3.ResultSet.ResultMetadata;
import org.apache.cassandra.cql3.selection.Selection.Selectors;
import org.apache.cassandra.db.Clustering;
import org.apache.cassandra.db.DecoratedKey;
import org.apache.cassandra.db.aggregation.GroupMaker;
import org.apache.cassandra.db.rows.Cell;
import org.apache.cassandra.db.rows.ColumnData;
import org.apache.cassandra.schema.ColumnMetadata;
import org.apache.cassandra.transport.ProtocolVersion;
public final class ResultSetBuilder
{
private final ResultSet resultSet;
/**
* As multiple thread can access a Selection
instance each ResultSetBuilder
will use
* its own Selectors
instance.
*/
private final Selectors selectors;
/**
* The GroupMaker
used to build the aggregates.
*/
private final GroupMaker groupMaker;
/**
* Whether masked columns should be unmasked.
*/
private final boolean unmask;
/*
* We'll build CQL3 row one by one.
*/
private Selector.InputRow inputRow;
private long size = 0;
private boolean sizeWarningEmitted = false;
public ResultSetBuilder(ResultMetadata metadata, Selectors selectors, boolean unmask)
{
this(metadata, selectors, unmask, null);
}
public ResultSetBuilder(ResultMetadata metadata, Selectors selectors, boolean unmask, GroupMaker groupMaker)
{
this.resultSet = new ResultSet(metadata.copy(), new ArrayList<>());
this.selectors = selectors;
this.groupMaker = groupMaker;
this.unmask = unmask;
}
private void addSize(List row)
{
for (int i=0, isize=row.size(); i thresholdBytes)
{
sizeWarningEmitted = true;
return true;
}
return false;
}
public boolean shouldReject(long thresholdBytes)
{
return thresholdBytes != -1 && size > thresholdBytes;
}
public long getSize()
{
return size;
}
public void add(ByteBuffer v)
{
inputRow.add(v);
}
public void add(Cell> c, long nowInSec)
{
inputRow.add(c, nowInSec);
}
public void add(ColumnData columnData, long nowInSec)
{
inputRow.add(columnData, nowInSec);
}
/**
* Notifies this Builder
that a new row is being processed.
*
* @param partitionKey the partition key of the new row
* @param clustering the clustering of the new row
*/
public void newRow(ProtocolVersion protocolVersion, DecoratedKey partitionKey, Clustering> clustering, List columns)
{
// The groupMaker needs to be called for each row
boolean isNewAggregate = groupMaker == null || groupMaker.isNewGroup(partitionKey, clustering);
if (inputRow != null)
{
selectors.addInputRow(inputRow);
if (isNewAggregate)
{
resultSet.addRow(getOutputRow());
inputRow.reset(!selectors.hasProcessing());
selectors.reset();
}
else
{
inputRow.reset(!selectors.hasProcessing());
}
}
else
{
inputRow = new Selector.InputRow(protocolVersion,
columns,
unmask,
selectors.collectWritetimes(),
selectors.collectTTLs());
}
}
/**
* Builds the ResultSet
*/
public ResultSet build()
{
if (inputRow != null)
{
selectors.addInputRow(inputRow);
resultSet.addRow(getOutputRow());
inputRow.reset(!selectors.hasProcessing());
selectors.reset();
}
// For aggregates we need to return a row even it no records have been found
if (resultSet.isEmpty() && groupMaker != null && groupMaker.returnAtLeastOneRow())
resultSet.addRow(getOutputRow());
return resultSet;
}
private List getOutputRow()
{
List row = selectors.getOutputRow();
addSize(row);
return row;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy