/* * 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 . */ package appeng.me.storage; import java.util.Collection; import java.util.HashSet; import java.util.Iterator; import appeng.api.networking.storage.IStackWatcher; import appeng.api.networking.storage.IStackWatcherHost; import appeng.api.storage.data.IAEStack; import appeng.me.cache.GridStorageCache; /** * Maintain my interests, and a global watch list, they should always be fully synchronized. */ public class ItemWatcher implements IStackWatcher { class ItemWatcherIterator implements Iterator { final ItemWatcher watcher; final Iterator interestIterator; IAEStack myLast; public ItemWatcherIterator(ItemWatcher parent, Iterator 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(); } @Override public void remove() { ItemWatcher.this.gsc.interestManager.remove( this.myLast, this.watcher ); this.interestIterator.remove(); } } final GridStorageCache gsc; final IStackWatcherHost myObject; final HashSet myInterests = new HashSet(); public ItemWatcher(GridStorageCache cache, IStackWatcherHost host) { this.gsc = cache; this.myObject = host; } public IStackWatcherHost getHost() { return this.myObject; } @Override public boolean add(IAEStack e) { if ( this.myInterests.contains( e ) ) return false; return this.myInterests.add( e.copy() ) && this.gsc.interestManager.put( e, this ); } @Override public boolean addAll(Collection c) { boolean didChange = false; for (IAEStack o : c) didChange = this.add( o ) || didChange; return didChange; } @Override public void clear() { Iterator i = this.myInterests.iterator(); while (i.hasNext()) { this.gsc.interestManager.remove( i.next(), this ); i.remove(); } } @Override public boolean contains(Object o) { return this.myInterests.contains( o ); } @Override public boolean containsAll(Collection c) { return this.myInterests.containsAll( c ); } @Override public boolean isEmpty() { return this.myInterests.isEmpty(); } @Override public Iterator iterator() { return new ItemWatcherIterator( this, this.myInterests.iterator() ); } @Override public boolean remove(Object o) { return this.myInterests.remove( o ) && this.gsc.interestManager.remove( (IAEStack)o, this ); } @Override public boolean removeAll(Collection c) { boolean didSomething = false; for (Object o : c) didSomething = this.remove( o ) || didSomething; return didSomething; } @Override public boolean retainAll(Collection c) { boolean changed = false; Iterator i = this.iterator(); while (i.hasNext()) { if ( !c.contains( i.next() ) ) { i.remove(); changed = true; } } return changed; } @Override public int size() { return this.myInterests.size(); } @Override public Object[] toArray() { return this.myInterests.toArray(); } @Override public T[] toArray(T[] a) { return this.myInterests.toArray( a ); } }