/* * 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.metadata.Distribution; import com.facebook.presto.raptor.metadata.ForMetadata; import com.facebook.presto.raptor.metadata.TableColumn; import com.facebook.presto.raptor.systemtables.ShardMetadataSystemTable; import com.facebook.presto.raptor.systemtables.TableMetadataSystemTable; import com.facebook.presto.raptor.systemtables.TableStatsSystemTable; import com.facebook.presto.spi.NodeManager; import com.facebook.presto.spi.SystemTable; import com.facebook.presto.spi.type.TypeManager; import com.google.inject.Binder; import com.google.inject.Module; import com.google.inject.Provides; import com.google.inject.Scopes; import com.google.inject.multibindings.Multibinder; import org.skife.jdbi.v2.DBI; import org.skife.jdbi.v2.IDBI; import org.skife.jdbi.v2.tweak.ConnectionFactory; import javax.inject.Singleton; import static com.facebook.presto.raptor.metadata.SchemaDaoUtil.createTablesWithRetry; import static com.google.inject.multibindings.Multibinder.newSetBinder; import static java.util.Objects.requireNonNull; public class RaptorModule implements Module { private final String connectorId; public RaptorModule(String connectorId) { this.connectorId = requireNonNull(connectorId, "connectorId is null"); } @Override public void configure(Binder binder) { binder.bind(RaptorConnectorId.class).toInstance(new RaptorConnectorId(connectorId)); binder.bind(RaptorConnector.class).in(Scopes.SINGLETON); binder.bind(RaptorMetadataFactory.class).in(Scopes.SINGLETON); binder.bind(RaptorSplitManager.class).in(Scopes.SINGLETON); binder.bind(RaptorPageSourceProvider.class).in(Scopes.SINGLETON); binder.bind(RaptorPageSinkProvider.class).in(Scopes.SINGLETON); binder.bind(RaptorHandleResolver.class).in(Scopes.SINGLETON); binder.bind(RaptorNodePartitioningProvider.class).in(Scopes.SINGLETON); binder.bind(RaptorSessionProperties.class).in(Scopes.SINGLETON); binder.bind(RaptorTableProperties.class).in(Scopes.SINGLETON); Multibinder<SystemTable> tableBinder = newSetBinder(binder, SystemTable.class); tableBinder.addBinding().to(ShardMetadataSystemTable.class).in(Scopes.SINGLETON); tableBinder.addBinding().to(TableMetadataSystemTable.class).in(Scopes.SINGLETON); tableBinder.addBinding().to(TableStatsSystemTable.class).in(Scopes.SINGLETON); } @ForMetadata @Singleton @Provides public IDBI createDBI(@ForMetadata ConnectionFactory connectionFactory, TypeManager typeManager) { DBI dbi = new DBI(connectionFactory); dbi.registerMapper(new TableColumn.Mapper(typeManager)); dbi.registerMapper(new Distribution.Mapper(typeManager)); createTablesWithRetry(dbi); return dbi; } @Provides @Singleton public static NodeSupplier createNodeSupplier(NodeManager nodeManager) { return nodeManager::getWorkerNodes; } }