blob: ef997e6879a1201f63241953ec5305290b041389 [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.solr.response;
import java.io.IOException;
import java.io.OutputStream;
import java.io.Reader;
import java.io.Writer;
import org.apache.commons.io.IOUtils;
import org.apache.solr.common.util.ContentStream;
import org.apache.solr.common.util.NamedList;
import org.apache.solr.request.SolrQueryRequest;
/**
* Writes a ContentStream directly to the output.
*
* <p>
* This writer is a special case that extends and alters the
* QueryResponseWriter contract. If SolrQueryResponse contains a
* ContentStream added with the key {@link #CONTENT}
* then this writer will output that stream exactly as is (with it's
* Content-Type). if no such ContentStream has been added, then a
* "base" QueryResponseWriter will be used to write the response
* according to the usual contract. The name of the "base" writer can
* be specified as an initialization param for this writer, or it
* defaults to the "standard" writer.
* </p>
*
*
* @since solr 1.3
*/
public class RawResponseWriter implements BinaryQueryResponseWriter
{
/**
* The key that should be used to add a ContentStream to the
* SolrQueryResponse if you intend to use this Writer.
*/
public static final String CONTENT = "content";
private String _baseWriter = null;
@Override
public void init(NamedList n) {
if( n != null ) {
Object base = n.get( "base" );
if( base != null ) {
_baseWriter = base.toString();
}
}
}
// Even if this is null, it should be ok
protected QueryResponseWriter getBaseWriter( SolrQueryRequest request )
{
return request.getCore().getQueryResponseWriter( _baseWriter );
}
@Override
public String getContentType(SolrQueryRequest request, SolrQueryResponse response) {
Object obj = response.getValues().get( CONTENT );
if( obj != null && (obj instanceof ContentStream ) ) {
return ((ContentStream)obj).getContentType();
}
return getBaseWriter( request ).getContentType( request, response );
}
@Override
public void write(Writer writer, SolrQueryRequest request, SolrQueryResponse response) throws IOException
{
Object obj = response.getValues().get( CONTENT );
if( obj != null && (obj instanceof ContentStream ) ) {
// copy the contents to the writer...
ContentStream content = (ContentStream)obj;
Reader reader = content.getReader();
try {
IOUtils.copy( reader, writer );
} finally {
reader.close();
}
}
else {
getBaseWriter( request ).write( writer, request, response );
}
}
@Override
public void write(OutputStream out, SolrQueryRequest request,
SolrQueryResponse response) throws IOException {
Object obj = response.getValues().get( CONTENT );
if( obj != null && (obj instanceof ContentStream ) ) {
// copy the contents to the writer...
ContentStream content = (ContentStream)obj;
java.io.InputStream in = content.getStream();
try {
IOUtils.copy( in, out );
} finally {
in.close();
}
}
else {
//getBaseWriter( request ).write( writer, request, response );
throw new IOException("did not find a CONTENT object");
}
}
}