com.cloudhopper.smpp.channel.SmppServerConnector Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ch-smpp Show documentation
Show all versions of ch-smpp Show documentation
Efficient, scalable, and flexible Java implementation of the Short Messaging Peer to Peer Protocol (SMPP)
package com.cloudhopper.smpp.channel;
/*
* #%L
* ch-smpp
* %%
* Copyright (C) 2009 - 2015 Cloudhopper by Twitter
* %%
* 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.
* #L%
*/
import com.cloudhopper.smpp.impl.DefaultSmppServer;
import com.cloudhopper.smpp.impl.UnboundSmppSession;
import com.cloudhopper.smpp.ssl.SslConfiguration;
import com.cloudhopper.smpp.ssl.SslContextFactory;
import io.netty.channel.Channel;
import io.netty.channel.ChannelHandlerContext;
import io.netty.channel.group.ChannelGroup;
import io.netty.handler.ssl.SslHandler;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import javax.net.ssl.SSLEngine;
import static io.netty.channel.ChannelHandler.Sharable;
/**
* Channel handler for server SMPP sessions.
*
* @author joelauer (twitter: @jjlauer or http://twitter.com/jjlauer)
*/
@Sharable
public class SmppServerConnector extends LoggingChannelInboundHandlerAdapter {
private static final Logger logger = LoggerFactory.getLogger(SmppServerConnector.class);
// reference to every channel connected via this server channel
private ChannelGroup channels;
private DefaultSmppServer server;
public SmppServerConnector(ChannelGroup channels, DefaultSmppServer server) {
super(SmppServerConnector.class);
this.channels = channels;
this.server = server;
}
//TODO is channelActive is the same as channelConnected?
// @trustin: Yes for client channels or accepted channels. For server channels, it is same with channelBound.
@Override
public void channelActive(ChannelHandlerContext ctx) throws Exception {
logger.trace("channelActive");
// the channel we are going to handle
Channel channel = ctx.channel();
// always add it to our channel group
channels.add(channel);
this.server.getCounters().incrementChannelConnectsAndGet();
// create a default "unbound" thread name for the thread processing the channel
// this will create a name of "RemoteIPAddress.RemotePort"
String channelName = ChannelUtil.createChannelName(channel);
String threadName = server.getConfiguration().getName() + ".UnboundSession." + channelName;
// rename the current thread for logging, then rename it back
String currentThreadName = Thread.currentThread().getName();
Thread.currentThread().setName(server.getConfiguration().getName());
logger.info("New channel from [{}]", channelName);
Thread.currentThread().setName(currentThreadName);
// add SSL handler
if (server.getConfiguration().isUseSsl()) {
SslConfiguration sslConfig = server.getConfiguration().getSslConfiguration();
if (sslConfig == null) throw new IllegalStateException("sslConfiguration must be set");
SslContextFactory factory = new SslContextFactory(sslConfig);
SSLEngine sslEngine = factory.newSslEngine();
sslEngine.setUseClientMode(false);
channel.pipeline().addLast(SmppChannelConstants.PIPELINE_SESSION_SSL_NAME, new SslHandler(sslEngine));
}
// add a new instance of a thread renamer
channel.pipeline().addLast(SmppChannelConstants.PIPELINE_SESSION_THREAD_RENAMER_NAME, new SmppSessionThreadRenamer(threadName));
// add a new instance of a decoder (that takes care of handling frames)
channel.pipeline().addLast(SmppChannelConstants.PIPELINE_SESSION_PDU_DECODER_NAME, new SmppSessionPduDecoder(server.getTranscoder()));
// create a new wrapper around an "unbound" session to pass the pdu up the chain
UnboundSmppSession session = new UnboundSmppSession(channelName, channel, server);
channel.pipeline().addLast(SmppChannelConstants.PIPELINE_SESSION_WRAPPER_NAME, new SmppSessionWrapper(session));
super.channelActive(ctx);
}
//TODO is channelInactive is the same as channelDisconnected?
// @trustin: Yes for client channels or accepted channels. For server channels, it is same with channelUnbound.
@Override
public void channelInactive(ChannelHandlerContext ctx) throws Exception {
logger.trace("channelInactive");
logger.info("Disconnected channel from [{}]", ChannelUtil.createChannelName(ctx.channel()));
// called every time a channel disconnects
channels.remove(ctx.channel());
this.server.getCounters().incrementChannelDisconnectsAndGet();
super.channelInactive(ctx);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy