Source Code Cross Referenced for LogExceptionsRule.java in  » Code-Analyzer » hammurapi-3.20.0.3 » org » hammurapi » inspectors » 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 » Code Analyzer » hammurapi 3.20.0.3 » org.hammurapi.inspectors 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        /*
002:         * Hammurapi
003:         * Automated Java code review system. 
004:         * Copyright (C) 2004  Hammurapi Group
005:         *
006:         * This program is free software; you can redistribute it and/or modify
007:         * it under the terms of the GNU General Public License as published by
008:         * the Free Software Foundation; either version 2 of the License, or
009:         *  (at your option) any later version.
010:         *
011:         * This program is distributed in the hope that it will be useful,
012:         * but WITHOUT ANY WARRANTY; without even the implied warranty of
013:         * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
014:         * GNU General Public License for more details.
015:         *
016:         * You should have received a copy of the GNU General Public License
017:         * along with this program; if not, write to the Free Software
018:         * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
019:         *
020:         * URL: http://www.hammurapi.org
021:         * e-Mail: support@hammurapi.biz
022:         */
023:        package org.hammurapi.inspectors;
024:
025:        import org.hammurapi.InspectorBase;
026:
027:        import com.pavelvlasov.config.ConfigurationException;
028:        import com.pavelvlasov.config.Parameterizable;
029:        import com.pavelvlasov.jsel.JselException;
030:        import com.pavelvlasov.jsel.JselRuntimeException;
031:        import com.pavelvlasov.jsel.LanguageElement;
032:        import com.pavelvlasov.jsel.OperationInfo;
033:        import com.pavelvlasov.jsel.expressions.MethodCall;
034:        import com.pavelvlasov.jsel.statements.Handler;
035:        import com.pavelvlasov.review.SourceMarker;
036:        import com.pavelvlasov.util.Visitor;
037:
038:        /**
039:         * ER-120
040:         * Catch-blocks should log the exeption with Log4J.fatal( "Context String"  , exception )
041:         * @author  Pavel Vlasov
042:         * @version $Revision: 1.6 $
043:         */
044:        public class LogExceptionsRule extends InspectorBase implements 
045:                Parameterizable {
046:
047:            /**
048:             * Reviews the exception handlers if they violate against the rule
049:             * 
050:             * @param handler the exception handler
051:             */
052:            public void visit(Handler handler) {
053:                class LoggedException extends com.pavelvlasov.RuntimeException {
054:
055:                    /**
056:                     * Comment for <code>serialVersionUID</code>
057:                     */
058:                    private static final long serialVersionUID = -1481467503705295388L;
059:
060:                }
061:                ;
062:
063:                try {
064:                    handler.accept(new Visitor() {
065:                        public boolean visit(Object target) {
066:                            if (target instanceof  MethodCall) {
067:                                MethodCall mc = (MethodCall) target;
068:                                try {
069:                                    OperationInfo operationInfo = mc
070:                                            .getProvider();
071:                                    if (operationInfo == null) {
072:                                        context
073:                                                .warn(
074:                                                        (SourceMarker) mc,
075:                                                        "Provider is null for "
076:                                                                + mc
077:                                                                + " at "
078:                                                                + ((LanguageElement) mc)
079:                                                                        .getLocation());
080:                                    } else if (loggerMethods
081:                                            .contains(operationInfo.getName())
082:                                            && operationInfo.getDeclaringType()
083:                                                    .isKindOf(loggerClass)
084:                                            && operationInfo
085:                                                    .getParameterTypes().length > 1) {
086:                                        throw new LoggedException();
087:                                    }
088:                                } catch (JselException e) {
089:                                    context.warn((SourceMarker) mc, e);
090:                                } catch (JselRuntimeException e) {
091:                                    context.warn((SourceMarker) mc, e);
092:                                }
093:                            }
094:                            return true;
095:                        }
096:                    });
097:                    context.reportViolation((SourceMarker) handler);
098:                } catch (LoggedException e) {
099:                    // OK exception has been logged
100:                }
101:            }
102:
103:            /**
104:             * Stores the setting form the configuration for the type of the logger class
105:             */
106:            private String loggerClass;
107:
108:            /**
109:             * Stores the setting form the configuration for the logger class methods
110:             */
111:            private java.util.Set loggerMethods = new java.util.HashSet();
112:
113:            /**
114:             * Configures the rule. Reads in the values of the parameters logger_class and
115:             * logger_method.
116:             * 
117:             * @param name the name of the parameter being loaded from Hammurapi configuration
118:             * @param value the value of the parameter being loaded from Hammurapi configuration
119:             * @exception ConfigurationException in case of a not supported parameter
120:             */
121:            public boolean setParameter(String name, Object value)
122:                    throws ConfigurationException {
123:                if ("logger_class".equals(name)) {
124:                    loggerClass = value.toString();
125:                } else if ("logger_method".equals(name)) {
126:                    loggerMethods.add(value.toString());
127:                } else {
128:                    throw new ConfigurationException("Parameter '" + name
129:                            + "' is not supported");
130:                }
131:                return true;
132:            }
133:
134:            /**
135:             * Gives back the preconfigured values. 
136:             */
137:            public String getConfigInfo() {
138:                StringBuffer ret = new StringBuffer("Used logger class: "
139:                        + loggerClass + "\n");
140:                java.util.Iterator iter = loggerMethods.iterator();
141:                while (iter.hasNext()) {
142:                    ret.append("operation: " + iter.next().toString() + "\t");
143:                }
144:                ret.append("\n");
145:                return ret.toString();
146:            }
147:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.