src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/BridgeAdapter.java

changeset 286
f50545b5e2f1
child 397
b99d7e355d4b
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/BridgeAdapter.java	Tue Mar 06 16:09:35 2012 -0800
     1.3 @@ -0,0 +1,154 @@
     1.4 +/*
     1.5 + * Copyright (c) 1997, 2011, 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.bind.v2.runtime;
    1.30 +
    1.31 +import java.io.IOException;
    1.32 +import java.io.InputStream;
    1.33 +import java.io.OutputStream;
    1.34 +
    1.35 +import javax.xml.bind.JAXBException;
    1.36 +import javax.xml.bind.MarshalException;
    1.37 +import javax.xml.bind.Marshaller;
    1.38 +import javax.xml.bind.UnmarshalException;
    1.39 +import javax.xml.bind.Unmarshaller;
    1.40 +import javax.xml.bind.annotation.adapters.XmlAdapter;
    1.41 +import javax.xml.namespace.NamespaceContext;
    1.42 +import javax.xml.stream.XMLStreamException;
    1.43 +import javax.xml.stream.XMLStreamReader;
    1.44 +import javax.xml.stream.XMLStreamWriter;
    1.45 +import javax.xml.transform.Result;
    1.46 +import javax.xml.transform.Source;
    1.47 +
    1.48 +import com.sun.istack.internal.NotNull;
    1.49 +import com.sun.xml.internal.bind.api.Bridge;
    1.50 +import com.sun.xml.internal.bind.api.TypeReference;
    1.51 +import com.sun.xml.internal.bind.v2.runtime.unmarshaller.UnmarshallerImpl;
    1.52 +
    1.53 +import org.w3c.dom.Node;
    1.54 +import org.xml.sax.ContentHandler;
    1.55 +import org.xml.sax.SAXException;
    1.56 +
    1.57 +/**
    1.58 + * {@link Bridge} decorator for {@link XmlAdapter}.
    1.59 + *
    1.60 + * @author Kohsuke Kawaguchi
    1.61 + */
    1.62 +final class BridgeAdapter<OnWire,InMemory> extends InternalBridge<InMemory> {
    1.63 +    private final InternalBridge<OnWire> core;
    1.64 +    private final Class<? extends XmlAdapter<OnWire,InMemory>> adapter;
    1.65 +
    1.66 +    public BridgeAdapter(InternalBridge<OnWire> core, Class<? extends XmlAdapter<OnWire,InMemory>> adapter) {
    1.67 +        super(core.getContext());
    1.68 +        this.core = core;
    1.69 +        this.adapter = adapter;
    1.70 +    }
    1.71 +
    1.72 +    public void marshal(Marshaller m, InMemory inMemory, XMLStreamWriter output) throws JAXBException {
    1.73 +        core.marshal(m,adaptM(m,inMemory),output);
    1.74 +    }
    1.75 +
    1.76 +    public void marshal(Marshaller m, InMemory inMemory, OutputStream output, NamespaceContext nsc) throws JAXBException {
    1.77 +        core.marshal(m,adaptM(m,inMemory),output,nsc);
    1.78 +    }
    1.79 +
    1.80 +    public void marshal(Marshaller m, InMemory inMemory, Node output) throws JAXBException {
    1.81 +        core.marshal(m,adaptM(m,inMemory),output);
    1.82 +    }
    1.83 +
    1.84 +    public void marshal(Marshaller context, InMemory inMemory, ContentHandler contentHandler) throws JAXBException {
    1.85 +        core.marshal(context,adaptM(context,inMemory),contentHandler);
    1.86 +    }
    1.87 +
    1.88 +    public void marshal(Marshaller context, InMemory inMemory, Result result) throws JAXBException {
    1.89 +        core.marshal(context,adaptM(context,inMemory),result);
    1.90 +    }
    1.91 +
    1.92 +    private OnWire adaptM(Marshaller m,InMemory v) throws JAXBException {
    1.93 +        XMLSerializer serializer = ((MarshallerImpl)m).serializer;
    1.94 +        serializer.setThreadAffinity();
    1.95 +        serializer.pushCoordinator();
    1.96 +        try {
    1.97 +            return _adaptM(serializer, v);
    1.98 +        } finally {
    1.99 +            serializer.popCoordinator();
   1.100 +            serializer.resetThreadAffinity();
   1.101 +        }
   1.102 +    }
   1.103 +
   1.104 +    private OnWire _adaptM(XMLSerializer serializer, InMemory v) throws MarshalException {
   1.105 +        XmlAdapter<OnWire,InMemory> a = serializer.getAdapter(adapter);
   1.106 +        try {
   1.107 +            return a.marshal(v);
   1.108 +        } catch (Exception e) {
   1.109 +            serializer.handleError(e,v,null);
   1.110 +            throw new MarshalException(e);
   1.111 +        }
   1.112 +    }
   1.113 +
   1.114 +
   1.115 +    public @NotNull InMemory unmarshal(Unmarshaller u, XMLStreamReader in) throws JAXBException {
   1.116 +        return adaptU(u, core.unmarshal(u,in));
   1.117 +    }
   1.118 +
   1.119 +    public @NotNull InMemory unmarshal(Unmarshaller u, Source in) throws JAXBException {
   1.120 +        return adaptU(u, core.unmarshal(u,in));
   1.121 +    }
   1.122 +
   1.123 +    public @NotNull InMemory unmarshal(Unmarshaller u, InputStream in) throws JAXBException {
   1.124 +        return adaptU(u, core.unmarshal(u,in));
   1.125 +    }
   1.126 +
   1.127 +    public @NotNull InMemory unmarshal(Unmarshaller u, Node n) throws JAXBException {
   1.128 +        return adaptU(u, core.unmarshal(u,n));
   1.129 +    }
   1.130 +
   1.131 +    public TypeReference getTypeReference() {
   1.132 +        return core.getTypeReference();
   1.133 +    }
   1.134 +
   1.135 +    private @NotNull InMemory adaptU(Unmarshaller _u, OnWire v) throws JAXBException {
   1.136 +        UnmarshallerImpl u = (UnmarshallerImpl) _u;
   1.137 +        XmlAdapter<OnWire,InMemory> a = u.coordinator.getAdapter(adapter);
   1.138 +        u.coordinator.setThreadAffinity();
   1.139 +        u.coordinator.pushCoordinator();
   1.140 +        try {
   1.141 +            return a.unmarshal(v);
   1.142 +        } catch (Exception e) {
   1.143 +            throw new UnmarshalException(e);
   1.144 +        } finally {
   1.145 +            u.coordinator.popCoordinator();
   1.146 +            u.coordinator.resetThreadAffinity();
   1.147 +        }
   1.148 +    }
   1.149 +
   1.150 +    void marshal(InMemory o, XMLSerializer out) throws IOException, SAXException, XMLStreamException {
   1.151 +        try {
   1.152 +            core.marshal(_adaptM( XMLSerializer.getInstance(), o ), out );
   1.153 +        } catch (MarshalException e) {
   1.154 +            // recover from error by not marshalling this element.
   1.155 +        }
   1.156 +    }
   1.157 +}

mercurial