Applied-Energistics-2-tiler.../src/main/java/appeng/me/storage/ItemWatcher.java

198 lines
4.2 KiB
Java
Raw Normal View History

2014-11-14 12:02:52 +01:00
/*
* This file is part of Applied Energistics 2.
* Copyright (c) 2013 - 2014, AlgorithmX2, All rights reserved.
*
* Applied Energistics 2 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.
*
* Applied Energistics 2 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 Applied Energistics 2. If not, see <http://www.gnu.org/licenses/lgpl>.
*/
2014-09-24 02:26:27 +02:00
package appeng.me.storage;
2014-09-24 02:26:27 +02:00
import appeng.api.networking.storage.IStackWatcher;
import appeng.api.networking.storage.IStackWatcherHost;
import appeng.api.storage.data.IAEStack;
import appeng.me.cache.GridStorageCache;
import java.util.Collection;
import java.util.HashSet;
import java.util.Iterator;
2014-09-24 02:26:27 +02:00
/**
* Maintain my interests, and a global watch list, they should always be fully synchronized.
*/
public class ItemWatcher implements IStackWatcher
{
private final GridStorageCache gsc;
private final IStackWatcherHost myObject;
private final HashSet<IAEStack> myInterests = new HashSet<IAEStack>();
2014-09-24 02:26:27 +02:00
public ItemWatcher( final GridStorageCache cache, final IStackWatcherHost host )
{
2014-12-29 15:13:47 +01:00
this.gsc = cache;
this.myObject = host;
2014-09-24 02:26:27 +02:00
}
public IStackWatcherHost getHost()
{
2014-12-29 15:13:47 +01:00
return this.myObject;
2014-09-24 02:26:27 +02:00
}
@Override
public int size()
2014-09-24 02:26:27 +02:00
{
return this.myInterests.size();
2014-09-24 02:26:27 +02:00
}
@Override
public boolean isEmpty()
2014-09-24 02:26:27 +02:00
{
return this.myInterests.isEmpty();
}
2014-09-24 02:26:27 +02:00
@Override
public boolean contains( final Object o )
{
return this.myInterests.contains( o );
}
2014-09-24 02:26:27 +02:00
@Override
public Iterator<IAEStack> iterator()
{
return new ItemWatcherIterator( this, this.myInterests.iterator() );
2014-09-24 02:26:27 +02:00
}
@Override
public Object[] toArray()
2014-09-24 02:26:27 +02:00
{
return this.myInterests.toArray();
2014-09-24 02:26:27 +02:00
}
@Override
public <T> T[] toArray( final T[] a )
2014-09-24 02:26:27 +02:00
{
return this.myInterests.toArray( a );
2014-09-24 02:26:27 +02:00
}
@Override
public boolean add( final IAEStack e )
2014-09-24 02:26:27 +02:00
{
if( this.myInterests.contains( e ) )
2015-04-29 02:30:53 +02:00
{
return false;
2015-04-29 02:30:53 +02:00
}
return this.myInterests.add( e.copy() ) && this.gsc.getInterestManager().put( e, this );
2014-09-24 02:26:27 +02:00
}
@Override
public boolean remove( final Object o )
2014-09-24 02:26:27 +02:00
{
return this.myInterests.remove( o ) && this.gsc.getInterestManager().remove( (IAEStack) o, this );
2014-09-24 02:26:27 +02:00
}
@Override
public boolean containsAll( final Collection<?> c )
2014-09-24 02:26:27 +02:00
{
return this.myInterests.containsAll( c );
2014-09-24 02:26:27 +02:00
}
@Override
public boolean addAll( final Collection<? extends IAEStack> c )
2014-09-24 02:26:27 +02:00
{
boolean didChange = false;
for( final IAEStack o : c )
2015-04-29 02:30:53 +02:00
{
didChange = this.add( o ) || didChange;
2015-04-29 02:30:53 +02:00
}
return didChange;
2014-09-24 02:26:27 +02:00
}
@Override
public boolean removeAll( final Collection<?> c )
2014-09-24 02:26:27 +02:00
{
boolean didSomething = false;
for( final Object o : c )
2015-04-29 02:30:53 +02:00
{
2014-12-29 15:13:47 +01:00
didSomething = this.remove( o ) || didSomething;
2015-04-29 02:30:53 +02:00
}
2014-09-24 02:26:27 +02:00
return didSomething;
}
@Override
public boolean retainAll( final Collection<?> c )
2014-09-24 02:26:27 +02:00
{
boolean changed = false;
final Iterator<IAEStack> i = this.iterator();
2014-09-24 02:26:27 +02:00
while( i.hasNext() )
2014-09-24 02:26:27 +02:00
{
if( !c.contains( i.next() ) )
2014-09-24 02:26:27 +02:00
{
i.remove();
changed = true;
}
}
return changed;
}
@Override
public void clear()
2014-09-24 02:26:27 +02:00
{
final Iterator<IAEStack> i = this.myInterests.iterator();
while( i.hasNext() )
{
this.gsc.getInterestManager().remove( i.next(), this );
i.remove();
}
2014-09-24 02:26:27 +02:00
}
private class ItemWatcherIterator implements Iterator<IAEStack>
2014-09-24 02:26:27 +02:00
{
private final ItemWatcher watcher;
private final Iterator<IAEStack> interestIterator;
private IAEStack myLast;
public ItemWatcherIterator( final ItemWatcher parent, final Iterator<IAEStack> i )
{
this.watcher = parent;
this.interestIterator = i;
}
@Override
public boolean hasNext()
{
return this.interestIterator.hasNext();
}
@Override
public IAEStack next()
{
return this.myLast = this.interestIterator.next();
}
2014-09-24 02:26:27 +02:00
@Override
public void remove()
{
ItemWatcher.this.gsc.getInterestManager().remove( this.myLast, this.watcher );
this.interestIterator.remove();
}
}
2014-09-24 02:26:27 +02:00
}