com.mmj.app.common.component.FormModelMethodArgumentResolver.java Source code

Java tutorial

Introduction

Here is the source code for com.mmj.app.common.component.FormModelMethodArgumentResolver.java

Source

/*
 * Copyright 2011-2016 MSUN.com All right reserved. This software is the confidential and proprietary information of
 * MSUN.com ("Confidential Information"). You shall not disclose such Confidential Information and shall use it only
 * in accordance with the terms of the license agreement you entered into with MSUN.com.
 */
package com.mmj.app.common.component;

import java.io.File;
import java.io.IOException;
import java.io.InputStream;
import java.lang.annotation.Annotation;
import java.lang.reflect.Method;
import java.util.ArrayList;
import java.util.Collection;
import java.util.Collections;
import java.util.HashMap;
import java.util.HashSet;
import java.util.Iterator;
import java.util.List;
import java.util.Map;
import java.util.Map.Entry;
import java.util.Set;
import java.util.regex.Pattern;

import javax.servlet.ServletRequest;
import javax.servlet.http.HttpServletRequest;

import org.springframework.beans.BeanUtils;
import org.springframework.beans.SimpleTypeConverter;
import org.springframework.beans.TypeMismatchException;
import org.springframework.core.LocalVariableTableParameterNameDiscoverer;
import org.springframework.core.MethodParameter;
import org.springframework.core.ParameterNameDiscoverer;
import org.springframework.core.annotation.AnnotationUtils;
import org.springframework.core.convert.ConversionService;
import org.springframework.core.convert.TypeDescriptor;
import org.springframework.mock.web.MockHttpServletRequest;
import org.springframework.mock.web.MockMultipartHttpServletRequest;
import org.springframework.util.StringUtils;
import org.springframework.validation.BindException;
import org.springframework.validation.DataBinder;
import org.springframework.validation.Errors;
import org.springframework.validation.FieldError;
import org.springframework.validation.MapBindingResult;
import org.springframework.web.bind.WebDataBinder;
import org.springframework.web.bind.support.WebDataBinderFactory;
import org.springframework.web.context.request.NativeWebRequest;
import org.springframework.web.context.request.RequestAttributes;
import org.springframework.web.method.support.HandlerMethodArgumentResolver;
import org.springframework.web.method.support.ModelAndViewContainer;
import org.springframework.web.multipart.MultipartFile;
import org.springframework.web.multipart.MultipartRequest;
import org.springframework.web.servlet.HandlerMapping;
import org.springframework.web.util.WebUtils;

import com.mmj.app.common.component.annotation.FormBean;
import com.mmj.app.common.core.lang.ArrayUtils;

/**
 * @FormBean??
 * 
 * @author zxc Jul 21, 2014 2:08:14 PM
 */
@SuppressWarnings({ "rawtypes", "unchecked", "unused" })
public class FormModelMethodArgumentResolver implements HandlerMethodArgumentResolver {

    /**
     * ???? [0].
     */
    private final Pattern INDEX_PATTERN = Pattern.compile("\\[(\\d+)\\]\\.?");

    private int autoGrowCollectionLimit = Integer.MAX_VALUE;

    public FormModelMethodArgumentResolver() {
    }

    @Override
    public boolean supportsParameter(MethodParameter parameter) {
        return parameter.hasParameterAnnotation(FormBean.class);
    }

    /**
     * ???uri varaibles  parameters
     * 
     * @param namePrefix
     * @param request
     * @return
     * @subPrefix ??namePrefix?
     */
    protected Map<String, String[]> getPrefixParameterMap(String namePrefix, NativeWebRequest request,
            boolean subPrefix) {
        Map<String, String[]> result = new HashMap<String, String[]>();

        Map<String, String> variables = getUriTemplateVariables(request);

        int namePrefixLength = namePrefix.length();
        for (String name : variables.keySet()) {
            if (name.startsWith(namePrefix)) {

                // page.pn ? pn
                if (subPrefix) {
                    char ch = name.charAt(namePrefix.length());
                    // ?  . _ ?? ??
                    if (illegalChar(ch)) {
                        continue;
                    }
                    result.put(name.substring(namePrefixLength + 1), new String[] { variables.get(name) });
                } else {
                    result.put(name, new String[] { variables.get(name) });
                }
            }
        }

        Iterator<String> parameterNames = request.getParameterNames();
        while (parameterNames.hasNext()) {
            String name = parameterNames.next();
            if (name.startsWith(namePrefix)) {
                // page.pn ? pn
                if (subPrefix) {
                    char ch = name.charAt(namePrefix.length());
                    // ?  . _ ?? ??
                    if (illegalChar(ch)) {
                        continue;
                    }
                    result.put(name.substring(namePrefixLength + 1), request.getParameterValues(name));
                } else {
                    result.put(name, request.getParameterValues(name));
                }
            }
        }

        return result;
    }

    private boolean illegalChar(char ch) {
        return ch != '.' && ch != '_' && !(ch >= '0' && ch <= '9');
    }

    protected final Map<String, String> getUriTemplateVariables(NativeWebRequest request) {
        Map<String, String> variables = (Map<String, String>) request
                .getAttribute(HandlerMapping.URI_TEMPLATE_VARIABLES_ATTRIBUTE, RequestAttributes.SCOPE_REQUEST);
        return (variables != null) ? variables : Collections.<String, String>emptyMap();
    }

    /**
     * Resolve the argument from the model or if not found instantiate it with its default if it is available. The model
     * attribute is then populated with request values via data binding and optionally validated if
     * {@code @java.validation.Valid} is present on the argument.
     * 
     * @throws org.springframework.validation.BindException if data binding and validation result in an error and the
     * next method parameter is not of type {@link org.springframework.validation.Errors}.
     * @throws Exception if WebDataBinder initialization fails.
     */
    public final Object resolveArgument(MethodParameter parameter, ModelAndViewContainer mavContainer,
            NativeWebRequest request, WebDataBinderFactory binderFactory) throws Exception {
        String name = parameter.getParameterAnnotation(FormBean.class).value();

        Object target = (mavContainer.containsAttribute(name)) ? mavContainer.getModel().get(name)
                : createAttribute(name, parameter, binderFactory, request);

        WebDataBinder binder = binderFactory.createBinder(request, target, name);
        target = binder.getTarget();
        if (target != null) {
            bindRequestParameters(mavContainer, binderFactory, binder, request, parameter);

            validateIfApplicable(binder, parameter);
            if (binder.getBindingResult().hasErrors()) {
                if (isBindExceptionRequired(binder, parameter)) {
                    throw new BindException(binder.getBindingResult());
                }
            }
        }

        target = binder.convertIfNecessary(binder.getTarget(), parameter.getParameterType());
        mavContainer.addAttribute(name, target);

        return target;
    }

    /**
     * Extension point to create the model attribute if not found in the model. The default implementation uses the
     * default constructor.
     * 
     * @param attributeName the name of the attribute, never {@code null}
     * @param parameter the method parameter
     * @param binderFactory for creating WebDataBinder instance
     * @param request the current request
     * @return the created model attribute, never {@code null}
     */
    protected Object createAttribute(String attributeName, MethodParameter parameter,
            WebDataBinderFactory binderFactory, NativeWebRequest request) throws Exception {

        String value = getRequestValueForAttribute(attributeName, request);

        if (value != null) {
            Object attribute = createAttributeFromRequestValue(value, attributeName, parameter, binderFactory,
                    request);
            if (attribute != null) {
                return attribute;
            }
        }
        Class<?> parameterType = parameter.getParameterType();
        if (parameterType.isArray() || List.class.isAssignableFrom(parameterType)) {
            return ArrayList.class.newInstance();
        }
        if (Set.class.isAssignableFrom(parameterType)) {
            return HashSet.class.newInstance();
        }

        if (MapWapper.class.isAssignableFrom(parameterType)) {
            return MapWapper.class.newInstance();
        }

        return BeanUtils.instantiateClass(parameter.getParameterType());
    }

