blob: 213abb06a4309fbd51a8dea0d2296f82318f2de4 [file] [log] [blame]
/*
* 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.tephra.runtime;
import com.google.inject.AbstractModule;
import com.google.inject.Scopes;
import com.google.inject.Singleton;
import com.google.inject.assistedinject.FactoryModuleBuilder;
import com.google.inject.name.Names;
import org.apache.tephra.DefaultTransactionExecutor;
import org.apache.tephra.TransactionExecutor;
import org.apache.tephra.TransactionExecutorFactory;
import org.apache.tephra.TransactionManager;
import org.apache.tephra.TransactionSystemClient;
import org.apache.tephra.TxConstants;
import org.apache.tephra.inmemory.InMemoryTxSystemClient;
import org.apache.tephra.metrics.DefaultMetricsCollector;
import org.apache.tephra.metrics.MetricsCollector;
import org.apache.tephra.persist.LocalFileTransactionStateStorage;
import org.apache.tephra.persist.TransactionStateStorage;
import org.apache.tephra.snapshot.SnapshotCodecProvider;
import java.lang.management.ManagementFactory;
/**
* Guice bindings for running in single-node mode (persistence to local disk and in-memory client).
*/
final class TransactionLocalModule extends AbstractModule {
private final String clientId;
public TransactionLocalModule() {
this(ManagementFactory.getRuntimeMXBean().getName());
}
public TransactionLocalModule(String clientId) {
this.clientId = clientId;
}
@Override
protected void configure() {
bind(SnapshotCodecProvider.class).in(Singleton.class);
bind(TransactionStateStorage.class).annotatedWith(Names.named("persist"))
.to(LocalFileTransactionStateStorage.class).in(Scopes.SINGLETON);
bind(TransactionStateStorage.class).toProvider(TransactionStateStorageProvider.class).in(Scopes.SINGLETON);
bind(TransactionManager.class).in(Scopes.SINGLETON);
bind(TransactionSystemClient.class).to(InMemoryTxSystemClient.class).in(Singleton.class);
bind(MetricsCollector.class).to(DefaultMetricsCollector.class);
bindConstant().annotatedWith(Names.named(TxConstants.CLIENT_ID)).to(clientId);
install(new FactoryModuleBuilder()
.implement(TransactionExecutor.class, DefaultTransactionExecutor.class)
.build(TransactionExecutorFactory.class));
}
}