/*
* BufferPart.java February 2012
*
* Copyright (C) 2007, Niall Gallagher <niallg@users.sf.net>
*
* 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.
*/
package org.simpleframework.http.message;
import java.io.IOException;
import java.io.InputStream;
import org.simpleframework.http.ContentDisposition;
import org.simpleframework.http.ContentType;
import org.simpleframework.http.Part;
import org.simpleframework.util.buffer.Buffer;
/**
* The <code>BufferPart</code> is used to represent a part within a request
* message. Typically a part represents either a text parameter or a file, with
* associated headers. The contents of the part can be acquire as an
* <code>InputStream</code> or as a string encoded in the default HTTP encoding
* ISO-8859-1 or in the encoding specified with the Content-Type header.
*
* @author Niall Gallagher
*/
class BufferPart implements Part {
/**
* This is the segment representing the headers for the part.
*/
private final Segment segment;
/**
* This is the body that forms the payload for the part.
*/
private final Body body;
/**
* Constructor for the <code>BufferPart</code> object. This is used to
* create a part from a multipart body. Each part will contain the headers
* associated with it as well as the body.
*
* @param segment
* this holds the headers for the part
* @param buffer
* this represents the body for the part
*/
public BufferPart(Segment segment, Buffer buffer) {
this.body = new BufferBody(buffer);
this.segment = segment;
}
/**
* This method is used to determine the type of a part. Typically a part is
* either a text parameter or a file. If this is true then the content
* represented by the associated part is a file.
*
* @return this returns true if the associated part is a file
*/
@Override
public boolean isFile() {
return this.getDisposition().isFile();
}
/**
* This method is used to acquire the name of the part. Typically this is
* used when the part represents a text parameter rather than a file.
* However, this can also be used with a file part.
*
* @return this returns the name of the associated part
*/
@Override
public String getName() {
return this.getDisposition().getName();
}
/**
* This method is used to acquire the file name of the part. This is used
* when the part represents a text parameter rather than a file. However,
* this can also be used with a file part.
*
* @return this returns the file name of the associated part
*/
@Override
public String getFileName() {
return this.getDisposition().getFileName();
}
/**
* This is used to acquire the content of the part as a string. The encoding
* of the string is taken from the content type. If no content type is sent
* the content is decoded in the standard default of ISO-8859-1.
*
* @return this returns a string representing the content
*
* @throws IOException
* thrown if the content can not be created
*/
@Override
public String getContent() throws IOException {
return this.body.getContent();
}
/**
* This is used to acquire an <code>InputStream</code> for the part.
* Acquiring the stream allows the content of the part to be consumed by
* reading the stream. Each invocation of this method will produce a new
* stream starting from the first byte.
*
* @return this returns the stream for this part object
*
* @throws IOException
* thrown if the stream can not be created
*/
@Override
public InputStream getInputStream() throws IOException {
return this.body.getInputStream();
}
/**
* This is used to acquire the content type for this part. This is typically
* the type of content for a file part, as provided by a MIME type from the
* HTTP "Content-Type" header.
*
* @return this returns the content type for the part object
*/
@Override
public ContentType getContentType() {
return this.segment.getContentType();
}
/**
* This is used to acquire the content disposition for the part. The content
* disposition contains the Content-Disposition header details sent with the
* part in the multipart request body.
*
* @return value of the header mapped to the specified name
*/
public ContentDisposition getDisposition() {
return this.segment.getDisposition();
}
/**
* This is used to acquire the header value for the specified header name.
* Providing the header values through this method ensures any special
* processing for a know content type can be handled by an application.
*
* @param name
* the name of the header to get the value for
*
* @return value of the header mapped to the specified name
*/
@Override
public String getHeader(String name) {
return this.segment.getValue(name);
}
}