/* * 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.energy; import java.util.Collection; import java.util.HashSet; import java.util.Iterator; import appeng.api.networking.energy.IEnergyWatcher; import appeng.api.networking.energy.IEnergyWatcherHost; import appeng.me.cache.EnergyGridCache; /** * Maintain my interests, and a global watch list, they should always be fully synchronized. */ public class EnergyWatcher implements IEnergyWatcher { final EnergyGridCache gsc; final IEnergyWatcherHost myObject; final HashSet myInterests = new HashSet(); public EnergyWatcher( EnergyGridCache cache, IEnergyWatcherHost host ) { this.gsc = cache; this.myObject = host; } public void post( EnergyGridCache energyGridCache ) { this.myObject.onThresholdPass( energyGridCache ); } public IEnergyWatcherHost getHost() { return this.myObject; } @Override public int size() { return this.myInterests.size(); } @Override public boolean isEmpty() { return this.myInterests.isEmpty(); } @Override public boolean contains( Object o ) { return this.myInterests.contains( o ); } @Override public Iterator iterator() { return new EnergyWatcherIterator( this, this.myInterests.iterator() ); } @Override public Object[] toArray() { return this.myInterests.toArray(); } @Override public T[] toArray( T[] a ) { return this.myInterests.toArray( a ); } @Override public boolean add( Double e ) { if( this.myInterests.contains( e ) ) { return false; } EnergyThreshold eh = new EnergyThreshold( e, this ); return this.gsc.interests.add( eh ) && this.myInterests.add( eh ); } @Override public boolean remove( Object o ) { EnergyThreshold eh = new EnergyThreshold( (Double) o, this ); return this.myInterests.remove( eh ) && this.gsc.interests.remove( eh ); } @Override public boolean containsAll( Collection c ) { return this.myInterests.containsAll( c ); } @Override public boolean addAll( Collection c ) { boolean didChange = false; for( Double o : c ) { didChange = this.add( o ) || didChange; } return didChange; } @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 void clear() { Iterator i = this.myInterests.iterator(); while( i.hasNext() ) { this.gsc.interests.remove( i.next() ); i.remove(); } } class EnergyWatcherIterator implements Iterator { final EnergyWatcher watcher; final Iterator interestIterator; EnergyThreshold myLast; public EnergyWatcherIterator( EnergyWatcher parent, Iterator i ) { this.watcher = parent; this.interestIterator = i; } @Override public boolean hasNext() { return this.interestIterator.hasNext(); } @Override public Double next() { this.myLast = this.interestIterator.next(); return this.myLast.Limit; } @Override public void remove() { EnergyWatcher.this.gsc.interests.remove( this.myLast ); this.interestIterator.remove(); } } }