com.phloc.commons.tree.withid.unique.AbstractTreeItemWithUniqueIDFactory Maven / Gradle / Ivy
/**
* Copyright (C) 2006-2015 phloc systems
* http://www.phloc.com
* office[at]phloc[dot]com
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.phloc.commons.tree.withid.unique;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import javax.annotation.Nonnull;
import javax.annotation.Nullable;
import javax.annotation.concurrent.NotThreadSafe;
import com.phloc.commons.ValueEnforcer;
import com.phloc.commons.annotations.OverrideOnDemand;
import com.phloc.commons.annotations.ReturnsMutableCopy;
import com.phloc.commons.collections.ContainerHelper;
import com.phloc.commons.hash.HashCodeGenerator;
import com.phloc.commons.string.ToStringGenerator;
import com.phloc.commons.tree.withid.ITreeItemWithID;
/**
* An abstract tree item factory that maintains a unique ID over all items. It
* does not put the root item in the data store!
*
* @author Philip Helger
*/
@NotThreadSafe
public abstract class AbstractTreeItemWithUniqueIDFactory > implements ITreeItemWithUniqueIDFactory
{
private final Map m_aItemStore;
public AbstractTreeItemWithUniqueIDFactory ()
{
this (new HashMap ());
}
public AbstractTreeItemWithUniqueIDFactory (@Nonnull final Map aItemStore)
{
m_aItemStore = ValueEnforcer.notNull (aItemStore, "ItemStore");
}
@Nonnull
protected final ITEMTYPE addToItemStore (@Nonnull final KEYTYPE aDataID, @Nonnull final ITEMTYPE aItem)
{
// Is the ID already in use?
if (m_aItemStore.containsKey (aDataID))
throw new IllegalArgumentException ("An item with ID '" + aDataID + "' is already contained!");
m_aItemStore.put (aDataID, aItem);
return aItem;
}
@Nonnull
protected abstract ITEMTYPE internalCreate (@Nonnull final ITEMTYPE aParent, @Nonnull final KEYTYPE aDataID);
/**
* Get the ID of the passed tree item to use for internal storage.
*
* @param aItem
* The item who's ID is to be resolved.
* @return The ID of the item
*/
@Nonnull
@OverrideOnDemand
protected KEYTYPE internalGetItemID (@Nonnull final ITEMTYPE aItem)
{
return aItem.getID ();
}
@Nonnull
public final ITEMTYPE create (@Nonnull final ITEMTYPE aParent, @Nonnull final KEYTYPE aDataID)
{
ValueEnforcer.notNull (aParent, "Parent");
// Create and store the item via the default factory
final ITEMTYPE aTreeItem = internalCreate (aParent, aDataID);
return addToItemStore (internalGetItemID (aTreeItem), aTreeItem);
}
public final void onRemoveItem (@Nonnull final ITEMTYPE aTreeItem)
{
// Remove item from item store
m_aItemStore.remove (internalGetItemID (aTreeItem));
}
public final void onAddItem (@Nonnull final ITEMTYPE aTreeItem)
{
// Add item to item store
addToItemStore (internalGetItemID (aTreeItem), aTreeItem);
}
public final boolean containsItemWithDataID (@Nullable final KEYTYPE aDataID)
{
return m_aItemStore.containsKey (aDataID);
}
@Nullable
public final ITEMTYPE getItemOfDataID (@Nullable final KEYTYPE aDataID)
{
return m_aItemStore.get (aDataID);
}
@Nonnull
@ReturnsMutableCopy
public final List getAllItems ()
{
return ContainerHelper.newList (m_aItemStore.values ());
}
@Nonnull
@ReturnsMutableCopy
public final List getAllItemDatas ()
{
final List ret = new ArrayList ();
for (final ITEMTYPE aItem : m_aItemStore.values ())
ret.add (aItem.getData ());
return ret;
}
@Override
public boolean equals (final Object o)
{
if (o == this)
return true;
if (o == null || !getClass ().equals (o.getClass ()))
return false;
final AbstractTreeItemWithUniqueIDFactory , ?, ?> rhs = (AbstractTreeItemWithUniqueIDFactory , ?, ?>) o;
return m_aItemStore.equals (rhs.m_aItemStore);
}
@Override
public int hashCode ()
{
return new HashCodeGenerator (this).append (m_aItemStore).getHashCode ();
}
@Override
public String toString ()
{
return new ToStringGenerator (this).append ("itemStoreKeys", m_aItemStore.keySet ()).toString ();
}
}