io.trino.plugin.phoenix5.PhoenixPageSource Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of trino-phoenix5 Show documentation
Show all versions of trino-phoenix5 Show documentation
Trino - Phoenix 5 connector
/*
* 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 io.trino.plugin.phoenix5;
import io.trino.spi.Page;
import io.trino.spi.block.Block;
import io.trino.spi.connector.ConnectorPageSource;
import java.io.IOException;
import java.util.List;
import static com.google.common.base.Preconditions.checkArgument;
import static io.trino.spi.block.RowBlock.fromFieldBlocks;
import static java.util.Objects.requireNonNull;
public class PhoenixPageSource
implements ConnectorPageSource
{
private final ConnectorPageSource delegate;
private final List columnAdaptations;
public PhoenixPageSource(ConnectorPageSource delegate, List columnAdaptations)
{
this.delegate = delegate;
this.columnAdaptations = columnAdaptations;
}
@Override
public long getCompletedBytes()
{
return delegate.getCompletedBytes();
}
@Override
public long getReadTimeNanos()
{
return delegate.getReadTimeNanos();
}
@Override
public boolean isFinished()
{
return delegate.isFinished();
}
@Override
public Page getNextPage()
{
Page page = delegate.getNextPage();
if (page == null || columnAdaptations.isEmpty()) {
return page;
}
return getColumnAdaptationsPage(page);
}
private Page getColumnAdaptationsPage(Page page)
{
Block[] blocks = new Block[columnAdaptations.size()];
for (int i = 0; i < columnAdaptations.size(); i++) {
blocks[i] = columnAdaptations.get(i).getBlock(page);
}
return new Page(page.getPositionCount(), blocks);
}
@Override
public long getMemoryUsage()
{
return delegate.getMemoryUsage();
}
@Override
public void close()
throws IOException
{
delegate.close();
}
public interface ColumnAdaptation
{
Block getBlock(Page sourcePage);
static ColumnAdaptation sourceColumn(int index)
{
return new SourceColumn(index);
}
static ColumnAdaptation mergedRowColumns(List mergeRowIdSourceChannels)
{
return new MergedRowAdaptation(mergeRowIdSourceChannels);
}
}
private static final class MergedRowAdaptation
implements ColumnAdaptation
{
private final List mergeRowIdSourceChannels;
public MergedRowAdaptation(List mergeRowIdSourceChannels)
{
this.mergeRowIdSourceChannels = mergeRowIdSourceChannels;
}
@Override
public Block getBlock(Page page)
{
requireNonNull(page, "page is null");
Block[] mergeRowIdBlocks = new Block[mergeRowIdSourceChannels.size()];
for (int i = 0; i < mergeRowIdBlocks.length; i++) {
mergeRowIdBlocks[i] = page.getBlock(mergeRowIdSourceChannels.get(i));
}
return fromFieldBlocks(page.getPositionCount(), mergeRowIdBlocks);
}
}
private record SourceColumn(int sourceChannel)
implements ColumnAdaptation
{
private SourceColumn
{
checkArgument(sourceChannel >= 0, "sourceChannel is negative");
}
@Override
public Block getBlock(Page sourcePage)
{
return sourcePage.getBlock(sourceChannel);
}
}
}