org.mule.util.DefaultStreamCloserService Maven / Gradle / Ivy
/*
* $Id: DefaultStreamCloserService.java 19191 2010-08-25 21:05:23Z tcarlson $
* --------------------------------------------------------------------------------------
* Copyright (c) MuleSoft, Inc. All rights reserved. http://www.mulesoft.com
*
* The software in this package is published under the terms of the CPAL v1.0
* license, a copy of which has been included with this distribution in the
* LICENSE.txt file.
*/
package org.mule.util;
import org.mule.api.MuleContext;
import org.mule.api.util.StreamCloser;
import org.mule.api.util.StreamCloserService;
import java.io.IOException;
import java.io.InputStream;
import java.util.Iterator;
import javax.xml.transform.sax.SAXSource;
import javax.xml.transform.stream.StreamSource;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.xml.sax.InputSource;
/**
* Closes streams of different types by looking up available {@link StreamCloser}'s
* from the Mule registry.
*/
public class DefaultStreamCloserService implements StreamCloserService
{
private static final Log log = LogFactory.getLog(DefaultStreamCloserService.class);
private MuleContext muleContext;
private StreamCloser coreStreamTypesCloser = new CoreStreamTypesCloser();
public void closeStream(Object stream)
{
try
{
if (coreStreamTypesCloser.canClose(stream.getClass()))
{
coreStreamTypesCloser.close(stream);
}
else
{
Iterator closers = muleContext.getRegistry().lookupObjects(StreamCloser.class).iterator();
while (closers.hasNext())
{
StreamCloser closer = (StreamCloser) closers.next();
if (closer.canClose(stream.getClass()))
{
closer.close(stream);
}
else
{
log.debug("Unable to find an StreamCloser for the stream type: " + stream.getClass()
+ ", the stream: " + stream + " will not be closed.");
}
}
}
}
catch (Exception e)
{
log.debug("Exception closing stream: " + stream, e);
}
}
public void setMuleContext(MuleContext context)
{
muleContext = context;
}
static class CoreStreamTypesCloser implements StreamCloser
{
public boolean canClose(Class streamType)
{
return InputStream.class.isAssignableFrom(streamType)
|| InputSource.class.isAssignableFrom(streamType)
|| StreamSource.class.isAssignableFrom(streamType)
|| (SAXSource.class.isAssignableFrom(streamType) && !streamType.getName().endsWith(
"StaxSource"));
}
public void close(Object stream) throws IOException
{
if (stream instanceof InputStream)
{
try
{
((InputStream) stream).close();
}
catch (IOException e)
{
// no-op
}
}
else if (stream instanceof InputSource)
{
closeInputSourceStream((InputSource) stream);
}
else if (stream instanceof SAXSource)
{
closeInputSourceStream(((SAXSource) stream).getInputSource());
}
else if (stream instanceof StreamSource)
{
try
{
((StreamSource) stream).getInputStream().close();
}
catch (IOException e)
{
}
}
}
private void closeInputSourceStream(InputSource payload) throws IOException
{
if (payload.getByteStream() != null)
{
payload.getByteStream().close();
}
else if (payload.getCharacterStream() != null)
{
payload.getCharacterStream().close();
}
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy