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

com.github.tennaito.rsql.misc.SimpleMapper Maven / Gradle / Ivy

There is a newer version: 2.0.2
Show newest version
/*
 * The MIT License
 *
 * Copyright 2013 Jakub Jirutka .
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 * THE SOFTWARE.
 */
package com.github.tennaito.rsql.misc;

import java.util.HashMap;
import java.util.Map;
import java.util.logging.Level;
import java.util.logging.Logger;

/**
 * Simple implementation of the {@link Mapper}.
 *
 * @author Jakub Jirutka 
 */
public class SimpleMapper implements Mapper {

	private static final Logger LOG = Logger.getLogger(DefaultArgumentParser.class.getName());

    private Map, Map> mapping;


    /**
     * Construct new SimpleMapper with zero initial capacity of the
     * entities map.
     */
    public SimpleMapper() {
    	this(0);
    }
    /**
     * Construct new SimpleMapper with the specified initial capacity
     * of the entities map.
     *
     * @param initialCapacity initial capacity of entities map
     */
    public SimpleMapper(int initialCapacity) {
        mapping = new HashMap, Map>(initialCapacity);
    }

    public String translate(String selector, Class entityClass) {
        if (mapping.isEmpty()) return selector;

        Map map = mapping.get(entityClass);
        String property = (map != null) ? map.get(selector) : null;

        if (property != null) {
        	LOG.log(Level.INFO, "Found mapping {0} -> {1}" , new Object[] {selector, property});
            return property;
        }

        return selector;
    }


    /**
     * Add selectors -> property names mapping for given entity class.
     *
     * @param entityClass entity class
     * @param mapping mapping of selectors to property names
     */
    public void addMapping(Class entityClass, Map mapping) {
        this.mapping.put(entityClass, mapping);
    }

    /**
     * Add one selector -> property name mapping for given entity class.
     *
     * @param entityClass entity class
     * @param selector Selector that identifies some element of an entry's content.
     * @param property Name of corresponding entity's property.
     */
    public void addMapping(Class entityClass, String selector, String property) {
        mapping.get(entityClass).put(selector, property);
    }

    /**
     * @see SimpleMapper#setMapping(java.util.Map)
     * @return The current mapping of all entities.
     */
    public Map, Map> getMapping() {
        return mapping;
    }

    /**
     * Set the mapping of selectors to property names per entity class.
     *
     * @param Mapping {entity class -> {selector -> property}}
     */
    public void setMapping(Map, Map> mapping) {
        this.mapping = mapping;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy