KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > excalibur > configuration > validation > JarvConfigurationValidatorFactory


1 /*
2
3  ============================================================================
4                    The Apache Software License, Version 1.1
5  ============================================================================
6
7  Copyright (C) 1999-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", "Avalon", "Excalibur" and "Apache Software Foundation"
26     must not be used to endorse or promote products derived from this software
27     without prior written permission. For written permission, please contact
28     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
51 package org.apache.excalibur.configuration.validation;
52
53 import java.io.InputStream JavaDoc;
54
55 import org.apache.avalon.framework.activity.Initializable;
56 import org.apache.avalon.framework.configuration.Configurable;
57 import org.apache.avalon.framework.configuration.Configuration;
58 import org.apache.avalon.framework.configuration.ConfigurationException;
59 import org.apache.avalon.framework.logger.AbstractLogEnabled;
60 import org.iso_relax.verifier.VerifierConfigurationException;
61 import org.iso_relax.verifier.VerifierFactory;
62 import org.xml.sax.SAXParseException JavaDoc;
63
64 /**
65  * A validator that is capable of validating any schema supported by the JARV
66  * engine. <a HREF="http://iso-relax.sourceforge.net/">http://iso-relax.sourceforge.net/</a>
67  *
68  * @author <a HREF="mailto:proyal@apache.org">Peter Royal</a>
69  */

70 public class JarvConfigurationValidatorFactory
71     extends AbstractLogEnabled
72     implements Configurable, Initializable, ConfigurationValidatorFactory
73 {
74     private String JavaDoc m_schemaType;
75
76     private String JavaDoc m_schemaLanguage;
77
78     private String JavaDoc m_verifierFactoryClass;
79
80     private VerifierFactory m_verifierFactory;
81
82     /**
83      * There are two possible configuration options for this class. They are mutually exclusive.
84      * <ol>
85      * <li>&lt;schema-language&gt;<i>schema language uri</i>&lt;/schema-language&gt;</li>
86      * <li>&lt;verifier-factory-class&gt;<i>classname</i>&lt;/verifier-factory-class&gt;<br>
87      * The fully-qualified classname to use as a verifier factory.
88      * </li>
89      * </ol>
90      *
91      * @see http://iso-relax.sourceforge.net/apiDoc/org/iso_relax/verifier/VerifierFactory.html#newInstance(java.lang.String)
92      */

93     public void configure( Configuration configuration )
94         throws ConfigurationException
95     {
96         m_schemaType = configuration.getAttribute( "schema-type" );
97         m_schemaLanguage = configuration.getChild( "schema-language" ).getValue( null );
98         m_verifierFactoryClass =
99             configuration.getChild( "verifier-factory-class" ).getValue( null );
100
101         if( ( null == m_schemaLanguage && null == m_verifierFactoryClass )
102             || ( null != m_schemaLanguage && null != m_verifierFactoryClass ) )
103         {
104             final String JavaDoc msg = "Must specify either schema-language or verifier-factory-class";
105
106             throw new ConfigurationException( msg );
107         }
108     }
109
110     public void initialize()
111         throws Exception JavaDoc
112     {
113         if( null != m_schemaLanguage )
114         {
115             m_verifierFactory = VerifierFactory.newInstance( m_schemaLanguage );
116         }
117         else if( null != m_verifierFactoryClass )
118         {
119             m_verifierFactory =
120                 (VerifierFactory)Class.forName( m_verifierFactoryClass ).newInstance();
121         }
122     }
123
124     public ConfigurationValidator createValidator( String JavaDoc schemaType, InputStream JavaDoc schema )
125         throws ConfigurationException
126     {
127         if( !m_schemaType.equals( schemaType ) )
128         {
129             final String JavaDoc msg = "Invalid schema type: " + schemaType
130                 + ". Validator only supports " + m_schemaType;
131
132             throw new ConfigurationException( msg );
133         }
134
135         try
136         {
137             return new JarvConfigurationValidator(
138                 m_verifierFactory.compileSchema( schema ) );
139         }
140         catch( VerifierConfigurationException e )
141         {
142             final String JavaDoc msg = "Unable to create schema";
143
144             throw new ConfigurationException( msg, e );
145         }
146         catch( SAXParseException JavaDoc e )
147         {
148             final String JavaDoc msg = "Unable to parse schema [line: " + e.getLineNumber()
149                 + ", column: " + e.getColumnNumber()
150                 + ", msg: " + e.getMessage() + "]";
151
152             throw new ConfigurationException( msg, e );
153         }
154         catch( Exception JavaDoc e )
155         {
156             final String JavaDoc msg = "Unable to parse schema [url: " + schema
157                 + ", msg: " + e.getMessage() + "]";
158
159             throw new ConfigurationException( msg, e );
160         }
161     }
162 }
163
Popular Tags