org.gradle.internal.remote.services.MessagingServices Maven / Gradle / Ivy
/*
* Copyright 2016 the original author or authors.
*
* 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 org.gradle.internal.remote.services;
import org.gradle.internal.concurrent.DefaultExecutorFactory;
import org.gradle.internal.concurrent.ExecutorFactory;
import org.gradle.internal.concurrent.Stoppable;
import org.gradle.internal.id.IdGenerator;
import org.gradle.internal.id.UUIDGenerator;
import org.gradle.internal.remote.internal.IncomingConnector;
import org.gradle.internal.remote.internal.OutgoingConnector;
import org.gradle.internal.service.DefaultServiceRegistry;
import org.gradle.internal.remote.MessagingClient;
import org.gradle.internal.remote.MessagingServer;
import org.gradle.internal.remote.internal.hub.MessageHubBackedClient;
import org.gradle.internal.remote.internal.hub.MessageHubBackedServer;
import org.gradle.internal.remote.internal.inet.InetAddressFactory;
import org.gradle.internal.remote.internal.inet.TcpIncomingConnector;
import org.gradle.internal.remote.internal.inet.TcpOutgoingConnector;
import java.util.UUID;
/**
* A factory for a set of messaging services. Provides the following services:
*
*
*
* - {@link MessagingClient}
*
* - {@link MessagingServer}
*
*
*/
public class MessagingServices extends DefaultServiceRegistry implements Stoppable {
private final IdGenerator idGenerator = new UUIDGenerator();
public void stop() {
close();
}
protected ExecutorFactory createExecutorFactory() {
return new DefaultExecutorFactory();
}
protected InetAddressFactory createInetAddressFactory() {
return new InetAddressFactory();
}
protected OutgoingConnector createOutgoingConnector() {
return new TcpOutgoingConnector();
}
protected IncomingConnector createIncomingConnector(ExecutorFactory executorFactory, InetAddressFactory inetAddressFactory) {
return new TcpIncomingConnector(
executorFactory,
inetAddressFactory,
idGenerator
);
}
protected MessagingClient createMessagingClient(OutgoingConnector outgoingConnector, ExecutorFactory executorFactory) {
return new MessageHubBackedClient(
outgoingConnector,
executorFactory);
}
protected MessagingServer createMessagingServer(IncomingConnector incomingConnector, ExecutorFactory executorFactory) {
return new MessageHubBackedServer(
incomingConnector,
executorFactory);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy