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

145 lines
3.9 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;
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;
public class NetworkMonitor<T extends IAEStack<T>> extends MEMonitorHandler<T>
{
final private GridStorageCache myGridCache;
final private StorageChannel myChannel;
boolean sendEvent = false;
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();
2014-09-24 02:26:27 +02:00
while (i.hasNext())
{
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 NetworkMonitor(GridStorageCache cache, StorageChannel chan) {
super( null, chan );
2014-12-29 15:13:47 +01:00
this.myGridCache = cache;
this.myChannel = chan;
2014-09-24 02:26:27 +02:00
}
2015-01-01 22:13:10 +01:00
final static public LinkedList DEPTH = new LinkedList();
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-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
2014-09-24 02:26:27 +02:00
protected void postChange(boolean Add, Iterable<T> changes, BaseActionSource src)
{
2015-01-01 22:13:10 +01: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)
{
T difference = changedItem;
if ( !Add && changedItem != null )
(difference = changedItem.copy()).setStackSize( -changedItem.getStackSize() );
2014-12-29 15:13:47 +01: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 );
2014-09-24 02:26:27 +02:00
if ( !list.isEmpty() )
{
IAEStack fullStack = myStorageList.findPrecise( changedItem );
if ( fullStack == null )
{
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-01-01 22:13:10 +01:00
Object last = DEPTH.pop();
2014-09-24 02:26:27 +02:00
if ( last != this )
throw new RuntimeException( "Invalid Access to Networked Storage API detected." );
}
public void onTick()
{
2014-12-29 15:13:47 +01:00
if ( this.sendEvent )
2014-09-24 02:26:27 +02:00
{
2014-12-29 15:13:47 +01:00
this.sendEvent = false;
this.myGridCache.myGrid.postEvent( new MENetworkStorageEvent( this, this.myChannel ) );
2014-09-24 02:26:27 +02:00
}
}
@Override
protected IMEInventoryHandler getHandler()
{
2014-12-29 15:13:47 +01:00
switch (this.myChannel)
2014-09-24 02:26:27 +02:00
{
case ITEMS:
2014-12-29 15:13:47 +01:00
return this.myGridCache.getItemInventoryHandler();
2014-09-24 02:26:27 +02:00
case FLUIDS:
2014-12-29 15:13:47 +01:00
return this.myGridCache.getFluidInventoryHandler();
2014-09-24 02:26:27 +02:00
default:
}
return null;
}
}