src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/soap/MessageFactoryImpl.java

changeset 0
373ffda63c9a
child 637
9c07ef4934dd
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/soap/MessageFactoryImpl.java	Wed Apr 27 01:27:09 2016 +0800
     1.3 @@ -0,0 +1,114 @@
     1.4 +/*
     1.5 + * Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
     1.6 + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     1.7 + *
     1.8 + * This code is free software; you can redistribute it and/or modify it
     1.9 + * under the terms of the GNU General Public License version 2 only, as
    1.10 + * published by the Free Software Foundation.  Oracle designates this
    1.11 + * particular file as subject to the "Classpath" exception as provided
    1.12 + * by Oracle in the LICENSE file that accompanied this code.
    1.13 + *
    1.14 + * This code is distributed in the hope that it will be useful, but WITHOUT
    1.15 + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
    1.16 + * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
    1.17 + * version 2 for more details (a copy is included in the LICENSE file that
    1.18 + * accompanied this code).
    1.19 + *
    1.20 + * You should have received a copy of the GNU General Public License version
    1.21 + * 2 along with this work; if not, write to the Free Software Foundation,
    1.22 + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
    1.23 + *
    1.24 + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
    1.25 + * or visit www.oracle.com if you need additional information or have any
    1.26 + * questions.
    1.27 + */
    1.28 +
    1.29 +package com.sun.xml.internal.messaging.saaj.soap;
    1.30 +
    1.31 +import java.io.*;
    1.32 +import java.util.logging.Logger;
    1.33 +
    1.34 +import javax.xml.soap.*;
    1.35 +
    1.36 +import com.sun.xml.internal.messaging.saaj.packaging.mime.internet.ContentType;
    1.37 +import com.sun.xml.internal.messaging.saaj.packaging.mime.internet.ParseException;
    1.38 +import com.sun.xml.internal.messaging.saaj.SOAPExceptionImpl;
    1.39 +import com.sun.xml.internal.messaging.saaj.soap.ver1_1.Message1_1Impl;
    1.40 +import com.sun.xml.internal.messaging.saaj.soap.ver1_2.Message1_2Impl;
    1.41 +import com.sun.xml.internal.messaging.saaj.util.LogDomainConstants;
    1.42 +import com.sun.xml.internal.messaging.saaj.util.TeeInputStream;
    1.43 +
    1.44 +/**
    1.45 + * A factory for creating SOAP messages.
    1.46 + *
    1.47 + * Converted to a placeholder for common functionality between SOAP
    1.48 + * implementations.
    1.49 + *
    1.50 + * @author Phil Goodwin (phil.goodwin@sun.com)
    1.51 + */
    1.52 +public class MessageFactoryImpl extends MessageFactory {
    1.53 +
    1.54 +    protected static final Logger log =
    1.55 +        Logger.getLogger(LogDomainConstants.SOAP_DOMAIN,
    1.56 +                         "com.sun.xml.internal.messaging.saaj.soap.LocalStrings");
    1.57 +
    1.58 +    protected  OutputStream listener;
    1.59 +
    1.60 +    protected boolean lazyAttachments = false;
    1.61 +
    1.62 +    public  OutputStream listen(OutputStream newListener) {
    1.63 +        OutputStream oldListener = listener;
    1.64 +        listener = newListener;
    1.65 +        return oldListener;
    1.66 +    }
    1.67 +
    1.68 +    public SOAPMessage createMessage() throws SOAPException {
    1.69 +        throw new UnsupportedOperationException();
    1.70 +    }
    1.71 +
    1.72 +    public SOAPMessage createMessage(boolean isFastInfoset,
    1.73 +        boolean acceptFastInfoset) throws SOAPException
    1.74 +    {
    1.75 +        throw new UnsupportedOperationException();
    1.76 +    }
    1.77 +
    1.78 +    public SOAPMessage createMessage(MimeHeaders headers, InputStream in)
    1.79 +        throws SOAPException, IOException {
    1.80 +        String contentTypeString = MessageImpl.getContentType(headers);
    1.81 +
    1.82 +        if (listener != null) {
    1.83 +            in = new TeeInputStream(in, listener);
    1.84 +        }
    1.85 +
    1.86 +        try {
    1.87 +            ContentType contentType = new ContentType(contentTypeString);
    1.88 +            int stat = MessageImpl.identifyContentType(contentType);
    1.89 +
    1.90 +            if (MessageImpl.isSoap1_1Content(stat)) {
    1.91 +                return new Message1_1Impl(headers,contentType,stat,in);
    1.92 +            } else if (MessageImpl.isSoap1_2Content(stat)) {
    1.93 +                return new Message1_2Impl(headers,contentType,stat,in);
    1.94 +            } else {
    1.95 +                log.severe("SAAJ0530.soap.unknown.Content-Type");
    1.96 +                throw new SOAPExceptionImpl("Unrecognized Content-Type");
    1.97 +            }
    1.98 +        } catch (ParseException e) {
    1.99 +            log.severe("SAAJ0531.soap.cannot.parse.Content-Type");
   1.100 +            throw new SOAPExceptionImpl(
   1.101 +                "Unable to parse content type: " + e.getMessage());
   1.102 +        }
   1.103 +    }
   1.104 +
   1.105 +    protected static final String getContentType(MimeHeaders headers) {
   1.106 +        String[] values = headers.getHeader("Content-Type");
   1.107 +        if (values == null)
   1.108 +            return null;
   1.109 +        else
   1.110 +            return values[0];
   1.111 +    }
   1.112 +
   1.113 +    public void setLazyAttachmentOptimization(boolean flag) {
   1.114 +        lazyAttachments = flag;
   1.115 +    }
   1.116 +
   1.117 +}

mercurial