ConnectorContextInstance.java
/*
* 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.connector;
import com.facebook.presto.common.block.BlockEncodingSerde;
import com.facebook.presto.common.type.TypeManager;
import com.facebook.presto.spi.ConnectorSystemConfig;
import com.facebook.presto.spi.NodeManager;
import com.facebook.presto.spi.PageIndexerFactory;
import com.facebook.presto.spi.PageSorter;
import com.facebook.presto.spi.connector.ConnectorContext;
import com.facebook.presto.spi.function.FunctionMetadataManager;
import com.facebook.presto.spi.function.StandardFunctionResolution;
import com.facebook.presto.spi.plan.FilterStatsCalculatorService;
import com.facebook.presto.spi.relation.RowExpressionService;
import static java.util.Objects.requireNonNull;
public class ConnectorContextInstance
implements ConnectorContext
{
private final NodeManager nodeManager;
private final TypeManager typeManager;
private final FunctionMetadataManager functionMetadataManager;
private final StandardFunctionResolution functionResolution;
private final PageSorter pageSorter;
private final PageIndexerFactory pageIndexerFactory;
private final RowExpressionService rowExpressionService;
private final FilterStatsCalculatorService filterStatsCalculatorService;
private final BlockEncodingSerde blockEncodingSerde;
private final ConnectorSystemConfig connectorSystemConfig;
public ConnectorContextInstance(
NodeManager nodeManager,
TypeManager typeManager,
FunctionMetadataManager functionMetadataManager,
StandardFunctionResolution functionResolution,
PageSorter pageSorter,
PageIndexerFactory pageIndexerFactory,
RowExpressionService rowExpressionService,
FilterStatsCalculatorService filterStatsCalculatorService,
BlockEncodingSerde blockEncodingSerde,
ConnectorSystemConfig connectorSystemConfig)
{
this.nodeManager = requireNonNull(nodeManager, "nodeManager is null");
this.typeManager = requireNonNull(typeManager, "typeManager is null");
this.functionMetadataManager = requireNonNull(functionMetadataManager, "functionMetadataManager is null");
this.functionResolution = requireNonNull(functionResolution, "functionResolution is null");
this.pageSorter = requireNonNull(pageSorter, "pageSorter is null");
this.pageIndexerFactory = requireNonNull(pageIndexerFactory, "pageIndexerFactory is null");
this.rowExpressionService = requireNonNull(rowExpressionService, "rowExpressionService is null");
this.filterStatsCalculatorService = requireNonNull(filterStatsCalculatorService, "filterStatsCalculatorService is null");
this.blockEncodingSerde = requireNonNull(blockEncodingSerde, "blockEncodingSerde is null");
this.connectorSystemConfig = requireNonNull(connectorSystemConfig, "connectorSystemConfig is null");
}
@Override
public NodeManager getNodeManager()
{
return nodeManager;
}
@Override
public TypeManager getTypeManager()
{
return typeManager;
}
@Override
public FunctionMetadataManager getFunctionMetadataManager()
{
return functionMetadataManager;
}
@Override
public StandardFunctionResolution getStandardFunctionResolution()
{
return functionResolution;
}
@Override
public PageSorter getPageSorter()
{
return pageSorter;
}
@Override
public PageIndexerFactory getPageIndexerFactory()
{
return pageIndexerFactory;
}
@Override
public RowExpressionService getRowExpressionService()
{
return rowExpressionService;
}
@Override
public FilterStatsCalculatorService getFilterStatsCalculatorService()
{
return filterStatsCalculatorService;
}
@Override
public BlockEncodingSerde getBlockEncodingSerde()
{
return blockEncodingSerde;
}
@Override
public ConnectorSystemConfig getConnectorSystemConfig()
{
return connectorSystemConfig;
}
}