All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.feilong.lib.xstream.mapper.ElementIgnoringMapper Maven / Gradle / Ivy

Go to download

feilong is a suite of core and expanded libraries that include utility classes, http, excel,cvs, io classes, and much much more.

There is a newer version: 4.0.8
Show newest version
/*
 * Copyright (C) 2013, 2016 XStream Committers.
 * All rights reserved.
 *
 * The software in this package is published under the terms of the BSD
 * style license a copy of which has been included with this distribution in
 * the LICENSE.txt file.
 * 
 * Created on 08. January 2016 by Joerg Schaible, factored out from FieldAliasingMapper.
 */
package com.feilong.lib.xstream.mapper;

import java.util.HashSet;
import java.util.Iterator;
import java.util.LinkedHashSet;
import java.util.Set;
import java.util.regex.Pattern;

import com.feilong.lib.xstream.core.util.FastField;

/**
 * Mapper that allows an field of a specific class to be omitted entirely.
 *
 * @author Joerg Schaible
 */
public class ElementIgnoringMapper extends MapperWrapper{

    protected final Set fieldsToOmit            = new HashSet();

    protected final Set unknownElementsToIgnore = new LinkedHashSet();

    public ElementIgnoringMapper(Mapper wrapped){
        super(wrapped);
    }

    public void addElementsToIgnore(final Pattern pattern){
        unknownElementsToIgnore.add(pattern);
    }

    public void omitField(Class definedIn,String fieldName){
        fieldsToOmit.add(key(definedIn, fieldName));
    }

    @Override
    public boolean shouldSerializeMember(Class definedIn,String fieldName){
        if (fieldsToOmit.contains(key(definedIn, fieldName))){
            return false;
        }else if (definedIn == Object.class && isIgnoredElement(fieldName)){
            return false;
        }
        return super.shouldSerializeMember(definedIn, fieldName);
    }

    @Override
    public boolean isIgnoredElement(String name){
        if (!unknownElementsToIgnore.isEmpty()){
            for (Iterator iter = unknownElementsToIgnore.iterator(); iter.hasNext();){
                Pattern pattern = (Pattern) iter.next();
                if (pattern.matcher(name).matches()){
                    return true;
                }
            }
        }
        return super.isIgnoredElement(name);
    }

    private Object key(Class type,String name){
        return new FastField(type, name);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy