org.jboss.resteasy.plugins.providers.multipart.MultipartReader Maven / Gradle / Ivy
package org.jboss.resteasy.plugins.providers.multipart;
import java.io.IOException;
import java.io.InputStream;
import java.lang.annotation.Annotation;
import java.lang.reflect.Type;
import jakarta.ws.rs.Consumes;
import jakarta.ws.rs.WebApplicationException;
import jakarta.ws.rs.core.Context;
import jakarta.ws.rs.core.MediaType;
import jakarta.ws.rs.core.MultivaluedMap;
import jakarta.ws.rs.ext.MessageBodyReader;
import jakarta.ws.rs.ext.Provider;
import jakarta.ws.rs.ext.Providers;
import org.jboss.resteasy.plugins.providers.multipart.i18n.Messages;
/**
* @author Bill Burke
* @version $Revision: 1 $
*/
@Provider
@Consumes("multipart/*")
public class MultipartReader implements MessageBodyReader {
protected @Context Providers workers;
public boolean isReadable(Class> type, Type genericType, Annotation[] annotations, MediaType mediaType) {
return type.equals(MultipartInput.class);
}
public MultipartInput readFrom(Class type, Type genericType, Annotation[] annotations, MediaType mediaType,
MultivaluedMap httpHeaders, InputStream entityStream) throws IOException, WebApplicationException {
String boundary = mediaType.getParameters().get("boundary");
if (boundary == null)
throw new IOException(Messages.MESSAGES.unableToGetBoundary());
MultipartInputImpl input = new MultipartInputImpl(mediaType, workers);
/*
* StringWriter writer = new StringWriter();
* int b;
* do
* {
* b = entityStream.read();
* if (b == -1) break;
* writer.write(b);
* } while (b != -1);
* System.out.println(writer.toString());
*/
input.parse(entityStream);
return input;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy