blob: 58e7aebab122a199e1c57795b227429b74ceb567 [file] [log] [blame]
// Copyright (C) 2023 The Android Open Source Project
//
// 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.ericsson.gerrit.plugins.highavailability.forwarder.jgroups;
import com.ericsson.gerrit.plugins.highavailability.forwarder.Forwarder;
import com.ericsson.gerrit.plugins.highavailability.peers.jgroups.JChannelProviderModule;
import com.google.gerrit.lifecycle.LifecycleModule;
import com.google.gerrit.server.events.EventGson;
import com.google.gson.Gson;
import com.google.inject.Provides;
import com.google.inject.Scopes;
import com.google.inject.Singleton;
import com.google.inject.TypeLiteral;
import dev.failsafe.FailsafeExecutor;
import org.jgroups.blocks.MessageDispatcher;
import org.jgroups.blocks.RequestHandler;
public class JGroupsForwarderModule extends LifecycleModule {
@Override
protected void configure() {
bind(Forwarder.class).to(JGroupsForwarder.class);
bind(MessageDispatcher.class).toProvider(MessageDispatcherProvider.class).in(Scopes.SINGLETON);
bind(RequestHandler.class).to(MessageProcessor.class);
install(new JChannelProviderModule());
listener().to(OnStartStop.class);
bind(new TypeLiteral<FailsafeExecutor<Boolean>>() {})
.annotatedWith(JGroupsForwarderExecutor.class)
.toProvider(FailsafeExecutorProvider.class)
.in(Scopes.SINGLETON);
}
@Provides
@Singleton
@JGroupsGson
Gson buildJGroupsGson(@EventGson Gson eventGson) {
return eventGson
.newBuilder()
.registerTypeAdapter(Command.class, new CommandDeserializer())
.create();
}
}