    /**
     * Obtain a value from the request that may be used to instantiate the model attribute through type conversion from
     * String to the target type.
     * <p>
     * The default implementation looks for the attribute name to match a URI variable first and then a request
     * parameter.
     * 
     * @param attributeName the model attribute name
     * @param request the current request
     * @return the request value to try to convert or {@code null}
     */
    protected String getRequestValueForAttribute(String attributeName, NativeWebRequest request) {
        Map<String, String> variables = getUriTemplateVariables(request);
        if (StringUtils.hasText(variables.get(attributeName))) {
            return variables.get(attributeName);
        } else if (StringUtils.hasText(request.getParameter(attributeName))) {
            return request.getParameter(attributeName);
        } else {
            return null;
        }
    }

    /**
     * Create a model attribute from a String request value (e.g. URI template variable, request parameter) using type
     * conversion.
     * <p>
     * The default implementation converts only if there a registered
     * {@link org.springframework.core.convert.converter.Converter} that can perform the conversion.
     * 
     * @param sourceValue the source value to create the model attribute from
     * @param attributeName the name of the attribute, never {@code null}
     * @param parameter the method parameter
     * @param binderFactory for creating WebDataBinder instance
     * @param request the current request
     * @return the created model attribute, or {@code null}
     * @throws Exception
     */
    protected Object createAttributeFromRequestValue(String sourceValue, String attributeName,
            MethodParameter parameter, WebDataBinderFactory binderFactory, NativeWebRequest request)
            throws Exception {
        DataBinder binder = binderFactory.createBinder(request, null, attributeName);
        ConversionService conversionService = binder.getConversionService();
        if (conversionService != null) {
            TypeDescriptor source = TypeDescriptor.valueOf(String.class);
            TypeDescriptor target = new TypeDescriptor(parameter);
            if (conversionService.canConvert(source, target)) {
                return binder.convertIfNecessary(sourceValue, parameter.getParameterType(), parameter);
            }
        }
        return null;
    }

