/* * 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.HashMap; import java.util.Iterator; import java.util.Map.Entry; import appeng.api.networking.security.BaseActionSource; import appeng.api.networking.storage.IBaseMonitor; import appeng.api.storage.IMEInventory; import appeng.api.storage.IMEMonitor; import appeng.api.storage.IMEMonitorHandlerReceiver; import appeng.api.storage.StorageChannel; import appeng.api.storage.data.IAEStack; import appeng.api.storage.data.IItemList; import appeng.util.Platform; import appeng.util.inv.ItemListIgnoreCrafting; public class MEMonitorPassThrough> extends MEPassThrough implements IMEMonitor, IMEMonitorHandlerReceiver { final HashMap, Object> listeners = new HashMap, Object>(); public BaseActionSource changeSource; IMEMonitor monitor; public MEMonitorPassThrough( IMEInventory i, StorageChannel channel ) { super( i, channel ); if( i instanceof IMEMonitor ) { this.monitor = (IMEMonitor) i; } } @Override public void setInternal( IMEInventory i ) { if( this.monitor != null ) { this.monitor.removeListener( this ); } this.monitor = null; IItemList before = this.getInternal() == null ? this.channel.createList() : this.getInternal().getAvailableItems( new ItemListIgnoreCrafting( this.channel.createList() ) ); super.setInternal( i ); if( i instanceof IMEMonitor ) { this.monitor = (IMEMonitor) i; } IItemList after = this.getInternal() == null ? this.channel.createList() : this.getInternal().getAvailableItems( new ItemListIgnoreCrafting( this.channel.createList() ) ); if( this.monitor != null ) { this.monitor.addListener( this, this.monitor ); } Platform.postListChanges( before, after, this, this.changeSource ); } @Override public IItemList getAvailableItems( IItemList out ) { super.getAvailableItems( new ItemListIgnoreCrafting( out ) ); return out; } @Override public void addListener( IMEMonitorHandlerReceiver l, Object verificationToken ) { this.listeners.put( l, verificationToken ); } @Override public void removeListener( IMEMonitorHandlerReceiver l ) { this.listeners.remove( l ); } @Override public IItemList getStorageList() { if( this.monitor == null ) { IItemList out = this.channel.createList(); this.getInternal().getAvailableItems( new ItemListIgnoreCrafting( out ) ); return out; } return this.monitor.getStorageList(); } @Override public boolean isValid( Object verificationToken ) { return verificationToken == this.monitor; } @Override public void postChange( IBaseMonitor monitor, Iterable change, BaseActionSource source ) { Iterator, Object>> i = this.listeners.entrySet().iterator(); while( i.hasNext() ) { Entry, Object> e = i.next(); IMEMonitorHandlerReceiver receiver = e.getKey(); if( receiver.isValid( e.getValue() ) ) { receiver.postChange( this, change, source ); } else { i.remove(); } } } @Override public void onListUpdate() { Iterator, Object>> i = this.listeners.entrySet().iterator(); while( i.hasNext() ) { Entry, Object> e = i.next(); IMEMonitorHandlerReceiver receiver = e.getKey(); if( receiver.isValid( e.getValue() ) ) { receiver.onListUpdate(); } else { i.remove(); } } } }