/* * 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 com.facebook.presto.raptor; import com.facebook.presto.raptor.storage.ReaderAttributes; import com.facebook.presto.raptor.storage.StorageManager; import com.facebook.presto.raptor.util.ConcatPageSource; import com.facebook.presto.spi.ColumnHandle; import com.facebook.presto.spi.ConnectorPageSource; import com.facebook.presto.spi.ConnectorSession; import com.facebook.presto.spi.ConnectorSplit; import com.facebook.presto.spi.connector.ConnectorPageSourceProvider; import com.facebook.presto.spi.connector.ConnectorTransactionHandle; import com.facebook.presto.spi.predicate.TupleDomain; import com.facebook.presto.spi.type.Type; import javax.inject.Inject; import java.util.Iterator; import java.util.List; import java.util.OptionalInt; import java.util.OptionalLong; import java.util.UUID; import static java.util.Objects.requireNonNull; import static java.util.stream.Collectors.toList; public class RaptorPageSourceProvider implements ConnectorPageSourceProvider { private final StorageManager storageManager; @Inject public RaptorPageSourceProvider(StorageManager storageManager) { this.storageManager = requireNonNull(storageManager, "storageManager is null"); } @Override public ConnectorPageSource createPageSource(ConnectorTransactionHandle transactionHandle, ConnectorSession session, ConnectorSplit split, List<ColumnHandle> columns) { RaptorSplit raptorSplit = (RaptorSplit) split; OptionalInt bucketNumber = raptorSplit.getBucketNumber(); TupleDomain<RaptorColumnHandle> predicate = raptorSplit.getEffectivePredicate(); ReaderAttributes attributes = ReaderAttributes.from(session); OptionalLong transactionId = raptorSplit.getTransactionId(); if (raptorSplit.getShardUuids().size() == 1) { UUID shardUuid = raptorSplit.getShardUuids().iterator().next(); return createPageSource(shardUuid, bucketNumber, columns, predicate, attributes, transactionId); } Iterator<ConnectorPageSource> iterator = raptorSplit.getShardUuids().stream() .map(shardUuid -> createPageSource(shardUuid, bucketNumber, columns, predicate, attributes, transactionId)) .iterator(); return new ConcatPageSource(iterator); } private ConnectorPageSource createPageSource( UUID shardUuid, OptionalInt bucketNumber, List<ColumnHandle> columns, TupleDomain<RaptorColumnHandle> predicate, ReaderAttributes attributes, OptionalLong transactionId) { List<RaptorColumnHandle> columnHandles = columns.stream().map(RaptorColumnHandle.class::cast).collect(toList()); List<Long> columnIds = columnHandles.stream().map(RaptorColumnHandle::getColumnId).collect(toList()); List<Type> columnTypes = columnHandles.stream().map(RaptorColumnHandle::getColumnType).collect(toList()); return storageManager.getPageSource(shardUuid, bucketNumber, columnIds, columnTypes, predicate, attributes, transactionId); } }