org.wisdom.api.bodies.RenderableByteArray Maven / Gradle / Ivy
The newest version!
/*
* #%L
* Wisdom-Framework
* %%
* Copyright (C) 2013 - 2015 Wisdom Framework
* %%
* 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%
*/
package org.wisdom.api.bodies;
import org.wisdom.api.http.Context;
import org.wisdom.api.http.Renderable;
import org.wisdom.api.http.RenderableException;
import org.wisdom.api.http.Result;
import java.io.ByteArrayInputStream;
import java.io.InputStream;
/**
* A renderable object for byte array.
*
* @author Clement Escoffier
*/
public class RenderableByteArray implements Renderable {
private final byte[] bytes;
private final boolean mustBeChunked;
/**
* Creates a new renderable byte array.
*
* @param bytes the array, the method use a reference, not a copy
* @param mustBeChunked enable or disable the chunk encoding. If set to {@literal false},
* the stream will be copied in a byte array before being sent to the client. It may lead to
* {@link java.lang.OutOfMemoryError} if the read data is huge.
*/
public RenderableByteArray(byte[] bytes, boolean mustBeChunked) {
this.bytes = bytes;
this.mustBeChunked = mustBeChunked;
}
/**
* Creates a Renderable byte array from the given byte array.
*
* @param bytes the stream, must not be {@literal null}
*/
public RenderableByteArray(byte[] bytes) {
this(bytes, true);
}
/**
* Renders the wrapped stream.
*
* @param context the HTTP context
* @param result the result having built this renderable object
* @return the wrapped input stream directly. Whether or not this stream will be sent as chunk depends {@link
* #mustBeChunked} field.
* @throws RenderableException if something bad happened
*/
@Override
public InputStream render(Context context, Result result) throws RenderableException {
return new ByteArrayInputStream(bytes);
}
/**
* @return as the length of the byte array
*/
@Override
public long length() {
return bytes.length;
}
/**
* @return as the mime type of the stream is unknown, returns {@literal null}. Users should set the {@literal
* Content-Type} header.
*/
@Override
public String mimetype() {
return null;
}
/**
* Gets the wrapped stream.
*
* @return the wrapped stream
*/
@Override
public byte[] content() {
return bytes;
}
/**
* Streams do not need serializer as we assume the data is already serialized.
*
* @return {@literal false}
*/
@Override
public boolean requireSerializer() {
return false;
}
/**
* As streams do not need serializer, this method should not be used.
*
* @param serialized the serialized form
*/
@Override
public void setSerializedForm(String serialized) {
// Nothing because serialization is not supported for this renderable class.
}
/**
* @return whether or not the stream must be sent using HTTP chunks or direct. If {@literal false},
* the whole stream is read and stored into a byte array and may lead to {@link java.lang.OutOfMemoryError}.
*/
@Override
public boolean mustBeChunked() {
return mustBeChunked;
}
}