⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 filter.java

📁 java实现的P2P多agent中间件
💻 JAVA
字号:
/*****************************************************************
 JADE - Java Agent DEvelopment Framework is a framework to develop 
 multi-agent systems in compliance with the FIPA specifications.
 Copyright (C) 2000 CSELT S.p.A. 
 
 GNU Lesser General Public License
 
 This library 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, 
 version 2.1 of the License. 
 
 This library 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 this library; if not, write to the
 Free Software Foundation, Inc., 59 Temple Place - Suite 330,
 Boston, MA  02111-1307, USA.
 *****************************************************************/

package jade.core;


/**
 Base class for command filters, that allow to
 set up an open-ended chain of platform services to process commands
 coming from the upper JADE layers. Filters process commands when
 their <code>accept()</code> method and <code>postProcess</code> 
 methods are invoked; Filters in the filter chain are nested. 
 The <code>accept()</code> method is called before the command is 
 processed by successive filters in the chain. It should be used
 to take proper actions before the command consumption. On the other hand
 the <code>postProcess()</code> method is called after the command
 has been processed by successive filters in the chain. It should be used
 to take proper actions after the command consumption.  
 
 @author Giovanni Rimassa - FRAMeTech s.r.l.
 @author Giovanni Caire - TILAB
 
 @see jade.core.CommandProcessor
 */
public abstract class Filter {
	
	/**
	 The constant indicating the first position in the filter chain
	 */
	public static final int FIRST = 0;
	
	/**
	 The constant indicating the last position in the filter chain
	 */
	public static final int LAST = 100;
	
	/**
	 A constant indicating a filter for incoming commands
	 */
	public static final boolean INCOMING = false;
	
	/**
	 A constant indicating a filter for outgoing commands
	 */
	public static final boolean OUTGOING = true;
	
	private boolean blocking = false;
	private boolean skipping = false;
	
	// The next filter in the filter chain
	private Filter next;
	
	private String myServiceName;
	
	// The preferred position in the filter chain. Package scoped since
	// it can be directly accessed by the CommandProcessor
	int preferredPosition = LAST - 10;
	
	/**
	 Receive a command object for processing.
	 
	 @param cmd A <code>VerticalCommand</code> describing what operation has
	 been requested from previous layers (that can be the actual
	 prime source of the command or previous filters in the chain).
	 */
	final void filter(VerticalCommand cmd) {
		// FIXME: Should manage the blocking and skipping states
		//System.out.println("Filter "+this+" processing command "+cmd.getName());
		if (accept(cmd)) {
			next.filter(cmd);
			postProcess(cmd);
		}
	}
	
	/**
	 Process a command before it is processed by successive
	 filters in the filter-chain.
	 
	 @param cmd A <code>VerticalCommand</code> describing what operation has
	 been requested from previous layers (that can be the actual
	 prime source of the command or previous filters in the chain).
	 @return A boolean value, telling whether the filtered command has
	 been accepted or not. A filter can veto a command by
	 returning <code>false</code> from this method. A vetoed command
	 is not propagated in the filter chain.
	 */
	protected boolean accept(VerticalCommand cmd) {
		return true;
	}
	
	/**
	 Post-process a command object after it has been processed by the 
	 successive filters in the filter chain.
	 
	 @param cmd A <code>VerticalCommand</code> describing what operation has
	 been requested from previous layers (that can be the actual
	 prime source of the command or previous filters in the chain).
	 */
	protected void postProcess(VerticalCommand cmd) {
	}
	
	/**
	 Retrieve the preferred position for this filter in the filter chain
	 */
	public final int getPreferredPosition() {
		return preferredPosition;
	}
	
	/**
	 Sets the preferred position for this filter in the filter chain
	 */
	public final void setPreferredPosition(int pos) {
		preferredPosition = pos;
		if (preferredPosition > LAST) {
			preferredPosition = LAST;
		}
		else if (preferredPosition < FIRST) {
			preferredPosition = FIRST;
		}
	}
	
	/**
	 Sets the blocking state of this filter. A blocked filter does
	 not process commands, and also prevents subsequent filters to
	 process them.
	 
	 @param newState The boolean value to set the blocking state to.
	 */
	public void setBlocking(boolean newState) {
		blocking = newState;
	}
	
	/**
	 Inquires the blocking state of this filter. A blocked fliter
	 does not process commands, and also prevents subsequent filters
	 to process them.
	 
	 @return The current blocking state of this filter.
	 */
	public boolean isBlocking() {
		return blocking;
	}
	
	/**
	 Sets the skipping state of this filter. A skipped filter does
	 not process commands, but passes them directly to subsequent
	 filters.
	 
	 @param blocked The boolean value to set the skipping state to.
	 */
	public void setSkipping(boolean newState) {
		skipping = newState;
	}
	
	/**
	 Inquires the skipping state of this filter. A skipped filter
	 does not process commands, but passes them directly to
	 subsequent filters.
	 
	 @return The current skipping state of this filter.
	 */
	public boolean isSkipping() {
		return skipping;
	}
	
	////////////////////////////////////////////////////
	// These methods are called by the CommandProcessor 
	// and ServiceManager when installing the filter
	////////////////////////////////////////////////////
	final void setServiceName(String s) {
		myServiceName = s;
	}
	
	final void setNext(Filter f) {
		next = f;
	}
	
	final Filter getNext() {
		return next;
	}
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -