KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > avalon > meta > info > builder > tags > LoggerTag


1 /*
2
3  ============================================================================
4                    The Apache Software License, Version 1.1
5  ============================================================================
6
7  Copyright (C) 2002-2003 The Apache Software Foundation. All rights reserved.
8
9  Redistribution and use in source and binary forms, with or without modifica-
10  tion, are permitted provided that the following conditions are met:
11
12  1. Redistributions of source code must retain the above copyright notice,
13     this list of conditions and the following disclaimer.
14
15  2. Redistributions in binary form must reproduce the above copyright notice,
16     this list of conditions and the following disclaimer in the documentation
17     and/or other materials provided with the distribution.
18
19  3. The end-user documentation included with the redistribution, if any, must
20     include the following acknowledgment: "This product includes software
21     developed by the Apache Software Foundation (http://www.apache.org/)."
22     Alternately, this acknowledgment may appear in the software itself, if
23     and wherever such third-party acknowledgments normally appear.
24
25  4. The names "Jakarta", "Apache Avalon", "Avalon Framework" and
26     "Apache Software Foundation" must not be used to endorse or promote
27     products derived from this software without prior written
28     permission. For written permission, please contact apache@apache.org.
29
30  5. Products derived from this software may not be called "Apache", nor may
31     "Apache" appear in their name, without prior written permission of the
32     Apache Software Foundation.
33
34  THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES,
35  INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
36  FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
37  APACHE SOFTWARE FOUNDATION OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
38  INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLU-
39  DING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
40  OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
41  ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
42  (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
43  THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
44
45  This software consists of voluntary contributions made by many individuals
46  on behalf of the Apache Software Foundation. For more information on the
47  Apache Software Foundation, please see <http://www.apache.org/>.
48 */

49
50 package org.apache.avalon.meta.info.builder.tags;
51
52
53 import com.thoughtworks.qdox.model.DocletTag;
54 import com.thoughtworks.qdox.model.JavaClass;
55 import com.thoughtworks.qdox.model.JavaMethod;
56 import org.apache.avalon.meta.info.CategoryDescriptor;
57
58 import java.util.ArrayList JavaDoc;
59 import java.util.HashSet JavaDoc;
60 import java.util.Set JavaDoc;
61
62 /**
63  * A doclet tag handler supporting 'logger' tags.
64  *
65  * @author <a HREF="mailto:dev@avalon.apache.org">Avalon Development Team</a>
66  * @version $Revision: 1.4 $ $Date: 2003/07/21 20:05:17 $
67  */

68 public class LoggerTag extends AbstractTag
69 {
70     /**
71      * The javadoc key for the logger tag.
72      */

73     protected static final String JavaDoc KEY = "logger";
74
75     /**
76      * The javadoc parameter name for the logging channel name
77      */

78     public static final String JavaDoc NAME_PARAM = "name";
79
80     /**
81      * The default logger class.
82      */

83     protected static final String JavaDoc LOGGER_CLASS =
84             "org.apache.avalon.framework.logger.Logger";
85
86     /**
87      * The deprecated logger class
88      */

89     protected static final String JavaDoc DEPRECATED_LOGGER_CLASS =
90             "org.apache.log.Logger";
91
92     private JavaMethod[] m_methods;
93
94     /**
95      * The logger tag constructor.
96      * @param clazz the javadoc class descriptor.
97      */

98     public LoggerTag( final JavaClass clazz )
99     {
100         super( clazz );
101         setMethods();
102     }
103
104     /**
105      * Return an array of logger descriptors relative to the 'logger' tags declared under the
106      * LogEnabled interface.
107      * @return the set of logger descriptos
108      */

109     public CategoryDescriptor[] getCategories()
110     {
111         final ArrayList JavaDoc loggers = new ArrayList JavaDoc();
112         final Set JavaDoc marked = new HashSet JavaDoc( 10 );
113
114         for ( int j = 0; j < m_methods.length; j++ )
115         {
116             final DocletTag[] tags =
117                     m_methods[j].getTagsByName( getNS()
118                     + Tags.DELIMITER + KEY );
119
120             for ( int i = 0; i < tags.length; i++ )
121             {
122                 final String JavaDoc name =
123                         getNamedParameter( tags[i], NAME_PARAM, "" );
124
125                 if ( !marked.contains( name ) )
126                 {
127                     final CategoryDescriptor logger =
128                             new CategoryDescriptor( name, null );
129                     loggers.add( logger );
130                     marked.add( name );
131                 }
132             }
133         }
134         return (CategoryDescriptor[]) loggers.toArray( new CategoryDescriptor[loggers.size()] );
135     }
136
137     /**
138      * Set the value of the composition method.
139      */

140     private void setMethods()
141     {
142         m_methods = getLifecycleMethods( "enableLogging", LOGGER_CLASS );
143         if ( m_methods.length == 0 )
144         {
145             m_methods = getLifecycleMethods( "setLogger", DEPRECATED_LOGGER_CLASS );
146         }
147     }
148 }
149
Popular Tags