com.astamuse.asta4d.web.form.flow.ext.ExcludingFieldRetrievableFormHelper.java Source code

Java tutorial

Introduction

Here is the source code for com.astamuse.asta4d.web.form.flow.ext.ExcludingFieldRetrievableFormHelper.java

Source

/*
 * Copyright 2016 astamuse company,Ltd.
 * 
 * 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 com.astamuse.asta4d.web.form.flow.ext;

import java.lang.reflect.InvocationTargetException;
import java.util.HashSet;
import java.util.List;
import java.util.Set;

import org.apache.commons.lang3.ArrayUtils;

import com.astamuse.asta4d.util.annotation.AnnotatedPropertyInfo;
import com.astamuse.asta4d.util.annotation.AnnotatedPropertyUtil;

public class ExcludingFieldRetrievableFormHelper {

    public static final void copyIncludeFieldsOnly(Object targetForm, ExcludingFieldRetrievableForm... froms) {
        try {
            for (ExcludingFieldRetrievableForm from : froms) {
                List<AnnotatedPropertyInfo> fromProps = AnnotatedPropertyUtil.retrieveProperties(from.getClass());
                String[] excludes = from.getExcludeFields();
                Set<String> set = new HashSet<>();
                for (String s : excludes) {
                    set.add(s);
                }
                for (AnnotatedPropertyInfo p : fromProps) {
                    // do not copy excluded fields
                    if (set.contains(p.getName())) {
                        continue;
                    }
                    AnnotatedPropertyUtil.assignValueByName(targetForm, p.getName(), p.retrieveValue(from));
                }

            }
        } catch (IllegalAccessException | IllegalArgumentException | InvocationTargetException e) {
            throw new RuntimeException(e);
        }
    }

    public static final String[] retrieveExcludingFieldsByIncluding(Class<?> cls, String... includingFields) {
        List<AnnotatedPropertyInfo> props = AnnotatedPropertyUtil.retrieveProperties(cls);
        return props.stream().filter(p -> !ArrayUtils.contains(includingFields, p.getName())).map(p -> p.getName())
                .toArray(size -> {
                    return new String[size];
                });
    }
}