Source Code Cross Referenced for AbstractStorageQuota.java in  » Web-Mail » james-2.3.1 » org » apache » james » transport » matchers » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Web Mail » james 2.3.1 » org.apache.james.transport.matchers 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        /****************************************************************
002:         * Licensed to the Apache Software Foundation (ASF) under one   *
003:         * or more contributor license agreements.  See the NOTICE file *
004:         * distributed with this work for additional information        *
005:         * regarding copyright ownership.  The ASF licenses this file   *
006:         * to you under the Apache License, Version 2.0 (the            *
007:         * "License"); you may not use this file except in compliance   *
008:         * with the License.  You may obtain a copy of the License at   *
009:         *                                                              *
010:         *   http://www.apache.org/licenses/LICENSE-2.0                 *
011:         *                                                              *
012:         * Unless required by applicable law or agreed to in writing,   *
013:         * software distributed under the License is distributed on an  *
014:         * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY       *
015:         * KIND, either express or implied.  See the License for the    *
016:         * specific language governing permissions and limitations      *
017:         * under the License.                                           *
018:         ****************************************************************/package org.apache.james.transport.matchers;
019:
020:        import org.apache.avalon.framework.service.ServiceException;
021:        import org.apache.avalon.framework.service.ServiceManager;
022:        import org.apache.james.Constants;
023:        import org.apache.james.services.JamesUser;
024:        import org.apache.james.services.MailRepository;
025:        import org.apache.james.services.MailServer;
026:        import org.apache.james.services.UsersRepository;
027:        import org.apache.mailet.Mail;
028:        import org.apache.mailet.MailAddress;
029:        import org.apache.mailet.MailetContext;
030:
031:        import javax.mail.MessagingException;
032:
033:        import java.util.Iterator;
034:
035:        /**
036:         * <P>Experimental: Abstract matcher checking whether a recipient has exceeded a maximum allowed
037:         * <I>storage</I> quota for messages standing in his inbox.</P>
038:         * <P>"Storage quota" at this level is still an abstraction whose specific interpretation
039:         * will be done by subclasses (e.g. could be specific for each user or common to all of them).</P> 
040:         *
041:         * <P>This matcher need to calculate the mailbox size everytime it is called. This can slow down things if there are many mails in
042:         * the mailbox. Some users also report big problems with the matcher if a JDBC based mailrepository is used. </P>
043:         *
044:         * @version CVS $Revision: 494058 $ $Date: 2007-01-08 14:18:22 +0100 (Mo, 08 Jan 2007) $
045:         * @since 2.2.0
046:         */
047:        abstract public class AbstractStorageQuota extends AbstractQuotaMatcher {
048:
049:            private MailServer mailServer;
050:
051:            /** The user repository for this mail server.  Contains all the users with inboxes
052:             * on this server.
053:             */
054:            private UsersRepository localusers;
055:
056:            /**
057:             * Standard matcher initialization.
058:             * Overriding classes must do a <CODE>super.init()</CODE>.
059:             */
060:            public void init() throws MessagingException {
061:                super .init();
062:                ServiceManager compMgr = (ServiceManager) getMailetContext()
063:                        .getAttribute(Constants.AVALON_COMPONENT_MANAGER);
064:                try {
065:                    mailServer = (MailServer) compMgr.lookup(MailServer.ROLE);
066:                } catch (ServiceException e) {
067:                    log("Exception in getting the MailServer: "
068:                            + e.getMessage() + e.getKey());
069:                }
070:                try {
071:                    localusers = (UsersRepository) compMgr
072:                            .lookup(UsersRepository.ROLE);
073:                } catch (ServiceException e) {
074:                    log("Exception in getting the UsersStore: "
075:                            + e.getMessage() + e.getKey());
076:                }
077:            }
078:
079:            /** 
080:             * Checks the recipient.
081:             * Does a <CODE>super.isRecipientChecked</CODE> and checks that the recipient
082:             * is a known user in the local server.
083:             * If a subclass overrides this method it should "and" <CODE>super.isRecipientChecked</CODE>
084:             * to its check.
085:             *
086:             * @param recipient the recipient to check
087:             */
088:            protected boolean isRecipientChecked(MailAddress recipient)
089:                    throws MessagingException {
090:                MailetContext mailetContext = getMailetContext();
091:                return super .isRecipientChecked(recipient)
092:                        && (mailetContext.isLocalServer(recipient.getHost()) && mailetContext
093:                                .isLocalUser(recipient.getUser()));
094:            }
095:
096:            /** 
097:             * Gets the storage used in the recipient's inbox.
098:             *
099:             * @param recipient the recipient to check
100:             */
101:            protected long getUsed(MailAddress recipient, Mail _)
102:                    throws MessagingException {
103:                long size = 0;
104:                MailRepository userInbox = mailServer
105:                        .getUserInbox(getPrimaryName(recipient.getUser()));
106:                for (Iterator it = userInbox.list(); it.hasNext();) {
107:                    String key = (String) it.next();
108:                    Mail mc = userInbox.retrieve(key);
109:                    // Retrieve can return null if the mail is no longer in the store.
110:                    if (mc != null)
111:                        try {
112:                            size += mc.getMessageSize();
113:                        } catch (Throwable e) {
114:                            // MailRepository.retrieve() does NOT lock the message.
115:                            // It could be deleted while we're looping.
116:                            log("Exception in getting message size: "
117:                                    + e.getMessage());
118:                        }
119:                }
120:                return size;
121:            }
122:
123:            /**
124:             * Gets the main name of a local customer, handling aliases.
125:             *
126:             * @param originalUsername the user name to look for; it can be already the primary name or an alias
127:             * @return the primary name, or originalUsername unchanged if not found
128:             */
129:            protected String getPrimaryName(String originalUsername) {
130:                String username;
131:                try {
132:                    username = localusers.getRealName(originalUsername);
133:                    JamesUser user = (JamesUser) localusers
134:                            .getUserByName(username);
135:                    if (user.getAliasing()) {
136:                        username = user.getAlias();
137:                    }
138:                } catch (Exception e) {
139:                    username = originalUsername;
140:                }
141:                return username;
142:            }
143:
144:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.