📄 comparenumericheadervalue.java
字号:
/*********************************************************************** * Copyright (c) 2000-2004 The Apache Software Foundation. * * All rights reserved. * * ------------------------------------------------------------------- * * Licensed under the Apache License, Version 2.0 (the "License"); you * * may not use this file except in compliance with the License. You * * may obtain a copy of the License at: * * * * http://www.apache.org/licenses/LICENSE-2.0 * * * * Unless required by applicable law or agreed to in writing, software * * distributed under the License is distributed on an "AS IS" BASIS, * * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or * * implied. See the License for the specific language governing * * permissions and limitations under the License. * ***********************************************************************/package org.apache.james.transport.matchers;import org.apache.mailet.GenericMatcher;import org.apache.mailet.Mail;import org.apache.mailet.MailAddress;import java.lang.NumberFormatException;import java.util.Collection;import java.util.StringTokenizer;import javax.mail.*;import javax.mail.internet.*;/** * <P>Matches mails containing a header with a numeric value whose comparison with the specified value is true. * If the header is missing in the message, there will be <I>no match</I></P> * <P>Configuration string: The headerName, a comparison operator and the numeric headerValue * to compare with, <I>space or tab delimited</I>.</P> * <P>The comparison operators are: <CODE><, <=, ==, >=, ></CODE>; * another set of operators is: <CODE>LT, LE, EQ, GE, GT</CODE>. * Also the following operators are accepted: <CODE>=<, =, =></CODE>.</P> * <P>Example:</P> * <PRE><CODE> * <mailet match="CompareNumericHeaderValue=X-MessageIsSpamProbability > 0.9" class="ToProcessor"> * <processor> spam </processor> * </mailet> * </CODE></PRE> * * @version CVS $Revision: 1.1.2.3 $ $Date: 2004/03/15 03:54:21 $ * @since 2.2.0 */public class CompareNumericHeaderValue extends GenericMatcher { private String headerName = null; private int comparisonOperator; private final static int LT = -2; private final static int LE = -1; private final static int EQ = 0; private final static int GE = +1; private final static int GT = +2; private Double headerValue; public void init() throws MessagingException { StringTokenizer st = new StringTokenizer(getCondition(), " \t", false); if (st.hasMoreTokens()) { headerName = st.nextToken().trim(); } else { throw new MessagingException("Missing headerName"); } if (st.hasMoreTokens()) { String comparisonOperatorString = st.nextToken().trim(); if (comparisonOperatorString.equals("<") || comparisonOperatorString.equals("LT")) { comparisonOperator = LT; } else if (comparisonOperatorString.equals("<=") || comparisonOperatorString.equals("=<") || comparisonOperatorString.equals("LE")) { comparisonOperator = LE; } else if (comparisonOperatorString.equals("==") || comparisonOperatorString.equals("=") || comparisonOperatorString.equals("EQ")) { comparisonOperator = EQ; } else if (comparisonOperatorString.equals(">=") || comparisonOperatorString.equals("=>") || comparisonOperatorString.equals("GE")) { comparisonOperator = GE; } else if (comparisonOperatorString.equals(">") || comparisonOperatorString.equals("GT")) { comparisonOperator = GT; } else { throw new MessagingException("Bad comparisonOperator: \"" + comparisonOperatorString + "\""); } } else { throw new MessagingException("Missing comparisonOperator"); } if (st.hasMoreTokens()) { String headerValueString = st.nextToken().trim(); try { headerValue = Double.valueOf(headerValueString); } catch (NumberFormatException nfe) { throw new MessagingException("Bad header comparison value: \"" + headerValueString + "\"", nfe); } } else { throw new MessagingException("Missing headerValue threshold"); } } public Collection match(Mail mail) throws MessagingException { if (headerName == null) { // should never get here throw new IllegalStateException("Null headerName"); } MimeMessage message = (MimeMessage) mail.getMessage(); String [] headerArray = message.getHeader(headerName); if (headerArray != null && headerArray.length > 0) { try { int comparison = Double.valueOf(headerArray[0].trim()).compareTo(headerValue); switch (comparisonOperator) { case LT: if (comparison < 0) { return mail.getRecipients(); } break; case LE: if (comparison <= 0) { return mail.getRecipients(); } break; case EQ: if (comparison == 0) { return mail.getRecipients(); } break; case GE: if (comparison >= 0) { return mail.getRecipients(); } break; case GT: if (comparison > 0) { return mail.getRecipients(); } break; default: // should never get here throw new IllegalStateException("Unknown comparisonOperator" + comparisonOperator); } } catch (NumberFormatException nfe) { throw new MessagingException("Bad header value found in message: \"" + headerArray[0] + "\"", nfe); } } return null; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -