Package org.apache.geronimo.tools.xmlbeans

Source Code of org.apache.geronimo.tools.xmlbeans.SchemaCompilerWrapper$PassThroughResolver

/**
*
* Copyright 2003-2004 The Apache Software Foundation
*
*  Licensed under the Apache License, Version 2.0 (the "License");
*  you may not use this file except in compliance with the License.
*  You may obtain a copy of the License at
*
*     http://www.apache.org/licenses/LICENSE-2.0
*
*  Unless required by applicable law or agreed to in writing, software
*  distributed under the License is distributed on an "AS IS" BASIS,
*  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
*  See the License for the specific language governing permissions and
*  limitations under the License.
*/

package org.apache.geronimo.tools.xmlbeans;

import java.io.File;
import java.io.IOException;
import java.util.ArrayList;
import java.util.Collection;
import java.util.Iterator;
import java.util.List;
import java.util.StringTokenizer;

import org.xml.sax.EntityResolver;
import org.xml.sax.InputSource;
import org.xml.sax.SAXException;
import org.apache.xml.resolver.CatalogManager;
import org.apache.xml.resolver.tools.CatalogResolver;


/**
*
*
* @version $Rev: 46019 $ $Date: 2004-09-14 04:56:06 -0500 (Tue, 14 Sep 2004) $
*
* */
public class SchemaCompilerWrapper {

    public static void CompileSchemas(String sourceDir, String sourceSchemas, String xmlConfigs, String targetDir, String catalogLocation, String classpath) throws Exception {
        List schemas = new ArrayList();
        File base = new File(sourceDir);
        for (StringTokenizer st = new StringTokenizer(sourceSchemas, ","); st.hasMoreTokens();) {
            String schemaName = st.nextToken();
            schemas.add(new File(base, schemaName));
        }
        List configs = new ArrayList();

        if (xmlConfigs != null) {
            for (StringTokenizer st = new StringTokenizer(xmlConfigs, ","); st.hasMoreTokens();) {
                String configName = st.nextToken();
                configs.add(new File(configName));
            }
        }
        EntityResolver entityResolver = null;
        if (catalogLocation != null) {
            CatalogManager catalogManager = CatalogManager.getStaticManager();
            catalogManager.setCatalogFiles(catalogLocation);
            entityResolver = new PassThroughResolver(new CatalogResolver());
        }
        List classPathList = new ArrayList();
        if (classpath != null) {
            for (StringTokenizer st = new StringTokenizer(classpath, ","); st.hasMoreTokens();) {
                String classpathElement = st.nextToken();
                classPathList.add(new File(classpathElement));
            }
        }
        SchemaCompiler.Parameters params = new SchemaCompiler.Parameters();
        params.setBaseDir(null);
        params.setXsdFiles((File[])schemas.toArray(new File[] {}));
        params.setWsdlFiles(new File[] {});
        params.setJavaFiles(new File[] {});
        params.setConfigFiles((File[])configs.toArray(new File[] {}));
        params.setClasspath((File[])classPathList.toArray(new File[] {}));
        params.setOutputJar(null);
        params.setName(null);
        params.setSrcDir(new File(targetDir));
        params.setClassesDir(new File(targetDir));
        params.setCompiler(null);
        params.setJar(null);
        params.setMemoryInitialSize(null);
        params.setMemoryMaximumSize(null);
        params.setNojavac(true);
        params.setQuiet(false);
        params.setVerbose(true);
        params.setDownload(false);
        params.setNoUpa(false);
        params.setNoPvr(false);
        params.setDebug(true);
        params.setErrorListener(new ArrayList());
        params.setRepackage(null);
        params.setExtensions(null);
        params.setJaxb(false);
        params.setMdefNamespaces(null);
        params.setEntityResolver(entityResolver);

        boolean result = SchemaCompiler.compile(params);
        if (!result) {
            Collection errors = params.getErrorListener();
            for (Iterator iterator = errors.iterator(); iterator.hasNext();) {
                Object o = (Object) iterator.next();
                System.out.println("xmlbeans error: " + o);
            }
            throw new Exception("Schema compilation failed");
        }

    }

    private static class PassThroughResolver implements EntityResolver {

        private final EntityResolver delegate;

        public PassThroughResolver(EntityResolver delegate) {
            this.delegate = delegate;
        }
        public InputSource resolveEntity(String publicId,
                                         String systemId)
                throws SAXException, IOException {
            InputSource is = delegate.resolveEntity(publicId, systemId);
            if (is != null) {
                return is;
            }
            System.out.println("Could not resolve publicId: " + publicId + ", systemId: " + systemId + " from catalog");
            return new InputSource(systemId);
        }

    }
}
TOP

Related Classes of org.apache.geronimo.tools.xmlbeans.SchemaCompilerWrapper$PassThroughResolver

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.