📄 abstractquotamatcher.java
字号:
/*********************************************************************** * Copyright (c) 2003-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 java.util.Iterator;import java.util.Collection;import java.util.ArrayList;import javax.mail.MessagingException;import org.apache.mailet.GenericMatcher;import org.apache.mailet.MailAddress;import org.apache.mailet.Mail;/** * <P>Abstract matcher checking whether a recipient has exceeded a maximum allowed quota.</P> * <P>"Quota" at this level is an abstraction whose specific interpretation * will be done by subclasses.</P> * <P>Although extending GenericMatcher, its logic is recipient oriented.</P> * * @version CVS $Revision: 1.1.2.3 $ $Date: 2004/02/26 20:37:00 $ * @since 2.2.0 */abstract public class AbstractQuotaMatcher extends GenericMatcher { /** * Standard matcher entrypoint. * First of all, checks the sender using {@link #isSenderChecked}. * Then, for each recipient checks it using {@link #isRecipientChecked} and * {@link #isOverQuota}. * * @throws MessagingException if either <CODE>isSenderChecked</CODE> or isRecipientChecked throw an exception */ public final Collection match(Mail mail) throws MessagingException { Collection matching = null; if (isSenderChecked(mail.getSender())) { matching = new ArrayList(); for (Iterator i = mail.getRecipients().iterator(); i.hasNext(); ) { MailAddress recipient = (MailAddress) i.next(); if (isRecipientChecked(recipient) && isOverQuota(recipient, mail)) { matching.add(recipient); } } } return matching; } /** * Does the quota check. * Checks if {@link #getQuota} < {@link #getUsed} for a recipient. * Catches any throwable returning false, and so should any override do. * * @param address the recipient addresss to check * @param mail the mail involved in the check * @return true if over quota */ protected boolean isOverQuota(MailAddress address, Mail mail) { String user = address.getUser(); try { boolean over = getQuota(address, mail) < getUsed(address, mail); if (over) log(address + " is over quota."); return over; } catch (Throwable e) { log("Exception checking quota for: " + address, e); return false; } } /** * Checks the sender. * The default behaviour is to check that the sender <I>is not</I> null nor the local postmaster. * If a subclass overrides this method it should "and" <CODE>super.isSenderChecked</CODE> * to its check. * * @param sender the sender to check */ protected boolean isSenderChecked(MailAddress sender) throws MessagingException { return !(sender == null || getMailetContext().getPostmaster().equals(sender)); } /** * Checks the recipient. * The default behaviour is to check that the recipient <I>is not</I> the local postmaster. * If a subclass overrides this method it should "and" <CODE>super.isRecipientChecked</CODE> * to its check. * * @param recipient the recipient to check */ protected boolean isRecipientChecked(MailAddress recipient) throws MessagingException { return !(getMailetContext().getPostmaster().equals(recipient)); } /** * Gets the quota to check against. * * @param address the address holding the quota if applicable * @param mail the mail involved if needed */ abstract protected long getQuota(MailAddress address, Mail mail) throws MessagingException; /** * Gets the used amount to check against the quota. * * @param address the address involved * @param mail the mail involved if needed */ abstract protected long getUsed(MailAddress address, Mail mail) throws MessagingException; /** * Utility method that parses an amount string. * You can use 'k' and 'm' as optional postfixes to the amount (both upper and lowercase). * In other words, "1m" is the same as writing "1024k", which is the same as * "1048576". * * @param amount the amount string to parse */ protected long parseQuota(String amount) throws MessagingException { long quota; try { if (amount.endsWith("k")) { amount = amount.substring(0, amount.length() - 1); quota = Long.parseLong(amount) * 1024; } else if (amount.endsWith("m")) { amount = amount.substring(0, amount.length() - 1); quota = Long.parseLong(amount) * 1024 * 1024; } else { quota = Long.parseLong(amount); } return quota; } catch (Exception e) { throw new MessagingException("Exception parsing quota", e); } }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -