com.cloudhopper.smpp.channel.SmppSessionLogger 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.type.LoggingOptions;
import static org.jboss.netty.buffer.ChannelBuffers.*;
import org.jboss.netty.buffer.ChannelBuffer;
import org.jboss.netty.channel.ChannelDownstreamHandler;
import org.jboss.netty.channel.ChannelEvent;
import org.jboss.netty.channel.ChannelHandlerContext;
import org.jboss.netty.channel.ChannelPipelineCoverage;
import org.jboss.netty.channel.ChannelUpstreamHandler;
import org.jboss.netty.channel.MessageEvent;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
* Channel handler responsible for logging the bytes sent/received on an
* SmppSession. The internal "options" object is tied directly to the SmppSession
* so that changes can be made on-the-fly during runtime.
*
* @author joelauer (twitter: @jjlauer or http://twitter.com/jjlauer)
*/
@ChannelPipelineCoverage("one")
public class SmppSessionLogger implements ChannelUpstreamHandler, ChannelDownstreamHandler {
private final Logger logger;
private final LoggingOptions options;
public enum Direction {
UP, DOWN
}
/**
* Creates a new instance with the specified logger name.
*/
public SmppSessionLogger(String name) {
this(name, new LoggingOptions());
}
public SmppSessionLogger(String name, LoggingOptions options) {
this.logger = LoggerFactory.getLogger(name);
this.options = options;
}
/**
* Gets the logger that this handler uses to log a ChannelEvent
*/
public Logger getLogger() {
return this.logger;
}
/**
* Gets the logging options used by this handler for logging.
*/
public LoggingOptions getOptions() {
return this.options;
}
/**
* Logs the specified event to the {@link InternalLogger} returned by
* {@link #getLogger()}. If hex dump has been enabled for this handler,
* the hex dump of the {@link ChannelBuffer} in a {@link MessageEvent} will
* be logged together.
*/
protected void log(Direction direction, ChannelEvent evt) {
// handle logging of message events (PDU, ChannelBuffer, etc.)
if (evt instanceof MessageEvent) {
MessageEvent me = (MessageEvent)evt;
// handle logging of bytes write/read
if ((me.getMessage() instanceof ChannelBuffer) && this.options.isLogBytesEnabled()) {
ChannelBuffer buffer = (ChannelBuffer)me.getMessage();
if (direction == Direction.UP) {
logger.info("read bytes: [{}]", hexDump(buffer));
} else if (direction == Direction.DOWN) {
logger.info("write bytes: [{}]", hexDump(buffer));
}
}
}
}
@Override
public void handleUpstream(ChannelHandlerContext ctx, ChannelEvent e) throws Exception {
log(Direction.UP, e);
ctx.sendUpstream(e);
}
@Override
public void handleDownstream(ChannelHandlerContext ctx, ChannelEvent e) throws Exception {
log(Direction.DOWN, e);
ctx.sendDownstream(e);
}
}