package net.sourceforge.gjtapi.jcc.filter; /* Copyright (c) 2002 8x8 Inc. (www.8x8.com) All rights reserved. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, provided that the above copyright notice(s) and this permission notice appear in all copies of the Software and that both the above copyright notice(s) and this permission notice appear in supporting documentation. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. Except as contained in this notice, the name of a copyright holder shall not be used in advertising or otherwise to promote the sale, use or other dealings in this Software without prior written authorization of the copyright holder. */ import javax.csapi.cc.jcc.*; /** * This filter takes as input an array of EventFilters. For a given event, it applies the * filters in order. If a filter returns nomatchDisposition, then the next filter is tested. If a filter returns any other disposition, then the filter returns this value and does no further filter evaluation. This would normally be called with nomatchDisposition set to EVENT_DISCARD to process any event (either by notifying or blocking) that any filterwants to process (logical OR). * Creation date: (2000-11-08 14:22:53) * @author: Richard Deadman */ public class OrFilter implements EventFilter { private EventFilter[] filters = null; private int noMatch = -1; /** * OrFilter constructor comment. */ public OrFilter(EventFilter[] filters, int noMatchDisposition) { super(); this.setFilters(filters); this.setNoMatch(noMatchDisposition); } /** * getEventDisposition method comment. */ public int getEventDisposition(JccEvent e) { EventFilter[] flts = this.getFilters(); int continueMatch = this.getNoMatch(); for(int i = 0; i < flts.length; i++) { int res = flts[i].getEventDisposition(e); if (res != continueMatch) return res; } return continueMatch; } /** * Insert the method's description here. * Creation date: (2000-11-08 14:28:09) * @return jain.application.services.jcc.EventFilter[] */ private EventFilter[] getFilters() { return filters; } /** * Insert the method's description here. * Creation date: (2000-11-08 14:28:09) * @return int */ private int getNoMatch() { return noMatch; } /** * Insert the method's description here. * Creation date: (2000-11-08 14:28:09) * @param newFilters jain.application.services.jcc.EventFilter[] */ private void setFilters(EventFilter[] newFilters) { filters = newFilters; } /** * Insert the method's description here. * Creation date: (2000-11-08 14:28:09) * @param newNoMatch int */ private void setNoMatch(int newNoMatch) { noMatch = newNoMatch; } /** * Describe myself. * @return a string representation of the receiver */ public String toString() { return "Or event filter for: " + this.getFilters(); } }