001: /*
002: * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
003: *
004: * Copyright 1997-2007 Sun Microsystems, Inc. All rights reserved.
005: *
006: * The contents of this file are subject to the terms of either the GNU
007: * General Public License Version 2 only ("GPL") or the Common Development
008: * and Distribution License("CDDL") (collectively, the "License"). You
009: * may not use this file except in compliance with the License. You can obtain
010: * a copy of the License at https://glassfish.dev.java.net/public/CDDL+GPL.html
011: * or glassfish/bootstrap/legal/LICENSE.txt. See the License for the specific
012: * language governing permissions and limitations under the License.
013: *
014: * When distributing the software, include this License Header Notice in each
015: * file and include the License file at glassfish/bootstrap/legal/LICENSE.txt.
016: * Sun designates this particular file as subject to the "Classpath" exception
017: * as provided by Sun in the GPL Version 2 section of the License file that
018: * accompanied this code. If applicable, add the following below the License
019: * Header, with the fields enclosed by brackets [] replaced by your own
020: * identifying information: "Portions Copyrighted [year]
021: * [name of copyright owner]"
022: *
023: * Contributor(s):
024: *
025: * If you wish your version of this file to be governed by only the CDDL or
026: * only the GPL Version 2, indicate your decision by adding "[Contributor]
027: * elects to include this software in this distribution under the [CDDL or GPL
028: * Version 2] license." If you don't indicate a single choice of license, a
029: * recipient has the option to distribute your version of this file under
030: * either the CDDL, the GPL Version 2 or to extend the choice of license to
031: * its licensees as provided above. However, if you add GPL Version 2 code
032: * and therefore, elected the GPL Version 2 license, then the option applies
033: * only if the new code is made subject to such option by the copyright
034: * holder.
035: */
036:
037: package com.sun.xml.ws.transport.tcp.servicechannel;
038:
039: import com.sun.istack.NotNull;
040: import com.sun.istack.Nullable;
041: import com.sun.xml.ws.api.BindingID;
042: import com.sun.xml.ws.api.WSBinding;
043: import com.sun.xml.ws.api.server.DocumentAddressResolver;
044: import com.sun.xml.ws.api.server.InstanceResolver;
045: import com.sun.xml.ws.api.server.PortAddressResolver;
046: import com.sun.xml.ws.api.server.SDDocument;
047: import com.sun.xml.ws.api.server.SDDocumentSource;
048: import com.sun.xml.ws.api.server.WSEndpoint;
049: import com.sun.xml.ws.transport.tcp.util.TCPConstants;
050: import java.io.ByteArrayInputStream;
051: import java.io.ByteArrayOutputStream;
052: import java.io.FileOutputStream;
053: import java.net.URL;
054: import java.util.ArrayList;
055: import java.util.Collection;
056: import java.util.Iterator;
057: import javax.xml.namespace.QName;
058: import javax.xml.transform.OutputKeys;
059: import javax.xml.transform.Source;
060: import javax.xml.transform.Transformer;
061: import javax.xml.transform.TransformerFactory;
062: import javax.xml.transform.stream.StreamResult;
063: import javax.xml.transform.stream.StreamSource;
064:
065: public final class ServiceChannelWSDLGenerator {
066:
067: private static final String TCP_ENDPOINT_ADDRESS_STUB = TCPConstants.PROTOCOL_SCHEMA
068: + "://CHANGED_BY_RUNTIME";
069:
070: public static void main(final String[] args) throws Exception {
071: final QName serviceName = WSEndpoint
072: .getDefaultServiceName(ServiceChannelWSImpl.class);
073: final QName portName = WSEndpoint.getDefaultPortName(
074: serviceName, ServiceChannelWSImpl.class);
075: final BindingID bindingId = BindingID
076: .parse(ServiceChannelWSImpl.class);
077: final WSBinding binding = bindingId.createBinding();
078: final Collection<SDDocumentSource> docs = new ArrayList<SDDocumentSource>(
079: 0);
080:
081: final WSEndpoint<?> endpoint = WSEndpoint.create(
082: ServiceChannelWSImpl.class, true, null, serviceName,
083: portName, null, binding, null, docs, (URL) null);
084:
085: final DocumentAddressResolver resolver = new DocumentAddressResolver() {
086: public String getRelativeAddressFor(SDDocument current,
087: SDDocument referenced) {
088: if (current.isWSDL()
089: && referenced.isSchema()
090: && referenced.getURL().getProtocol().equals(
091: "file")) {
092: return referenced.getURL().getFile().substring(1);
093: }
094:
095: return referenced.getURL().toExternalForm();
096: }
097: };
098:
099: final ByteArrayOutputStream baos = new ByteArrayOutputStream();
100:
101: /* seems now transformer doesnt support "pretty-output",
102: but may be for future using it will make sense */
103: final TransformerFactory tFactory = TransformerFactory
104: .newInstance();
105: final Transformer transformer = tFactory.newTransformer();
106: transformer.setOutputProperty(OutputKeys.INDENT, "yes");
107:
108: for (final Iterator<SDDocument> it = endpoint
109: .getServiceDefinition().iterator(); it.hasNext();) {
110: final SDDocument document = it.next();
111: baos.reset();
112:
113: document.writeTo(new PortAddressResolver() {
114: public @Nullable
115: String getAddressFor(QName serviceName, @NotNull
116: String portName) {
117: return TCP_ENDPOINT_ADDRESS_STUB;
118: }
119: }, resolver, baos);
120: final ByteArrayInputStream bais = new ByteArrayInputStream(
121: baos.toByteArray());
122:
123: final FileOutputStream fos = new FileOutputStream("./etc/"
124: + document.getURL().getFile());
125: final Source source = new StreamSource(bais);
126: final StreamResult result = new StreamResult(fos);
127: transformer.transform(source, result);
128: fos.close();
129: bais.close();
130: }
131:
132: baos.close();
133: }
134: }
|