com.sun.jersey.multipart.file.StreamDataBodyPart Maven / Gradle / Ivy
/*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
*
* Copyright (c) 2010-2011 Oracle and/or its affiliates. All rights reserved.
*
* The contents of this file are subject to the terms of either the GNU
* General Public License Version 2 only ("GPL") or the Common Development
* and Distribution License("CDDL") (collectively, the "License"). You
* may not use this file except in compliance with the License. You can
* obtain a copy of the License at
* http://glassfish.java.net/public/CDDL+GPL_1_1.html
* or packager/legal/LICENSE.txt. See the License for the specific
* language governing permissions and limitations under the License.
*
* When distributing the software, include this License Header Notice in each
* file and include the License file at packager/legal/LICENSE.txt.
*
* GPL Classpath Exception:
* Oracle designates this particular file as subject to the "Classpath"
* exception as provided by Oracle in the GPL Version 2 section of the License
* file that accompanied this code.
*
* Modifications:
* If applicable, add the following below the License Header, with the fields
* enclosed by brackets [] replaced by your own identifying information:
* "Portions Copyright [year] [name of copyright owner]"
*
* Contributor(s):
* If you wish your version of this file to be governed by only the CDDL or
* only the GPL Version 2, indicate your decision by adding "[Contributor]
* elects to include this software in this distribution under the [CDDL or GPL
* Version 2] license." If you don't indicate a single choice of license, a
* recipient has the option to distribute your version of this file under
* either the CDDL, the GPL Version 2 or to extend the choice of license to
* its licensees as provided above. However, if you add GPL Version 2 code
* and therefore, elected the GPL Version 2 license, then the option applies
* only if the new code is made subject to such option by the copyright
* holder.
*/
package com.sun.jersey.multipart.file;
import java.io.InputStream;
import java.text.MessageFormat;
import javax.ws.rs.core.MediaType;
import com.sun.jersey.core.header.FormDataContentDisposition;
import com.sun.jersey.core.header.FormDataContentDisposition.FormDataContentDispositionBuilder;
import com.sun.jersey.multipart.FormDataBodyPart;
/**
*
* Represents an {@link InputStream} based file submission as a part of the
* multipart/form-data.
*
*
*
* It sets the {@link InputStream} as a body part with the default
* {@link MediaType#APPLICATION_OCTET_STREAM_TYPE} (if not specified by the
* user).
Note that the MIME type of the entity cannot be
* automatically predicted as in case of {@link FileDataBodyPart}.
*
*
*
* The filename of the attachment is set by the user or defaults to the part's
* name.
*
*
* @see FileDataBodyPart
* @author PedroKowalski ([email protected])
*
*/
public class StreamDataBodyPart extends FormDataBodyPart {
/**
* Underlying input stream entity to be sent.
*/
private InputStream streamEntity;
/**
* Filename of the attachment (stream) set by the user.
*/
private String filename;
/**
*
* Default constructor which forces user to manually set
* the required (name
and streamEntity
)
* properties.
*
*
*
* {@link StreamDataBodyPart#setFilename(String)} can be used to set
* user-specified attachment filename instead of the default one.
*
*
* @see FormDataBodyPart#setName(String)
* @see StreamDataBodyPart#setStreamEntity(InputStream, MediaType)
*/
public StreamDataBodyPart() {
}
/**
*
* Convenience constructor which assumes the defaults for:
* filename
(part's name) and mediaType
(
* {@link MediaType#APPLICATION_OCTET_STREAM_TYPE}).
*
*
*
* It builds the requested body part and makes the part ready for
* submission.
*
*
* @param name
* name of the form-data field
* @param streamEntity
* entity to be set as a body part
*/
public StreamDataBodyPart(final String name, final InputStream streamEntity) {
this(name, streamEntity, null, null);
}
/**
*
* Convenience constructor which assumes the defaults for the
* mediaType
({@link MediaType#APPLICATION_OCTET_STREAM_TYPE}).
*
*
*
* It builds the requested body part and makes the part ready for
* submission.
*
*
* @param name
* name of the form-data field
* @param streamEntity
* entity to be set as a body part
* @param filename
* filename of the sent attachment (to be set as a part of
* content-disposition)
*/
public StreamDataBodyPart(final String name,
final InputStream streamEntity, final String filename) {
this(name, streamEntity, filename, null);
}
/**
*
* All-arguments constructor with all requested parameters set by the
* caller.
*
*
*
* It builds the requested body part and makes the part ready for
* submission.
*
*
* @param name
* name of the form-data field
* @param streamEntity
* entity to be set as a body part
* @param filename
* filename of the sent attachment (to be set as a part of
* content-disposition)
* @param mediaType
* MIME type of the streamEntity
attachment
*
* @throws IllegalArgumentException
* if name
or streamEntity
are null.
*/
public StreamDataBodyPart(final String name,
final InputStream streamEntity, final String filename,
final MediaType mediaType) {
// Not allowed in non-default constructor invocation.
if (name == null || streamEntity == null) {
MessageFormat msg = new MessageFormat(
"Neither the \"name\" nor \"streamEntity\" can be null. Passed values: \"{0}\" \"{1}\"");
throw new IllegalArgumentException(msg.format(new Object[] { name,
streamEntity }));
}
setFilename(filename);
// Be sure to hit the parent (non-overloaded) method.
super.setName(name);
if (mediaType != null) {
setStreamEntity(streamEntity, mediaType);
} else {
setStreamEntity(streamEntity, getDefaultMediaType());
}
}
/**
* This operation is not supported from this implementation.
*
* @throws java.lang.UnsupportedOperationException
* Operation not supported.
*
* @see StreamDataBodyPart#setStreamEntity(InputStream, MediaType)
*/
@Override
public void setValue(MediaType mediaType, Object value)
throws UnsupportedOperationException {
throw new UnsupportedOperationException(
"It is unsupported, please use setStreamEntity(-) instead!");
}
/**
* This operation is not supported from this implementation.
*
* @throws java.lang.UnsupportedOperationException
* Operation not supported.
*
* @see StreamDataBodyPart#setStreamEntity(InputStream)
*/
@Override
public void setValue(String value) {
throw new UnsupportedOperationException(
"It is unsupported, please use setStreamEntity(-) instead!");
}
/**
* This operation is not supported from this implementation.
*
* @throws java.lang.UnsupportedOperationException
* Operation not supported.
*
* @see StreamDataBodyPart#setStreamEntity(InputStream, MediaType)
*/
@Override
public void setEntity(Object entity) throws UnsupportedOperationException {
throw new UnsupportedOperationException(
"It is unsupported, please use setStreamEntity(-) instead!");
}
/**
*
* Allows to explicitly set the body part entity. This method assumes the
* default {@link MediaType#APPLICATION_OCTET_STREAM} MIME type and doesn't
* have to be invoked if one of the non-default constructors was already
* called.
*
*
*
* Either this method or
* {@link StreamDataBodyPart#setStreamEntity(InputStream, MediaType)}
* must be invoked if the default constructor was called.
*
*
* @param streamEntity
* entity to be set as a body part
*/
public void setStreamEntity(final InputStream streamEntity) {
this.setStreamEntity(streamEntity, getDefaultMediaType());
}
/**
*
* Allows to explicitly set the value and the MIME type of the body part
* entity. This method doesn't have to be invoked if one of the non-default
* constructors was already called.
*
*
*
* Either this method or
* {@link StreamDataBodyPart#setStreamEntity(InputStream)}
* must be invoked if the default constructor was called.
*
*
* @param streamEntity
* entity to be set as a body part
* @param mediaType
* MIME type of the streamEntity
attachment
*/
public void setStreamEntity(final InputStream streamEntity,
MediaType mediaType) {
if (streamEntity == null) {
throw new IllegalArgumentException(
"Stream body part entity cannot be null.");
}
if (mediaType == null) {
mediaType = getDefaultMediaType();
}
this.streamEntity = streamEntity;
// Be sure to hit the parent (non-overloaded) method.
super.setMediaType(mediaType);
super.setEntity(streamEntity);
setFormDataContentDisposition(buildContentDisposition());
}
/**
* Builds the body part content-disposition header which the specified
* filename (or the default one if unspecified).
*
* @return ready to use content-disposition header
*/
protected FormDataContentDisposition buildContentDisposition() {
FormDataContentDispositionBuilder builder = FormDataContentDisposition
.name(getName());
if (filename != null) {
builder.fileName(filename);
} else {
// Default is to set the name of the file as a form-field name.
builder.fileName(getName());
}
return builder.build();
}
/**
* Gets the default {@link MediaType} to be used if the user didn't specify
* any.
*
* @return default {@link MediaType} for this body part entity.
*/
protected static MediaType getDefaultMediaType() {
return MediaType.APPLICATION_OCTET_STREAM_TYPE;
}
/**
* Sets the body part entity filename value to be used in the
* content-disposition header.
*
* @param filename
* name to be used
*/
public void setFilename(String filename) {
this.filename = filename;
}
/**
* Gets the underlying stream entity which will form the body part entity.
*
* @return underlying stream.
*/
public InputStream getStreamEntity() {
return streamEntity;
}
/**
* Gets the filename value which is to be used in the content-disposition
* header of this body part entity.
*
* @return filename
*/
public String getFilename() {
return filename;
}
}