    /**
     * {@inheritDoc}
     * <p>
     * Downcast {@link org.springframework.web.bind.WebDataBinder} to
     * {@link org.springframework.web.bind.ServletRequestDataBinder} before binding.
     * 
     * @throws Exception
     * @see org.springframework.web.servlet.mvc.method.annotation.ServletRequestDataBinderFactory
     */
    protected void bindRequestParameters(ModelAndViewContainer mavContainer, WebDataBinderFactory binderFactory,
            WebDataBinder binder, NativeWebRequest request, MethodParameter parameter) throws Exception {

        // Map<String, Boolean> hasProcessedPrefixMap = new HashMap<String, Boolean>();
        //
        // Class<?> targetType = binder.getTarget().getClass();
        // WebDataBinder simpleBinder = binderFactory.createBinder(request, null, null);
        Collection target = (Collection) binder.getTarget();

        Class<?>[] paramTypes = parameter.getMethod().getParameterTypes();
        Method method = parameter.getMethod();
        Object[] args = new Object[paramTypes.length];
        Map<String, Object> argMap = new HashMap<String, Object>(args.length);
        MapBindingResult errors = new MapBindingResult(argMap, "");
        ParameterNameDiscoverer parameterNameDiscoverer = new LocalVariableTableParameterNameDiscoverer();

        for (int i = 0; i < paramTypes.length; i++) {
            Class<?> paramType = paramTypes[i];

            MethodParameter methodParam = new MethodParameter(method, i);
            methodParam.initParameterNameDiscovery(parameterNameDiscoverer);
            String paramName = methodParam.getParameterName();
            // ??
            if (BeanUtils.isSimpleProperty(paramType)) {
                SimpleTypeConverter converter = new SimpleTypeConverter();
                Object value;
                // ?
                if (paramType.isArray()) {
                    value = request.getParameterValues(paramName);
                } else {
                    value = request.getParameter(paramName);
                }
                try {
                    args[i] = converter.convertIfNecessary(value, paramType, methodParam);
                } catch (TypeMismatchException e) {
                    errors.addError(new FieldError(paramName, paramName, e.getMessage()));
                }
            } else {
                // ???POJO
                if (paramType.isArray()) {
                    ObjectArrayDataBinder binders = new ObjectArrayDataBinder(paramType.getComponentType(),
                            paramName);
                    target.addAll(ArrayUtils.arrayConvert(binders.bind(request)));
                }
            }
        }

        // if (Collection.class.isAssignableFrom(targetType)) {// bind collection or array
        //
        // Type type = parameter.getGenericParameterType();
        // Class<?> componentType = Object.class;
        //
        // Collection target = (Collection) binder.getTarget();
        //
        // List targetList = new ArrayList(target);
        //
        // if (type instanceof ParameterizedType) {
        // componentType = (Class<?>) ((ParameterizedType) type).getActualTypeArguments()[0];
        // }
        //
        // if (parameter.getParameterType().isArray()) {
        // componentType = parameter.getParameterType().getComponentType();
        // }
        //
        // for (Object key : servletRequest.getParameterMap().keySet()) {
        // String prefixName = getPrefixName((String) key);
        //
        // // ?prefix ??
        // if (hasProcessedPrefixMap.containsKey(prefixName)) {
        // continue;
        // } else {
        // hasProcessedPrefixMap.put(prefixName, Boolean.TRUE);
        // }
        //
        // if (isSimpleComponent(prefixName)) { // bind simple type
        // Map<String, Object> paramValues = WebUtils.getParametersStartingWith(servletRequest, prefixName);
        // Matcher matcher = INDEX_PATTERN.matcher(prefixName);
        // if (!matcher.matches()) { // ? array=1&array=2
        // for (Object value : paramValues.values()) {
        // targetList.add(simpleBinder.convertIfNecessary(value, componentType));
        // }
        // } else { // ? array[0]=1&array[1]=2
        // int index = Integer.valueOf(matcher.group(1));
        //
        // if (targetList.size() <= index) {
        // growCollectionIfNecessary(targetList, index);
        // }
        // targetList.set(index, simpleBinder.convertIfNecessary(paramValues.values(), componentType));
        // }
        // } else { // ? votes[1].title=votes[1].title&votes[0].title=votes[0].title&votes[0].id=0&votes[1].id=1
        // Object component = null;
        // // ? ?????
        // Matcher matcher = INDEX_PATTERN.matcher(prefixName);
        // if (!matcher.matches()) {
        // throw new IllegalArgumentException("bind collection error, need integer index, key:" + key);
        // }
        // int index = Integer.valueOf(matcher.group(1));
        // if (targetList.size() <= index) {
        // growCollectionIfNecessary(targetList, index);
        // }
        // Iterator iterator = targetList.iterator();
        // for (int i = 0; i < index; i++) {
        // iterator.next();
        // }
        // component = iterator.next();
        //
        // if (component == null) {
        // component = BeanUtils.instantiate(componentType);
        // }
        //
        // WebDataBinder componentBinder = binderFactory.createBinder(request, component, null);
        // component = componentBinder.getTarget();
        //
        // if (component != null) {
        // ServletRequestParameterPropertyValues pvs = new ServletRequestParameterPropertyValues(
        // servletRequest,
        // prefixName,
        // "");
        // componentBinder.bind(pvs);
        // validateIfApplicable(componentBinder, parameter);
        // if (componentBinder.getBindingResult().hasErrors()) {
        // if (isBindExceptionRequired(componentBinder, parameter)) {
        // throw new BindException(componentBinder.getBindingResult());
        // }
        // }
        // targetList.set(index, component);
        // }
        // }
        // target.clear();
        // target.addAll(targetList);
        // }
        // } else if (MapWapper.class.isAssignableFrom(targetType)) {
        //
        // Type type = parameter.getGenericParameterType();
        // Class<?> keyType = Object.class;
        // Class<?> valueType = Object.class;
        //
        // if (type instanceof ParameterizedType) {
        // keyType = (Class<?>) ((ParameterizedType) type).getActualTypeArguments()[0];
        // valueType = (Class<?>) ((ParameterizedType) type).getActualTypeArguments()[1];
        // }
        //
        // MapWapper mapWapper = ((MapWapper) binder.getTarget());
        // Map target = mapWapper.getInnerMap();
        // if (target == null) {
        // target = new HashMap();
        // mapWapper.setInnerMap(target);
        // }
        //
        // for (Object key : servletRequest.getParameterMap().keySet()) {
        // String prefixName = getPrefixName((String) key);
        //
        // // ?prefix ??
        // if (hasProcessedPrefixMap.containsKey(prefixName)) {
        // continue;
        // } else {
        // hasProcessedPrefixMap.put(prefixName, Boolean.TRUE);
        // }
        //
        // Object keyValue = simpleBinder.convertIfNecessary(getMapKey(prefixName), keyType);
        //
        // if (isSimpleComponent(prefixName)) { // bind simple type
        // Map<String, Object> paramValues = WebUtils.getParametersStartingWith(servletRequest, prefixName);
        //
        // for (Object value : paramValues.values()) {
        // target.put(keyValue, simpleBinder.convertIfNecessary(value, valueType));
        // }
        // } else {
        //
        // Object component = target.get(keyValue);
        // if (component == null) {
        // component = BeanUtils.instantiate(valueType);
        // }
        //
        // WebDataBinder componentBinder = binderFactory.createBinder(request, component, null);
        // component = componentBinder.getTarget();
        //
        // if (component != null) {
        // ServletRequestParameterPropertyValues pvs = new ServletRequestParameterPropertyValues(
        // servletRequest,
        // prefixName,
        // "");
        // componentBinder.bind(pvs);
        //
        // validateComponent(componentBinder, parameter);
        //
        // target.put(keyValue, component);
        // }
        // }
        // }
        // } else {// bind model
        // ServletRequestDataBinder servletBinder = (ServletRequestDataBinder) binder;
        // servletBinder.bind(servletRequest);
        // }
    }

