com.hivemq.bootstrap.netty.ChannelInitializerFactoryImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hivemq-community-edition-embedded Show documentation
Show all versions of hivemq-community-edition-embedded Show documentation
HiveMQ CE is a Java-based open source MQTT broker that fully supports MQTT 3.x and MQTT 5
The newest version!
/*
* Copyright 2019-present HiveMQ GmbH
*
* 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.hivemq.bootstrap.netty;
import com.hivemq.bootstrap.netty.initializer.AbstractChannelInitializer;
import com.hivemq.bootstrap.netty.initializer.TcpChannelInitializer;
import com.hivemq.bootstrap.netty.initializer.TlsTcpChannelInitializer;
import com.hivemq.bootstrap.netty.initializer.TlsWebsocketChannelInitializer;
import com.hivemq.bootstrap.netty.initializer.WebsocketChannelInitializer;
import com.hivemq.configuration.service.entity.Listener;
import com.hivemq.configuration.service.entity.TcpListener;
import com.hivemq.configuration.service.entity.TlsTcpListener;
import com.hivemq.configuration.service.entity.TlsWebsocketListener;
import com.hivemq.configuration.service.entity.WebsocketListener;
import com.hivemq.extension.sdk.api.annotations.NotNull;
import com.hivemq.logging.EventLog;
import com.hivemq.security.ssl.NonSslHandler;
import com.hivemq.security.ssl.SslFactory;
import javax.inject.Inject;
import javax.inject.Provider;
import static com.google.common.base.Preconditions.checkNotNull;
/**
* @author Christoph Schäbel
*/
public class ChannelInitializerFactoryImpl implements ChannelInitializerFactory {
@NotNull
private final ChannelDependencies channelDependencies;
@NotNull
private final SslFactory sslFactory;
@NotNull
private final Provider nonSslHandlerProvider;
@NotNull
private final EventLog eventLog;
@Inject
public ChannelInitializerFactoryImpl(
@NotNull final ChannelDependencies channelDependencies,
@NotNull final SslFactory sslFactory,
@NotNull final Provider nonSslHandlerProvider,
@NotNull final EventLog eventLog) {
this.channelDependencies = channelDependencies;
this.sslFactory = sslFactory;
this.nonSslHandlerProvider = nonSslHandlerProvider;
this.eventLog = eventLog;
}
@NotNull
public AbstractChannelInitializer getChannelInitializer(@NotNull final Listener listener) {
checkNotNull(listener, "Listener must not be null");
if (listener instanceof TcpListener) {
if (listener instanceof TlsTcpListener) {
return createTlsTcpInitializer((TlsTcpListener) listener);
} else {
return createTcpInitializer((TcpListener) listener);
}
}
if (listener instanceof WebsocketListener) {
if (listener instanceof TlsWebsocketListener) {
return createTlsWebsocketInitializer((TlsWebsocketListener) listener);
} else {
return createWebsocketInitializer((WebsocketListener) listener);
}
}
throw new IllegalArgumentException("Unknown listener type");
}
@NotNull
protected AbstractChannelInitializer createTcpInitializer(@NotNull final TcpListener listener) {
return new TcpChannelInitializer(channelDependencies, listener, nonSslHandlerProvider);
}
@NotNull
protected AbstractChannelInitializer createTlsTcpInitializer(@NotNull final TlsTcpListener listener) {
sslFactory.verifySslAtBootstrap(listener, listener.getTls());
return new TlsTcpChannelInitializer(channelDependencies, listener, sslFactory);
}
@NotNull
protected AbstractChannelInitializer createWebsocketInitializer(@NotNull final WebsocketListener listener) {
return new WebsocketChannelInitializer(channelDependencies, listener, nonSslHandlerProvider);
}
@NotNull
protected AbstractChannelInitializer createTlsWebsocketInitializer(@NotNull final TlsWebsocketListener listener) {
sslFactory.verifySslAtBootstrap(listener, listener.getTls());
return new TlsWebsocketChannelInitializer(channelDependencies, listener, sslFactory);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy