Java Doc for ExtensiblePatternFormatter.java in  » Web-Framework » cocoon » org » apache » cocoon » util » log » 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 Framework » cocoon » org.apache.cocoon.util.log 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   org.apache.cocoon.util.log.ExtensiblePatternFormatter

All known Subclasses:   org.apache.cocoon.util.log.CocoonLogFormatter,
ExtensiblePatternFormatter
public class ExtensiblePatternFormatter implements Formatter(Code)
A refactoring of org.apache.log.format.PatternFormatter that can be extended. This formater formats the LogEntries according to a input pattern string. The format of each pattern element can be %[+|-]#.#{field:subformat} The +|- indicates left or right justify. The #.# indicates the minimum and maximum size of output. 'field' indicates which field is to be output and must be one of properties of LogEvent 'subformat' indicates a particular subformat and is currently unused.
author:
   Peter Donald
author:
   Sylvain Wallez
version:
   CVS $Id: ExtensiblePatternFormatter.java 433543 2006-08-22 06:22:54Z crossley $

Inner Class :protected static class PatternRun

Field Summary
final protected static  intMAX_TYPE
     The maximum value used for TYPEs.
final protected static  intTYPE_CATEGORY
    
final protected static  StringTYPE_CATEGORY_STR
    
final protected static  intTYPE_MESSAGE
    
final protected static  StringTYPE_MESSAGE_STR
    
final protected static  intTYPE_PRIORITY
    
final protected static  StringTYPE_PRIORITY_STR
    
final protected static  intTYPE_RELATIVE_TIME
    
final protected static  StringTYPE_RELATIVE_TIME_STR
    
final protected static  intTYPE_TEXT
    
final protected static  intTYPE_THROWABLE
    
final protected static  StringTYPE_THROWABLE_STR
    
final protected static  intTYPE_TIME
    
final protected static  StringTYPE_TIME_STR
    
protected  PatternRunm_formatSpecification
    


Method Summary
protected  intaddPatternRun(Stack stack, char pattern, int index)
     Extract and build a pattern from input string.
protected  intaddTextRun(Stack stack, char pattern, int index)
     Extract and build a text run from input string.
protected  voidappend(StringBuffer sb, int minSize, int maxSize, boolean rightJustify, String output)
     Utility to append a string to buffer given certain constraints.
final protected  Stringfix(String context)
     Correct a context string by replacing '.''s with a '_'.
public  Stringformat(LogEvent event)
     Format the event according to the pattern.
protected  StringformatPatternRun(LogEvent event, PatternRun run)
     Formats a single pattern run (can be extended in subclasses).
Parameters:
  run - the pattern run to format.
protected  StringgetCategory(String category, String format)
     Utility method to format category.
protected  StringgetMessage(String message, String format)
     Utility method to format message.
protected  StringgetPriority(Priority priority, String format)
     Get formatted priority string.
protected  StringgetStackTrace(Throwable throwable, String format)
     Utility method to format stack trace.
protected  StringgetTime(long time, String format)
     Utility method to format time.
protected  intgetTypeIdFor(String type)
     Retrieve the type-id for a particular string.
protected  voidparse(String patternString)
     Parse the input pattern and build internal data structures.
public  voidsetFormat(String format)
     Set the string description that the format is extracted from.

Field Detail
MAX_TYPE
final protected static int MAX_TYPE(Code)
The maximum value used for TYPEs. Subclasses can define their own TYPEs starting at MAX_TYPE + 1.



TYPE_CATEGORY
final protected static int TYPE_CATEGORY(Code)



TYPE_CATEGORY_STR
final protected static String TYPE_CATEGORY_STR(Code)



TYPE_MESSAGE
final protected static int TYPE_MESSAGE(Code)



TYPE_MESSAGE_STR
final protected static String TYPE_MESSAGE_STR(Code)



TYPE_PRIORITY
final protected static int TYPE_PRIORITY(Code)



TYPE_PRIORITY_STR
final protected static String TYPE_PRIORITY_STR(Code)



TYPE_RELATIVE_TIME
final protected static int TYPE_RELATIVE_TIME(Code)



TYPE_RELATIVE_TIME_STR
final protected static String TYPE_RELATIVE_TIME_STR(Code)



TYPE_TEXT
final protected static int TYPE_TEXT(Code)



TYPE_THROWABLE
final protected static int TYPE_THROWABLE(Code)



TYPE_THROWABLE_STR
final protected static String TYPE_THROWABLE_STR(Code)



TYPE_TIME
final protected static int TYPE_TIME(Code)



TYPE_TIME_STR
final protected static String TYPE_TIME_STR(Code)



m_formatSpecification
protected PatternRun m_formatSpecification(Code)





Method Detail
addPatternRun
protected int addPatternRun(Stack stack, char pattern, int index)(Code)
Extract and build a pattern from input string.
Parameters:
  stack - the stack on which to place patterns
Parameters:
  pattern - the input string
Parameters:
  index - the start of pattern run the number of characters in pattern run



addTextRun
protected int addTextRun(Stack stack, char pattern, int index)(Code)
Extract and build a text run from input string. It does special handling of '\n' and '\t' replaceing them with newline and tab.
Parameters:
  stack - the stack on which to place runs
Parameters:
  pattern - the input string
Parameters:
  index - the start of the text run the number of characters in run



append
protected void append(StringBuffer sb, int minSize, int maxSize, boolean rightJustify, String output)(Code)
Utility to append a string to buffer given certain constraints.
Parameters:
  sb - the StringBuffer
Parameters:
  minSize - the minimum size of output (0 to ignore)
Parameters:
  maxSize - the maximum size of output (0 to ignore)
Parameters:
  rightJustify - true if the string is to be right justified in it's box.
Parameters:
  output - the input string



fix
final protected String fix(String context)(Code)
Correct a context string by replacing '.''s with a '_'.
Parameters:
  context - the un-fixed context the fixed context



format
public String format(LogEvent event)(Code)
Format the event according to the pattern.
Parameters:
  event - the event the formatted output



formatPatternRun
protected String formatPatternRun(LogEvent event, PatternRun run)(Code)
Formats a single pattern run (can be extended in subclasses).
Parameters:
  run - the pattern run to format. the formatted result.



getCategory
protected String getCategory(String category, String format)(Code)
Utility method to format category.
Parameters:
  category - the category string
Parameters:
  format - ancilliary format parameter - allowed to be null the formatted string



getMessage
protected String getMessage(String message, String format)(Code)
Utility method to format message.
Parameters:
  message - the message string
Parameters:
  format - ancilliary format parameter - allowed to be null the formatted string



getPriority
protected String getPriority(Priority priority, String format)(Code)
Get formatted priority string.



getStackTrace
protected String getStackTrace(Throwable throwable, String format)(Code)
Utility method to format stack trace.
Parameters:
  throwable - the throwable instance
Parameters:
  format - ancilliary format parameter - allowed to be null the formatted string



getTime
protected String getTime(long time, String format)(Code)
Utility method to format time.
Parameters:
  time - the time
Parameters:
  format - ancilliary format parameter - allowed to be null the formatted string



getTypeIdFor
protected int getTypeIdFor(String type)(Code)
Retrieve the type-id for a particular string.
Parameters:
  type - the string the type-id



parse
protected void parse(String patternString)(Code)
Parse the input pattern and build internal data structures.
Parameters:
  patternString - the pattern



setFormat
public void setFormat(String format)(Code)
Set the string description that the format is extracted from.
Parameters:
  format - the string format



Methods inherited from java.lang.Object
native protected Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
native public int hashCode()(Code)(Java Doc)
final native public void notify()(Code)(Java Doc)
final native public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final native public void wait(long timeout) throws InterruptedException(Code)(Java Doc)
final public void wait(long timeout, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.