com.phloc.commons.collections.attrs.MapBasedAttributeContainerThreadSafe 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.collections.attrs;
import java.util.Collection;
import java.util.Enumeration;
import java.util.Map;
import java.util.Set;
import java.util.concurrent.locks.ReadWriteLock;
import java.util.concurrent.locks.ReentrantReadWriteLock;
import javax.annotation.Nonnegative;
import javax.annotation.Nonnull;
import javax.annotation.Nullable;
import javax.annotation.concurrent.ThreadSafe;
import com.phloc.commons.annotations.ReturnsMutableCopy;
import com.phloc.commons.state.EChange;
/**
* Base class for all kind of string-object mapping container. This
* implementation is a thread-safe wrapper around
* {@link MapBasedAttributeContainer}!
*
* @author Philip Helger
*/
@ThreadSafe
public class MapBasedAttributeContainerThreadSafe extends MapBasedAttributeContainer
{
protected final ReadWriteLock m_aRWLock = new ReentrantReadWriteLock ();
public MapBasedAttributeContainerThreadSafe ()
{
super ();
}
public MapBasedAttributeContainerThreadSafe (@Nonnull final Map aMap)
{
super (aMap);
}
public MapBasedAttributeContainerThreadSafe (@Nonnull final IReadonlyAttributeContainer aCont)
{
super (aCont);
}
@Override
public boolean containsAttribute (@Nullable final String sName)
{
m_aRWLock.readLock ().lock ();
try
{
return super.containsAttribute (sName);
}
finally
{
m_aRWLock.readLock ().unlock ();
}
}
@Override
@Nonnull
@ReturnsMutableCopy
public Map getAllAttributes ()
{
m_aRWLock.readLock ().lock ();
try
{
return super.getAllAttributes ();
}
finally
{
m_aRWLock.readLock ().unlock ();
}
}
@Override
@Nullable
public Object getAttributeObject (@Nullable final String sName)
{
m_aRWLock.readLock ().lock ();
try
{
return super.getAttributeObject (sName);
}
finally
{
m_aRWLock.readLock ().unlock ();
}
}
@Override
@Nonnull
public EChange setAttribute (@Nonnull final String sName, @Nullable final Object aValue)
{
m_aRWLock.writeLock ().lock ();
try
{
return super.setAttribute (sName, aValue);
}
finally
{
m_aRWLock.writeLock ().unlock ();
}
}
@Override
@Nonnull
public EChange removeAttribute (@Nullable final String sName)
{
m_aRWLock.writeLock ().lock ();
try
{
return super.removeAttribute (sName);
}
finally
{
m_aRWLock.writeLock ().unlock ();
}
}
@Override
@Nonnull
@ReturnsMutableCopy
public Enumeration getAttributeNames ()
{
m_aRWLock.readLock ().lock ();
try
{
return super.getAttributeNames ();
}
finally
{
m_aRWLock.readLock ().unlock ();
}
}
@Override
@Nonnull
@ReturnsMutableCopy
public Set getAllAttributeNames ()
{
m_aRWLock.readLock ().lock ();
try
{
return super.getAllAttributeNames ();
}
finally
{
m_aRWLock.readLock ().unlock ();
}
}
@Override
@Nonnull
@ReturnsMutableCopy
public Collection