org.springframework.integration.stream.CharacterStreamWritingMessageHandler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spring-integration-stream Show documentation
Show all versions of spring-integration-stream Show documentation
Spring Integration Stream Support
/*
* Copyright 2002-2024 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
*
* https://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.springframework.integration.stream;
import java.io.BufferedWriter;
import java.io.IOException;
import java.io.OutputStream;
import java.io.OutputStreamWriter;
import java.io.PrintWriter;
import java.io.UnsupportedEncodingException;
import java.io.Writer;
import org.springframework.integration.handler.AbstractMessageHandler;
import org.springframework.messaging.Message;
import org.springframework.messaging.MessagingException;
import org.springframework.util.Assert;
/**
* A {@link org.springframework.messaging.MessageHandler}
* that writes characters to a {@link Writer}.
* String, character array, and byte array payloads will be written directly,
* but for other payload types, the result of the object's {@link #toString()}
* method will be written. To append a new-line after each write, set the
* {@link #setShouldAppendNewLine(boolean) shouldAppendNewLine} flag to 'true'. It is 'false' by default.
*
* @author Mark Fisher
* @author Gary Russell
*/
public class CharacterStreamWritingMessageHandler extends AbstractMessageHandler {
private final BufferedWriter writer;
private volatile boolean shouldAppendNewLine = false;
public CharacterStreamWritingMessageHandler(Writer writer) {
this(writer, -1);
}
public CharacterStreamWritingMessageHandler(Writer writer, int bufferSize) {
Assert.notNull(writer, "writer must not be null");
if (writer instanceof BufferedWriter) {
this.writer = (BufferedWriter) writer;
}
else if (bufferSize > 0) {
this.writer = new BufferedWriter(writer, bufferSize);
}
else {
this.writer = new BufferedWriter(writer);
}
}
/**
* Factory method that creates a target for stdout (System.out) with the
* default charset encoding.
*
* @return A stdout handler with the default charset.
*/
public static CharacterStreamWritingMessageHandler stdout() {
return stdout(null);
}
/**
* Factory method that creates a target for stdout (System.out) with the
* specified charset encoding.
*
* @param charsetName The charset name.
* @return A stdout handler.
*/
public static CharacterStreamWritingMessageHandler stdout(String charsetName) {
return createTargetForStream(System.out, charsetName);
}
/**
* Factory method that creates a target for stderr (System.err) with the
* default charset encoding.
*
* @return A stderr handler with the default charset.
*/
public static CharacterStreamWritingMessageHandler stderr() {
return stderr(null);
}
/**
* Factory method that creates a target for stderr (System.err) with the
* specified charset encoding.
*
* @param charsetName The charset name.
* @return A stderr handler.
*/
public static CharacterStreamWritingMessageHandler stderr(String charsetName) {
return createTargetForStream(System.err, charsetName);
}
private static CharacterStreamWritingMessageHandler createTargetForStream(OutputStream stream, String charsetName) {
if (charsetName == null) {
return new CharacterStreamWritingMessageHandler(new OutputStreamWriter(stream));
}
try {
return new CharacterStreamWritingMessageHandler(new OutputStreamWriter(stream, charsetName));
}
catch (UnsupportedEncodingException e) {
throw new IllegalArgumentException("unsupported encoding: " + charsetName, e);
}
}
public void setShouldAppendNewLine(boolean shouldAppendNewLine) {
this.shouldAppendNewLine = shouldAppendNewLine;
}
/**
* Fluent api for {@link #setShouldAppendNewLine(boolean)}.
* @param append true to append a newline.
* @return this.
* @since 5.4
*/
public CharacterStreamWritingMessageHandler appendNewLine(boolean append) {
setShouldAppendNewLine(append);
return this;
}
@Override
public String getComponentType() {
return "stream:outbound-channel-adapter(character)";
}
@Override
protected void handleMessageInternal(Message> message) {
Object payload = message.getPayload();
try {
if (payload instanceof String) {
this.writer.write((String) payload);
}
else if (payload instanceof char[]) {
this.writer.write((char[]) payload);
}
else if (payload instanceof byte[]) {
this.writer.write(new String((byte[]) payload));
}
else if (payload instanceof Exception) {
PrintWriter printWriter = new PrintWriter(this.writer, true);
((Exception) payload).printStackTrace(printWriter);
}
else {
this.writer.write(payload.toString());
}
if (this.shouldAppendNewLine) {
this.writer.newLine();
}
this.writer.flush();
}
catch (IOException e) {
throw new MessagingException("IO failure occurred in target", e);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy