org.jboss.resteasy.plugins.providers.multipart.AbstractMultipartWriter Maven / Gradle / Ivy
package org.jboss.resteasy.plugins.providers.multipart;
import java.io.IOException;
import java.io.OutputStream;
import java.lang.annotation.Annotation;
import java.lang.reflect.Type;
import java.nio.charset.StandardCharsets;
import java.util.concurrent.CompletableFuture;
import java.util.concurrent.CompletionStage;
import java.util.function.Function;
import jakarta.ws.rs.core.Context;
import jakarta.ws.rs.core.MediaType;
import jakarta.ws.rs.core.MultivaluedMap;
import jakarta.ws.rs.ext.MessageBodyWriter;
import jakarta.ws.rs.ext.Providers;
import org.jboss.resteasy.plugins.providers.ProviderHelper;
import org.jboss.resteasy.resteasy_jaxrs.i18n.LogMessages;
import org.jboss.resteasy.specimpl.MultivaluedMapImpl;
import org.jboss.resteasy.spi.AsyncMessageBodyWriter;
import org.jboss.resteasy.spi.AsyncOutputStream;
import org.jboss.resteasy.util.DelegatingOutputStream;
import org.jboss.resteasy.util.HttpHeaderNames;
/**
* @author Bill Burke
* @version $Revision: 1 $
*/
public class AbstractMultipartWriter {
protected static final byte[] DOUBLE_DASH_BYTES = "--".getBytes(StandardCharsets.US_ASCII);
protected static final byte[] LINE_SEPARATOR_BYTES = "\r\n".getBytes(StandardCharsets.US_ASCII);
protected static final byte[] COLON_SPACE_BYTES = ": ".getBytes(StandardCharsets.US_ASCII);
@Context
protected Providers workers;
/**
* @deprecated use {@link #write(MultipartOutput, MediaType, MultivaluedMap, OutputStream, Annotation[])}
*/
@Deprecated
protected void write(MultipartOutput multipartOutput, MediaType mediaType,
MultivaluedMap httpHeaders, OutputStream entityStream)
throws IOException {
write(multipartOutput, mediaType, httpHeaders, entityStream, null);
}
protected void write(MultipartOutput multipartOutput, MediaType mediaType,
MultivaluedMap httpHeaders,
OutputStream entityStream, Annotation[] annotations)
throws IOException {
String boundary = mediaType.getParameters().get("boundary");
if (boundary == null)
boundary = multipartOutput.getBoundary();
httpHeaders.putSingle(HttpHeaderNames.CONTENT_TYPE, mediaType + "; boundary=" + multipartOutput.getBoundary());
byte[] boundaryBytes = ("--" + boundary).getBytes(StandardCharsets.US_ASCII);
writeParts(multipartOutput, entityStream, boundaryBytes, annotations);
entityStream.write(boundaryBytes);
entityStream.write(DOUBLE_DASH_BYTES);
}
/**
* @deprecated use {@link #writeParts(MultipartOutput, OutputStream, byte[], Annotation[])}
*/
@Deprecated
protected void writeParts(MultipartOutput multipartOutput, OutputStream entityStream, byte[] boundaryBytes)
throws IOException {
writeParts(multipartOutput, entityStream, boundaryBytes, null);
}
protected void writeParts(MultipartOutput multipartOutput, OutputStream entityStream, byte[] boundaryBytes,
Annotation[] annotations)
throws IOException {
for (OutputPart part : multipartOutput.getParts()) {
MultivaluedMap headers = new MultivaluedMapImpl<>();
writePart(entityStream, boundaryBytes, part, headers, annotations);
}
}
/**
* @deprecated use {@link #writePart(OutputStream, byte[], OutputPart, MultivaluedMap, Annotation[])}
*/
@Deprecated
protected void writePart(OutputStream entityStream, byte[] boundaryBytes, OutputPart part,
MultivaluedMap headers)
throws IOException {
writePart(entityStream, boundaryBytes, part, headers, null);
}
@SuppressWarnings({ "unchecked", "rawtypes" })
protected void writePart(OutputStream entityStream, byte[] boundaryBytes, OutputPart part,
MultivaluedMap headers, Annotation[] annotations)
throws IOException {
entityStream.write(boundaryBytes);
entityStream.write(LINE_SEPARATOR_BYTES);
headers.putAll(part.getHeaders());
headers.putSingle(HttpHeaderNames.CONTENT_TYPE, part.getMediaType());
Object entity = part.getEntity();
Class> entityType = part.getType();
Type entityGenericType = part.getGenericType();
MessageBodyWriter writer = workers.getMessageBodyWriter(entityType, entityGenericType, annotations,
part.getMediaType());
LogMessages.LOGGER.debugf("MessageBodyWriter: %s", writer.getClass().getName());
OutputStream partStream = new DelegatingOutputStream(entityStream) {
@Override
public void close() {
// no close
// super.close();
}
};
writer.writeTo(entity, entityType, entityGenericType, annotations, part.getMediaType(), headers,
new HeaderFlushedOutputStream(headers, partStream));
entityStream.write(LINE_SEPARATOR_BYTES);
}
/**
* @deprecated use {@link #asyncWrite(MultipartOutput, MediaType, MultivaluedMap, AsyncOutputStream, Annotation[])}
*/
@Deprecated
protected CompletionStage asyncWrite(MultipartOutput multipartOutput, MediaType mediaType,
MultivaluedMap httpHeaders,
AsyncOutputStream entityStream) {
return asyncWrite(multipartOutput, mediaType, httpHeaders, entityStream, null);
}
protected CompletionStage asyncWrite(MultipartOutput multipartOutput, MediaType mediaType,
MultivaluedMap httpHeaders, AsyncOutputStream entityStream,
Annotation[] annotations) {
String boundary = mediaType.getParameters().get("boundary");
if (boundary == null)
boundary = multipartOutput.getBoundary();
httpHeaders.putSingle(HttpHeaderNames.CONTENT_TYPE, mediaType + "; boundary=" + multipartOutput.getBoundary());
byte[] boundaryBytes = ("--" + boundary).getBytes(StandardCharsets.US_ASCII);
return asyncWriteParts(multipartOutput, entityStream, boundaryBytes, annotations)
.thenCompose(v -> entityStream.asyncWrite(boundaryBytes))
.thenCompose(v -> entityStream.asyncWrite(DOUBLE_DASH_BYTES));
}
/**
* @deprecated use {@link #asyncWriteParts(MultipartOutput, AsyncOutputStream, byte[], Annotation[])}
*/
@Deprecated
protected CompletionStage asyncWriteParts(MultipartOutput multipartOutput, AsyncOutputStream entityStream,
byte[] boundaryBytes) {
return asyncWriteParts(multipartOutput, entityStream, boundaryBytes, null);
}
protected CompletionStage asyncWriteParts(MultipartOutput multipartOutput, AsyncOutputStream entityStream,
byte[] boundaryBytes, Annotation[] annotations) {
CompletionStage ret = CompletableFuture.completedFuture(null);
for (OutputPart part : multipartOutput.getParts()) {
MultivaluedMap headers = new MultivaluedMapImpl<>();
ret = ret.thenCompose(v -> asyncWritePart(entityStream, boundaryBytes, part, headers, annotations));
}
return ret;
}
/**
* @deprecated use {@link #asyncWritePart(AsyncOutputStream, byte[], OutputPart, MultivaluedMap, Annotation[])}
*/
@Deprecated
protected CompletionStage asyncWritePart(AsyncOutputStream entityStream, byte[] boundaryBytes,
OutputPart part, MultivaluedMap headers) {
return asyncWritePart(entityStream, boundaryBytes, part, headers, null);
}
@SuppressWarnings(value = "unchecked")
protected CompletionStage asyncWritePart(AsyncOutputStream entityStream, byte[] boundaryBytes,
OutputPart part, MultivaluedMap headers,
Annotation[] annotations) {
headers.putAll(part.getHeaders());
headers.putSingle(HttpHeaderNames.CONTENT_TYPE, part.getMediaType());
Object entity = part.getEntity();
Class> entityType = part.getType();
Type entityGenericType = part.getGenericType();
final MessageBodyWriter
© 2015 - 2025 Weber Informatics LLC | Privacy Policy