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

org.milyn.persistence.parameter.NamedParameterContainer Maven / Gradle / Ivy

There is a newer version: 1.7.1
Show newest version
/*
	Milyn - Copyright (C) 2006 - 2010

	This library is free software; you can redistribute it and/or
	modify it under the terms of the GNU Lesser General Public
	License (version 2.1) as published by the Free Software
	Foundation.

	This library is distributed in the hope that it will be useful,
	but WITHOUT ANY WARRANTY; without even the implied warranty of
	MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

	See the GNU Lesser General Public License for more details:
	http://www.gnu.org/licenses/lgpl.txt
*/
package org.milyn.persistence.parameter;


import java.util.HashMap;
import java.util.Map;
import java.util.Map.Entry;


/**
 * @author [email protected]
 *
 */
public class NamedParameterContainer implements ParameterContainer{

	private HashMap parameterMap;

	private Entry[] parameterEntries;

	@SuppressWarnings("unchecked")
	public NamedParameterContainer(final NamedParameterIndex index) {
		parameterEntries = new Entry[index.size()];
		parameterMap = new HashMap();

		updateParameterMap(index);
	}

	public void put(NamedParameter param, Object bean) {
		parameterEntries[param.getIndex()].setValue(bean);
	}

	public boolean containsParameter(NamedParameter param) {
		int index = param.getIndex();

		return parameterEntries.length > index && parameterEntries[index].getValue() != null;
	}


	public Object get(NamedParameter param) {
		return parameterEntries[param.getIndex()].getValue();
	}

	public Object get(String name) {
		return parameterMap.get(name);
	}

	public Object remove(NamedParameter param) {

		Object old = get(param);

		if(old != null) {
			parameterEntries[param.getIndex()].setValue(null);
		}

		return old;
	}

	public void clear() {
		for(Entry parameter : parameterEntries) {
			parameter.setValue(null);
		}

	}

	@SuppressWarnings("unchecked")
	public Map getParameterMap() {
		return (Map) parameterMap.clone();
	}

	private void updateParameterMap(final NamedParameterIndex index) {

		for(String name : index.getIndexMap().keySet()) {

			if(!parameterMap.containsKey(name) ) {
				parameterMap.put(name, null);
			}
		}
		updateParameterEntries(index);
	}

	private void updateParameterEntries(final NamedParameterIndex index) {

		for(Entry parameterMapEntry : parameterMap.entrySet()) {

			NamedParameter parameter = index.getParameter(parameterMapEntry.getKey());

			parameterEntries[parameter.getIndex()] = parameterMapEntry;
		}
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy