Package org.springframework.web.multipart.support

Source Code of org.springframework.web.multipart.support.AbstractMultipartHttpServletRequest

/*
* Copyright 2002-2011 the original author or authors.
*
* 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.springframework.web.multipart.support;

import java.util.Collections;
import java.util.Enumeration;
import java.util.Iterator;
import java.util.List;
import java.util.Map;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletRequestWrapper;

import org.springframework.http.HttpHeaders;
import org.springframework.http.HttpMethod;
import org.springframework.util.LinkedMultiValueMap;
import org.springframework.util.MultiValueMap;
import org.springframework.web.multipart.MultipartFile;
import org.springframework.web.multipart.MultipartHttpServletRequest;

/**
* Abstract base implementation of the MultipartHttpServletRequest interface.
* Provides management of pre-generated MultipartFile instances.
*
* @author Juergen Hoeller
* @author Arjen Poutsma
* @since 06.10.2003
*/
public abstract class AbstractMultipartHttpServletRequest extends HttpServletRequestWrapper
    implements MultipartHttpServletRequest {

  private MultiValueMap<String, MultipartFile> multipartFiles;


  /**
   * Wrap the given HttpServletRequest in a MultipartHttpServletRequest.
   * @param request the request to wrap
   */
  protected AbstractMultipartHttpServletRequest(HttpServletRequest request) {
    super(request);
  }


  @Override
  public HttpServletRequest getRequest() {
    return (HttpServletRequest) super.getRequest();
  }

  public HttpMethod getRequestMethod() {
    return HttpMethod.valueOf(getRequest().getMethod());
  }

  public HttpHeaders getRequestHeaders() {
    HttpHeaders headers = new HttpHeaders();
    Enumeration<String> headerNames = getHeaderNames();
    while (headerNames.hasMoreElements()) {
      String headerName = headerNames.nextElement();
      headers.put(headerName, Collections.list(getHeaders(headerName)));
    }
    return headers;
  }

  public Iterator<String> getFileNames() {
    return getMultipartFiles().keySet().iterator();
  }

  public MultipartFile getFile(String name) {
    return getMultipartFiles().getFirst(name);
  }

  public List<MultipartFile> getFiles(String name) {
    List<MultipartFile> multipartFiles = getMultipartFiles().get(name);
    if (multipartFiles != null) {
      return multipartFiles;
    }
    else {
      return Collections.emptyList();
    }
  }

  public Map<String, MultipartFile> getFileMap() {
    return getMultipartFiles().toSingleValueMap();
  }

  public MultiValueMap<String, MultipartFile> getMultiFileMap() {
    return getMultipartFiles();
  }


  /**
   * Set a Map with parameter names as keys and list of MultipartFile objects as values.
   * To be invoked by subclasses on initialization.
   */
  protected final void setMultipartFiles(MultiValueMap<String, MultipartFile> multipartFiles) {
    this.multipartFiles =
        new LinkedMultiValueMap<String, MultipartFile>(Collections.unmodifiableMap(multipartFiles));
  }

  /**
   * Obtain the MultipartFile Map for retrieval,
   * lazily initializing it if necessary.
   * @see #initializeMultipart()
   */
  protected MultiValueMap<String, MultipartFile> getMultipartFiles() {
    if (this.multipartFiles == null) {
      initializeMultipart();
    }
    return this.multipartFiles;
  }

  /**
   * Lazily initialize the multipart request, if possible.
   * Only called if not already eagerly initialized.
   */
  protected void initializeMultipart() {
    throw new IllegalStateException("Multipart request not initialized");
  }

}
TOP

Related Classes of org.springframework.web.multipart.support.AbstractMultipartHttpServletRequest

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.