    private void growCollectionIfNecessary(final Collection collection, final int index) {
        if (index >= collection.size() && index < this.autoGrowCollectionLimit) {
            for (int i = collection.size(); i <= index; i++) {
                collection.add(null);
            }
        }
    }

    private Object getMapKey(String prefixName) {
        String key = prefixName;
        if (key.startsWith("['")) {
            key = key.replaceAll("\\[\'", "").replaceAll("\'\\]", "");
        }
        if (key.startsWith("[\"")) {
            key = key.replaceAll("\\[\"", "").replaceAll("\"\\]", "");
        }
        if (key.endsWith(".")) {
            key = key.substring(0, key.length() - 1);
        }
        return key;
    }

    private boolean isSimpleComponent(String prefixName) {
        return !prefixName.endsWith(".");
    }

    private String getPrefixName(String name) {

        int begin = 0;

        int end = name.indexOf("]") + 1;

        if (name.indexOf("].") >= 0) {
            end = end + 1;
        }

        return name.substring(begin, end);
    }

    private ServletRequest prepareServletRequest(Object target, NativeWebRequest request,
            MethodParameter parameter) {

        String modelPrefixName = parameter.getParameterAnnotation(FormBean.class).value();

        HttpServletRequest nativeRequest = (HttpServletRequest) request.getNativeRequest();
        MultipartRequest multipartRequest = WebUtils.getNativeRequest(nativeRequest, MultipartRequest.class);

        MockHttpServletRequest mockRequest = null;
        if (multipartRequest != null) {
            MockMultipartHttpServletRequest mockMultipartRequest = new MockMultipartHttpServletRequest();
            for (MultipartFile file : multipartRequest.getFileMap().values()) {
                mockMultipartRequest.addFile(
                        new MultipartFileWrapper(getNewParameterName(file.getName(), modelPrefixName), file));
            }
            mockRequest = mockMultipartRequest;
        } else {
            mockRequest = new MockHttpServletRequest();
        }

        for (Entry<String, String> entry : getUriTemplateVariables(request).entrySet()) {
            String parameterName = entry.getKey();
            String value = entry.getValue();
            if (isFormModelAttribute(parameterName, modelPrefixName)) {
                mockRequest.setParameter(getNewParameterName(parameterName, modelPrefixName), value);
            }
        }

        for (Object parameterEntry : nativeRequest.getParameterMap().entrySet()) {
            Entry<String, String[]> entry = (Entry<String, String[]>) parameterEntry;
            String parameterName = entry.getKey();
            String[] value = entry.getValue();
            if (isFormModelAttribute(parameterName, modelPrefixName)) {
                mockRequest.setParameter(getNewParameterName(parameterName, modelPrefixName), value);
            }
        }

        return mockRequest;
    }

