blob: ecb6dbae72179efb7198b61649e7a538d55cdc5b [file] [log] [blame]
/**
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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.apache.camel.component.netty;
import java.net.SocketAddress;
import org.apache.camel.Exchange;
import org.apache.camel.NoTypeConversionAvailableException;
import org.jboss.netty.channel.Channel;
import org.jboss.netty.channel.ChannelFuture;
import org.jboss.netty.channel.ChannelFutureListener;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
* Helper class used internally by camel-netty using Netty.
*
* @version
*/
public final class NettyHelper {
public static final int DEFAULT_IO_THREADS = Runtime.getRuntime().availableProcessors() * 2;
private static final Logger LOG = LoggerFactory.getLogger(NettyHelper.class);
private NettyHelper() {
// Utility class
}
/**
* Gets the string body to be used when sending with the textline codec.
*
* @param body the current body
* @param exchange the exchange
* @param delimiter the textline delimiter
* @param autoAppendDelimiter whether absent delimiter should be auto appended
* @return the string body to send
* @throws NoTypeConversionAvailableException is thrown if the current body could not be converted to a String type
*/
public static String getTextlineBody(Object body, Exchange exchange, TextLineDelimiter delimiter, boolean autoAppendDelimiter) throws NoTypeConversionAvailableException {
String s = exchange.getContext().getTypeConverter().mandatoryConvertTo(String.class, exchange, body);
// auto append delimiter if missing?
if (autoAppendDelimiter) {
if (TextLineDelimiter.LINE.equals(delimiter)) {
// line delimiter so ensure it ends with newline
if (!s.endsWith("\n")) {
LOG.trace("Auto appending missing newline delimiter to body");
s = s + "\n";
}
} else {
// null delimiter so ensure it ends with null
if (!s.endsWith("\u0000")) {
LOG.trace("Auto appending missing null delimiter to body");
s = s + "\u0000";
}
}
}
return s;
}
/**
* Writes the given body to Netty channel. Will <b>not</b >wait until the body has been written.
*
* @param log logger to use
* @param channel the Netty channel
* @param remoteAddress the remote address when using UDP
* @param body the body to write (send)
* @param exchange the exchange
* @param listener listener with work to be executed when the operation is complete
*/
public static void writeBodyAsync(Logger log, Channel channel, SocketAddress remoteAddress, Object body,
Exchange exchange, ChannelFutureListener listener) {
ChannelFuture future;
if (remoteAddress != null) {
if (log.isDebugEnabled()) {
log.debug("Channel: {} remote address: {} writing body: {}", new Object[]{channel, remoteAddress, body});
}
future = channel.write(body, remoteAddress);
} else {
if (log.isDebugEnabled()) {
log.debug("Channel: {} writing body: {}", new Object[]{channel, body});
}
future = channel.write(body);
}
if (listener != null) {
future.addListener(listener);
}
}
/**
* Closes the given channel asynchronously
*
* @param channel the channel to close
*/
public static void close(Channel channel) {
if (channel != null) {
channel.close().addListener(new ChannelFutureListener() {
public void operationComplete(ChannelFuture future) {
LOG.trace("Channel closed: {}", future.getChannel());
}
});
}
}
}