Applied-Energistics-2-tiler.../src/main/java/appeng/me/cache/NetworkMonitor.java

146 lines
4 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.cache;
import java.util.Collection;
import java.util.Deque;
2014-09-24 02:26:27 +02:00
import java.util.Iterator;
import java.util.LinkedList;
import java.util.Map.Entry;
import appeng.api.networking.events.MENetworkStorageEvent;
import appeng.api.networking.security.BaseActionSource;
import appeng.api.storage.IMEInventoryHandler;
import appeng.api.storage.IMEMonitorHandlerReceiver;
import appeng.api.storage.MEMonitorHandler;
import appeng.api.storage.StorageChannel;
import appeng.api.storage.data.IAEStack;
import appeng.api.storage.data.IItemList;
import appeng.me.storage.ItemWatcher;
2014-09-24 02:26:27 +02:00
public class NetworkMonitor<T extends IAEStack<T>> extends MEMonitorHandler<T>
{
private final static Deque<NetworkMonitor<?>> DEPTH = new LinkedList<NetworkMonitor<?>>();
2014-09-24 02:26:27 +02:00
final private GridStorageCache myGridCache;
final private StorageChannel myChannel;
boolean sendEvent = false;
public NetworkMonitor( GridStorageCache cache, StorageChannel chan )
{
super( null, chan );
this.myGridCache = cache;
this.myChannel = chan;
}
2014-09-24 02:26:27 +02:00
public void forceUpdate()
{
2014-12-29 15:13:47 +01:00
this.hasChanged = true;
2014-09-24 02:26:27 +02:00
2014-12-29 15:13:47 +01:00
Iterator<Entry<IMEMonitorHandlerReceiver<T>, Object>> i = this.getListeners();
while( i.hasNext() )
2014-09-24 02:26:27 +02:00
{
Entry<IMEMonitorHandlerReceiver<T>, Object> o = i.next();
IMEMonitorHandlerReceiver<T> receiver = o.getKey();
2014-09-24 02:26:27 +02:00
if( receiver.isValid( o.getValue() ) )
receiver.onListUpdate();
2014-09-24 02:26:27 +02:00
else
i.remove();
}
}
public void onTick()
{
if( this.sendEvent )
{
this.sendEvent = false;
this.myGridCache.myGrid.postEvent( new MENetworkStorageEvent( this, this.myChannel ) );
}
2014-09-24 02:26:27 +02:00
}
@Override
protected IMEInventoryHandler getHandler()
{
switch( this.myChannel )
{
case ITEMS:
return this.myGridCache.getItemInventoryHandler();
case FLUIDS:
return this.myGridCache.getFluidInventoryHandler();
default:
}
return null;
}
2015-02-03 12:04:13 +01:00
2014-09-24 02:26:27 +02:00
@Override
protected void postChangesToListeners( Iterable<T> changes, BaseActionSource src )
2014-09-24 02:26:27 +02:00
{
2014-12-29 15:13:47 +01:00
this.postChange( true, changes, src );
2014-09-24 02:26:27 +02:00
}
2015-02-03 12:04:13 +01:00
protected void postChange( boolean Add, Iterable<T> changes, BaseActionSource src )
2014-09-24 02:26:27 +02:00
{
if( DEPTH.contains( this ) )
2014-09-24 02:26:27 +02:00
return;
2015-01-01 22:13:10 +01:00
DEPTH.push( this );
2014-09-24 02:26:27 +02:00
2014-12-29 15:13:47 +01:00
this.sendEvent = true;
this.notifyListenersOfChange( changes, src );
2014-09-24 02:26:27 +02:00
2014-12-29 15:13:47 +01:00
IItemList<T> myStorageList = this.getStorageList();
2014-09-24 02:26:27 +02:00
for( T changedItem : changes )
2014-09-24 02:26:27 +02:00
{
T difference = changedItem;
if( !Add && changedItem != null )
( difference = changedItem.copy() ).setStackSize( -changedItem.getStackSize() );
2014-09-24 02:26:27 +02:00
if( this.myGridCache.interestManager.containsKey( changedItem ) )
2014-09-24 02:26:27 +02:00
{
2014-12-29 15:13:47 +01:00
Collection<ItemWatcher> list = this.myGridCache.interestManager.get( changedItem );
if( !list.isEmpty() )
2014-09-24 02:26:27 +02:00
{
IAEStack fullStack = myStorageList.findPrecise( changedItem );
if( fullStack == null )
2014-09-24 02:26:27 +02:00
{
fullStack = changedItem.copy();
fullStack.setStackSize( 0 );
}
2014-12-29 15:13:47 +01:00
this.myGridCache.interestManager.enableTransactions();
2014-09-24 02:26:27 +02:00
for( ItemWatcher iw : list )
2014-12-29 15:13:47 +01:00
iw.getHost().onStackChange( myStorageList, fullStack, difference, src, this.getChannel() );
2014-09-24 02:26:27 +02:00
2014-12-29 15:13:47 +01:00
this.myGridCache.interestManager.disableTransactions();
2014-09-24 02:26:27 +02:00
}
}
}
2015-03-26 11:14:34 +01:00
final NetworkMonitor<?> last = DEPTH.pop();
if( last != this )
2014-09-24 02:26:27 +02:00
throw new RuntimeException( "Invalid Access to Networked Storage API detected." );
}
}