jaxws/src/java.xml.soap/share/classes/com/sun/xml/internal/messaging/saaj/soap/StaxReaderBridge.java
changeset 28641 6b05689b7445
parent 28640 01e4ca94fb0d
parent 28505 7574ac3bb6c1
child 28642 a42fefc69922
equal deleted inserted replaced
28640:01e4ca94fb0d 28641:6b05689b7445
     1 /*
       
     2  * Copyright (c) 2014, Oracle and/or its affiliates. All rights reserved.
       
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
       
     4  *
       
     5  * This code is free software; you can redistribute it and/or modify it
       
     6  * under the terms of the GNU General Public License version 2 only, as
       
     7  * published by the Free Software Foundation.  Oracle designates this
       
     8  * particular file as subject to the "Classpath" exception as provided
       
     9  * by Oracle in the LICENSE file that accompanied this code.
       
    10  *
       
    11  * This code is distributed in the hope that it will be useful, but WITHOUT
       
    12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
       
    13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
       
    14  * version 2 for more details (a copy is included in the LICENSE file that
       
    15  * accompanied this code).
       
    16  *
       
    17  * You should have received a copy of the GNU General Public License version
       
    18  * 2 along with this work; if not, write to the Free Software Foundation,
       
    19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
       
    20  *
       
    21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
       
    22  * or visit www.oracle.com if you need additional information or have any
       
    23  * questions.
       
    24  */
       
    25 
       
    26 package com.sun.xml.internal.messaging.saaj.soap;
       
    27 
       
    28 import javax.xml.namespace.QName;
       
    29 import javax.xml.soap.SOAPException;
       
    30 import javax.xml.stream.XMLStreamReader;
       
    31 
       
    32 import com.sun.xml.internal.org.jvnet.staxex.util.XMLStreamReaderToXMLStreamWriter;
       
    33 
       
    34 /**
       
    35  * StaxBridge builds Envelope using a XMLStreamReaderToXMLStreamWriter
       
    36  *
       
    37  * @author shih-chang.chen@oracle.com
       
    38  */
       
    39 public class StaxReaderBridge extends StaxBridge {
       
    40         private XMLStreamReader in;
       
    41 
       
    42         public StaxReaderBridge(XMLStreamReader reader, SOAPPartImpl soapPart) throws SOAPException {
       
    43                 super(soapPart);
       
    44                 in = reader;
       
    45                 final String soapEnvNS = soapPart.getSOAPNamespace();
       
    46                 breakpoint =  new XMLStreamReaderToXMLStreamWriter.Breakpoint(reader, saajWriter) {
       
    47                         boolean seenBody = false;
       
    48                         boolean stopedAtBody = false;
       
    49                     public boolean proceedBeforeStartElement()  {
       
    50                         if (stopedAtBody) return true;
       
    51                         if (seenBody) {
       
    52                                 stopedAtBody = true;
       
    53                                 return false;
       
    54                         }
       
    55                             if ("Body".equals(reader.getLocalName()) && soapEnvNS.equals(reader.getNamespaceURI()) ){
       
    56                                 seenBody = true;
       
    57                             }
       
    58                             return true;
       
    59                     }
       
    60                 };
       
    61         }
       
    62 
       
    63     public XMLStreamReader getPayloadReader() {
       
    64         return in;
       
    65     }
       
    66 
       
    67     public QName getPayloadQName() {
       
    68         return (in.getEventType() == in.START_ELEMENT) ? in.getName() : null;
       
    69     }
       
    70 
       
    71     public String getPayloadAttributeValue(String attName) {
       
    72         return (in.getEventType() == in.START_ELEMENT) ? in.getAttributeValue(null, attName) : null;
       
    73     }
       
    74 
       
    75     public String getPayloadAttributeValue(QName attName) {
       
    76         return (in.getEventType() == in.START_ELEMENT) ? in.getAttributeValue(attName.getNamespaceURI(), attName.getLocalPart()) : null;
       
    77     }
       
    78 }