    private String getNewParameterName(String parameterName, String modelPrefixName) {
        int modelPrefixNameLength = modelPrefixName.length();

        if (parameterName.charAt(modelPrefixNameLength) == '.') {
            return parameterName.substring(modelPrefixNameLength + 1);
        }

        if (parameterName.charAt(modelPrefixNameLength) == '[') {
            return parameterName.substring(modelPrefixNameLength);
        }
        throw new IllegalArgumentException(
                "illegal request parameter, can not binding to @FormBean(" + modelPrefixName + ")");
    }

    private boolean isFormModelAttribute(String parameterName, String modelPrefixName) {
        int modelPrefixNameLength = modelPrefixName.length();

        if (parameterName.length() == modelPrefixNameLength) {
            return false;
        }

        if (!parameterName.startsWith(modelPrefixName)) {
            return false;
        }

        char ch = (char) parameterName.charAt(modelPrefixNameLength);

        if (ch == '.' || ch == '[') {
            return true;
        }

        return false;
    }

    protected void validateComponent(WebDataBinder binder, MethodParameter parameter) throws BindException {

        boolean validateParameter = validateParameter(parameter);
        Annotation[] annotations = binder.getTarget().getClass().getAnnotations();
        for (Annotation annot : annotations) {
            if (annot.annotationType().getSimpleName().startsWith("Valid") && validateParameter) {
                Object hints = AnnotationUtils.getValue(annot);
                binder.validate(hints instanceof Object[] ? (Object[]) hints : new Object[] { hints });
            }
        }

        if (binder.getBindingResult().hasErrors()) {
            if (isBindExceptionRequired(binder, parameter)) {
                throw new BindException(binder.getBindingResult());
            }
        }
    }

    private boolean validateParameter(MethodParameter parameter) {
        Annotation[] annotations = parameter.getParameterAnnotations();
        for (Annotation annot : annotations) {
            if (annot.annotationType().getSimpleName().startsWith("Valid")) {
                return true;
            }
        }

        return false;
    }

    /**
     * Validate the model attribute if applicable.
     * <p>
     * The default implementation checks for {@code @javax.validation.Valid}.
     * 
     * @param binder the DataBinder to be used
     * @param parameter the method parameter
     */
    protected void validateIfApplicable(WebDataBinder binder, MethodParameter parameter) {
        Annotation[] annotations = parameter.getParameterAnnotations();
        for (Annotation annot : annotations) {
            if (annot.annotationType().getSimpleName().startsWith("Valid")) {
                Object hints = AnnotationUtils.getValue(annot);
                binder.validate(hints instanceof Object[] ? (Object[]) hints : new Object[] { hints });
            }
        }
    }

    /**
     * Whether to raise a {@link org.springframework.validation.BindException} on bind or validation errors. The default
     * implementation returns {@code true} if the next method argument is not of type
     * {@link org.springframework.validation.Errors}.
     * 
     * @param binder the data binder used to perform data binding
     * @param parameter the method argument
     */
    protected boolean isBindExceptionRequired(WebDataBinder binder, MethodParameter parameter) {
        int i = parameter.getParameterIndex();
        Class<?>[] paramTypes = parameter.getMethod().getParameterTypes();
        boolean hasBindingResult = (paramTypes.length > (i + 1)
                && Errors.class.isAssignableFrom(paramTypes[i + 1]));

        return !hasBindingResult;
    }

    private static class MultipartFileWrapper implements MultipartFile {

        private String name;
        private MultipartFile delegate;

        private MultipartFileWrapper(String name, MultipartFile delegate) {
            this.name = name;
            this.delegate = delegate;
        }

        @Override
        public String getName() {
            return name;
        }

        @Override
        public String getOriginalFilename() {
            return delegate.getOriginalFilename();
        }

        @Override
        public String getContentType() {
            return delegate.getContentType();
        }

        @Override
        public boolean isEmpty() {
            return delegate.isEmpty();
        }

        @Override
        public long getSize() {
            return delegate.getSize();
        }

        @Override
        public byte[] getBytes() throws IOException {
            return delegate.getBytes();
        }

        @Override
        public InputStream getInputStream() throws IOException {
            return delegate.getInputStream();
        }

        @Override
        public void transferTo(File dest) throws IOException, IllegalStateException {
            delegate.transferTo(dest);
        }
    }
}