mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-06-30 18:15:39 +00:00
git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@18931 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
162 lines
5.2 KiB
Java
162 lines
5.2 KiB
Java
/*
|
|
* Copyright (C) 2005-2010 Alfresco Software Limited.
|
|
*
|
|
* This file is part of Alfresco
|
|
*
|
|
* Alfresco is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU Lesser General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* Alfresco 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.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
* along with Alfresco. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
package org.alfresco.util;
|
|
|
|
import java.util.AbstractMap;
|
|
import java.util.AbstractSet;
|
|
import java.util.Iterator;
|
|
import java.util.Map;
|
|
import java.util.Set;
|
|
|
|
/**
|
|
* A factory for maps that dynamically derive their looked up values from a given source object.
|
|
*
|
|
* @author dward
|
|
*/
|
|
public class ValueDerivingMapFactory<O, K, V>
|
|
{
|
|
|
|
/** A map of value derivers that derive the value of each entry from a given source. */
|
|
private final Map<K, ValueDeriver<O, V>> valueDerivers;
|
|
|
|
/**
|
|
* Instantiates a new value deriving map factory.
|
|
*
|
|
* @param valueDerivers
|
|
* a map of value derivers that derive the value of each entry from a given source
|
|
*/
|
|
public ValueDerivingMapFactory(Map<K, ValueDeriver<O, V>> valueDerivers)
|
|
{
|
|
this.valueDerivers = valueDerivers;
|
|
}
|
|
|
|
/**
|
|
* Gets a map that derives its values from the given source.
|
|
*
|
|
* @param source
|
|
* the source
|
|
* @return the map
|
|
*/
|
|
public Map<K, V> getMap(final O source)
|
|
{
|
|
return new AbstractMap<K, V>()
|
|
{
|
|
|
|
@Override
|
|
public V get(Object key)
|
|
{
|
|
ValueDeriver<O, V> valueDeriver = ValueDerivingMapFactory.this.valueDerivers.get(key);
|
|
return valueDeriver == null ? null : valueDeriver.deriveValue(source);
|
|
}
|
|
|
|
@Override
|
|
public boolean containsKey(Object key)
|
|
{
|
|
return ValueDerivingMapFactory.this.valueDerivers.containsKey(key);
|
|
}
|
|
|
|
@Override
|
|
public Set<K> keySet()
|
|
{
|
|
return ValueDerivingMapFactory.this.valueDerivers.keySet();
|
|
}
|
|
|
|
@Override
|
|
public int size()
|
|
{
|
|
return ValueDerivingMapFactory.this.valueDerivers.size();
|
|
}
|
|
|
|
@Override
|
|
public Set<Map.Entry<K, V>> entrySet()
|
|
{
|
|
final Set<Map.Entry<K, ValueDeriver<O, V>>> entries = ValueDerivingMapFactory.this.valueDerivers
|
|
.entrySet();
|
|
return new AbstractSet<Entry<K, V>>()
|
|
{
|
|
|
|
@Override
|
|
public Iterator<Map.Entry<K, V>> iterator()
|
|
{
|
|
final Iterator<Map.Entry<K, ValueDeriver<O, V>>> i = entries.iterator();
|
|
return new Iterator<Map.Entry<K, V>>()
|
|
{
|
|
|
|
public boolean hasNext()
|
|
{
|
|
return i.hasNext();
|
|
}
|
|
|
|
public Map.Entry<K, V> next()
|
|
{
|
|
final Map.Entry<K, ValueDeriver<O, V>> next = i.next();
|
|
return new Map.Entry<K, V>()
|
|
{
|
|
|
|
public K getKey()
|
|
{
|
|
return next.getKey();
|
|
}
|
|
|
|
public V getValue()
|
|
{
|
|
return get(next.getKey());
|
|
}
|
|
|
|
public V setValue(V value)
|
|
{
|
|
throw new UnsupportedOperationException();
|
|
}
|
|
};
|
|
}
|
|
|
|
public void remove()
|
|
{
|
|
throw new UnsupportedOperationException();
|
|
}
|
|
};
|
|
}
|
|
|
|
@Override
|
|
public int size()
|
|
{
|
|
return entries.size();
|
|
}
|
|
};
|
|
}
|
|
};
|
|
}
|
|
|
|
/**
|
|
* An interface for objects that derive the value for a specific entry in the map.
|
|
*/
|
|
public interface ValueDeriver<O, V>
|
|
{
|
|
|
|
/**
|
|
* Derives a value from the given source.
|
|
*
|
|
* @param source
|
|
* the source
|
|
* @return the derived value
|
|
*/
|
|
public V deriveValue(O source);
|
|
}
|
|
}
|