/* @ITMillApache2LicenseForJavaFiles@ */ package com.vaadin.data.util; import java.io.Serializable; import java.lang.reflect.Constructor; import java.util.ArrayList; import java.util.Collection; import java.util.Collections; import java.util.Comparator; import java.util.EventObject; import java.util.HashMap; import java.util.HashSet; import java.util.Hashtable; import java.util.Iterator; import java.util.LinkedHashSet; import java.util.LinkedList; import java.util.List; import java.util.NoSuchElementException; import com.vaadin.data.Container; import com.vaadin.data.Item; import com.vaadin.data.Property; /** * An implementation of the {@link Container.Indexed} interface * with all important features.

* * Features: * * * @see com.vaadin.data.Container * * @author IT Mill Ltd. * @version * @VERSION@ * @since 3.0 */ @SuppressWarnings("serial") public class IndexedContainer implements Container.Indexed, Container.ItemSetChangeNotifier, Container.PropertySetChangeNotifier, Property.ValueChangeNotifier, Container.Sortable, Comparator, Cloneable, Container.Filterable { /* Internal structure */ /** * Linked list of ordered Item IDs. */ private ArrayList itemIds = new ArrayList(); /** List of item ids that passes the filtering */ private LinkedHashSet filteredItemIds = null; /** * Linked list of ordered Property IDs. */ private ArrayList propertyIds = new ArrayList(); /** * Property ID to type mapping. */ private Hashtable types = new Hashtable(); /** * Hash of Items, where each Item is implemented as a mapping from Property * ID to Property value. */ private Hashtable items = new Hashtable(); /** * Set of properties that are read-only. */ private HashSet readOnlyProperties = new HashSet(); /** * List of all Property value change event listeners listening all the * properties. */ private LinkedList propertyValueChangeListeners = null; /** * Data structure containing all listeners interested in changes to single * Properties. The data structure is a hashtable mapping Property IDs to a * hashtable that maps Item IDs to a linked list of listeners listening * Property identified by given Property ID and Item ID. */ private Hashtable singlePropertyValueChangeListeners = null; /** * List of all Property set change event listeners. */ private LinkedList propertySetChangeListeners = null; /** * List of all container Item set change event listeners. */ private LinkedList itemSetChangeListeners = null; /** * Temporary store for sorting property ids. */ private Object[] sortPropertyId; /** * Temporary store for sorting direction. */ private boolean[] sortDirection; /** * Filters that are applied to the container to limit the items visible in * it */ private HashSet filters; private HashMap defaultPropertyValues; /* Container constructors */ public IndexedContainer() { } public IndexedContainer(Collection itemIds) { if (items != null) { for (final Iterator i = itemIds.iterator(); i.hasNext();) { this.addItem(i.next()); } } } /* Container methods */ /* * (non-Javadoc) * * @see com.vaadin.data.Container#getItem(java.lang.Object) */ public Item getItem(Object itemId) { if (itemId != null && items.containsKey(itemId) && (filteredItemIds == null || filteredItemIds.contains(itemId))) { return new IndexedContainerItem(itemId); } return null; } /* * (non-Javadoc) * * @see com.vaadin.data.Container#getItemIds() */ public Collection getItemIds() { if (filteredItemIds != null) { return Collections.unmodifiableCollection(filteredItemIds); } return Collections.unmodifiableCollection(itemIds); } /* * (non-Javadoc) * * @see com.vaadin.data.Container#getContainerPropertyIds() */ public Collection getContainerPropertyIds() { return Collections.unmodifiableCollection(propertyIds); } /** * Gets the type of a Property stored in the list. * * @param id * the ID of the Property. * @return Type of the requested Property */ public Class getType(Object propertyId) { return (Class) types.get(propertyId); } /* * (non-Javadoc) * * @see * com.vaadin.data.Container#getContainerProperty(java.lang.Object, * java.lang.Object) */ public Property getContainerProperty(Object itemId, Object propertyId) { if (itemId == null) { return null; } else if (filteredItemIds == null) { if (!items.containsKey(itemId)) { return null; } } else if (!filteredItemIds.contains(itemId)) { return null; } return new IndexedContainerProperty(itemId, propertyId); } /* * (non-Javadoc) * * @see com.vaadin.data.Container#size() */ public int size() { if (filteredItemIds == null) { return itemIds.size(); } return filteredItemIds.size(); } /* * (non-Javadoc) * * @see com.vaadin.data.Container#containsId(java.lang.Object) */ public boolean containsId(Object itemId) { if (itemId == null) { return false; } if (filteredItemIds != null) { return filteredItemIds.contains(itemId); } return items.containsKey(itemId); } /* * (non-Javadoc) * * @see * com.vaadin.data.Container#addContainerProperty(java.lang.Object, * java.lang.Class, java.lang.Object) */ public boolean addContainerProperty(Object propertyId, Class type, Object defaultValue) { // Fails, if nulls are given if (propertyId == null || type == null) { return false; } // Fails if the Property is already present if (propertyIds.contains(propertyId)) { return false; } // Adds the Property to Property list and types propertyIds.add(propertyId); types.put(propertyId, type); // If default value is given, set it if (defaultValue != null) { // for existing rows for (final Iterator i = itemIds.iterator(); i.hasNext();) { getItem(i.next()).getItemProperty(propertyId).setValue( defaultValue); } // store for next rows if (defaultPropertyValues == null) { defaultPropertyValues = new HashMap(); } defaultPropertyValues.put(propertyId, defaultValue); } // Sends a change event fireContainerPropertySetChange(); return true; } /* * (non-Javadoc) * * @see com.vaadin.data.Container#removeAllItems() */ public boolean removeAllItems() { // Removes all Items itemIds.clear(); items.clear(); if (filteredItemIds != null) { filteredItemIds.clear(); } // Sends a change event fireContentsChange(-1); return true; } /* * (non-Javadoc) * * @see com.vaadin.data.Container#addItem() */ public Object addItem() { // Creates a new id final Object id = new Object(); // Adds the Item into container addItem(id); return id; } /* * (non-Javadoc) * * @see com.vaadin.data.Container#addItem(java.lang.Object) */ public Item addItem(Object itemId) { // Make sure that the Item is valid and has not been created yet if (itemId == null || items.containsKey(itemId)) { return null; } // Adds the Item to container (at the end of the unfiltered list) itemIds.add(itemId); Hashtable t = new Hashtable(); items.put(itemId, t); addDefaultValues(t); // this optimization is why some code is duplicated with // addItemAtInternalIndex() final Item item = new IndexedContainerItem(itemId); if (filteredItemIds != null) { if (passesFilters(item)) { filteredItemIds.add(itemId); } } // Sends the event fireContentsChange(itemIds.size() - 1); return item; } /** * Helper method to add default values for items if available * * @param t * data table of added item */ private void addDefaultValues(Hashtable t) { if (defaultPropertyValues != null) { for (Object key : defaultPropertyValues.keySet()) { t.put(key, defaultPropertyValues.get(key)); } } } /* * (non-Javadoc) * * @see com.vaadin.data.Container#removeItem(java.lang.Object) */ public boolean removeItem(Object itemId) { if (items.remove(itemId) == null) { return false; } itemIds.remove(itemId); if (filteredItemIds != null) { filteredItemIds.remove(itemId); } fireContentsChange(-1); return true; } /* * (non-Javadoc) * * @see * com.vaadin.data.Container#removeContainerProperty(java.lang.Object * ) */ public boolean removeContainerProperty(Object propertyId) { // Fails if the Property is not present if (!propertyIds.contains(propertyId)) { return false; } // Removes the Property to Property list and types propertyIds.remove(propertyId); types.remove(propertyId); defaultPropertyValues.remove(propertyId); // If remove the Property from all Items for (final Iterator i = itemIds.iterator(); i.hasNext();) { ((Hashtable) items.get(i.next())).remove(propertyId); } // Sends a change event fireContainerPropertySetChange(); return true; } /* Container.Ordered methods */ /* * (non-Javadoc) * * @see com.vaadin.data.Container.Ordered#firstItemId() */ public Object firstItemId() { try { if (filteredItemIds != null) { return filteredItemIds.iterator().next(); } return itemIds.get(0); } catch (final IndexOutOfBoundsException e) { } catch (final NoSuchElementException e) { } return null; } /* * (non-Javadoc) * * @see com.vaadin.data.Container.Ordered#lastItemId() */ public Object lastItemId() { try { if (filteredItemIds != null) { final Iterator i = filteredItemIds.iterator(); Object last = null; while (i.hasNext()) { last = i.next(); } return last; } return itemIds.get(itemIds.size() - 1); } catch (final IndexOutOfBoundsException e) { } return null; } /* * (non-Javadoc) * * @see * com.vaadin.data.Container.Ordered#nextItemId(java.lang.Object) */ public Object nextItemId(Object itemId) { if (filteredItemIds != null) { if (itemId == null || !filteredItemIds.contains(itemId)) { return null; } final Iterator i = filteredItemIds.iterator(); while (i.hasNext() && !itemId.equals(i.next())) { ; } if (i.hasNext()) { return i.next(); } return null; } try { return itemIds.get(itemIds.indexOf(itemId) + 1); } catch (final IndexOutOfBoundsException e) { return null; } } /* * (non-Javadoc) * * @see * com.vaadin.data.Container.Ordered#prevItemId(java.lang.Object) */ public Object prevItemId(Object itemId) { if (filteredItemIds != null) { if (!filteredItemIds.contains(itemId)) { return null; } final Iterator i = filteredItemIds.iterator(); if (itemId == null) { return null; } Object prev = null; Object current; while (i.hasNext() && !itemId.equals(current = i.next())) { prev = current; } return prev; } try { return itemIds.get(itemIds.indexOf(itemId) - 1); } catch (final IndexOutOfBoundsException e) { return null; } } /* * (non-Javadoc) * * @see * com.vaadin.data.Container.Ordered#isFirstId(java.lang.Object) */ public boolean isFirstId(Object itemId) { if (filteredItemIds != null) { try { final Object first = filteredItemIds.iterator().next(); return (itemId != null && itemId.equals(first)); } catch (final NoSuchElementException e) { return false; } } return (size() >= 1 && itemIds.get(0).equals(itemId)); } /* * (non-Javadoc) * * @see com.vaadin.data.Container.Ordered#isLastId(java.lang.Object) */ public boolean isLastId(Object itemId) { if (filteredItemIds != null) { try { Object last = null; for (final Iterator i = filteredItemIds.iterator(); i.hasNext();) { last = i.next(); } return (itemId != null && itemId.equals(last)); } catch (final NoSuchElementException e) { return false; } } final int s = size(); return (s >= 1 && itemIds.get(s - 1).equals(itemId)); } /* * (non-Javadoc) * * @see * com.vaadin.data.Container.Ordered#addItemAfter(java.lang.Object, * java.lang.Object) */ public Item addItemAfter(Object previousItemId, Object newItemId) { // Get the index of the addition int index = -1; if (previousItemId != null) { index = 1 + indexOfId(previousItemId); if (index <= 0 || index > size()) { return null; } } return addItemAt(index, newItemId); } /* * (non-Javadoc) * * @see * com.vaadin.data.Container.Ordered#addItemAfter(java.lang.Object) */ public Object addItemAfter(Object previousItemId) { // Creates a new id final Object id = new Object(); return addItemAfter(previousItemId, id); } /* * (non-Javadoc) * * @see com.vaadin.data.Container.Indexed#getIdByIndex(int) */ public Object getIdByIndex(int index) { if (filteredItemIds != null) { if (index < 0) { throw new IndexOutOfBoundsException(); } try { final Iterator i = filteredItemIds.iterator(); while (index-- > 0) { i.next(); } return i.next(); } catch (final NoSuchElementException e) { throw new IndexOutOfBoundsException(); } } return itemIds.get(index); } /* * (non-Javadoc) * * @see * com.vaadin.data.Container.Indexed#indexOfId(java.lang.Object) */ public int indexOfId(Object itemId) { if (filteredItemIds != null) { int index = 0; if (itemId == null) { return -1; } final Iterator i = filteredItemIds.iterator(); while (i.hasNext()) { Object id = i.next(); if (itemId.equals(id)) { return index; } index++; } return -1; } return itemIds.indexOf(itemId); } /* * (non-Javadoc) * * @see com.vaadin.data.Container.Indexed#addItemAt(int, * java.lang.Object) */ public Item addItemAt(int index, Object newItemId) { // add item based on a filtered index int internalIndex = -1; if (filteredItemIds == null) { internalIndex = index; } else if (index == 0) { internalIndex = 0; } else if (index == size()) { // add just after the last item Object id = getIdByIndex(index - 1); internalIndex = itemIds.indexOf(id) + 1; } else if (index > 0 && index < size()) { // map the index of the visible item to its unfiltered index Object id = getIdByIndex(index); internalIndex = itemIds.indexOf(id); } if (internalIndex >= 0) { return addItemAtInternalIndex(internalIndex, newItemId); } else { return null; } } /* * (non-Javadoc) * * @see com.vaadin.data.Container.Indexed#addItemAt(int) */ public Object addItemAt(int index) { // Creates a new id final Object id = new Object(); // Adds the Item into container addItemAt(index, id); return id; } /* Event notifiers */ /** * Adds new item at given index of the internal (unfiltered) list. *

* The item is also added in the visible part of the list if it passes the * filters. *

* * @param index * Internal index to add the new item. * @param newItemId * Id of the new item to be added. * @return Returns new item or null if the operation fails. */ private Item addItemAtInternalIndex(int index, Object newItemId) { // Make sure that the Item is valid and has not been created yet if (index < 0 || index > itemIds.size() || newItemId == null || items.containsKey(newItemId)) { return null; } // Adds the Item to container itemIds.add(index, newItemId); Hashtable t = new Hashtable(); items.put(newItemId, t); addDefaultValues(t); if (filteredItemIds != null) { // when the item data is set later (IndexedContainerProperty), // filtering is updated updateContainerFiltering(); } else { fireContentsChange(index); } return new IndexedContainerItem(newItemId); } /** * An event object specifying the list whose Property set has * changed. * * @author IT Mill Ltd. * @version * @VERSION@ * @since 3.0 */ private class PropertySetChangeEvent extends EventObject implements Container.PropertySetChangeEvent, Serializable { private PropertySetChangeEvent(IndexedContainer source) { super(source); } /* * (non-Javadoc) * * @see * com.vaadin.data.Container.PropertySetChangeEvent#getContainer * () */ public Container getContainer() { return (Container) getSource(); } } /** * An event object specifying the list whose Item set has * changed. * * @author IT Mill Ltd. * @version * @VERSION@ * @since 3.0 */ public class ItemSetChangeEvent extends EventObject implements Container.ItemSetChangeEvent, Serializable { private final int addedItemIndex; private ItemSetChangeEvent(IndexedContainer source, int addedItemIndex) { super(source); this.addedItemIndex = addedItemIndex; } /* * (non-Javadoc) * * @see * com.vaadin.data.Container.ItemSetChangeEvent#getContainer() */ public Container getContainer() { return (Container) getSource(); } /** * Iff one item is added, gives its index. * * @return -1 if either multiple items are changed or some other change * than add is done. */ public int getAddedItemIndex() { return addedItemIndex; } } /** * An event object specifying the Property in a list whose * value has changed. * * @author IT Mill Ltd. * @version * @VERSION@ * @since 3.0 */ private class PropertyValueChangeEvent extends EventObject implements Property.ValueChangeEvent, Serializable { private PropertyValueChangeEvent(Property source) { super(source); } /* * (non-Javadoc) * * @see com.vaadin.data.Property.ValueChangeEvent#getProperty() */ public Property getProperty() { return (Property) getSource(); } } /* * (non-Javadoc) * * @see * com.vaadin.data.Container.PropertySetChangeNotifier#addListener * (com.vaadin.data.Container.PropertySetChangeListener) */ public void addListener(Container.PropertySetChangeListener listener) { if (propertySetChangeListeners == null) { propertySetChangeListeners = new LinkedList(); } propertySetChangeListeners.add(listener); } /* * (non-Javadoc) * * @see * com.vaadin.data.Container.PropertySetChangeNotifier#removeListener * (com.vaadin.data.Container.PropertySetChangeListener) */ public void removeListener(Container.PropertySetChangeListener listener) { if (propertySetChangeListeners != null) { propertySetChangeListeners.remove(listener); } } /* * (non-Javadoc) * * @see * com.vaadin.data.Container.ItemSetChangeNotifier#addListener(com * .itmill.toolkit.data.Container.ItemSetChangeListener) */ public void addListener(Container.ItemSetChangeListener listener) { if (itemSetChangeListeners == null) { itemSetChangeListeners = new LinkedList(); } itemSetChangeListeners.add(listener); } /* * (non-Javadoc) * * @see * com.vaadin.data.Container.ItemSetChangeNotifier#removeListener * (com.vaadin.data.Container.ItemSetChangeListener) */ public void removeListener(Container.ItemSetChangeListener listener) { if (itemSetChangeListeners != null) { itemSetChangeListeners.remove(listener); } } /* * (non-Javadoc) * * @see * com.vaadin.data.Property.ValueChangeNotifier#addListener(com. * itmill.toolkit.data.Property.ValueChangeListener) */ public void addListener(Property.ValueChangeListener listener) { if (propertyValueChangeListeners == null) { propertyValueChangeListeners = new LinkedList(); } propertyValueChangeListeners.add(listener); } /* * (non-Javadoc) * * @see * com.vaadin.data.Property.ValueChangeNotifier#removeListener(com * .itmill.toolkit.data.Property.ValueChangeListener) */ public void removeListener(Property.ValueChangeListener listener) { if (propertyValueChangeListeners != null) { propertyValueChangeListeners.remove(listener); } } /** * Sends a Property value change event to all interested listeners. * * @param source * the IndexedContainerProperty object. */ private void firePropertyValueChange(IndexedContainerProperty source) { // Sends event to listeners listening all value changes if (propertyValueChangeListeners != null) { final Object[] l = propertyValueChangeListeners.toArray(); final Property.ValueChangeEvent event = new IndexedContainer.PropertyValueChangeEvent( source); for (int i = 0; i < l.length; i++) { ((Property.ValueChangeListener) l[i]).valueChange(event); } } // Sends event to single property value change listeners if (singlePropertyValueChangeListeners != null) { final Hashtable propertySetToListenerListMap = (Hashtable) singlePropertyValueChangeListeners .get(source.propertyId); if (propertySetToListenerListMap != null) { final LinkedList listenerList = (LinkedList) propertySetToListenerListMap .get(source.itemId); if (listenerList != null) { final Property.ValueChangeEvent event = new IndexedContainer.PropertyValueChangeEvent( source); Object[] listeners = listenerList.toArray(); for (int i = 0; i < listeners.length; i++) { ((Property.ValueChangeListener) listeners[i]) .valueChange(event); } } } } } /** * Sends a Property set change event to all interested listeners. */ private void fireContainerPropertySetChange() { if (propertySetChangeListeners != null) { final Object[] l = propertySetChangeListeners.toArray(); final Container.PropertySetChangeEvent event = new IndexedContainer.PropertySetChangeEvent( this); for (int i = 0; i < l.length; i++) { ((Container.PropertySetChangeListener) l[i]) .containerPropertySetChange(event); } } } /** * Sends Item set change event to all registered interested listeners. * * @param addedItemIndex * index of new item if change event was an item addition */ private void fireContentsChange(int addedItemIndex) { if (itemSetChangeListeners != null) { final Object[] l = itemSetChangeListeners.toArray(); final Container.ItemSetChangeEvent event = new IndexedContainer.ItemSetChangeEvent( this, addedItemIndex); for (int i = 0; i < l.length; i++) { ((Container.ItemSetChangeListener) l[i]) .containerItemSetChange(event); } } } /** * Adds new single Property change listener. * * @param propertyId * the ID of the Property to add. * @param itemId * the ID of the Item . * @param listener * the listener to be added. */ private void addSinglePropertyChangeListener(Object propertyId, Object itemId, Property.ValueChangeListener listener) { if (listener != null) { if (singlePropertyValueChangeListeners == null) { singlePropertyValueChangeListeners = new Hashtable(); } Hashtable propertySetToListenerListMap = (Hashtable) singlePropertyValueChangeListeners .get(propertyId); if (propertySetToListenerListMap == null) { propertySetToListenerListMap = new Hashtable(); singlePropertyValueChangeListeners.put(propertyId, propertySetToListenerListMap); } LinkedList listenerList = (LinkedList) propertySetToListenerListMap .get(itemId); if (listenerList == null) { listenerList = new LinkedList(); propertySetToListenerListMap.put(itemId, listenerList); } listenerList.addLast(listener); } } /** * Removes a previously registered single Property change listener. * * @param propertyId * the ID of the Property to remove. * @param itemId * the ID of the Item. * @param listener * the listener to be removed. */ private void removeSinglePropertyChangeListener(Object propertyId, Object itemId, Property.ValueChangeListener listener) { if (listener != null && singlePropertyValueChangeListeners != null) { final Hashtable propertySetToListenerListMap = (Hashtable) singlePropertyValueChangeListeners .get(propertyId); if (propertySetToListenerListMap != null) { final LinkedList listenerList = (LinkedList) propertySetToListenerListMap .get(itemId); if (listenerList != null) { listenerList.remove(listener); if (listenerList.isEmpty()) { propertySetToListenerListMap.remove(itemId); } } if (propertySetToListenerListMap.isEmpty()) { singlePropertyValueChangeListeners.remove(propertyId); } } if (singlePropertyValueChangeListeners.isEmpty()) { singlePropertyValueChangeListeners = null; } } } /* Internal Item and Property implementations */ /* * A class implementing the com.vaadin.data.Item interface to be * contained in the list. @author IT Mill Ltd. * * @version @VERSION@ * * @since 3.0 */ class IndexedContainerItem implements Item { /** * Item ID in the host container for this Item. */ private final Object itemId; /** * Constructs a new ListItem instance and connects it to a host * container. * * @param itemId * the Item ID of the new Item. */ private IndexedContainerItem(Object itemId) { // Gets the item contents from the host if (itemId == null) { throw new NullPointerException(); } this.itemId = itemId; } /* * (non-Javadoc) * * @see com.vaadin.data.Item#getItemProperty(java.lang.Object) */ public Property getItemProperty(Object id) { return new IndexedContainerProperty(itemId, id); } public Collection getItemPropertyIds() { return Collections.unmodifiableCollection(propertyIds); } /** * Gets the String representation of the contents of the * Item. The format of the string is a space separated catenation of the * String representations of the Properties contained by * the Item. * * @return String representation of the Item contents */ @Override public String toString() { String retValue = ""; for (final Iterator i = propertyIds.iterator(); i.hasNext();) { final Object propertyId = i.next(); retValue += getItemProperty(propertyId).toString(); if (i.hasNext()) { retValue += " "; } } return retValue; } /** * Calculates a integer hash-code for the Item that's unique inside the * list. Two Items inside the same list have always different * hash-codes, though Items in different lists may have identical * hash-codes. * * @return A locally unique hash-code as integer */ @Override public int hashCode() { return itemId.hashCode(); } /** * Tests if the given object is the same as the this object. Two Items * got from a list container with the same ID are equal. * * @param obj * an object to compare with this object * @return true if the given object is the same as this * object, false if not */ @Override public boolean equals(Object obj) { if (obj == null || !obj.getClass().equals(IndexedContainerItem.class)) { return false; } final IndexedContainerItem li = (IndexedContainerItem) obj; return getHost() == li.getHost() && itemId.equals(li.itemId); } private IndexedContainer getHost() { return IndexedContainer.this; } /** * IndexedContainerItem does not support adding new properties. Add * properties at container level. See * {@link IndexedContainer#addContainerProperty(Object, Class, Object)} * * @see com.vaadin.data.Item#addProperty(Object, Property) */ public boolean addItemProperty(Object id, Property property) throws UnsupportedOperationException { throw new UnsupportedOperationException("Indexed container item " + "does not support adding new properties"); } /** * Indexed container does not support removing properties. Remove * properties at container level. See * {@link IndexedContainer#removeContainerProperty(Object)} * * @see com.vaadin.data.Item#removeProperty(Object) */ public boolean removeItemProperty(Object id) throws UnsupportedOperationException { throw new UnsupportedOperationException( "Indexed container item does not support property removal"); } } /** * A class implementing the {@link Property} interface to be contained in * the {@link IndexedContainerItem} contained in the * {@link IndexedContainer}. * * @author IT Mill Ltd. * * @version * @VERSION@ * @since 3.0 */ private class IndexedContainerProperty implements Property, Property.ValueChangeNotifier { /** * ID of the Item, where this property resides. */ private final Object itemId; /** * Id of the Property. */ private final Object propertyId; /** * Constructs a new {@link IndexedContainerProperty} object. * * @param itemId * the ID of the Item to connect the new Property to. * @param propertyId * the Property ID of the new Property. * @param host * the list that contains the Item to contain the new * Property. */ private IndexedContainerProperty(Object itemId, Object propertyId) { if (itemId == null || propertyId == null) { // Null ids are not accepted throw new NullPointerException( "Container item or property ids can not be null"); } this.propertyId = propertyId; this.itemId = itemId; } /* * (non-Javadoc) * * @see com.vaadin.data.Property#getType() */ public Class getType() { return (Class) types.get(propertyId); } /* * (non-Javadoc) * * @see com.vaadin.data.Property#getValue() */ public Object getValue() { return ((Hashtable) items.get(itemId)).get(propertyId); } /* * (non-Javadoc) * * @see com.vaadin.data.Property#isReadOnly() */ public boolean isReadOnly() { return readOnlyProperties.contains(this); } /* * (non-Javadoc) * * @see com.vaadin.data.Property#setReadOnly(boolean) */ public void setReadOnly(boolean newStatus) { if (newStatus) { readOnlyProperties.add(this); } else { readOnlyProperties.remove(this); } } /* * (non-Javadoc) * * @see com.vaadin.data.Property#setValue(java.lang.Object) */ public void setValue(Object newValue) throws Property.ReadOnlyException, Property.ConversionException { // Gets the Property set final Hashtable propertySet = (Hashtable) items.get(itemId); // Support null values on all types if (newValue == null) { propertySet.remove(propertyId); } else if (getType().isAssignableFrom(newValue.getClass())) { propertySet.put(propertyId, newValue); } else { try { // Gets the string constructor final Constructor constr = getType().getConstructor( new Class[] { String.class }); // Creates new object from the string propertySet.put(propertyId, constr .newInstance(new Object[] { newValue.toString() })); } catch (final java.lang.Exception e) { throw new Property.ConversionException( "Conversion for value '" + newValue + "' of class " + newValue.getClass().getName() + " to " + getType().getName() + " failed"); } } // update the container filtering if this property is being filtered updateContainerFiltering(propertyId); firePropertyValueChange(this); } /** * Returns the value of the Property in human readable textual format. * The return value should be assignable to the setValue * method if the Property is not in read-only mode. * * @return String representation of the value stored in the * Property */ @Override public String toString() { final Object value = getValue(); if (value == null) { return null; } return value.toString(); } /** * Calculates a integer hash-code for the Property that's unique inside * the Item containing the Property. Two different Properties inside the * same Item contained in the same list always have different * hash-codes, though Properties in different Items may have identical * hash-codes. * * @return A locally unique hash-code as integer */ @Override public int hashCode() { return itemId.hashCode() ^ propertyId.hashCode(); } /** * Tests if the given object is the same as the this object. Two * Properties got from an Item with the same ID are equal. * * @param obj * an object to compare with this object * @return true if the given object is the same as this * object, false if not */ @Override public boolean equals(Object obj) { if (obj == null || !obj.getClass().equals(IndexedContainerProperty.class)) { return false; } final IndexedContainerProperty lp = (IndexedContainerProperty) obj; return lp.getHost() == getHost() && lp.propertyId.equals(propertyId) && lp.itemId.equals(itemId); } /* * (non-Javadoc) * * @see * com.vaadin.data.Property.ValueChangeNotifier#addListener( * com.vaadin.data.Property.ValueChangeListener) */ public void addListener(Property.ValueChangeListener listener) { addSinglePropertyChangeListener(propertyId, itemId, listener); } /* * (non-Javadoc) * * @see * com.vaadin.data.Property.ValueChangeNotifier#removeListener * (com.vaadin.data.Property.ValueChangeListener) */ public void removeListener(Property.ValueChangeListener listener) { removeSinglePropertyChangeListener(propertyId, itemId, listener); } private IndexedContainer getHost() { return IndexedContainer.this; } } /* * (non-Javadoc) * * @see com.vaadin.data.Container.Sortable#sort(java.lang.Object[], * boolean[]) */ public void sort(Object[] propertyId, boolean[] ascending) { // Removes any non-sortable property ids final List ids = new ArrayList(); final List orders = new ArrayList(); final Collection sortable = getSortableContainerPropertyIds(); for (int i = 0; i < propertyId.length; i++) { if (sortable.contains(propertyId[i])) { ids.add(propertyId[i]); orders.add(new Boolean(i < ascending.length ? ascending[i] : true)); } } if (ids.size() == 0) { return; } sortPropertyId = ids.toArray(); sortDirection = new boolean[orders.size()]; for (int i = 0; i < sortDirection.length; i++) { sortDirection[i] = (orders.get(i)).booleanValue(); } // Sort Collections.sort(itemIds, this); if (filteredItemIds != null) { updateContainerFiltering(); } else { fireContentsChange(-1); } // Remove temporary references sortPropertyId = null; sortDirection = null; } /* * (non-Javadoc) * * @see * com.vaadin.data.Container.Sortable#getSortableContainerPropertyIds * () */ public Collection getSortableContainerPropertyIds() { final LinkedList list = new LinkedList(); for (final Iterator i = propertyIds.iterator(); i.hasNext();) { final Object id = i.next(); final Class type = getType(id); if (type != null && Comparable.class.isAssignableFrom(type)) { list.add(id); } } return list; } /** * Compares two items for sorting. * * @see java.util.Comparator#compare(java.lang.Object, java.lang.Object) * @see #sort((java.lang.Object[], boolean[]) */ public int compare(Object o1, Object o2) { for (int i = 0; i < sortPropertyId.length; i++) { // Get the compared properties final Property pp1 = getContainerProperty(o1, sortPropertyId[i]); final Property pp2 = getContainerProperty(o2, sortPropertyId[i]); // Get the compared values final Object p1 = pp1 == null ? null : pp1.getValue(); final Object p2 = pp2 == null ? null : pp2.getValue(); // Result of the comparison int r = 0; // Normal non-null comparison if (p1 != null && p2 != null) { if ((p1 instanceof Boolean) && (p2 instanceof Boolean)) { r = p1.equals(p2) ? 0 : ((sortDirection[i] ? 1 : -1) * (((Boolean) p1) .booleanValue() ? 1 : -1)); } else { r = sortDirection[i] ? ((Comparable) p1).compareTo(p2) : -((Comparable) p1).compareTo(p2); } } // If both are nulls else if (p1 == p2) { r = 0; } else { r = (sortDirection[i] ? 1 : -1) * (p1 == null ? -1 : 1); } // If order can be decided if (r != 0) { return r; } } return 0; } /** * Supports cloning of the IndexedContainer cleanly. * * @throws CloneNotSupportedException * if an object cannot be cloned. . */ @Override public Object clone() throws CloneNotSupportedException { // Creates the clone final IndexedContainer nc = new IndexedContainer(); // Clone the shallow properties nc.itemIds = itemIds != null ? (ArrayList) itemIds.clone() : null; nc.itemSetChangeListeners = itemSetChangeListeners != null ? (LinkedList) itemSetChangeListeners .clone() : null; nc.propertyIds = propertyIds != null ? (ArrayList) propertyIds.clone() : null; nc.propertySetChangeListeners = propertySetChangeListeners != null ? (LinkedList) propertySetChangeListeners .clone() : null; nc.propertyValueChangeListeners = propertyValueChangeListeners != null ? (LinkedList) propertyValueChangeListeners .clone() : null; nc.readOnlyProperties = readOnlyProperties != null ? (HashSet) readOnlyProperties .clone() : null; nc.singlePropertyValueChangeListeners = singlePropertyValueChangeListeners != null ? (Hashtable) singlePropertyValueChangeListeners .clone() : null; nc.sortDirection = sortDirection != null ? (boolean[]) sortDirection .clone() : null; nc.sortPropertyId = sortPropertyId != null ? (Object[]) sortPropertyId .clone() : null; nc.types = types != null ? (Hashtable) types.clone() : null; nc.filters = filters == null ? null : (HashSet) filters.clone(); nc.filteredItemIds = filteredItemIds == null ? null : (LinkedHashSet) filteredItemIds.clone(); // Clone property-values if (items == null) { nc.items = null; } else { nc.items = new Hashtable(); for (final Iterator i = items.keySet().iterator(); i.hasNext();) { final Object id = i.next(); final Hashtable it = (Hashtable) items.get(id); nc.items.put(id, it.clone()); } } return nc; } /** * Note! In Toolkit version 5.2.6 removed complex equals method due the old * one was practically useless and caused serious performance issues. * * @see java.lang.Object#equals(java.lang.Object) */ @Override public boolean equals(Object obj) { return super.equals(obj); } public void addContainerFilter(Object propertyId, String filterString, boolean ignoreCase, boolean onlyMatchPrefix) { if (filters == null) { filters = new HashSet(); } filters.add(new Filter(propertyId, filterString, ignoreCase, onlyMatchPrefix)); updateContainerFiltering(); } public void removeAllContainerFilters() { if (filters == null) { return; } filters.clear(); updateContainerFiltering(); } public void removeContainerFilters(Object propertyId) { if (filters == null || propertyId == null) { return; } final Iterator i = filters.iterator(); while (i.hasNext()) { final Filter f = i.next(); if (propertyId.equals(f.propertyId)) { i.remove(); } } updateContainerFiltering(); } private void updateContainerFiltering(Object propertyId) { if (filters == null || propertyId == null) { return; } // update container filtering if there is a filter for the given // property final Iterator i = filters.iterator(); while (i.hasNext()) { final Filter f = i.next(); if (propertyId.equals(f.propertyId)) { updateContainerFiltering(); return; } } } private void updateContainerFiltering() { // Clearing filters? if (filters == null || filters.isEmpty()) { filteredItemIds = null; if (filters != null) { filters = null; fireContentsChange(-1); } return; } // Reset filtered list if (filteredItemIds == null) { filteredItemIds = new LinkedHashSet(); } else { filteredItemIds.clear(); } // Filter for (final Iterator i = itemIds.iterator(); i.hasNext();) { final Object id = i.next(); if (passesFilters(new IndexedContainerItem(id))) { filteredItemIds.add(id); } } fireContentsChange(-1); } private boolean passesFilters(Item item) { if (filters == null) { return true; } if (item == null) { return false; } final Iterator i = filters.iterator(); while (i.hasNext()) { final Filter f = i.next(); if (!f.passesFilter(item)) { return false; } } return true; } }