Source Code Cross Referenced for PluginLogListener.java in  » Workflow-Engines » osbl-1_0 » logging » 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 » Workflow Engines » osbl 1_0 » logging 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        package logging;
002:
003:        import org.apache.log4j.Level;
004:        import org.apache.log4j.Logger;
005:        import org.eclipse.core.runtime.ILog;
006:        import org.eclipse.core.runtime.ILogListener;
007:        import org.eclipse.core.runtime.IStatus;
008:        import org.eclipse.core.runtime.Status;
009:
010:        /**
011:         * PluginLogListener
012:         * This class is responsible for adding itself to the plug-in logging framework
013:         * and translating plug-in log requests to Logger events.
014:         * @author Manoel Marques
015:         */
016:        class PluginLogListener implements  ILogListener {
017:
018:            private ILog log;
019:            private Logger logger;
020:
021:            /**
022:             * Creates a new PluginLogListener. Saves the plug-in log and logger instance.
023:             * Adds itself to the plug-in log.
024:             * @param plugin the plug-in object
025:             * @param logger logger instance
026:             */
027:            PluginLogListener(ILog log, Logger logger) {
028:                this .log = log;
029:                this .logger = logger;
030:                log.addLogListener(this );
031:            }
032:
033:            /**
034:             * Removes itself from the plug-in log, reset instance variables.
035:             */
036:            void dispose() {
037:                if (this .log != null) {
038:                    this .log.removeLogListener(this );
039:                    this .log = null;
040:                    this .logger = null;
041:                }
042:            }
043:
044:            /**
045:             * Log event happened.
046:             * Translates status instance to Logger level and message.
047:             * Status.ERROR - Level.ERROR
048:             * Status.WARNING - Level.WARN
049:             * Status.INFO - Level.INFO
050:             * Status.CANCEL - Level.FATAL
051:             * default - Level.DEBUG
052:             * @param status Log Status
053:             * @param plugin plug-in id
054:             */
055:            public void logging(IStatus status, String plugin) {
056:                if (null == this .logger || null == status)
057:                    return;
058:
059:                int severity = status.getSeverity();
060:                Level level = Level.DEBUG;
061:                if (severity == Status.ERROR)
062:                    level = Level.ERROR;
063:                else if (severity == Status.WARNING)
064:                    level = Level.WARN;
065:                else if (severity == Status.INFO)
066:                    level = Level.INFO;
067:                else if (severity == Status.CANCEL)
068:                    level = Level.FATAL;
069:
070:                plugin = formatText(plugin);
071:                String statusPlugin = formatText(status.getPlugin());
072:                String statusMessage = formatText(status.getMessage());
073:                StringBuffer message = new StringBuffer();
074:                if (plugin != null) {
075:                    message.append(plugin);
076:                    message.append(" - ");
077:                }
078:                if (statusPlugin != null
079:                        && (plugin == null || !statusPlugin.equals(plugin))) {
080:                    message.append(statusPlugin);
081:                    message.append(" - ");
082:                }
083:                message.append(status.getCode());
084:                if (statusMessage != null) {
085:                    message.append(" - ");
086:                    message.append(statusMessage);
087:                }
088:                this .logger.log(level, message.toString(), status
089:                        .getException());
090:            }
091:
092:            static private String formatText(String text) {
093:                if (text != null) {
094:                    text = text.trim();
095:                    if (text.length() == 0)
096:                        return null;
097:                }
098:                return text;
099:            }
100:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.