/* * Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Oracle designates this * particular file as subject to the "Classpath" exception as provided * by Oracle in the LICENSE file that accompanied this code. * * This code is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License * version 2 for more details (a copy is included in the LICENSE file that * accompanied this code). * * You should have received a copy of the GNU General Public License version * 2 along with this work; if not, write to the Free Software Foundation, * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. * * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA * or visit www.oracle.com if you need additional information or have any * questions. */ package com.sun.tools.internal.ws.processor.modeler.wsdl; import com.sun.tools.internal.ws.processor.model.ModelException; import com.sun.tools.internal.ws.processor.model.java.JavaSimpleType; import com.sun.tools.internal.ws.processor.model.java.JavaType; import com.sun.tools.internal.ws.processor.model.jaxb.JAXBMapping; import com.sun.tools.internal.ws.processor.model.jaxb.JAXBModel; import com.sun.tools.internal.ws.processor.model.jaxb.JAXBType; import com.sun.tools.internal.ws.processor.util.ClassNameCollector; import com.sun.tools.internal.ws.wscompile.AbortException; import com.sun.tools.internal.ws.wscompile.ErrorReceiver; import com.sun.tools.internal.ws.wscompile.WsimportOptions; import com.sun.tools.internal.ws.wsdl.parser.DOMForestScanner; import com.sun.tools.internal.ws.wsdl.parser.MetadataFinder; import com.sun.tools.internal.xjc.api.S2JJAXBModel; import com.sun.tools.internal.xjc.api.SchemaCompiler; import com.sun.tools.internal.xjc.api.TypeAndAnnotation; import org.w3c.dom.Element; import org.xml.sax.InputSource; import org.xml.sax.helpers.LocatorImpl; import javax.xml.namespace.QName; /** * @author Vivek Pandey * * Uses JAXB XJC apis to build JAXBModel and resolves xml to java type mapping from JAXBModel */ public class JAXBModelBuilder { private final ErrorReceiver errReceiver; private final WsimportOptions options; private final MetadataFinder forest; public JAXBModelBuilder(WsimportOptions options, ClassNameCollector classNameCollector, MetadataFinder finder, ErrorReceiver errReceiver) { this._classNameAllocator = new ClassNameAllocatorImpl(classNameCollector); this.errReceiver = errReceiver; this.options = options; this.forest = finder; internalBuildJAXBModel(); } /** * Builds model from WSDL document. Model contains abstraction which is used by the * generators to generate the stub/tie/serializers etc. code. * * @see com.sun.tools.internal.ws.processor.modeler.Modeler#buildModel() */ private void internalBuildJAXBModel(){ try { schemaCompiler = options.getSchemaCompiler(); schemaCompiler.resetSchema(); if(options.entityResolver != null) { //set if its not null so as not to override catalog option specified via xjc args schemaCompiler.setEntityResolver(options.entityResolver); } schemaCompiler.setClassNameAllocator(_classNameAllocator); schemaCompiler.setErrorListener(errReceiver); int schemaElementCount = 1; for (Element element : forest.getInlinedSchemaElement()) { String location = element.getOwnerDocument().getDocumentURI(); String systemId = location + "#types?schema" + schemaElementCount++; if(forest.isMexMetadata) schemaCompiler.parseSchema(systemId,element); else new DOMForestScanner(forest).scan(element,schemaCompiler.getParserHandler(systemId)); } //feed external jaxb:bindings file InputSource[] externalBindings = options.getSchemaBindings(); if(externalBindings != null){ for(InputSource jaxbBinding : externalBindings){ schemaCompiler.parseSchema(jaxbBinding); } } } catch (Exception e) { throw new ModelException(e); } } public JAXBType getJAXBType(QName qname){ JAXBMapping mapping = jaxbModel.get(qname); if (mapping == null){ return null; } JavaType javaType = new JavaSimpleType(mapping.getType()); return new JAXBType(qname, javaType, mapping, jaxbModel); } public TypeAndAnnotation getElementTypeAndAnn(QName qname){ JAXBMapping mapping = jaxbModel.get(qname); if (mapping == null){ return null; } return mapping.getType().getTypeAnn(); } protected void bind(){ S2JJAXBModel rawJaxbModel = schemaCompiler.bind(); if(rawJaxbModel == null) throw new AbortException(); options.setCodeModel(rawJaxbModel.generateCode(null, errReceiver)); jaxbModel = new JAXBModel(rawJaxbModel); jaxbModel.setGeneratedClassNames(_classNameAllocator.getJaxbGeneratedClasses()); } protected SchemaCompiler getJAXBSchemaCompiler(){ return schemaCompiler; } public JAXBModel getJAXBModel(){ return jaxbModel; } private JAXBModel jaxbModel; private SchemaCompiler schemaCompiler; private final ClassNameAllocatorImpl _classNameAllocator; protected static final LocatorImpl NULL_LOCATOR = new LocatorImpl(); }